]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - CHANGELOG
Update CHANGELOG
[karo-tx-uboot.git] / CHANGELOG
1 commit e3b39f84e974df70065fa248f0f63993b1708c9d
2 Author: AndrĂ© Schwarz <andre.schwarz@matrix-vision.de>
3 Date:   Fri Jul 17 14:50:24 2009 +0200
4
5     update config for mvBC-P (MPC5200)
6
7     This patch adds I2C support for mvBC-P and defines flash layout
8     matching the shipped product.
9
10     Signed-off-by: AndrĂ© Schwarz <andre.schwarz@matrix-vision.de>
11
12 commit cb6d0b72c2c4f13c0075a7ae92e11682ec94a311
13 Author: Kumar Gala <galak@kernel.crashing.org>
14 Date:   Mon Jul 13 09:24:00 2009 -0500
15
16     ahci: Fix gcc 4.4 compiler warning
17
18     ahci.c: In function 'ata_scsiop_read_capacity10':
19     ahci.c:616: warning: dereferencing type-punned pointer will break strict-aliasing rules
20
21     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22
23 commit 51d91e1a253c97713c7f3e5c0b910a4db4979283
24 Author: Kumar Gala <galak@kernel.crashing.org>
25 Date:   Mon Jul 13 09:23:59 2009 -0500
26
27     drivers/bios_emulator: Fix gcc 4.4 compiler warning
28
29     biosemu.c: In function 'BE_setVGA':
30     biosemu.c:147: warning: dereferencing type-punned pointer will break strict-aliasing rules
31
32     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33
34 commit f97ec30bb3c5a4a456159eb2b75b3bc68772bf2a
35 Author: Detlev Zundel <dzu@denx.de>
36 Date:   Mon Jul 13 16:01:19 2009 +0200
37
38     Re-add support for image type 'Standalone Program'
39
40     Support for this type was lost during the bootm refactoring.
41
42     Signed-off-by: Detlev Zundel <dzu@denx.de>
43
44 commit ca95c9df0280f40e8e4befadbaae21fa67d92331
45 Author: Detlev Zundel <dzu@denx.de>
46 Date:   Mon Jul 13 16:01:18 2009 +0200
47
48     Add error checking for unsupported OS types.
49
50     Signed-off-by: Detlev Zundel <dzu@denx.de>
51
52 commit 982adfc610669482a32127282fe489857a92cfe3
53 Author: Peter Tyser <ptyser@xes-inc.com>
54 Date:   Fri Jul 10 18:46:10 2009 -0500
55
56     ppc: Unlock cache-as-ram in a consistent manner
57
58     Previously, non-e500 architectures only unlocked their data cache which
59     was used as early RAM when booting to Linux using the "bootm" command.
60     This change causes all PPC boards with CONFIG_SYS_INIT_RAM_LOCK defined
61     to unlock their data cache during U-Boot's initialization.  This
62     improves U-Boot performance and provides a common cache state when
63     booting to different OSes.
64
65     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
66
67 commit b201171f2b4d509f3ad510b214bee70ff902e3d6
68 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
69 Date:   Thu Jul 23 04:54:45 2009 -0400
70
71     zlib: updated to v.1.2.3
72
73     This patch updates zlib to the latest stable version.
74
75     Only relevant zlib parts were ported to u-boot tree, as was done for
76     the previously used version of zlib (0.95). New zlib gives faster
77     inflate performance and other improvements, see www.zlib.net
78
79     Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
80     Reviewed-by: Angelo Castello <angelo.castello@st.com>
81
82     Edited commit message
83
84     Signed-off-by: Wolfgang Denk <wd@denx.de>
85
86 commit 97cfe86163505ea18e7ff7b71e78df5bb03dad57
87 Author: Robin Getz <rgetz@blackfin.uclinux.org>
88 Date:   Tue Jul 21 12:15:28 2009 -0400
89
90     Save server's MAC address in environment
91
92     Linux's netconsole works much better when you can pass it the MAC address of
93     the server. (otherwise it just uses broadcast, which everyone else on my
94     network complains about :)
95
96     This sets the env var "serveraddr" (to match ethaddr), so that you can pass
97     it to linux with whatever bootargs you want to....
98
99     addnetconsole=set bootargs $(bootargs) netconsole=@$(ipaddr)/eth0,@$(serverip)/$(serveraddr)
100
101     Signed-of-by: Robin Getz <rgetz@blackfin.uclinux.org>
102
103     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
104
105 commit 0b23fb368d08c9669fac647971ff249c3f9fee8f
106 Author: Ilya Yanok <yanok@emcraft.com>
107 Date:   Tue Jul 21 19:32:21 2009 +0400
108
109     fec_mxc: driver for FEC ethernet controller on i.MX27
110
111     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
112     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
113
114 commit 0544c63681d2ea3607faf374e9c56f101e365b42
115 Author: Alessio Centazzo <centazzo@gmail.com>
116 Date:   Sat Jul 11 11:56:06 2009 -0700
117
118     ppc4xx: Fixed compilation warning in 4xx_enet.c
119
120     This patch fixes a compilation warning for some Ethernet PHY-less
121     PPC4xx platforms (440SPE based ones) and a potential compilation
122     error for 440SP platforms (use of undefined 'ethgroup' variable).
123     In the original code and in case of 440SPE platforms, 'ethgroup'
124     is initialized to -1 and never modified.  Later in the function,
125     within an #ifdef statement, an 'if statement' executes code only
126     if 'ethgroup' is set to 4, therefore it is harmless to avoid
127     executing the 'if statement' by removing the CONFIG_440SPE from
128     the affected #ifdefs.  In case of 440SP platforms  with on-board
129     Ethernet PHY, 'ethgroup' is undefined but used (there are not such
130     platforms in the repository yet). All other architectures are not
131     affected by this change.
132
133     Signed-off-by: Alessio Centazzo acpatin@yahoo.com
134     Acked-by: Stefan Roese <sr@denx.de>
135     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
136
137 commit 09133f8580f0106429ba3600f1855bd3577ae58b
138 Author: Michael Zaidman <michael.zaidman@gmail.com>
139 Date:   Tue Jul 14 23:37:12 2009 +0300
140
141     DHCP regression on 2009-06
142
143     Fixed the DHCP/BOOTP/RARP regression introduced in u-boot-2009.06
144     by initializing our IP addr to 0 in order to accept any IP addr
145     assigned to us by the DHCP/BOOTP/RARP server.
146
147     Ack-by: Robin Getz <rgetz@blackfin.uclinux.org>
148     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
149     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
150
151 commit 443ce4ac9d1138ae5ae6863b2d40a96fd6edf523
152 Author: Prafulla Wadaskar <prafulla@marvell.com>
153 Date:   Thu Jul 16 20:58:02 2009 +0530
154
155     net: phy: bugfixes: mv88E61xx multichip addressing support
156
157     With these fixes, this driver works properly for multi chip
158     addressging mode
159
160     Bugfixes:
161     1. Build error fixed for function mv88e61xx_busychk_multic-fixed
162     2. PHY dev address error detection- fixed
163     3. wrong busy bit was refered in function mv88e61xx_busychk -fixed
164     4. invalid data read ptr was refered for RD_PHY in case of
165         multichip addressing mode -fixed
166
167     The Multichip Address mode is tested with RD6281A board having
168     MV88E6165 switch on it
169
170     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
171     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
172
173 commit 16025ea45539219f2a7c750c6f0ae983ea5c2737
174 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
175 Date:   Wed Jul 8 13:05:11 2009 +0200
176
177     arm: Kirkwood: Check the error summary bit for error detection
178
179     The Marvell documentation for the 88f6281 states that the error coding
180     is only valid if the error summary and last frame bits in the transmit
181     descriptor status field are set. This patch adds checks for these for
182     transmit (I would get transmit errors on bootp with the current check,
183     which I believe are spurious).
184
185     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
186     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
187
188 commit 7b05f5e027b81cd3a9a41c6c6d3fe09c72fa93f6
189 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
190 Date:   Wed Jul 8 13:03:18 2009 +0200
191
192     arm: Kirkwood: Fix compiler optimization bug for kwgbe_send
193
194     kwgbe_send/recv both have loops waiting for the hardware to set  a bit.
195     GCC 4.3.3 cleverly optimizes the send case to ... a while(1); loop. This
196     patch uses readl to force a read from device memory. Other volatile
197     accesses have also been replaced with readl/writel where appropriate
198     (as per suggestions on the U-boot mailing list).
199
200     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
201     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
202
203 commit 3f6b18ffd94621625de961bc566022b0266790f5
204 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
205 Date:   Thu Jul 2 13:21:22 2009 -0400
206
207     MIIPHYBB: Return 0xFFFF if the PHY is not asserting TA.
208
209     This patch sets the returned value to 0xFFFF if the PHY does not exist
210     and does not assert Transfer Acknowledge. A NULL check for the value
211     pointer is also added for buffer overflow protection.
212
213     Without this patch 'mii info' will  show 'phantom' devices because the
214     value will be not be initialized and return with some random value.
215
216     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
217     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
218
219 commit 736fead8fdbf8a8407048bebc373cd551d01ec98
220 Author: Ben Warren <biggerbadderben@gmail.com>
221 Date:   Mon Jul 20 22:01:11 2009 -0700
222
223     Convert SMC911X Ethernet driver to CONFIG_NET_MULTI API
224
225     All in-tree boards that use this controller have CONFIG_NET_MULTI added
226     Also:
227      - changed CONFIG_DRIVER_SMC911X* to CONFIG_SMC911X*
228      - cleaned up line lengths
229      - modified all boards that override weak function in this driver
230      - added
231
232     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
233     Tested-by: Mike Frysinger <vapier@gentoo.org>
234
235 commit 3bd0a877b74b9c005ae7cb892480ccedfa308c20
236 Author: Ben Warren <biggerbadderben@gmail.com>
237 Date:   Fri Jul 17 00:50:15 2009 -0700
238
239     Add warning about upcoming removal of old Ethernet API
240
241     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
242
243 commit b7fe25d2a8d1cede401d09e1f9c84f8fe47bdbb1
244 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
245 Date:   Thu Jul 2 16:15:13 2009 +0530
246
247     P2020RDB Added support of Vitesse PHYs VSC8641(RGMII) and VSC8221(SGMII)
248
249     These PHYs are on P2020RDB platform.
250
251     Also revamped Freescale copyright message in drivers/net/tsec.c.
252
253     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
254     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
255
256 commit 1a32bf41881b5dbe3119cb77a33572b4d462cabf
257 Author: Robin Getz <rgetz@blackfin.uclinux.org>
258 Date:   Mon Jul 20 14:53:54 2009 -0400
259
260     Add DNS support
261
262     On 04 Oct 2008 Pieter posted a dns implementation for U-Boot.
263
264     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg10216.html
265     >
266     > DNS can be enabled by setting CFG_CMD_DNS. After performing a query,
267     > the serverip environment var is updated.
268     >
269     > Probably there are some cosmetic issues with the patch. Unfortunatly I
270     > do not have the time to correct these. So if anybody else likes DNS
271     > support in U-Boot and has the time, feel free to patch it in the main tree.
272
273     Here it is again - slightly modified & smaller:
274       - update to 2009-06 (Pieter's patch was for U-Boot 1.2.0)
275       - README.dns is added
276       - syntax is changed (now takes a third option, the env var to store
277         the result in)
278       - add a random port() function in net.c
279       - sort Makefile in ./net/Makefile
280       - dns just returns unless a env var is given
281       - run through checkpatch, and clean up style issues
282       - remove packet from stack
283       - cleaned up some comments
284       - failure returns much faster (if server responds, don't wait for
285         timeout)
286       - use built in functions (memcpy) rather than byte copy.
287
288     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
289     Signed-off-by: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
290     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
291
292 commit 88ad3fd91c83a4343b25385fd78fd8e29ebb723f
293 Author: Kim Phillips <kim.phillips@freescale.com>
294 Date:   Fri Jul 17 12:17:00 2009 -0500
295
296     net: tsec - fix dereferencing type-punned pointer will break strict-aliasing rules warning
297
298     fix this gcc 4.4 warning:
299
300     tsec.c: In function 'tsec_init':
301     tsec.c:200: warning: dereferencing type-punned pointer will break strict-aliasing rules
302
303     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
304     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
305
306 commit d9bec9f42ab34383737c8a94429aa02fe76d7946
307 Author: Mike Frysinger <vapier@gentoo.org>
308 Date:   Sat Jul 18 21:04:08 2009 -0400
309
310     net: rename NetRxPkt to NetRxPacket
311
312     The net code is mostly consistent in using 'Packet' rather than 'Pkt', so
313     rename the minor detractor to follow suite.
314
315     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
316     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
317
318 commit 88a4c2e77cd5674db745d0c2ebbad68c9baf760c
319 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
320 Date:   Thu Jun 25 16:33:04 2009 +0900
321
322     sh: sh_eth: Remove garbage from printf
323
324     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
325     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
326     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
327
328 commit 2ea20efa47da9d98ff38223ff51dea5439ad8708
329 Author: Andreas Pretzsch <apr@cn-eng.de>
330 Date:   Thu Jul 9 21:50:05 2009 +0200
331
332     smc911x: add support for LAN9221
333
334     Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>
335     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
336
337 commit 7168eba729b9e6d730db7cd1028767f7b1a6128b
338 Author: David Brownell <david-b@pacbell.net>
339 Date:   Tue Jun 9 11:14:24 2009 -0700
340
341     rm9200 ethernet driver: board-specific quirk (csb337)
342
343     CSB337 boards originally shipped with MicroMonitor, not U-Boot;
344     and with a version using a different convention for recording
345     Ethernet addresses than anyone else.  To avoid breaking Linux
346     when it uses U-Boot, have it use the same convention on that
347     hardware.
348
349     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
350     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
351
352 commit 57215cd2e59fd403248df8f2f195e382900d5fc2
353 Author: Heiko Schocher <hs@denx.de>
354 Date:   Thu Jul 16 09:58:31 2009 +0200
355
356     arm, kirkwood: added kw_gpio_set_valid() in gpio.h
357
358     Signed-off-by: Heiko Schocher <hs@denx.de>
359
360 commit ec16441085f471c03a8c0909579463e31e5b947a
361 Author: Dieter Kiermaier <dk-arm-linux@gmx.de>
362 Date:   Mon Jun 29 14:45:08 2009 +0200
363
364     Kirkwood: add Marvell Kirkwood gpio driver
365
366     Signed-off-by: Dieter Kiermaier <dk-arm-linux@gmx.de>
367     Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
368     Tested-by: Heiko Schocher <hs@denx.de>
369
370 commit 688b6a0ff2dcbb0c7e63ef63cbbcc291f14f321f
371 Author: Heiko Schocher <hs@denx.de>
372 Date:   Thu Jul 16 09:59:10 2009 +0200
373
374     arm, kirkwood: added KW_TWSI_BASE in kirkwood.h
375
376     Signed-off-by: Heiko Schocher <hs@denx.de>
377
378 commit fbc8365ad7ab0afd4143bdbffab2fd0b24df004f
379 Author: Prafulla Wadaskar <prafulla@marvell.com>
380 Date:   Thu Jul 16 21:02:24 2009 +0530
381
382     Marvell RD6281A Board support
383
384     This is Marvell's 88F6281_A0 based reference design board
385
386     This patch is tested for-
387     1. Boot from DRAM/NAND flash/NFS
388     2. File transfer using tftp and loadb
389     3. NAND flash read/write/erase
390
391     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
392     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
393
394 commit 2906e6d654fcc7f2451fde225e4e8b3f20c9555f
395 Author: Piotr Ziecik <kosmo@semihalf.com>
396 Date:   Fri Jul 17 16:35:19 2009 +0200
397
398     api: Fix broken build on ARM.
399
400     This patch fixes broken build introduced by commit
401     84bf7ca522e94ec402a1264b01971b924b7e268f (api: remove un-needed
402     ifdef CONFIG_API already handle by the Makefile).
403
404     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
405
406 commit 48677a1ef5f82adca49145a7baf11ece77f51945
407 Author: Wolfgang Denk <wd@denx.de>
408 Date:   Wed Jul 22 23:53:23 2009 +0200
409
410     Fix "ld: cannot find -lstubs" build error
411
412     Commit 1bc15386 moved the examples/ to examples/standalone but failed
413     to adapt the Makefiles that need to link against libstubs.a
414
415     Signed-off-by: Wolfgang Denk <wd@denx.de>
416     Cc: Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
417
418 commit ae71121a111ddf9dd057cacbbdd0f51054be428a
419 Author: Wolfgang Denk <wd@denx.de>
420 Date:   Sat Jul 18 20:47:36 2009 +0200
421
422     at91cap9adk: fix #ifdef/#endif pairing
423
424     The #ifdef/#endif pairing in this file was obviously messed up.
425
426     Signed-off-by: Wolfgang Denk <wd@denx.de>
427
428 commit 6b96a20d512b04a808438553874c00cf40812c44
429 Author: Minkyu Kang <mk7.kang@samsung.com>
430 Date:   Mon Jul 20 11:40:01 2009 +0900
431
432     ARM Cortex A8: Move OMAP3 specific reset handler
433
434     Because of the reset_cpu is soc specific, should be move to soc
435
436     Cc: Dirk Behme <dirk.behme@googlemail.com>
437     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
438
439 commit 048e7efe91f66094f868281c12e488ce2bae8976
440 Author: Kumar Gala <galak@kernel.crashing.org>
441 Date:   Wed Jul 22 10:12:39 2009 -0500
442
443     85xx/86xx: Replace in8/out8 with in_8/out_8 on FSL boards
444
445     The pixis code used in8/out8 all over the place.  Replace it with
446     in_8/out_8 macros.
447
448     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
449
450 commit 0a6d0c6320b77bd6572393a93e6b8ccdf39c7100
451 Author: Peter Tyser <ptyser@xes-inc.com>
452 Date:   Tue Jul 21 13:51:08 2009 -0500
453
454     xpedite5370: Enable NAND command support
455
456     Use the MPC8572's eLBC to access 1 GB (or greater) onboard NAND flash
457     via the 'nand' command.
458
459     Previously, the XPedite5370's NAND chip selects were properly
460     configured, but NAND support was not enabled.
461
462     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
463     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
464
465 commit 39121c0896a6760bd436d88c17892f49a97902d0
466 Author: Peter Tyser <ptyser@xes-inc.com>
467 Date:   Tue Jul 21 13:51:07 2009 -0500
468
469     xes: Increase CONFIG_SYS_BOOTM_LEN to 16MB
470
471     Increasing CONFIG_SYS_BOOTM_LEN from 8 MB to 16 MB is necessary to
472     support uncompressing images larger than 8 MB when using the bootm
473     command.
474
475     Note that recent Linux kernels for the 85xx and 86xx map greater than
476     16MB of memory on bootup, but we use 16MB to maintain compatibility with
477     older Linux kernels for now.
478
479     Signed-off-by: Nate Case <ncase@xes-inc.com>
480     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
481     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
482
483 commit 58f31b602dfd52eb7836ab82caa587514e046f02
484 Author: Peter Tyser <ptyser@xes-inc.com>
485 Date:   Sun Jul 19 19:17:41 2009 -0500
486
487     xpedite5370: Fix I2C GPIO initialization typo
488
489     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
490     Acked-by: Heiko Schocher<hs@denx.de>
491     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
492
493 commit 5ff821006c6e7647d183ea95817044943bb22e7e
494 Author: Peter Tyser <ptyser@xes-inc.com>
495 Date:   Sun Jul 19 19:17:40 2009 -0500
496
497     xpedite5200,5370: Use buffered NOR flash writes
498
499     Buffered writes are possible on the XPedite5200 and XPedite5370 and greatly
500     improve NOR flash write speeds
501
502     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
503     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
504
505 commit d9c147f371800a479a507a816b2fe572c97da197
506 Author: Peter Tyser <ptyser@xes-inc.com>
507 Date:   Fri Jul 17 10:14:48 2009 -0500
508
509     85xx, 86xx: Add common board_add_ram_info()
510
511     Previously, 85xx and 86xx boards would display DRAM information on
512     bootup such as:
513
514     ...
515     I2C:   ready
516     DRAM:
517     Memory controller interleaving enabled: Bank interleaving!
518      2 GB
519     FLASH: 256 MB
520     ...
521
522     This patch moves the printing of the DRAM controller configuration to a
523     common board_add_ram_info() function which prints out DDR type, width,
524     CAS latency, and ECC mode.  It also makes the DDR interleaving
525     information print out in a more sane manner:
526
527     ...
528     I2C:   ready
529     DRAM:   2 GB (DDR2, 64-bit, CL=4, ECC on)
530            DDR Controller Interleaving Mode: bank
531     FLASH: 256 MB
532     ...
533
534     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
535     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
536
537 commit 12a440ae6d09445140f1a0c2023dba76a9f1a617
538 Author: Peter Tyser <ptyser@xes-inc.com>
539 Date:   Fri Jul 17 10:14:47 2009 -0500
540
541     tqm85xx: Remove board_add_ram_info()
542
543     This is in preparation for adding one common 8xxx board_add_ram_info()
544     function for all 8xxx boards
545
546     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
547     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
548
549 commit ed2c9488bbe389b7b25cada1e42bdae5d0976327
550 Author: Peter Tyser <ptyser@xes-inc.com>
551 Date:   Fri Jul 17 10:14:46 2009 -0500
552
553     xes: Remove 8xxx board_add_ram_info() function
554
555     This is in preparation for adding one common 8xxx board_add_ram_info()
556     fuction for all 8xxx boards
557
558     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
559     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
560
561 commit e7ee23ec1788d8cf269a4cf6b9cd3722cbc7d592
562 Author: Peter Tyser <ptyser@xes-inc.com>
563 Date:   Fri Jul 17 10:14:45 2009 -0500
564
565     86xx: Rename ccsr_ddr's sdram_mode_1, sdram_cfg_1 fields
566
567     Rename sdram_mode_1 to sdram_mode and sdram_cfg_1 to sdram_cfg to match
568     the 86xx user's manual and other Freescale architectures
569
570     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
571     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
572
573 commit f6155c6fbb1d85f517b7c160570f0995ef14c43f
574 Author: Roy Zang <tie-fei.zang@freescale.com>
575 Date:   Thu Jul 9 10:05:48 2009 +0800
576
577     85xx: Add pci/pcie E1000 ethernet support for MPC8544DS and MPC8536 boards
578
579     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
580     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
581
582 commit 6bb5b412291177e6edd42f9a80e5c5afe57a6a0f
583 Author: Kumar Gala <galak@kernel.crashing.org>
584 Date:   Tue Jul 14 22:42:01 2009 -0500
585
586     85xx: Report which "bank" of NOR flash we are booting from on FSL boards
587
588     The p2020DS, MPC8536DS, MPC8572DS, MPC8544DS boards are capable of
589     swizzling the upper address bits of the NOR flash we boot out of which
590     creates the concept of "virtual" banks.  This is useful in that we can
591     flash a test of image of u-boot and reset to one of the virtual banks
592     while still maintaining a working image in "bank 0".
593
594     The PIXIS FPGA exposes registers on LBC which we can use to determine
595     which "bank" we are booting out of (as well as setting which bank to
596     boot out of).
597
598     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
599
600 commit 9af9c6bdc16da53772c56b1a79c2c91701fe94e6
601 Author: Kumar Gala <galak@kernel.crashing.org>
602 Date:   Wed Jul 15 13:45:00 2009 -0500
603
604     86xx: Report which "bank" of NOR flash we are booting from on MPC8641HPCN
605
606     The MPC8641HPCN board is capable of swizzling the upper address bit of
607     the NOR flash we boot out of which creates the concept of "virtual"
608     banks.  This is useful in that we can flash a test of image of u-boot
609     and reset to one of the virtual banks while still maintaining a
610     working image in "bank 0".
611
612     The PIXIS FPGA exposes registers on LBC which we can use to determine
613     which "bank" we are booting out of (as well as setting which bank to
614     boot out of).
615
616     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
617
618 commit caf72ff329759b4da71352ab098537c7698c0e9f
619 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
620 Date:   Tue Jul 21 10:45:49 2009 +0200
621
622     Refresh LZMA-lib to v4.65
623
624     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
625
626 commit 70ebf31633f372a24505e47846b2628e8435ea37
627 Author: Wolfgang Denk <wd@denx.de>
628 Date:   Fri Jul 17 23:35:29 2009 +0200
629
630     AT91: factor out ROUND() macro
631
632     A large number of boards (all AT91 based) duplicated the ROUND()
633     macro in their board specific config files. Add the definition to
634     include/common.h and clean up the board config files.
635
636     Signed-off-by: Wolfgang Denk <wd@denx.de>
637
638 commit 89188a62333c0841a7166783d2ebdd39d7044eb2
639 Author: Kumar Gala <galak@kernel.crashing.org>
640 Date:   Wed Jul 15 08:54:50 2009 -0500
641
642     85xx: Bump up the BOOTMAP to 16M on FSL 85xx boards
643
644     We have always mapped at least 16M in the kernel and we have seen cases
645     with new kernel features that a kernel image needs more than 8M of
646     memory.
647
648     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
649
650 commit d4abc757c26c531293f5bbc4262ade44a317eec9
651 Author: Peter Tyser <ptyser@xes-inc.com>
652 Date:   Mon Jul 20 19:02:21 2009 -0500
653
654     Move api_examples to examples/api
655
656     Also add a rule to remove demo.bin which was previously leftover
657     after a "make clean"
658
659     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
660
661 commit af1d7d984a23a0faa1f436ebfeb55c876b1a99e1
662 Author: Heiko Schocher <hs@denx.de>
663 Date:   Tue Jul 21 06:37:28 2009 +0200
664
665     83xx, kmeter: fix compile error
666
667     CONFIG_SYS_MALLOC_LEN is defined in the board config, and
668     the keymile-common.h, which collects common options used
669     by all keymile-boards. This results in a compile error
670     when compiling the kmeter1 board. So remove this define
671     in the board config file.
672
673     Signed-off-by: Heiko Schocher <hs@denx.de>
674
675 commit 39df00d9aecfb465b9eec9af593f9b763fb5209a
676 Author: Heiko Schocher <hs@denx.de>
677 Date:   Thu Jul 9 12:04:26 2009 +0200
678
679     i2c, mpc83xx: add CONFIG_SYS_I2C_INIT_BOARD for fsl_i2c
680
681     This patch adds the possibility to call a board specific
682     i2c bus reset routine for the fsl_i2c bus driver, and adds
683     this option for the keymile kmeter1 board.
684
685     The deblock sequence for this board is implemented and
686     tested in the following way:
687
688     CR = 0x20 (release SDA and SCL pin)
689     CR = 0xa0 (start read)
690     dummy read
691     dummy read
692     if 2. dummy read == 0x00
693         3. dummy read
694
695     CR = 0x80 (SDA and SCL now 1 SR = 0x86)
696     CR = 0x00 (Modul reset SR=0x81)
697     CR = 0x80 (SDA and SCL = 1, SR = 0x81)
698
699     Signed-off-by: Heiko Schocher <hs@denx.de>
700
701 commit 1bc1538613d66cef3cbce680fc8d7c3561a0fbd0
702 Author: Peter Tyser <ptyser@xes-inc.com>
703 Date:   Fri Jul 10 11:03:19 2009 -0500
704
705     Move examples/ to examples/standalone
706
707     The current files in examples are all standalone application examples,
708     so put them in their own subdirectory for organizational purposes
709
710     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
711
712 commit b220c64d86f7c705a183302c3b50076d7e5d876c
713 Author: Peter Tyser <ptyser@xes-inc.com>
714 Date:   Fri Jul 10 11:03:15 2009 -0500
715
716     Move architecture specific config.mk files into subdirs
717
718     This cleans up U-Boot's toplevel directory a bit and makes the
719     architecture 'config.mk' file naming and location similar to board
720     and cpu 'config.mk' files
721
722     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
723
724 commit 082becd0d546399637fa94fdf9f1730a0f7bf348
725 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
726 Date:   Fri Jul 10 18:25:34 2009 +0800
727
728     Add "tags" to .gitignore file.
729
730     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
731     Signed-off-by: Wolfgang Denk <wd@denx.de>
732
733 commit dc71b248ef0d5e12b19f33c6efb873e31df91fa9
734 Author: Heiko Schocher <hs@denx.de>
735 Date:   Thu Jul 9 12:04:18 2009 +0200
736
737     powerpc: updates for the keymile boards
738
739     - CONFIG_SYS_MAX_I2C_BUS changed to 1
740       We use only one I2C hardwarecontroller on this boards, so
741       change the CONFIG_SYS_MAX_I2C_BUS to 1.
742     - common: dont print errormsg if second IVM Block lacks.
743     - 82xx, mgcoge: fix double mtdpart entry in environment
744     - 82xx, mgcoge: activate on second Flash the second bank.
745     - common: CONFIG_ENV_SIZE 0x4000 for all keymile boards
746     - common: Change malloc size to 1MByte for all Keymile boards
747         We need a bigger malloc area for the environment support (128k)
748         on some Keymile boards (kmeter1) and the upcoming UBI support.
749         Change it to 1MB for all Keymile boards to be on the save side.
750         Also define CONFIG_SYS_64BIT_VSPRINTF which is needed for
751         UBI/UBIFS support.
752     - Add UBI support to all Keymile boards
753     - change manner of writing "/localbus/ranges" node
754         instead of writting the complete "/localbus/ranges" node
755         before booting Linux, only update the ranges entries
756         which gets dynamical detected (size of flashes).
757         This is needed, because keymile adds in the DTS
758         "/localbus/ranges" node entries, which u-boot must
759         not overwrite/delete.
760     - kmeter, mgcoge: define 2 seperate regions needed for the Intel P30 chips
761         The Intel P30 chip has 2 non-identical chips on
762         one die, so we need to define 2 seperate regions
763         that are scanned by physmap_of independantly.
764     - kmeter1: Add MTD concat support to Keymile boards
765     - 82xx, mgcoge: add "unlock=yes" to default environment
766     - added CONFIG_MTD_DEVICE to get in sync with mainline code
767
768     Signed-off-by: Heiko Schocher <hs@denx.de>
769     Signed-off-by: Stefan Roese <sr@denx.de>
770
771 commit f14d81050a9e0fa57aedb1bc746c60a07c1ad67f
772 Author: galak <galak@ducky.am.freescale.net>
773 Date:   Tue Jul 7 15:53:21 2009 -0500
774
775     fsl_sata: Fix compiler warnings shown by gcc-4.4
776
777     Update fsl_sata to use common structures instead of casting
778     back and forth between the fsl specific ones and the common ones
779     (which are identical).
780
781     fsl_sata.c: In function 'scan_sata':
782     fsl_sata.c:550: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
783     fsl_sata.c:549: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
784     fsl_sata.c:548: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
785     fsl_sata.c:545: note: initialized from here
786     fsl_sata.c:592: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
787     fsl_sata.c:590: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
788     fsl_sata.c:588: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
789     fsl_sata.c:586: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
790     fsl_sata.c:579: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
791     ...
792
793     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
794
795 commit 20938e54a207472a090f04f20f30c9e32b14137e
796 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
797 Date:   Tue Jul 7 15:58:51 2009 +0200
798
799     Add unaligned.h for arm
800
801     This patch adds unaligned.h for ARM (needed to build with LZO
802     compression). The file is taken from the linux kernel, but includes
803     u-boot headers instead.
804
805     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
806     Acked-by: Stefan Roese <sr@denx.de>
807
808 commit 433ea8abd6adfae3138dd4ce238237a037e1e537
809 Author: Peter Tyser <ptyser@xes-inc.com>
810 Date:   Sun Jul 19 19:17:42 2009 -0500
811
812     Remove last remanants of unused CONFIG_I2C_CMD_TREE
813
814     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
815
816 commit f6ca3b70949790ab5438d6c9a592216cc3616110
817 Author: Andrzej Wolski <awolski@poczta.fm>
818 Date:   Fri Jul 17 22:26:54 2009 +0200
819
820     ubi: help message correction
821
822     Fix incorrect information about size units and correct typo.
823
824     Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
825     Signed-off-by: Stefan Roese <sr@denx.de>
826
827 commit 22f2017c31bc682e9b15612a5c2580ab5b84418e
828 Author: Peter Tyser <ptyser@xes-inc.com>
829 Date:   Sun Jul 19 19:17:42 2009 -0500
830
831     Remove last remanants of unused CONFIG_I2C_CMD_TREE
832
833     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
834
835 commit f99a292aa6083057f5db8283d2ce4a2be22b8856
836 Author: Andrzej Wolski <awolski@poczta.fm>
837 Date:   Fri Jul 17 22:26:54 2009 +0200
838
839     ubi: help message correction
840
841     Fix incorrect information about size units and correct typo.
842
843     Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
844     Signed-off-by: Stefan Roese <sr@denx.de>
845
846 commit b86b85e2611d57d834795a92453431a1a340c3c9
847 Author: Ilya Yanok <yanok@emcraft.com>
848 Date:   Mon Jun 29 17:53:16 2009 +0400
849
850     mmc: set bus width to 1 and clock to minimum early during initialization
851
852     We need to switch back to 1-bit before initialization or SD 2.0 cards
853     will fail to send SCR if we've switched to 4-bit already.
854
855     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
856
857 commit cff80f2cd12bf9767509b5334ecfc90cd7de5502
858 Author: Shinya Kuribayashi <skuribay@pobox.com>
859 Date:   Sat Jun 20 19:14:33 2009 +0900
860
861     config.mk: Remove unused HPATH
862
863     This variable is not unused anywhere.
864
865     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
866
867 commit a781de12700e2cb3d3011fc83b47f7dd8cc3c154
868 Author: Grzegorz Bernacki <gjb@semihalf.com>
869 Date:   Wed Jun 17 16:20:14 2009 +0200
870
871     digsy mtc: Enable command line history.
872
873     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
874
875 commit 37566090766d61beef70c62986b90749920255d8
876 Author: Mike Frysinger <vapier@gentoo.org>
877 Date:   Thu Jul 2 19:23:25 2009 -0400
878
879     compiler.h: unify system ifdef cruft here
880
881     Shove a lot of the HOSTCC and related #ifdef checking crap into the new
882     compiler.h header so that we can keep all other headers nice and clean.
883
884     Also introduce custom uswap functions so we don't have to rely on the non
885     standard implementations that a host may (or may not in the case of OS X)
886     provide.  This allows mkimage to finally build cleanly on an OS X system.
887
888     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
889
890 commit 2a2ed845c085eb093b69fa6382fcf7534bb1f4b0
891 Author: Kim Phillips <kim.phillips@freescale.com>
892 Date:   Mon Jun 15 11:50:40 2009 -0500
893
894     common: fix 'dummy' is used uninitialized in this function warning
895
896     fix this gcc 4.4 warning:
897
898     xyzModem.c: In function 'xyzModem_stream_open':
899     xyzModem.c:564: warning: 'dummy' is used uninitialized in this function
900
901     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
902
903 commit 1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460
904 Author: Mike Frysinger <vapier@gentoo.org>
905 Date:   Sun Jun 14 23:33:14 2009 -0400
906
907     push CROSS_COMPILE out to $(ARCH)_config.mk
908
909     Each arch should handle setting a proper default CROSS_COMPILE value in
910     their own config.mk file rather than having to maintain a large ugly list
911     in the Makefile.  By using conditional assignment, we don't have to worry
912     about the variable already being set (env/cmdline/etc...).
913
914     The common config.mk file takes care of exporting CROSS_COMPILE already,
915     and while a few variables (toolchain ones) utilize CROSS_COMPILE before
916     including the arch config.mk, they do so with deferred assignment.
917
918     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
919
920 commit 60a3f404acbf8238a3138fe1f80a6bac75da4582
921 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
922 Date:   Sat Jun 13 12:55:37 2009 +0200
923
924     malloc.h: protect it against multiple include
925
926     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
927
928 commit 7640f41988a456a0b1f05263d2e2dc5cd7d93984
929 Author: Wolfgang Denk <wd@denx.de>
930 Date:   Sun Jul 19 19:37:24 2009 +0200
931
932     Fix boards broken after removal of legacy NAND and DoC support
933
934     Commit 2419169f removed support for legacy NAND and disk on chip but
935     missed to update the code for a few boards. This patch fixes the
936     resulting build issues.
937
938     Signed-off-by: Wolfgang Denk <wd@denx.de>
939
940 commit 1a4664b53aaf23687b52d64b94be06a9aa260b86
941 Author: Wolfgang Denk <wd@denx.de>
942 Date:   Sun Jul 19 19:32:37 2009 +0200
943
944     cmd_flash.c: fix fix compile error for boards with DataFlash
945
946     Commit 5669ed45 ("cmd_flash.c: fix warning: unused variable
947     'addr_first'/'addr_last'") changed the #ifdef logic areound the
948     declaration of these variables and missed a combination of settings
949     of HAS_DATAFLASH with SYS_NO_FLASH; this patch fixes this.
950
951     Also spotted by Alessandro Rubini <rubini@gnudd.com>
952
953     Signed-off-by: Wolfgang Denk <wd@denx.de>
954
955 commit 341245a28830d3261c41b09d958eeea7bb93587a
956 Author: Wolfgang Denk <wd@denx.de>
957 Date:   Sun Jul 19 12:05:15 2009 +0200
958
959     pcm030: fix out-of-tree building
960
961     Commit 0a87dd90 that was supposed to fix out-of-tree building for the
962     pcm030 board was unfortunately incomplete.
963
964     Signed-off-by: Wolfgang Denk <wd@denx.de>
965
966 commit 8bf29b59fce8cc381114929082202d800e313ad5
967 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
968 Date:   Tue Jul 7 13:58:51 2009 +0200
969
970     Add unaligned.h for arm
971
972     This patch adds unaligned.h for ARM (needed to build with LZO
973     compression). The file is taken from the linux kernel, but includes
974     u-boot headers instead.
975
976     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
977     Acked-by: Stefan Roese <sr@denx.de>
978
979 commit e405afab1dda66c9df3733f6b779d72fc36a0162
980 Author: Kazuaki Ichinohe <kazuichi@fsi.co.jp>
981 Date:   Fri Jun 12 18:10:12 2009 +0900
982
983     Canyonlands SATA harddisk driver
984
985     This patch adds a SATA harddisk driver for the canyonlands.
986     This patch is kernel driver's porting.
987     This patch corresponded to not cmd_scsi but cmd_sata.
988     This patch divided an unused member with ifndef __U_BOOT__ in the structure.
989
990     [environment variable, boot script]
991     setenv bootargs root=/dev/sda7 rw
992     setenv bootargs ${bootargs} console=ttyS0,115200
993     ext2load sata 0:2 0x400000 /canyonlands/uImage
994     ext2load sata 0:2 0x800000 /canyonlands/canyonlands.dtb
995     fdt addr 0x800000 0x4000
996     bootm 0x400000 - 0x800000
997
998     If you drive SATA-2 disk on Canyonlands, you must change parts from
999     PI2PCIE212 to PI2PCIE2212 on U25. We confirmed to boot by using
1000     following disks:
1001
1002     1.Vendor: Fujitsu    Type: MHW2040BS
1003     2.Vendor: Fujitsu    Type: MHW2060BK
1004     3.Vendor: HAGIWARA SYS-COM:HFD25S-032GT
1005     4.Vendor: WesternDigital Type: WD3200BJKT (CONFIG_LBA48 required)
1006     5.Vendor: WesternDigital Type: WD3200BEVT (CONFIG_LBA48 required)
1007     6.Vendor: Hitachi    Type: HTS543232L9A300 (CONFIG_LBA48 required)
1008     7.Vendor: Seagate    Type: ST31000333AS (CONFIG_LBA48 required)
1009     8.Vendor: Transcend  Type: TS32GSSD25S-M
1010     9.Vendor: MTRON              Type: MSD-SATA1525-016
1011
1012     Signed-off-by: Kazuaki Ichinohe <kazuichi at fsi.co.jp>
1013
1014 commit 52a0e2dee90c17e39634de814b16b96061cfb472
1015 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1016 Date:   Wed Jun 10 19:09:40 2009 +0200
1017
1018     Add support for the Tundra TSI148 VME-bridge
1019
1020     From: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1021
1022     This patch adds support for the Tundra TSI148 VME-bridge. It's used on
1023     the upcoming esd VME8349 board.
1024
1025     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1026     Signed-off-by: Stefan Roese <sr@denx.de>
1027
1028 commit 8d1fea2c4041e665c96944e3f6fcffbde55db34b
1029 Author: Mike Frysinger <vapier@gentoo.org>
1030 Date:   Thu Jul 16 19:05:30 2009 -0400
1031
1032     Blackfin: bf537-{minotaur,srv1}: do not hardcode CONFIG_ETHADDR
1033
1034     MAC addresses should not be hardcoded in boards to avoid random link level
1035     conflicts.
1036
1037     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1038
1039 commit baf357050353aee30c04f3f4b868426cb54468ca
1040 Author: Mike Frysinger <vapier@gentoo.org>
1041 Date:   Fri Jul 10 10:42:06 2009 -0400
1042
1043     Blackfin: bf533-stamp: back down SCLK a bit
1044
1045     While the 1.0 and 1.2 spin of the bf533-stamp boards can handle the higher
1046     SCLK speeds just fine, the 1.1 spin cannot due to the bugs introduced with
1047     the shortened SDRAM traces.  So lower the SCLK speed down to a value that
1048     all three can handle.
1049
1050     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1051
1052 commit 490fe7349102012c48730f6fc14ef36c8d155068
1053 Author: Mike Frysinger <vapier@gentoo.org>
1054 Date:   Thu Jul 9 20:56:56 2009 -0400
1055
1056     Blackfin: split cpu COBJS into multilines
1057
1058     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1059
1060 commit 909878fd3fda056d19b8b51a5cc51cb1c0b563d1
1061 Author: Mike Frysinger <vapier@gentoo.org>
1062 Date:   Thu Jul 9 01:15:05 2009 -0400
1063
1064     Blackfin: add os log functions
1065
1066     Part of the mini Blackfin ABI with operating systems is that they can use
1067     0x4f0-0x4f8 to pass log buffers to/from bootloaders.  So add support to
1068     U-Boot for reading the log buffer.
1069
1070     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1071
1072 commit 9993e196da707a0a1cd4584f1fcef12382c1c144
1073 Author: Kim Phillips <kim.phillips@freescale.com>
1074 Date:   Sat Jul 18 18:42:13 2009 -0500
1075
1076     mpc83xx: convert all remaining boards over to 83XX_GENERIC_PCI
1077
1078     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1079
1080 commit d39041fcadb1231430201d298c31f6be03d654f7
1081 Author: Wolfgang Denk <wd@denx.de>
1082 Date:   Sun Jul 19 01:15:52 2009 +0200
1083
1084     PATI board: fix compiler warnings
1085
1086     Fix these:
1087     pati.c: In function 'checkboard':
1088     pati.c:358: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness
1089     ../common/flash.c: In function 'write_word':
1090     ../common/flash.c:824: warning: dereferencing type-punned pointer will break strict-aliasing rules
1091     cmd_pati.c: In function 'do_pati':
1092     cmd_pati.c:279: warning: 'value' may be used uninitialized in this function
1093
1094     Signed-off-by: Wolfgang Denk <wd@denx.de>
1095
1096 commit 28c345042eafc550a34b9f52431bd4a22af6ac25
1097 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1098 Date:   Sat May 16 12:14:56 2009 +0200
1099
1100     mpl: printing current stdio devices cleanup
1101
1102     Currently the mpl boards duplicate the code to print the current
1103     devices from common/console.c; use stdio_print_current_devices()
1104     instead
1105
1106     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1107
1108     Edited commit message.
1109
1110     Signed-off-by: Wolfgang Denk <wd@denx.de>
1111
1112 commit 7e3be7cf3bb344f717b6ec3d47a081269ea67ead
1113 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1114 Date:   Sat May 16 12:14:55 2009 +0200
1115
1116     console: unify printing current devices
1117
1118     Create stdio_print_current_devices() for this purpose
1119
1120     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1121
1122 commit 5669ed4557edf2714203aa8625c9fcd5a753b338
1123 Author: Wolfgang Denk <wd@denx.de>
1124 Date:   Sat Jul 18 23:18:14 2009 +0200
1125
1126     cmd_flash.c: fix warning: unused variable 'addr_first'/'addr_last'
1127
1128     Signed-off-by: Wolfgang Denk <wd@denx.de>
1129
1130 commit 6bb6e6c75ec4ef496f00f7f530e549d3e073c5de
1131 Author: Tom Rix <Tom.Rix@windriver.com>
1132 Date:   Tue Jun 30 15:04:13 2009 -0500
1133
1134     OMAP3 Fix compiler warning for v7_flush_dcache_all
1135
1136     On build of omap3 targets in MAKEALL, the *.ERR files have
1137
1138     cpu.c: In function 'cleanup_before_linux':
1139     cpu.c:64: warning: implicit declaration of function 'v7_flush_dcache_all'
1140     cpu.c:64: warning: implicit declaration of function 'get_device_type
1141
1142     The functions v7_flush_dcache_all and get_device_type are declared
1143     in include/asm-arm/arch-omap3/sys_proto.h, so use this file to
1144     declare the functions.
1145
1146     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1147
1148 commit dba107b967332fc8a35867f4d58038626c968800
1149 Author: Wolfgang Denk <wd@denx.de>
1150 Date:   Sat Jul 18 22:09:38 2009 +0200
1151
1152     ARM: make split_by_variant.sh output more useful
1153
1154     The board/armltd/integrator/split_by_variant.sh script used to print
1155     "Configuring for integrator*p board..." no matter which board name
1156     was being compiled. This made it difficult to match MAKEALL output to
1157     board names. This patch fixes this.
1158
1159     Signed-off-by: Wolfgang Denk <wd@denx.de>
1160
1161 commit 2eb99ca8029b44c988d5f6312f97e68d3b9cb2bd
1162 Author: Wolfgang Denk <wd@denx.de>
1163 Date:   Sat Jul 18 21:52:24 2009 +0200
1164
1165     NAND: Part 2: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
1166
1167     Commit 8d2effea added a warning for configurations that use NAND
1168     without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
1169     failed to fix the affected boards.
1170
1171     This patch covers the non-PPC boards that were missed in the previous
1172     patch (commit 170c1972).
1173
1174     Signed-off-by: Wolfgang Denk <wd@denx.de>
1175
1176 commit 7024aa14df2981b4e65c6189909da9aadb1c22da
1177 Author: Wolfgang Denk <wd@denx.de>
1178 Date:   Sat Jul 18 20:46:38 2009 +0200
1179
1180     at91cap9adk: fix #ifdef/#endif pairing
1181
1182     The #ifdef/#endif pairing in this file was obviously messed up.
1183
1184     Signed-off-by: Wolfgang Denk <wd@denx.de>
1185
1186 commit 4abc5bffea244589fa1097e4c899a63efc609c8e
1187 Author: Prafulla Wadaskar <prafulla@marvell.com>
1188 Date:   Thu Jul 16 20:58:01 2009 +0530
1189
1190     Marvell MV88F6281GTW_GE Board support
1191
1192     This is Marvell's 88F6281_A0 based custom board developed
1193     for wireless access point product
1194
1195     This patch is tested for-
1196     1. Boot from DRAM/SPI flash/NFS
1197     2. File transfer using tftp and loadb
1198     3. SPI flash read/write/erase
1199     4. Booting Linux kernel and RFS from SPI flash
1200     5. Boot from USB supported
1201
1202     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
1203     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
1204
1205 commit 55dd4ba5413b14e8ee24058c89ac5c05376c331c
1206 Author: Prafulla Wadaskar <prafulla@marvell.com>
1207 Date:   Thu Jul 16 20:58:00 2009 +0530
1208
1209     Marvell Sheevaplug Board support
1210
1211     Reference:
1212     http://plugcomputer.org/
1213     http://openplug.org/plugwiki/index.php/Das_U-boot_plug_support
1214
1215     This patch is tested for-
1216     1. Boot from DRAM/NAND flash
1217     2. File transfer using tftp
1218     3. NAND flash read/write/erase
1219     4. Linux kernel and RFS Boot from NAND
1220     5. Enabled USB PHY init for kernel need
1221     6. Boot from USB supported
1222
1223     Note: to boot Kirkwood kernel with USB support,
1224         you should add "usb start" in the boot sequence
1225
1226     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
1227
1228 commit 0a87dd90a75d034301496285026fbd8106c7c6d5
1229 Author: Wolfgang Denk <wd@denx.de>
1230 Date:   Sat Jul 18 18:00:25 2009 +0200
1231
1232     pcm030: fix out-of-tree building
1233
1234     Commit c9969947, which added support for the pcm030 board
1235     (aka phyCORE-MPC5200B-tiny), broke out-of-tree building.
1236
1237     Signed-off-by: Wolfgang Denk <wd@denx.de>
1238
1239 commit 9ff59601c71e800b9d0dfde22fa70d12c71c12b4
1240 Author: Wolfgang Denk <wd@denx.de>
1241 Date:   Sat Jul 18 16:36:11 2009 +0200
1242
1243     MPC837XERDB: fix warning: "CONFIG_SYS_MONITOR_LEN" redefined
1244
1245     Signed-off-by: Wolfgang Denk <wd@denx.de>
1246
1247 commit 2b5243fc24a724e83409c0b70caa1a3180e997ae
1248 Author: Wolfgang Denk <wd@denx.de>
1249 Date:   Sat Jul 18 16:13:18 2009 +0200
1250
1251     8xxx: fix warning: implicit declaration of function 'uec_standard_init'
1252
1253     Commit 8e55258f created function uec_standard_init() to initialize
1254     all UEC interfaces for 83xx and 85xx but failed to provide a
1255     prototype for it.
1256
1257     Signed-off-by: Wolfgang Denk <wd@denx.de>
1258
1259 commit 5b54df2674fdad5e7d316484c67efc68e79f3f0d
1260 Author: Wolfgang Denk <wd@denx.de>
1261 Date:   Sat Jul 18 15:46:02 2009 +0200
1262
1263     MIP405T: fix compile problem
1264
1265     The "stdio/device: rework function naming convention" patch
1266     (commit 52cb4d4f) broke the MIP405T board; this patch fixes it.
1267
1268     Signed-off-by: Wolfgang Denk <wd@denx.de>
1269
1270 commit 170c19725ecd3a0e2e517dfd49979ca8822edec0
1271 Author: Wolfgang Denk <wd@denx.de>
1272 Date:   Sat Jul 18 15:32:10 2009 +0200
1273
1274     NAND: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
1275
1276     Commit 8d2effea added a warning for configurations that use NAND
1277     without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
1278     failed to fix the affected boards.
1279
1280     Signed-off-by: Wolfgang Denk <wd@denx.de>
1281
1282 commit 6e897a661fb9968ce354165a12cce82e4b889e04
1283 Author: Wolfgang Denk <wd@denx.de>
1284 Date:   Sat Jul 18 15:05:44 2009 +0200
1285
1286     CPCI750: fix compile problem
1287
1288     Commit bc0d3296 removed ppc_error_no.h from Marvell boards
1289     but forgot to update board/esd/cpci750/mv_eth.h
1290
1291     Signed-off-by: Wolfgang Denk <wd@denx.de>
1292
1293 commit 6aee3048348f1b19ab89156da98bfa4f7babf24b
1294 Author: Alessandro Rubini <rubini-list@gnudd.com>
1295 Date:   Fri Jul 17 14:42:11 2009 +0200
1296
1297     cmd_i2c: bugfix: add missing brace
1298
1299     The sub-command parser missed a brace, so "return 0;" is always
1300     taken and no error message is diplayed if you say "i2c scan"
1301     instead of "i2c probe", for example.
1302
1303     Proper brace is added. Also, a misleading and unneeded else
1304     is removed.
1305
1306     Signed-off-by: Alessandro Rubini <rubini@gnudd.com.it>
1307
1308 commit 52cb4d4fb3487313f5a72ea740f527a4aefaa365
1309 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1310 Date:   Sat May 16 12:14:54 2009 +0200
1311
1312     stdio/device: rework function naming convention
1313
1314     So far the console API uses the following naming convention:
1315
1316         ======Extract======
1317         typedef struct device_t;
1318
1319         int     device_register (device_t * dev);
1320         int     devices_init (void);
1321         int     device_deregister(char *devname);
1322         struct list_head* device_get_list(void);
1323         device_t* device_get_by_name(char* name);
1324         device_t* device_clone(device_t *dev);
1325         =======
1326
1327     which is too generic and confusing.
1328
1329     Instead of using device_XX and device_t we change this
1330     into stdio_XX and stdio_dev
1331
1332     This will also allow to add later a generic device mechanism in order
1333     to have support for multiple devices and driver instances.
1334
1335     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1336
1337     Edited commit message.
1338
1339     Signed-off-by: Wolfgang Denk <wd@denx.de>
1340
1341 commit f732a7598fa36d48241df20b1a1f4cdbf09f75ee
1342 Author: Peter Tyser <ptyser@xes-inc.com>
1343 Date:   Wed Jul 15 00:01:08 2009 -0500
1344
1345     ppc: Fix compile error for boards with CONFIG_DDR_ECC
1346
1347     A bug was introduced by commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
1348     which affected non-MPC83xx/85xx/86xx ppc boards which had CONFIG_DDR_ECC
1349     defined and resulted in errors such as:
1350
1351     Configuring for canyonlands board...
1352     fsl_dma.c:50:2: error: #error "Freescale DMA engine not supported on your
1353     processor"
1354     make[1]: *** No rule to make target `.depend', needed by `libdma.a'.  Stop.
1355
1356     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1357
1358 commit 18e067de9b6ed087fa60496e64887f0b7458dbaa
1359 Author: Prafulla Wadaskar <prafulla@marvell.com>
1360 Date:   Thu Jul 16 20:57:59 2009 +0530
1361
1362     include/config_cmd_default.h cleanup
1363
1364     arranged configurations in alphabetical order
1365     CONFIG_CMD_FLASH moved under ifndef CONFIG_SYS_NO_FLASH
1366
1367     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
1368
1369 commit 569460ebf14b87bd8fdb2352bde95d35ee96e13b
1370 Author: Mike Frysinger <vapier@gentoo.org>
1371 Date:   Sun Jun 14 21:35:22 2009 -0400
1372
1373     sata: namespace curr_device variable
1374
1375     The curr_device variable really should be namespaced with a "sata_" prefix
1376     since it is only used by the sata code.  It also avoids random conflicts
1377     with other pieces of code (like cmd_mmc):
1378     common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
1379         multiple definition of `curr_device'
1380     common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
1381
1382     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1383
1384 commit 02e22c2de1ce2312f2636fa473a60c8d8f18d8aa
1385 Author: Mike Frysinger <vapier@gentoo.org>
1386 Date:   Sun Jun 14 21:35:21 2009 -0400
1387
1388     cmd_mmc: make curr_device static
1389
1390     The curr_device variable isn't used outside of cmd_mmc, so mark it static
1391     to avoid conflicts with other pieces of code (like sata which also exports
1392     a curr_device).  Otherwise we end up with stuff like:
1393     common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
1394         multiple definition of `curr_device'
1395     common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
1396
1397     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1398
1399 commit 2d8d2adde3fce1152e4ad9f47238f07e70793c53
1400 Author: Mike Frysinger <vapier@gentoo.org>
1401 Date:   Sun Jun 14 21:35:16 2009 -0400
1402
1403     envcrc: add missing dependencies on env storage
1404
1405     When the envcrc building was made conditional, it missed a bunch of env
1406     storage types, so add all currently supported types.
1407
1408     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1409
1410 commit 2419169f5749d7af501b3b77a5336d1d535320de
1411 Author: Scott Wood <scottwood@freescale.com>
1412 Date:   Thu Jul 16 19:08:04 2009 -0500
1413
1414     Remove legacy NAND and disk on chip references from boards.
1415
1416     Signed-off-by: Scott Wood <scottwood@freescale.com>
1417
1418 commit 12e9043c7ed961b60df865f45d9a3c74d6a38199
1419 Author: Shinya Kuribayashi <skuribay@pobox.com>
1420 Date:   Sat Jun 20 19:10:14 2009 +0900
1421
1422     config.mk: Remove $(PCI_CLOCK) reference
1423
1424     The following commit introduced $(PCI_CLOCK) reference so that
1425     we could tweak `PCI_66M' definition via an environment variable.
1426
1427     > commit f046ccd15c8bc9613bfd72916b761a127d36e5c6
1428     > Author: Eran Liberty <liberty@freescale.com>
1429     > Date:   Thu Jul 28 10:08:46 2005 -0500
1430     >
1431     >     * Patch by Eran Liberty
1432     >       Add support for the Freescale MPC8349ADS board.
1433
1434     But I suggest a removal of it for the following reasons:
1435
1436     * In 2006, MPC8349ADS was merged into MPC8349EMDS port,
1437       and it seems that MPC8349EMDS port is PCI_66M free.
1438
1439     * OTOH, PCI_66M is used by MPC832XEMDS an MPC8360EMDS ports,
1440       but they don't need $(PCI_CLOCK) environment variable at all.
1441       PCI_66M is automatically configured via $(BOARD)_config names
1442       with the help of $(findstring _66_,$@).
1443
1444     * Unfortunately $(PCI_CLOCK) has been undocumented anywhere,
1445       so only a few people know the existence of it these days.
1446
1447     * Keep config.mk independent from $(BOARD) as much as possible.
1448
1449     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
1450     Acked-by: Kim Phillips <kim.phillips@freescale.com>
1451
1452 commit 3db75d9c11d37cc1d28bebd91b19f4e548b68155
1453 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1454 Date:   Sat May 23 21:42:36 2009 +0200
1455
1456     fix: missing autoconfig.mk from general Makefile
1457
1458     At the first run of make we generate the autoconf.mk and
1459     autoconf.mk.dep if not already the case and we currently include only
1460     to .dep
1461
1462     In order to use these autogenerated values we need to include it also
1463     even if it's included in config.mk but it's done before their
1464     generation
1465
1466     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1467     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1468
1469 commit 1ca298ced07327749b54321815f76fcddb2f9479
1470 Author: Matthias Weisser <matthias.weisser@graf-syteco.de>
1471 Date:   Thu Jul 9 16:07:30 2009 +0200
1472
1473     Added support for splash screen positioning
1474
1475     This patch adds support splash image positioning by adding an
1476     additional variable "splashpos" to the environment. Please see
1477     README for details.
1478
1479     Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de>
1480     Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1481     Signed-off-by: Anatolij Gustschin <agust@denx.de>
1482
1483 commit 9d173e0233493113c9b1aa81bd2208d0057ab9db
1484 Author: Anatolij Gustschin <agust@denx.de>
1485 Date:   Tue Jul 7 13:11:36 2009 +0200
1486
1487     video: mb862xx: replace printf with puts
1488
1489     Signed-off-by: Anatolij Gustschin <agust@denx.de>
1490
1491 commit cce99b2a7dd80683d61360aee56a6ece344950b2
1492 Author: Anatolij Gustschin <agust@denx.de>
1493 Date:   Tue Jul 7 13:27:07 2009 +0200
1494
1495     video: mb862xx: use macros instead of magic numbers
1496
1497     Signed-off-by: Anatolij Gustschin <agust@denx.de>
1498
1499 commit e86528671ece6d5c1162656a37fc68a8e0bf67f8
1500 Author: Anatolij Gustschin <agust@denx.de>
1501 Date:   Tue Jul 7 13:24:08 2009 +0200
1502
1503     video: mb862xx: fix coding style and remove dead code
1504
1505     Signed-off-by: Anatolij Gustschin <agust@denx.de>
1506
1507 commit 292ed489dba8cc97b458579003a8001cd4703cd8
1508 Author: Michal Simek <monstr@monstr.eu>
1509 Date:   Tue Jun 30 12:03:50 2009 +0200
1510
1511     microblaze: Remove ignored return type for __arch__swab16 function
1512
1513     This change remove compilation warnings.
1514
1515     Signed-off-by: Michal Simek <monstr@monstr.eu>
1516
1517 commit e2776587c0eac131954ae100fda89cc3e7ed8b57
1518 Author: Michal Simek <monstr@monstr.eu>
1519 Date:   Tue Jun 30 12:02:45 2009 +0200
1520
1521     microblaze: Removed unused variables
1522
1523     Signed-off-by: Michal Simek <monstr@monstr.eu>
1524
1525 commit be33b046b549ad88c204c209508cd7657232ffbd
1526 Author: Scott Wood <scottwood@freescale.com>
1527 Date:   Wed Apr 1 15:02:13 2009 -0500
1528
1529     Remove legacy NAND and disk on chip code.
1530
1531     Legacy NAND had been scheduled for removal.  Any boards that use this
1532     were already not building in the previous release due to an #error.
1533
1534     The disk on chip code in common/cmd_doc.c relies on legacy NAND,
1535     and it has also been removed.  There is newer disk on chip code
1536     in drivers/mtd/nand; someone with access to hardware and sufficient
1537     time and motivation can try to get that working, but for now disk
1538     on chip is not supported.
1539
1540     Signed-off-by: Scott Wood <scottwood@freescale.com>
1541
1542 commit fbdaafaee71e2c7f2c31b3582ab6d8679efee8d3
1543 Author: Stefan Roese <sr@denx.de>
1544 Date:   Thu Jun 4 16:40:36 2009 +0200
1545
1546     nand: Change NAND_MAX_OOBSIZE to 218 as needed for some 4k page devices
1547
1548     This is needed for the MPC512x NAND driver (fsl_nfc_nand.c) which already
1549     defines such a 4k plus 218 bytes ECC layout.
1550
1551     Signed-off-by: Stefan Roese <sr@denx.de>
1552     Cc: Scott Wood <scottwood@freescale.com>
1553     Signed-off-by: Scott Wood <scottwood@freescale.com>
1554
1555 commit f2f376ab956c17d4a0c42a993133ca25cdc87278
1556 Author: Stefan Roese <sr@denx.de>
1557 Date:   Thu Jul 16 15:13:04 2009 +0200
1558
1559     nand: ndfc: Remove unnecessary #ifdef's
1560
1561     Now that the 4xx NAND driver ndfc is moved to the common NAND driver
1562     directory we don't need this #ifdef's anymore.
1563
1564     Signed-off-by: Stefan Roese <sr@denx.de>
1565     Cc: Scott Wood <scottwood@freescale.com>
1566     Signed-off-by: Scott Wood <scottwood@freescale.com>
1567
1568 commit 12582ac771b0bf3852817c3bfa4be326522a0665
1569 Author: Stefan Roese <sr@denx.de>
1570 Date:   Thu Jul 16 15:12:48 2009 +0200
1571
1572     nand/ppc4xx: Move PPC4xx NAND driver to common NAND driver directory
1573
1574     Signed-off-by: Stefan Roese <sr@denx.de>
1575     Cc: Scott Wood <scottwood@freescale.com>
1576     Signed-off-by: Scott Wood <scottwood@freescale.com>
1577
1578 commit 3ebf70db5452d3d47c316ddef09f40e76553bcba
1579 Author: Valeriy Glushkov <gvv@lstec.com>
1580 Date:   Tue Jul 14 13:51:10 2009 +0300
1581
1582     nand: fixed failed reads on corrected ECC errors in nand_util.c
1583
1584     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
1585     Signed-off-by: Paulraj, Sandeep <s-paulraj@ti.com>
1586     Signed-off-by: Scott Wood <scottwood@freescale.com>
1587
1588 commit ed727d394c5ab139033719772dc95dc25cfa14f7
1589 Author: David Brownell <david-b@pacbell.net>
1590 Date:   Mon Jul 13 16:29:04 2009 -0700
1591
1592     Typo fix: use CONFIG_SOC_DM644X, not CONFIG_SOC_DM646.
1593
1594     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
1595     Signed-off-by: Scott Wood <scottwood@freescale.com>
1596
1597 commit 937076f84c5064f0a79105fce352ac7cf7b33643
1598 Author: Kyungmin Park <kmpark@infradead.org>
1599 Date:   Sat Jul 11 16:49:55 2009 +0900
1600
1601     MTD: OneNAND: Increase the environment size to 4KiB
1602
1603     Also use mtd operation instead of onenand functions
1604
1605     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
1606     Signed-off-by: Scott Wood <scottwood@freescale.com>
1607
1608 commit bfadb17f69c256196620c32164775f063a59c34f
1609 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1610 Date:   Wed Jun 10 00:25:38 2009 +0400
1611
1612     mpc83xx: MPC837xEMDS: Use hwconfig instead of pci_external_arbiter variable
1613
1614     Since we have simple hwconfig interface now, we don't need
1615     pci_external_arbiter variable any longer.
1616
1617     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1618     Acked-by: Kim Phillips <kim.phillips@freescale.com>
1619
1620 commit b8b71ffbc35fde6905e65ffdbf4e4b87efc26b7e
1621 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1622 Date:   Wed Jun 10 00:25:36 2009 +0400
1623
1624     mpc83xx: MPC8315ERDB: Use hwconfig for board type selection
1625
1626     This patch simply converts the board to the hwconfig infrastructure.
1627
1628     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1629     Acked-by: Kim Phillips <kim.phillips@freescale.com>
1630
1631 commit c78c678354c8321737aa07e86831ff14176f4ed5
1632 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1633 Date:   Wed Jun 10 00:25:31 2009 +0400
1634
1635     mpc83xx: MPC837XEMDS: Fixup eSDHC nodes in device tree
1636
1637     fdt_fixup_esdhc() will either disable or enable eSDHC nodes, and
1638     also will fixup clock-frequency property.
1639
1640     Plus, since DR USB and eSDHC are mutually exclusive, we should
1641     only configure the eSDHC if asked through hwconfig.
1642
1643     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1644     Acked-by: Kim Phillips <kim.phillips@freescale.com>
1645
1646 commit c9646ed758804fa1fa6c1425369a4eee5d618b1d
1647 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1648 Date:   Wed Jun 10 00:25:30 2009 +0400
1649
1650     mpc83xx: MPC837XERDB: Add support for FSL eSDHC
1651
1652     This patch adds support for eSDHC on MPC837XERDB boards. The WP
1653     switch doesn't seem to work on RDB boards though, the WP pin is
1654     always asserted (can see the pin state when it's in GPIO mode).
1655
1656     FSL DR USB and FSL eSDHC are mutually exclusive because of pins
1657     multiplexing, so user should specify 'esdhc' or 'dr_usb' options
1658     in the hwconfig environment variable to choose between the
1659     devices.
1660
1661     p.s.
1662     Now we're very close to a monitor len limit (196 bytes left using
1663     gcc-4.2.0), so also increase the monitor len by one sector (64 KB).
1664
1665     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1666     Acked-by: Kim Phillips <kim.phillips@freescale.com>
1667
1668 commit b33433a63fe08c9e723ea15a7c7c7143bf527c6d
1669 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1670 Date:   Wed Jun 10 00:25:29 2009 +0400
1671
1672     fsl_esdhc: Add device tree fixups
1673
1674     This patch implements fdt_fixup_esdhc() function that is used to fixup
1675     the device tree.
1676
1677     The function adds status = "disabled" propery if esdhc pins muxed away,
1678     otherwise it fixups clock-frequency for esdhc nodes.
1679
1680     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1681     Acked-by: Kim Phillips <kim.phillips@freescale.com>
1682
1683 commit 93f9dcf9e8b8182e97aeb7965c687176cbd0b933
1684 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1685 Date:   Wed Jun 10 00:25:27 2009 +0400
1686
1687     Add simple hwconfig infrastructure
1688
1689     This patch implements simple hwconfig infrastructure: an
1690     interface for software knobs to control a hardware.
1691
1692     This is very simple implementation, i.e. it is implemented
1693     via `hwconfig' environment variable. Later we could write
1694     some "hwconfig <enable|disable|list>" commands, ncurses
1695     interface for Award BIOS-like interface, and frame-buffer
1696     interface for AMI GUI[1] BIOS-like interface with mouse
1697     support[2].
1698
1699     Current implementation details/limitations:
1700
1701     1. Doesn't support options dependencies and mutual exclusion.
1702        We can implement this by integrating apt-get[3] into the
1703        u-boot. But I didn't bother yet.
1704
1705     2. Since we don't implement hwconfig command, i.e. we're working
1706        with the environement directly, there is no way to tell that
1707        toggling a particular option will need a reboot to take
1708        an effect. So, for now it's advised to always reboot the
1709        target after modifying hwconfig variable.
1710
1711     3. We support hwconfig options with arguments. For example,
1712
1713        set hwconfig dr_usb:mode=peripheral,phy_type=ulpi
1714
1715        That means:
1716        - dr_usb - enable Dual-Role USB controller;
1717        - dr_usb:mode=peripheral - USB in Function mode;
1718        - dr_usb:phy_type=ulpi - USB should work with ULPI PHYs;
1719
1720     The purpose of this simple implementation is to define some
1721     internal API and then we can continue improving user experience
1722     by adding more mature interface, like hwconfig command with
1723     bells and whistles. Or not adding, if we feel that current
1724     interface fits its needs.
1725
1726     [1] http://en.wikipedia.org/wiki/American_Megatrends
1727     [2] Regarding ncurses and GUI with mouse support -- I'm just
1728         kidding.
1729     [3] The comment regarding apt-get is also a joke, meaning that
1730         dependency tracking could be non-trivial. For example, for
1731         enabling HW feature X we may need to disable Y, and turn Z
1732         into reduced mode (like RMII-only interface for ethernet,
1733         no MII).
1734
1735         It's quite trivial to implement simple cases though.
1736
1737     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1738     Acked-by: Kim Phillips <kim.phillips@freescale.com>
1739
1740 commit 6c3fef28b9fff0d7f3fa4c51c3ee0ae8c2a3b043
1741 Author: Jerry Van Baren <gvb.uboot@gmail.com>
1742 Date:   Wed Jul 15 20:42:59 2009 -0400
1743
1744     Improve U-Boot Porting Guide in the README
1745
1746     Update for...
1747     * BDI2000 -> BDI3000 (BDI2000 is obsolete).
1748     * Add a line to read the doc/README.* files
1749     * Fix coding standard violations
1750
1751     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
1752
1753 commit 9578718c1b085cac73017d834001bc5cb0b2f73f
1754 Author: Kim Phillips <kim.phillips@freescale.com>
1755 Date:   Tue Jul 14 16:00:24 2009 -0500
1756
1757     mtd: cfi - if defined, use MAX_FLASH_BANKS_DETECT for static declarations
1758
1759     a.k.a cfi_mtd.c does as cfi_flash.c does.  This also prevents
1760     the TQM834x build from doing a:
1761
1762     cfi_mtd.c:36: error: variably modified 'cfi_mtd_info' at file scope
1763     cfi_mtd.c:37: error: variably modified 'cfi_mtd_names' at file scope
1764
1765     using gcc 4.4.
1766
1767     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1768     Signed-off-by: Stefan Roese <sr@denx.de>
1769
1770 commit 4a9932a4364b548773bc131bf85e24a2ec15f2b0
1771 Author: Kim Phillips <kim.phillips@freescale.com>
1772 Date:   Tue Jul 7 18:04:21 2009 -0500
1773
1774     mpc83xx: increase MONITOR_LEN to offset growing pains
1775
1776     Saving the environment leads to overwriting u-boot itself,
1777     bricking boards.  Increase u-boot's image size so the environment
1778     base address doesn't end up overlapping u-boot text.
1779
1780     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1781
1782 commit c31e13260bcd048a94412a47b004386ea6112acf
1783 Author: Valeriy Glushkov <gvv@lstec.com>
1784 Date:   Tue Jun 30 15:48:41 2009 +0300
1785
1786     usb: mpx8349itx: added support of loading images from USB storage (MPH/DR)
1787
1788     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
1789     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1790
1791 commit d89e1c36891de793a20a929282acc0fc7b98feac
1792 Author: Valeriy Glushkov <gvv@lstec.com>
1793 Date:   Tue Jun 30 15:48:40 2009 +0300
1794
1795     usb: mpc834x: added support of the MPH USB controller in addition to the DR one
1796
1797     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
1798     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1799
1800 commit d9ac3d5a17ecef0beb70073018925e011b11684e
1801 Author: Kim Phillips <kim.phillips@freescale.com>
1802 Date:   Mon Jun 15 11:51:47 2009 -0500
1803
1804     mpc83xx: set 64BIT_VSPRINTF for boards using nand_util
1805
1806     When enabling NAND support for a board, one must also define
1807     CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
1808     for correct output.
1809
1810     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1811     Cc: Dave Liu <daveliu@freescale.com>
1812     Cc: Ron Madrid <ron_madrid@sbcglobal.net>
1813     Cc: Anton Vorontsov <avorontsov@ru.mvista.com>
1814
1815 commit 7d4450a9773673052fcd7fdf0a4a88c089126ac1
1816 Author: Wolfgang Denk <wd@denx.de>
1817 Date:   Sun Jun 14 20:58:53 2009 +0200
1818
1819     mpc5121ads: add JFFS2 and MTDPARTS support; adjust flash map
1820
1821     Signed-off-by: Wolfgang Denk <wd@denx.de>
1822
1823 commit 1f1f82f3de1660f398bf42bfd709b9859582ce5e
1824 Author: Wolfgang Denk <wd@denx.de>
1825 Date:   Sun Jun 14 20:58:52 2009 +0200
1826
1827     aria: add JFFS2 and MTDPARTS support; adjust flash map
1828
1829     Signed-off-by: Wolfgang Denk <wd@denx.de>
1830
1831 commit a6d6d46a4fef876455e11b45ed699c0fb3bd1ca1
1832 Author: Wolfgang Denk <wd@denx.de>
1833 Date:   Sun Jun 14 20:58:51 2009 +0200
1834
1835     aria: enable NAND flash support
1836
1837     Signed-off-by: Wolfgang Denk <wd@denx.de>
1838
1839 commit 13946925e850db5351982acb691d51716fc754e2
1840 Author: Wolfgang Denk <wd@denx.de>
1841 Date:   Sun Jun 14 20:58:50 2009 +0200
1842
1843     MPC512x: fix typo in comment listing the NAND driver name
1844
1845     Signed-off-by: Wolfgang Denk <wd@denx.de>
1846     Cc: Stefan Roese <sr@denx.de>
1847     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1848
1849 commit 2ca6f74d09653f8041b52cafd0d650fdc2a56c51
1850 Author: Wolfgang Denk <wd@denx.de>
1851 Date:   Sun Jun 14 20:58:49 2009 +0200
1852
1853     mecp5123: cleanup - remove dead code
1854
1855     Remove dead code that was obviously a left-over from copy & paste.
1856
1857     Signed-off-by: Wolfgang Denk <wd@denx.de>
1858     Cc: Stefan Roese <sr@denx.de>
1859     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1860
1861 commit 25671c8672f2d7b39555416a6b7a6b7b39b810bf
1862 Author: Wolfgang Denk <wd@denx.de>
1863 Date:   Sun Jun 14 20:58:48 2009 +0200
1864
1865     aria: adjust memory controller initialization
1866
1867     Needed for Rev. 2 silicon at 400 MHz
1868
1869     Signed-off-by: Wolfgang Denk <wd@denx.de>
1870
1871 commit 7629f1c06b6dea36bbc7bf70820b824e9b6d2227
1872 Author: Wolfgang Denk <wd@denx.de>
1873 Date:   Sun Jun 14 20:58:47 2009 +0200
1874
1875     MPC512x: factor out common code
1876
1877     Now that we have 3 boards for the MPC512x it turns out that they all
1878     use the very same fixed_sdram() code.
1879
1880     This patch factors out this common code into cpu/mpc512x/fixed_sdram.c
1881     and adds a new header file, include/asm-ppc/mpc512x.h, with some
1882     macros, inline functions and prototype definitions specific to MPC512x
1883     systems.
1884
1885     Signed-off-by: Wolfgang Denk <wd@denx.de>
1886     Cc: Stefan Roese <sr@denx.de>
1887     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1888
1889 commit 0549353a6ba5aa03420c0962b9072e9cf1fa49d9
1890 Author: Wolfgang Denk <wd@denx.de>
1891 Date:   Sun Jun 14 20:58:46 2009 +0200
1892
1893     mecp5123: fix build error
1894
1895     The mecp5123 board did not compile because the MSCAN Clock Control
1896     Registers were missing; these got added, but as an array instead
1897     of 4 individual registers. Adapt the code so it builds.
1898
1899     Signed-off-by: Wolfgang Denk <wd@denx.de>
1900     Cc: Stefan Roese <sr@denx.de>
1901     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1902
1903 commit a9905db5d29a56aedd7db5bcb56b0385873aa6a3
1904 Author: Wolfgang Denk <wd@denx.de>
1905 Date:   Sun Jun 14 20:58:45 2009 +0200
1906
1907     MPC512x: Add MSCAN1...4 Clock Control Registers
1908
1909     Signed-off-by: Wolfgang Denk <wd@denx.de>
1910     Cc: Stefan Roese <sr@denx.de>
1911     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1912
1913 commit f5489c4200b37c9a1d6dbde116f5adc0539610de
1914 Author: Wolfgang Denk <wd@denx.de>
1915 Date:   Sun Jun 14 20:58:44 2009 +0200
1916
1917     MPC512x: enabling NAND support requires CONFIG_SYS_64BIT_VSPRINTF
1918
1919     When enabling NAND support for a board, one must also define
1920     CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
1921     for correct output.
1922
1923     Signed-off-by: Wolfgang Denk <wd@denx.de>
1924     Cc: Stefan Roese <sr@denx.de>
1925     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1926
1927 commit b4db4a7638ef90cf0aacf7b954d9bf3043dda780
1928 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
1929 Date:   Fri Jul 10 18:03:57 2009 +0800
1930
1931     issue write command to base for JEDEC flash
1932
1933     For JEDEC flash, we should issue word programming command relative to
1934     base address rather than sector base address. Original source makes
1935     SST Flash fails to program sectors which are not on the 0x10000 boundaries.
1936
1937     e.g.
1938     SST39LF040 uses addr1=0x5555 and addr2=0x2AAA, however, each sector
1939     is 0x1000 bytes.
1940
1941     Thus, if we issue command to "sector base (0x41000) + offset(0x5555)",
1942     it sends to 0x46555 and the chip fails to recognize that address.
1943
1944     This patch is tested with SST39LF040.
1945
1946     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
1947     Signed-off-by: Stefan Roese <sr@denx.de>
1948
1949 commit 986922714ffd21ad39f48522d285fffc7aed56b1
1950 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1951 Date:   Sat May 2 11:53:50 2009 +0200
1952
1953     versatile: update config and merge to cfi flash driver
1954
1955     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1956     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
1957     Cc: Catalin Marinas <catalin.marinas@arm.com>
1958
1959 commit d6e8ed832b25d5db4fdd3fb91e73028e494dcd6e
1960 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1961 Date:   Sat May 2 11:53:49 2009 +0200
1962
1963     versatile: specify the board type on the prompt
1964
1965     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1966     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
1967     Cc: Catalin Marinas <catalin.marinas@arm.com>
1968
1969 commit 5ccc2d99d61c81805348b0cd9f79731b271f7daf
1970 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
1971 Date:   Thu Jun 25 17:04:15 2009 +0200
1972
1973     at91: Introduction of at91sam9g10 SOC.
1974
1975     AT91sam9g10 is an ARM 926ej-s SOC. It is an evolution of the at91sam9261 with a
1976     faster clock speed: 266/133MHz.
1977
1978     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
1979
1980 commit 22ee647380c42f44528f99b7c1b423725e542102
1981 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
1982 Date:   Thu Jul 9 10:16:29 2009 +0200
1983
1984     at91: Introduction of at91sam9g45 SOC.
1985
1986     AT91sam9g45 series is an ARM 926ej-s SOC family clocked at 400/133MHz.
1987     It embeds USB high speed host and device, LCD, DDR2 RAM, and a full set of
1988     peripherals.
1989
1990     The first board that embeds at91sam9g45 chip is the AT91SAM9G45-EKES.
1991     On the board you can find 2 USART, USB high speed,
1992     a 480*272 LG lcd, ethernet, gpio/joystick/buttons.
1993
1994     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
1995
1996 commit c33c5990cec7ced9ef1ef148debbca34adafa12b
1997 Author: Daniel Mack <daniel@caiaq.de>
1998 Date:   Tue Jun 23 17:30:05 2009 +0200
1999
2000     pxa: fix CKEN_B register bits
2001
2002     The current defition for CKEN_B register bits is nonsense. Adding 32 to
2003     the shifted value is equal to '| (1 << 5)', and this bit is marked
2004     'reserved' in the PXA docs.
2005
2006     Signed-off-by: Daniel Mack <daniel@caiaq.de>
2007
2008 commit bd876be46f28b5fc2896537f6d01353f332789f7
2009 Author: Daniel Mack <daniel@caiaq.de>
2010 Date:   Tue Jun 23 17:30:04 2009 +0200
2011
2012     pxa: add clock for system bus 2 arbiter
2013
2014     This clock is needed for systems using the USB2 device unit or the 2d
2015     graphics accelerator.
2016
2017     Signed-off-by: Daniel Mack <daniel@caiaq.de>
2018
2019 commit b016000a95514c08cab50e1cba00b019c0801bc4
2020 Author: Grazvydas Ignotas <notasas@gmail.com>
2021 Date:   Wed Jul 8 00:30:01 2009 +0300
2022
2023     OMAP3 pandora: Fix CKE1 MUX setting to allow self-refresh
2024
2025     Pandora is using both SDRC CSes. The MUX setting is needed
2026     for the second CS clock signal to allow the 2 RAM parts to
2027     be put in self-refresh correctly.
2028
2029     Based on similar patch for beagle and overo by
2030     Jean Pihet and Steve Sakoman.
2031
2032 commit 8672c288703f3c51c829851c8fe6608c7869faaa
2033 Author: Grazvydas Ignotas <notasas@gmail.com>
2034 Date:   Wed Jul 8 00:30:00 2009 +0300
2035
2036     OMAP3 pandora: setup pulls for various GPIOs
2037
2038     Set pullups or pulldowns for GPIOs which need them.
2039     Disable them for others, which have external pulls.
2040     Also make disabled pull setting consistent (some pins had
2041     type set to "up" even if pull type selection was disabled).
2042
2043 commit 5ff78122f229946862a3f67a2f50a329e8e1bcf5
2044 Author: Grazvydas Ignotas <notasas@gmail.com>
2045 Date:   Wed Jul 8 00:29:59 2009 +0300
2046
2047     OMAP3 pandora: setup pin mux for pins used on rev3 boards
2048
2049     Setup pin mux for GPIO pins connected on rev3 or later
2050     boards. Also change NUB2 IRQ pin. This should not affect
2051     older boards because they don't have any nubs (analog
2052     controllers) attached to them.
2053
2054 commit 67c97c346b27c586a7263564f7afff6d1f8d8d0a
2055 Author: Grazvydas Ignotas <notasas@gmail.com>
2056 Date:   Wed Jul 8 00:29:58 2009 +0300
2057
2058     OMAP3 pandora: pin mux cleanup
2059
2060     Remove configuration of not unused pins, effectively
2061     leaving them in safe mode.
2062
2063 commit b996165f5a1623a055c03b22d64d6d5da81835d0
2064 Author: Prafulla Wadaskar <prafulla@marvell.com>
2065 Date:   Mon Jul 6 15:50:47 2009 +0530
2066
2067     arm: Kirkwood: bugfix: UART1 bar correction
2068
2069     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2070
2071 commit 50243e3e7a96a96c5418ce6c90b7252d26fdd5b0
2072 Author: Kumar Gala <galak@kernel.crashing.org>
2073 Date:   Tue Jul 7 15:48:58 2009 -0500
2074
2075     usb: Fix compiler warning with gcc4.4
2076
2077     ehci-hcd.c: In function 'ehci_submit_root':
2078     ehci-hcd.c:719: warning: value computed is not used
2079     ehci-hcd.c:748: warning: value computed is not used
2080
2081     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2082     Signed-off-by: Remy Bohmer <linux@bohmer.net>
2083
2084 commit 04366d070a1a3f7affddf15aaaea87bcf44cdbb0
2085 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2086 Date:   Wed Jul 8 11:42:19 2009 +0900
2087
2088     sh: Update pci config for Renesas r7780mp board
2089
2090     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2091
2092 commit 74d9c16a681aa24bb4125191fe39dc7c75cde56a
2093 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2094 Date:   Thu Jun 25 16:31:26 2009 +0900
2095
2096     sh: Add support ESPT-GIGA borad
2097
2098     ESPT-Giga is SH7763-based reference board.
2099     Board support is relatively sparse, presently supporting serial,
2100     gigabit ethernet, USB host, and MTD.
2101
2102     More information (in Japanese) available at:
2103     http://www.cente.jp/product/cente_hard/ESPT-Giga.html
2104
2105     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2106     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2107
2108 commit dae4e0148a1146a5610025ae4b445e841410b659
2109 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
2110 Date:   Fri Jul 3 16:06:37 2009 +0200
2111
2112     Add ESD PCI vendor ID
2113
2114     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
2115
2116 commit 876b3cef537aab2cba8c19505db2876f6057f818
2117 Author: Peter Tyser <ptyser@xes-inc.com>
2118 Date:   Mon Jun 22 18:01:41 2009 -0500
2119
2120     api_examples/Makefile: General cleanup
2121
2122     * Remove symlinking of files located outside api_examples/
2123
2124     * Auto generate dependencies for files located outside api_examples/
2125
2126     * Update names of variables to be similar to those in tools/Makefile
2127
2128     * Fix out of tree build error
2129       Dependencies are calculated for all files in the SRCS variable.
2130       Previously, the SRCS variable contained files which were symlinked
2131       into the api_examples/ directory.  These symlinked files did not exist
2132       when dependencies were calculated when building out of tree.  This
2133       resulted in errors such as:
2134         make[1]: *** No rule to make target `/work/wd/tmp-ppc/api_examples/.depend', needed by `_depend'.  Stop.
2135         make[1]: Leaving directory `/home/wd/git/u-boot/work/api_examples'
2136         make: *** [depend] Error 2
2137
2138       Since symlinked source files are no longer used, this bug no longer
2139       exists.
2140
2141     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2142     Acked-by: Rafal Jaworowski <raj@semihalf.com>
2143
2144 commit 522f6f02adb93194e337016fe2e4e53c58d5d5ea
2145 Author: Peter Tyser <ptyser@xes-inc.com>
2146 Date:   Mon Jun 22 18:01:40 2009 -0500
2147
2148     api_examples/Makefile: Get rid of unnecessary intermediate LIB target
2149
2150     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2151     Acked-by: Rafal Jaworowski <raj@semihalf.com>
2152
2153 commit 117d0ab5e6f3b3dd48fc346df4919555a78afd39
2154 Author: Peter Tyser <ptyser@xes-inc.com>
2155 Date:   Mon Jun 22 18:01:39 2009 -0500
2156
2157     api_examples/Makefile: Combine ELF and BIN targets
2158
2159     Combining the two rules cleans up the Makefile a bit
2160
2161     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2162     Acked-by: Rafal Jaworowski <raj@semihalf.com>
2163
2164 commit 644cb38108b8dc22e0ef3cf5f404fe310d1995f8
2165 Author: Peter Tyser <ptyser@xes-inc.com>
2166 Date:   Mon Jun 22 18:01:38 2009 -0500
2167
2168     api_examples/Makefile: Split up variable declarations
2169
2170     This cleans up the Makefile a bit and simplifies future changes
2171
2172     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2173     Acked-by: Rafal Jaworowski <raj@semihalf.com>
2174
2175 commit 890d242facc4079ed21e979ced2e8c6d6974f6d3
2176 Author: Timur Tabi <timur@freescale.com>
2177 Date:   Fri Jun 19 14:10:52 2009 -0500
2178
2179     remove _IO_BASE and KSEG1ADDR from board configuration files
2180
2181     The KSEG1ADDR macro used to be necessary for the RTL8139 Ethernet
2182     driver, but the code that used that macro was removed over a year
2183     ago, so board configuration files no longer need to define it.
2184
2185     The _IO_BASE macro is also automatically defined to 0 if it isn't
2186     already set, so there's no need to define that macro either in the
2187     board configuration files.
2188
2189     Signed-off-by: Timur Tabi <timur@freescale.com>
2190     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2191     Acked-by: Andy Fleming <afleming@freescale.com>
2192     Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
2193     Acked-by: Kim Phillips <kim.phillips@freescale.com>
2194
2195 commit c9969947a4687de90e2bb58e76842b491aa0e0b9
2196 Author: Jon Smirl <jonsmirl@gmail.com>
2197 Date:   Sun Jun 14 18:21:28 2009 -0400
2198
2199     board support patch for phyCORE-MPC5200B-tiny
2200
2201     Add support for the Phytec phyCORE-MPC5200B-tiny.
2202     Code originally from Pengutronix.de.
2203     Created CONFIG_SYS_ATA_CS_ON_TIMER01 define for when IDE CS is on
2204     Timer 0/1
2205
2206     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
2207     Acked-by: Grant Likely <grant.likely@secretlab.ca>
2208
2209 commit 7bd49ad12cc36a4de6995ddabbc65ffa1aa1933d
2210 Author: Mike Frysinger <vapier@gentoo.org>
2211 Date:   Mon Jun 15 13:37:20 2009 -0400
2212
2213     kallsyms: fix escaping of NUL char in strings
2214
2215     The current kallsyms code is using \\0 to escape the backslash in the awk
2216     code, but the shell too needs escaping.  This way we make sure gcc is
2217     passed the \0.  Then gcc itself will consume this as an octal, so we have
2218     to use 000 so gcc will create the final NUL.
2219
2220     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2221
2222 commit ed540f07b8ad86909704e9806c1762462cb4995a
2223 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
2224 Date:   Fri Jun 26 10:18:49 2009 -0400
2225
2226     Blackfin: cm-bf561: add example settings for EXT-BF5xx-USB-ETH2 add-on
2227
2228     The cm-bf561 module can easily hook up to the EXT-BF5xx-USB-ETH2 extender
2229     board, so add a simple example of how to do that in the board config.
2230
2231     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
2232     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2233
2234 commit f8bf54b4081c3c3d518830df0017a23ec672a841
2235 Author: Mike Frysinger <vapier@gentoo.org>
2236 Date:   Thu Jun 25 19:40:28 2009 -0400
2237
2238     Blackfin: blackstamp: update spi flash settings
2239
2240     The latest blackstamp boards can only run the SPI flash at 15MHz before
2241     they start to crap out, so lower the max speeds accordingly.  The new SPI
2242     flash also has different sector requirements, so update the environment
2243     sizes as well.
2244
2245     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2246
2247 commit 286070ddc8339666c09bd7912e960b850a8a0318
2248 Author: Mike Frysinger <vapier@gentoo.org>
2249 Date:   Mon Oct 6 03:31:52 2008 -0400
2250
2251     Blackfin: add cache_dump commands
2252
2253     A few debug-type commands used to dump the raw icache/dcache data.  Useful
2254     when trying to track down cache-related bugs.
2255
2256     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2257
2258 commit 632e9b671efb0a6c900499f7a49fe5b63292b5fc
2259 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
2260 Date:   Wed Jul 8 15:31:57 2009 +0200
2261
2262     ppc4xx: Set default PCI device ID for 405EP boards
2263
2264     Current code only sets the PCI vendor id to 0x1014 and
2265     leaved device id to 0x0000.
2266
2267     Ths patch ....
2268     a) uses the correct PCI_VENDOR_ID_IBM macro for this
2269     b) sets the default device ID as stated in the UM to 0x0156
2270        by using PCI_DEVICE_ID_IBM_405GP for this.
2271
2272     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
2273     Signed-off-by: Stefan Roese <sr@denx.de>
2274
2275 commit 123f102ec093fba6967066acdf9beb637df2e2d1
2276 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
2277 Date:   Wed Jul 8 13:43:55 2009 +0200
2278
2279     ppc4xx: Move 405EP pci code from cpu_init_f() to __pci_pre_init()
2280
2281     This patch moves some basic PCI initialisation from the 4xx cpu_init_f()
2282     to cpu/ppc4xx/4xx_pci.c.
2283
2284     The original cpu_init_f() function enabled the 405EP's internal arbiter
2285     in all situations. Also the HCE bit in cpc0_pci is always set.
2286     The first is not really wanted for PCI adapter designs and the latter
2287     is a general bug for PCI adapter U-Boots. Because it enables
2288     PCI configuration by the system CPU even when the PCI configuration has
2289     not been setup by the 405EP. The one and only correct place is
2290     in pci_405gp_init() (see "Set HCE bit" comment).
2291
2292     So for compatibility reasons the arbiter is still enabled in any case,
2293     but from weak pci_pre_init() so that it can be replaced by board specific
2294     code.
2295
2296     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
2297     Signed-off-by: Stefan Roese <sr@denx.de>
2298
2299 commit c71103f9dc66dfcce8ad6df942364043bf27ade8
2300 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
2301 Date:   Wed Jul 8 13:43:23 2009 +0200
2302
2303     ppc4xx: Make is_pci_host() available for all 440 and 405 CPUs
2304
2305     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
2306     Signed-off-by: Stefan Roese <sr@denx.de>
2307
2308 commit 1d8937a469bfeb55ca1f6d89a4e7cd2dfee3cf17
2309 Author: Prafulla Wadaskar <prafulla@marvell.com>
2310 Date:   Mon Jun 29 20:56:43 2009 +0530
2311
2312     usb: add Marvell Kirkwood ehci host controller driver
2313
2314     This driver is tested on Sheevaplug platform
2315
2316     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2317     Signed-off-by: Remy Bohmer <linux@bohmer.net>
2318
2319 commit db7b43e4681f6f93c336132708157a8a0cca1f8b
2320 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
2321 Date:   Wed Jun 24 10:08:40 2009 +0530
2322
2323     mpc83xx: USB: fix: access of ehci struct elements
2324
2325     It fixes the access to the 'ehci' struct elements for mpc83xx which
2326     should have been taken care of in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
2327     Sorry about that.
2328
2329     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
2330     Signed-off-by: Remy Bohmer <linux@bohmer.net>
2331
2332 commit 08066152735417fc55a5c9de2cec0714c529e4f3
2333 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
2334 Date:   Fri Jun 19 17:56:00 2009 +0530
2335
2336     mpc8xxx: USB: fix: access of ehci struct elements
2337
2338     This patch fixes the access to the 'ehci' struct elements which should
2339     have been taken care off in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
2340     Sorry about that.
2341
2342     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
2343     Signed-off-by: Remy Bohmer <linux@bohmer.net>
2344
2345 commit c3a012ce65818beb274195cd47f31ed80d0fbaa5
2346 Author: Bryan Wu <bryan.wu@analog.com>
2347 Date:   Tue Jun 16 05:26:27 2009 -0400
2348
2349     usb: musb: add timeout via CONFIG_MUSB_TIMEOUT
2350
2351     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
2352     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2353     Signed-off-by: Remy Bohmer <linux@bohmer.net>
2354
2355 commit 7984967a9405672db1581402d2c2cfae268d1a67
2356 Author: Mike Frysinger <vapier@gentoo.org>
2357 Date:   Tue Jun 16 05:26:25 2009 -0400
2358
2359     usb: musb: drop old musb read/write prototypes
2360
2361     These functions are no longer defined, so remove their prototypes.
2362
2363     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2364     Signed-off-by: Remy Bohmer <linux@bohmer.net>
2365
2366 commit 4e04f16020115ab5ccf53158e100de58bcaf29bd
2367 Author: Kim Phillips <kim.phillips@freescale.com>
2368 Date:   Mon Jun 15 11:50:07 2009 -0500
2369
2370     usb: fix CONFIG_SYS_MPC83xx_USB_ADDR not defined error
2371
2372     fix a stray CONFIG_MPC83XX that escaped commit
2373     0f898604945af4543c1525fc33b6bae621a3b805.
2374
2375     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2376     Signed-off-by: Remy Bohmer <linux@bohmer.net>
2377
2378 commit bc0d3296f1780b50e6b9630aee5eb368f2afb6cb
2379 Author: Michal Simek <monstr@monstr.eu>
2380 Date:   Tue Jun 30 23:47:30 2009 +1000
2381
2382     asm-generic: Consolidate errno.h to asm-generic/errno.h
2383
2384     This patch use blackfin errno.h implementation which
2385     correspond Linux kernel one.
2386
2387     MIPS implemetation is different that's why I keep it.
2388
2389     I removed ppc_error_no.h from Marvell boards which
2390     was the same too.
2391
2392     I have got ack from ppc40x, blackfin, arm, coldfire and avr custodians.
2393
2394     Acked-by: Stefan Roese <sr@denx.de>
2395     Signed-off-by: Michal Simek <monstr@monstr.eu>
2396
2397 commit 2896b5851f0430bf16529376a4193630e966c788
2398 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
2399 Date:   Tue Jul 7 16:01:02 2009 +0200
2400
2401     Command improvements for ubifs
2402
2403     Check that an argument is passed to ubifsmount and that addresses and
2404     sizes are actually numbers for ubifsload. Also improve the instructions
2405     a bit.
2406
2407     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
2408     Signed-off-by: Stefan Roese <sr@denx.de>
2409
2410 commit 25c8f4005979ab2d190713ba341d96a5fa905cdb
2411 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
2412 Date:   Tue Jul 7 16:59:46 2009 +0200
2413
2414     Handle VID header offset in ubi part command
2415
2416     The VID header offset is sometimes needed to initialize the UBI
2417     partition. This patch adds it (optionally) to the command line
2418     for the ubi part command.
2419
2420     (Lines have been properly wrapped since last version)
2421
2422     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
2423     Acked-by: Stefan Roese <sr@denx.de>
2424     Signed-off-by: Stefan Roese <sr@denx.de>
2425
2426 commit 3672cd5c3b53d219d33345eebad4e25ad5bf6d52
2427 Author: Wolfgang Denk <wd@denx.de>
2428 Date:   Thu Jul 9 09:56:16 2009 +0200
2429
2430     MAINTAINERS: fix sorting, remove duplicates.
2431
2432     Signed-off-by: Wolfgang Denk <wd@denx.de>
2433
2434 commit efbf14e9a2394a154b12643d4a011994b5096b5a
2435 Author: Heiko Schocher <heiko.schocher@invitel.hu>
2436 Date:   Wed Dec 10 08:27:01 2008 +0100
2437
2438     all platforms: make show_boot_progress() work again
2439
2440     Signed-off-by: Heiko Schocher <hs@denx.de>
2441
2442 commit 205a0988d8fd778c60746c34c2f17dbd2b7cd0d2
2443 Author: Prafulla Wadaskar <prafulla@marvell.com>
2444 Date:   Mon Jun 29 15:25:18 2009 +0530
2445
2446     nand: Add Marvell Kirkwood NAND driver
2447
2448     This patch adds a NAND driver for the Marvell Kirkwood SoC's
2449
2450     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2451     Acked-by: Scott Wood <scottwood@freescale.com>
2452
2453 commit 0580e48f53f972783e56fcedadb9ce6e5b0b6f32
2454 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
2455 Date:   Mon Jul 6 16:27:33 2009 +0200
2456
2457     ppc4xx: Make pll_write global
2458
2459     This patch makes pll_write on PPC405EP boards
2460     global and callable from C code.
2461
2462     pll_write can be used to dynamically modify the PLB:PCI divider
2463     as it is required for 33/66 MHz pci adapters based on the 405EP.
2464
2465     board_early_init_f() is a good place to do that (check M66EN signal
2466     and call pll_write() when it is required).
2467
2468     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
2469     Signed-off-by: Stefan Roese <sr@denx.de>
2470
2471 commit 20b3c4b528606d51799aed5e4c71783720cd2b72
2472 Author: Stefan Roese <sr@denx.de>
2473 Date:   Mon Jul 6 11:44:33 2009 +0200
2474
2475     ppc4xx: Remove compilation warning "pci_async_enabled defined but not used"
2476
2477     Signed-off-by: Stefan Roese <sr@denx.de>
2478
2479 commit d0a1364f91c80d29daff6b27a7904a50cdc00b35
2480 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
2481 Date:   Fri Jul 3 16:06:06 2009 +0200
2482
2483     ppc4xx: Implement is_pci_host() for 405 CPUs
2484
2485     This patch implements the is_pci_host() function in a similiar way
2486     as it is used on 440 targets.
2487
2488     The former path with CONFIG_PCI_HOST == PCI_HOST_AUTO does not
2489     build on 405EP targets because checking the PCI arbiter is different.
2490     So putting the fixed code into a separate function makes the code
2491     more readable.
2492
2493     Also using is_pci_host() on 405 brings 405 and 440 PCI code
2494     a little bit closer.
2495
2496     In preparation for an upcoming 405EP based PMC module I made this
2497     function weak so that it can be overwritten from board specific code.
2498
2499     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
2500     Signed-off-by: Stefan Roese <sr@denx.de>
2501
2502 commit 04ddae915f295dee301f15c32100533a48e3b433
2503 Author: Alessio Centazzo <centazzo@gmail.com>
2504 Date:   Wed Jul 1 22:20:51 2009 -0700
2505
2506     ppc4xx: Fixed PPC4xx debug compilation error in uic.c
2507
2508     This patch fixes a debug compilation error for PPC4xx platforms, all
2509     other architectures are not affected by this change.  The 'handler'
2510     pointer was undefined.  The fix is exercised and has effect only if
2511     DEBUG is defined.
2512
2513     Signed-off-by: Alessio Centazzo acpatin@yahoo.com
2514     Signed-off-by: Stefan Roese <sr@denx.de>
2515
2516 commit 48e2b535a0dd3a7b77b674130934a24f9de6f48d
2517 Author: Felix Radensky <felix@embedded-sol.com>
2518 Date:   Wed Jul 1 11:37:46 2009 +0300
2519
2520     4xx: Fix compilation warnings and MQ registers dump in SPD DDR2 code
2521
2522     This patch fixes printf format string compilation warnings in several
2523     debug statements. It also fixes the dump of DDR controller MQ registers
2524     found on some 44x and 46x platforms. The current register dump code
2525     uses incorrect DCRs to access these registers.
2526
2527     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
2528     Signed-off-by: Stefan Roese <sr@denx.de>
2529
2530 commit 26d37f0061ad05e5c383c910f00e6006f3c89a3a
2531 Author: Felix Radensky <felix@embedded-sol.com>
2532 Date:   Mon Jun 22 15:30:42 2009 +0300
2533
2534     ppc4xx: Fix FDT EBC mappings on Canyonlands
2535
2536     This patch fixes 2 problems with FDT EBC mappings on Canyonlands.
2537     First, NAND EBC mapping was missing, making Linux NAND driver
2538     unusable on this board. Second, NOR remapping code assumed that
2539     NOR is always on CS0, however when booting from NAND NOR is on CS3.
2540
2541     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
2542     Signed-off-by: Stefan Roese <sr@denx.de>
2543
2544 commit baa9f9ba4345ed6dc5c403871c32e6295316ea52
2545 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2546 Date:   Tue Jun 16 22:29:15 2009 +0900
2547
2548     sh: Revised the build with newest compiler
2549
2550     The check of data became severe from newest gcc.
2551     This patch checked in gcc-4.2 and 4.3 .
2552
2553     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2554
2555 commit be45c632568ba76343c1453b3951ad793f482fd5
2556 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2557 Date:   Thu Jun 4 12:06:48 2009 +0200
2558
2559     sh3/sh4: rename config option TMU_CLK_DIVIDER to CONFIG_SYS_TMU_CLK_DIV
2560
2561     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2562     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2563     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2564
2565 commit 8dd29c87ba370072a8464b8cc19e0a1e6e0497b4
2566 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2567 Date:   Thu Jun 4 12:06:47 2009 +0200
2568
2569     sh3/sh4: fix CONFIG_SYS_HZ to 1000
2570
2571     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2572     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2573     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2574
2575 commit add380f51f34ed1e2678c2abac8d53c91d652f26
2576 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2577 Date:   Thu Jun 4 12:06:46 2009 +0200
2578
2579     sh: introduce clock framework
2580
2581     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2582     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2583     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2584
2585 commit 3931a375de2c381d9ff5ec2767b2da9f62a41aef
2586 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2587 Date:   Thu Jun 4 12:06:45 2009 +0200
2588
2589     sh: unify linker script
2590
2591     all sh boards use the same cpu linker script so move it to cpu/$(CPU)
2592
2593     that could be overwrite in following order
2594     SOC
2595     BOARD
2596     via the corresponding config.mk
2597
2598     tested on r2dplus
2599
2600     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2601     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2602     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2603
2604 commit 236aad875817771eb1f25ed32784b3cd7760b2e6
2605 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2606 Date:   Thu Jun 4 12:06:44 2009 +0200
2607
2608     sh: make the linker scripts more generic
2609
2610     currently we need to sync the linker script enty and TEXT_BASE manualy
2611     and the reloc_dst is based on it
2612
2613     instead provide it now from the ldflags
2614
2615     tested on r2dplus
2616
2617     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2618     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2619     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2620
2621 commit ce29817212792113cd2d67a9767049a2e262c406
2622 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2623 Date:   Thu Jun 4 12:06:43 2009 +0200
2624
2625     sh7785lcr: fix out of tree build
2626
2627     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2628     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2629     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2630
2631 commit 2e8a6f551cba550e9220dca4d8504066203b1f74
2632 Author: HeungJun Kim <riverful.kim@gmail.com>
2633 Date:   Tue Jun 30 14:42:22 2009 +0900
2634
2635     env_onenand: change env_address type from unsigned long to loff_t
2636
2637     If use the onenand boot, the env_relocate_spec() calls mtd->read(),
2638     and the type of the argument #2 of mtd->read() was changed to loff_t.
2639     But, the "env_addr" type is still unsigned long, thus this patch change
2640     the type from unsigned long to loff_t.
2641
2642     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
2643     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
2644     Signed-off-by: Scott Wood <scottwood@freescale.com>
2645
2646 commit 66372fe2ab11cdeb0e841ad9eb6ba79769db4909
2647 Author: Mingkai Hu <Mingkai.hu@freescale.com>
2648 Date:   Thu Jun 18 18:23:27 2009 +0800
2649
2650     fsl_elbc_nand: redirect the pointer of bbt pattern to RAM
2651
2652     The bbt descriptors contains the pointer to the bbt pattern which
2653     are statically initialized memory struct. When relocated to RAM,
2654     these pointers will continue point to NOR flash(or L2 SRAM, or
2655     other boot device). If the contents of NOR flash changed or L2
2656     SRAM disabled, it'll hang the system.
2657
2658     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
2659     Signed-off-by: Scott Wood <scottwood@freescale.com>
2660
2661 commit 1dac3a51875967f32641bbc0d26dc382ef02330a
2662 Author: Scott Wood <scottwood@freescale.com>
2663 Date:   Wed Jun 24 17:23:49 2009 -0500
2664
2665     nand_spl: Fix cmd_ctrl usage in nand_boot.c.
2666
2667     When adding large page NAND support to this file, I had a misunderstanding
2668     about the exact semantics of NAND_CTRL_CHANGE (which isn't documented
2669     anywhere I can find) -- it is apparently just a hint to drivers,
2670     which aren't required to preserve the old value for subsequent
2671     non-"change" invocations.
2672
2673     This change makes nand_boot.c no longer assume this.  Note that this
2674     happened to work by chance with some NAND drivers, which don't preserve
2675     the value, but treat 0 equivalently to NAND_CTRL_ALE.
2676
2677     I don't have hardware to test this, so any testing is appreciated.
2678
2679     Signed-off-by: Scott Wood <scottwood@freescale.com>
2680
2681 commit 98713d2663d5d30dde74f48f547114a2bfd9d463
2682 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
2683 Date:   Thu Jun 18 18:41:03 2009 +0100
2684
2685     Bug-fix in drivers mtd nand Makefile
2686
2687     The S3C2410 NAND driver source file is included in the makefile instead of
2688     the object file.
2689
2690     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
2691     Signed-off-by: Scott Wood <scottwood@freescale.com>
2692
2693 commit b74ab737369bbbe66c15cbe6c0d0b6a351b00c96
2694 Author: Guennadi Liakhovetski <lg@denx.de>
2695 Date:   Mon May 18 16:07:22 2009 +0200
2696
2697     nand_spl: read environment early, when booting from NAND using nand_spl
2698
2699     Currently, when booting from NAND using nand_spl, in the beginning the default
2700     environment is used until later in boot process the dynamic environment is read
2701     out. This way environment variables that must be interpreted early, like the
2702     baudrate or "silent", cannot be modified dynamically and remain at their
2703     default values. Fix this problem by reading out main and redundand (if used)
2704     copies of the environment in the nand_spl code.
2705
2706     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
2707     Signed-off-by: Scott Wood <scottwood@freescale.com>
2708
2709 commit 378adfcdf4bbd77ee4cbc3276d4733e218308a21
2710 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2711 Date:   Sat May 16 14:27:40 2009 +0200
2712
2713     mtd: nand: use loff_t for offset
2714
2715     nand_util currently uses size_t which is arch dependent and not always a
2716     unsigned long.  Now use loff_t, as does the linux mtd layer.
2717
2718     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2719     Signed-off-by: Scott Wood <scottwood@freescale.com>
2720
2721 commit 8360b66bac9567701027a0087274d0c9b2fe8d6b
2722 Author: Wolfgang Denk <wd@denx.de>
2723 Date:   Sun May 24 17:34:33 2009 +0200
2724
2725     nand/onenand: Fix missing argument checking for "markbad" command
2726
2727     The "nand markbad" and "onenand markbad" commands did not check if an
2728     argument was passed; if this was forgotten, no error was raised but
2729     block 0 was marked as bad.
2730
2731     While fixing this bug, clean up the code a bit and allow to pass more
2732     than one block address, thus allowing to mark several blocks as bad
2733     in a single command invocation.
2734
2735     Signed-off-by: Wolfgang Denk <wd@denx.de>
2736     Signed-off-by: Scott Wood <scottwood@freescale.com>
2737
2738 commit cd84423a09f3a08029fe41c1db96168debd0b51f
2739 Author: Mike Frysinger <vapier@gentoo.org>
2740 Date:   Mon May 25 22:42:28 2009 -0400
2741
2742     mtd: nand: new base driver for memory mapped nand devices
2743
2744     The BF537-STAMP Blackfin board had a driver for working with NAND devices
2745     that are simply memory mapped.  Since there is nothing Blackfin specific
2746     about this, generalize the driver a bit so that everyone can leverage it.
2747
2748     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2749     Signed-off-by: Scott Wood <scottwood@freescale.com>
2750
2751 commit d27bc728cf35e7d7996fbd77154335e66615b213
2752 Author: Guennadi Liakhovetski <lg@denx.de>
2753 Date:   Mon May 18 16:06:45 2009 +0200
2754
2755     env_nand: remove unused variable.
2756
2757     Remove an unused "total" variable in multiple functions.
2758
2759     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
2760     Signed-off-by: Scott Wood <scottwood@freescale.com>
2761
2762 commit 154b5484ac7dcbcd0fb5ba388d930b02f87fa302
2763 Author: David Brownell <dbrownell@users.sourceforge.net>
2764 Date:   Sun May 10 15:43:01 2009 -0700
2765
2766     davinci_nand chipselect/init cleanup
2767
2768     Update chipselect handling in davinci_nand.c so that it can
2769     handle 2 GByte chips the same way Linux does:  as one device,
2770     even though it has two halves with independent chip selects.
2771     For such chips the "nand info" command reports:
2772
2773       Device 0: 2x nand0, sector size 128 KiB
2774
2775     Switch to use the default chipselect function unless the board
2776     really needs its own.  The logic for the Sonata board moves out
2777     of the driver into board-specific code.  (Which doesn't affect
2778     current build breakage if its NAND support is enabled...)
2779
2780     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2781     Signed-off-by: Scott Wood <scottwood@freescale.com>
2782
2783 commit 496863b2440dd7cd69a1ad2443a9badd5f8968d1
2784 Author: Sandeep Paulraj <s-paulraj@ti.com>
2785 Date:   Sat May 9 12:35:20 2009 -0400
2786
2787     NAND DaVinci: Update to ALE/CLE Mask values
2788
2789     All DaVinci SOC's use a CLE mask of 0x10 and an ALE mask of 0x8
2790     except the DM646x. This was decided by the design team driving the design.
2791     This patch updates the CLE and ALE values for DM646x.
2792     Updated patches for DM646x will be sent shortly.
2793     This applies to u-boot-nand-flash git
2794
2795     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2796     Signed-off-by: Scott Wood <scottwood@freescale.com>
2797
2798 commit 0c1684437ef810c503df29e8d73f63191aa63862
2799 Author: Sandeep Paulraj <s-paulraj@ti.com>
2800 Date:   Wed Apr 29 09:47:09 2009 -0400
2801
2802     ARM DaVinci: Changing ALE Mask Value
2803
2804     The ALE mask used by DaVinci SOCs is wrong. The patch changes the mask value
2805     from '0xa' to '0x8'. This is the mask we use for all TI releases.
2806
2807     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2808     Signed-off-by: Scott Wood <scottwood@freescale.com>
2809
2810 commit 6e29ed8e576a6900c5d8dcde36b423ac576894dc
2811 Author: David Brownell <dbrownell@users.sourceforge.net>
2812 Date:   Tue Apr 28 13:19:53 2009 -0700
2813
2814     davinci_nand: cleanup II (CONFIG_SYS_DAVINCI_BROKEN_ECC)
2815
2816     Remove CONFIG_SYS_DAVINCI_BROKEN_ECC option.  It's not just nasty;
2817     it's also unused by any current boards, and doesn't even match the
2818     main U-Boot distributions from TI (which use soft ECC, or 4-bit ECC
2819     on newer chips that support it).
2820
2821     DaVinci GIT kernels since 2.6.24, and mainline Linux since 2.6.30,
2822     match non-BROKEN code paths for 1-bit HW ECC.  The BROKEN code paths
2823     do seem to partially match what MontaVista/TI kernels (4.0/2.6.10,
2824     and 5.0/2.6.18) do ... but only for small pages.  Large page support
2825     is really broken (and it's unclear just what software it was trying
2826     to match!), and the ECC layout was making three more bytes available
2827     for use by filesystem (or whatever) code.
2828
2829     Since this option itself seems broken, remove it.  Add a comment
2830     about the MV/TI compat issue, and the most straightforward way to
2831     address it (should someone really need to solve it).
2832
2833     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2834     Signed-off-by: Scott Wood <scottwood@freescale.com>
2835
2836 commit fcb774777562bb7bcdc53c608d0e6bae906ce0f6
2837 Author: David Brownell <dbrownell@users.sourceforge.net>
2838 Date:   Tue Apr 28 13:19:50 2009 -0700
2839
2840     davinci_nand: cleanup I (minor)
2841
2842     Minor cleanup for DaVinci NAND code:
2843
2844      - Use I/O addresses from nand_chip; CONFIG_SYS_NAND_BASE won't
2845        be defined when there are multiple chipselect lines in use
2846        (as with common 2 GByte chips).
2847
2848      - Cleanup handling of EMIF control registers
2849         * Only need one pointer pointing to them
2850         * Remove incorrect and unused struct supersetting them
2851
2852      - Use the standard waitfunc; we don't need a custom version
2853
2854      - Partial legacy cleanup:
2855         * Don't initialize every board like it's a DM6446 EVM
2856         * #ifdef a bit more code for BROKEN_ECC
2857
2858     Sanity checked with small page NAND on dm355 and dm6446 EVMs;
2859     and large page on dm355 EVM (packaged as two devices, not one).
2860
2861     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2862     Signed-off-by: Scott Wood <scottwood@freescale.com>
2863
2864 commit 8e5e9b940cdede0debe528cdd7edccccbb3ebf2a
2865 Author: Wolfgang Denk <wd@denx.de>
2866 Date:   Tue Jul 7 22:35:02 2009 +0200
2867
2868     Coding style cleanup; update CHANGELOG
2869
2870     Signed-off-by: Wolfgang Denk <wd@denx.de>
2871
2872 commit d318d0c44d8e91e937c4dad0c5b1d2f6bb9d9fd8
2873 Author: Stefan Roese <sr@denx.de>
2874 Date:   Mon Jun 29 13:30:50 2009 +0200
2875
2876     UBI: Fix build problem noticed on Apollon (arm/testing repo)
2877
2878     This patch fixes a build problem noticed on Apollon by using
2879     mtd_dev_by_eb() instead of "/" as done in the Linux UBI version.
2880     So this brings the U-Boot UBI version more in sync with the Linux
2881     version again.
2882
2883     Signed-off-by: Stefan Roese <sr@denx.de>
2884
2885 commit 2efee52b09657e9353655b9dae9e1d1a67a2abe4
2886 Author: Prafulla Wadaskar <prafulla@marvell.com>
2887 Date:   Mon Jul 6 20:29:15 2009 +0530
2888
2889     sf: Macronix additional chips supported
2890
2891     new chips supported:-
2892     MX25L1605D, MX25L3205D, MX25L6405D, MX25L12855E
2893     out of which MX25L6405D and MX25L12855E tested on Kirkwood platforms
2894
2895     Modified the Macronix flash support to use 2 bytes of device id instead of 1
2896     This was required to support MX25L12855E
2897
2898     Signed-off-by: Piyush Shah <spiyush@marvell.com>
2899     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2900     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2901
2902 commit dd54126715b89ed0c43322aa78b0dad306f043b6
2903 Author: Mike Frysinger <vapier@gentoo.org>
2904 Date:   Fri Jun 19 03:27:28 2009 -0400
2905
2906     sf: sst: add sst25vf###b ids
2907
2908     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2909
2910 commit 7d907f0ea993b179a197d8db2a36f122bc673c2d
2911 Author: Mike Frysinger <vapier@gentoo.org>
2912 Date:   Fri Jun 19 03:20:06 2009 -0400
2913
2914     sf: sst: fix sector size
2915
2916     Looks like when I was encoding the sector sizes, I forgot to divide by 8
2917     (due to the stupid marketing driven process that declares all sizes in
2918     useless megabits and not megabytes).
2919
2920     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2921
2922 commit ceb70b466e75ceb1a621b6163f7e31116bfc8094
2923 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2924 Date:   Sun Jul 5 01:06:06 2009 +0200
2925
2926     nhk8815: fix MAKEALL
2927
2928     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2929
2930 commit d08e5ca301b69ab77ecdd34e2b06aee30d6057d1
2931 Author: Magnus Lilja <lilja.magnus@gmail.com>
2932 Date:   Sat Jul 4 10:31:24 2009 +0200
2933
2934     MX31: Add NAND SPL boot support to i.MX31 PDK board.
2935
2936     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
2937
2938 commit 78eabb90b793fafe875a7469526d1715fa56cbb4
2939 Author: Prafulla Wadaskar <prafulla@marvell.com>
2940 Date:   Mon Jun 29 20:55:54 2009 +0530
2941
2942     arm: Kirkwood: arch specific updated for ehci-Kirkwood driver support
2943
2944     This patch abstracts Kirkwood arch specific changes to support ehci-kirkwood driver
2945
2946     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2947
2948 commit 095a460b49022e64df76134300643606e3acb4e9
2949 Author: Alessandro Rubini <rubini@unipv.it>
2950 Date:   Mon Jun 29 10:52:37 2009 +0200
2951
2952     arm nomadik: use 1000 as HZ value and rewrite timer code
2953
2954     This sets CONFIG_SYS_HZ to 1000 as required, and completely rewrites
2955     timer code, which is now both correct and much smaller.  Unused
2956     functions like udelay_masked() have been removed as no driver uses
2957     them, even the ones that are not currently active for this board.
2958     mtu.h is copied literally from the kernel sources.
2959
2960     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2961     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2962     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2963
2964 commit f7aa59b29a451cc502078a9e4ba32345a4250c05
2965 Author: Alessandro Rubini <rubini@unipv.it>
2966 Date:   Mon Jun 22 09:18:57 2009 +0200
2967
2968     arm nomadik: allow Nand and OneNand to coexists
2969
2970     The evaluation kit has both Nand and OneNand, both drivers are there
2971     and the two configurations only select a different default for the
2972     jffs partition. This adds the OneNand driver and cleans up storage.
2973
2974     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2975     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2976
2977 commit fd14c41a861cd38ee2fe3abd61d59b57b4eb23c9
2978 Author: Alessandro Rubini <rubini@unipv.it>
2979 Date:   Mon Jun 22 09:18:47 2009 +0200
2980
2981     arm nomadik: cleanup reset
2982
2983     There is only one public release of the Nomadik chip, so the ifdef
2984     in reset code as well as a define in the config file are not needed
2985
2986     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2987     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2988
2989 commit ee1363f2da3996bafdecdd8f4e48862ebff3f271
2990 Author: Alessandro Rubini <rubini@unipv.it>
2991 Date:   Mon Jun 22 09:18:37 2009 +0200
2992
2993     arm nomadik: rename board to nhk8815
2994
2995     This is an error in my side in the initial submission: nobody
2996     calls it ""nmdk8815", it's "nomadik hardware kit", nhk8815, instead.
2997
2998     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2999     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
3000
3001 commit 040f8f63e922bbfb8ba0958bf637f11a917f5c38
3002 Author: Stefano Babic <sbabic@denx.de>
3003 Date:   Wed Jul 1 20:40:41 2009 +0200
3004
3005     xscale: add support for the polaris board
3006
3007     The Polaris board is based on the TrizepsIV module of
3008     Keith & Koep (http://www.keith-koep.com).
3009
3010     Signed-off-by: Stefano Babic <sbabic@denx.de>
3011
3012 commit 88bd97501314683b87f3f1edcf55b347c041b722
3013 Author: Stefano Babic <sbabic@denx.de>
3014 Date:   Wed Jul 1 04:33:56 2009 +0200
3015
3016     xscale: fix USB initialization for Trizepsiv module
3017
3018     Due to change in the usb_board_init() prototype, the USB for
3019     the TrizepsIV was not correctly initialized.
3020     Removed dummy print from usb_board_stop().
3021
3022     Signed-off-by: Stefano Babic <sbabic@denx.de>
3023
3024 commit 0b785ddd60120cfb74d18e58c56054238219f6db
3025 Author: Prafulla Wadaskar <prafulla@marvell.com>
3026 Date:   Wed Jul 1 20:34:51 2009 +0200
3027
3028     net: merge bugfix: Marvell Kirkwood gigabit ethernet driver
3029
3030     This patch looks okay on u-boot-net.git/next branch
3031     but when it was merged to u-boot.git/master the last line is missing
3032
3033     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3034     Acked-by: Ben Warren <biggerbadderben@gmail.com>
3035
3036 commit 33b1d3f43a16fbb79004075ce89ae4e618b288a2
3037 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
3038 Date:   Tue Jun 30 21:03:37 2009 +0200
3039
3040     at91: Add esd gmbh MEESC board support
3041
3042     This patch adds support for esd gmbh MEESC board.
3043     The MEESC is based on an Atmel AT91SAM9263 SoC.
3044
3045     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
3046
3047 commit 21761540b43c7086c75ee9afb412da1e5ddde2e9
3048 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3049 Date:   Tue Jun 30 21:03:35 2009 +0200
3050
3051     ARM: Update mach-types
3052
3053     update against linux v2.6.30
3054
3055     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3056
3057 commit 45627fce18139a74e0755124d27376b520db156c
3058 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
3059 Date:   Tue Jun 30 23:03:33 2009 +0200
3060
3061     at91: Add CAN init function
3062
3063     To enable CAN init, CONFIG_CAN has to be defined in the board config file
3064     and at91_can_hw_init() has to be called in the board specific code.
3065
3066     CAN is available on AT91SAM9263 and AT91CAP9 SoC.
3067
3068     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
3069
3070 commit 2e23008e5dbde7fe4c4758bee5a393e1db796cdf
3071 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
3072 Date:   Tue Jun 30 23:03:31 2009 +0200
3073
3074     arm: Kirkwood: Correct header define
3075
3076     Correct define typo (. -> ,)
3077
3078     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
3079
3080 commit 8449f287f5c53d59db13c3c512e6bd1750b692d1
3081 Author: Magnus Lilja <lilja.magnus@gmail.com>
3082 Date:   Wed Jul 1 01:07:55 2009 +0200
3083
3084     MX31: Add basic support for Freescale i.MX31 PDK board.
3085
3086     Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board).
3087
3088     This patch assumes that some other program performs the actual
3089     NAND boot.
3090
3091     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
3092     Acked-by: Fabio Estevam <fabioestevam@yahoo.com>
3093     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3094
3095 commit 8d460a573e2a2ac4834636903865a0428ad0e629
3096 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3097 Date:   Tue Jun 23 00:12:01 2009 +0200
3098
3099     S3C24x0: extract interrupts from timer
3100
3101     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3102
3103 commit c8badbe500a752f42049e51042767ee62ea714e0
3104 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3105 Date:   Sun Jun 28 14:14:21 2009 +0200
3106
3107     dm355/pm9261: add missing CONFIG_NET_MULTI
3108
3109     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3110
3111 commit 798bf9a9ade1cfbe85a16d180cad720927d8e10a
3112 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3113 Date:   Tue Jun 23 00:12:01 2009 +0200
3114
3115     arm920t/interrupts: Move conditional compilation to Makefile
3116
3117     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3118
3119 commit 06e758e75c79ce8761866bf8165c443584a20893
3120 Author: Kim, Heung Jun <riverful@gmail.com>
3121 Date:   Sat Jun 20 11:02:17 2009 +0200
3122
3123     move L2 cache enable/disable function to cache.c in the omap3 SoC directory
3124
3125     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
3126     CC: Dirk Behme <dirk.behme@googlemail.com>
3127     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3128
3129 commit d583ef5147066d3609de21f3beebbab99a19bad4
3130 Author: Thomas Lange <thomas@corelatus.se>
3131 Date:   Sat Jun 20 11:02:17 2009 +0200
3132
3133     ARM DaVinci: EMIF settings
3134
3135     NAND module should not modify EMIF registers unrelated to CS2
3136     that is used for NAND, i.e. do not modify EWAIT config register
3137     or registers for other Chip Selects.
3138
3139     Without this patch, EMIF configurations made in board_init()
3140     will be invalidated.
3141
3142     Signed-off-by: Thomas Lange <thomas@corelatus.se>
3143
3144 commit 2600b8571a26c10c1c43401d7af38e2333cc5381
3145 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3146 Date:   Sat Jun 20 11:02:17 2009 +0200
3147
3148     versatile: config coding style cleanup
3149
3150     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3151     Cc: Peter Pearse <peter.pearse@arm.com>
3152
3153 commit 4efb77d41f9c5d93f0f92dda60e742023fa03c72
3154 Author: Prafulla Wadaskar <prafulla@marvell.com>
3155 Date:   Sat Jun 20 11:01:53 2009 +0200
3156
3157     arm: Kirkwood: Basic SOCs support
3158
3159     Kirkwood family controllers are highly integrated SOCs
3160     based on Feroceon-88FR131/Sheeva-88SV131/arm926ejs cpu core.
3161
3162     SOC versions supported:-
3163     1) 88F6281-A0       define CONFIG_KW88F6281_A0
3164     2) 88F6192-A0       define CONFIG_KW88F6192_A0
3165
3166     Other supported features:-
3167     1) get_random_hex() fucntion
3168     2) PCI Express port initialization
3169     3) NS16550 driver support
3170
3171     Contributors:
3172     Yotam Admon <yotam@marvell.com>
3173     Michael Blostein <michaelbl@marvell.com
3174
3175     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
3176     Acked-by: Stefan Rose <sr@denx.de>
3177     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3178
3179 commit 5c3d5817e5e68b828c165c501c215e793dc63aac
3180 Author: Prafulla Wadaskar <prafulla@marvell.com>
3181 Date:   Sat Jun 20 11:01:52 2009 +0200
3182
3183     arm: generic cache.h for ARM architectures
3184
3185     This patch is required for Kirkwood SoC support
3186     may be used by other ARM architectures
3187
3188     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3189
3190 commit 9c8c706c92e53433a871a563946c38075d76504d
3191 Author: Matthias Ludwig <mludwig@ultratronik.de>
3192 Date:   Sat Jun 20 11:01:50 2009 +0200
3193
3194     OMAP3EVM: fix typo. replace CS6 by CS5, no functionality change
3195
3196     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
3197
3198 commit 0aafde1dc76d6d65d6be10bf499ec86d9ffee8b9
3199 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
3200 Date:   Wed Jun 24 08:32:09 2009 +0200
3201
3202     at91sam9260/9263: add back up for the rst(reset controller).
3203
3204     On the boards at91sam9260ek, at91sam9263ek and afed9260, the rstc register was
3205     set to 0 after being set to 500 ms for the PHY reset.
3206     Do backup the old reset length and restore it after the MACB initialisation.
3207
3208     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
3209     Signed-off-by: Stelian Pop <stelian@popies.net>
3210
3211 commit afb0b1315c048ce2b1f35f0183b8b118ad0c14e1
3212 Author: Kumar Gala <galak@kernel.crashing.org>
3213 Date:   Fri Jul 3 12:45:44 2009 -0500
3214
3215     fsl: Fix compiler warnings from gcc-4.4 in sys_eeprom code
3216
3217     sys_eeprom.c: In function 'do_mac':
3218     sys_eeprom.c:323: warning: dereferencing type-punned pointer will break strict-aliasing rules
3219     sys_eeprom.c: In function 'mac_read_from_eeprom':
3220     sys_eeprom.c:395: warning: dereferencing type-punned pointer will break strict-aliasing rules
3221
3222     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3223
3224 commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
3225 Author: Peter Tyser <ptyser@xes-inc.com>
3226 Date:   Tue Jun 30 17:15:51 2009 -0500
3227
3228     83xx: Add support for fsl_dma driver
3229
3230     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3231     Reviewed-by: Ira W. Snyder <iws@ovro.caltech.edu>
3232     Tested-by: Ira W. Snyder <iws@ovro.caltech.edu>
3233     Acked-by: Kim Phillips <kim.phillips@freescale.com>
3234     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3235
3236 commit 9adda5459ca62120c0c50b82b766fe1cf6925bbf
3237 Author: Peter Tyser <ptyser@xes-inc.com>
3238 Date:   Tue Jun 30 17:15:50 2009 -0500
3239
3240     83xx: Replace CONFIG_ECC_INIT_VIA_DDRC references
3241
3242     Update 83xx architecture's CONFIG_ECC_INIT_VIA_DDRC references to
3243     CONFIG_ECC_INIT_VIA_DDRCONTROLLER, which other Freescale architectures
3244     use
3245
3246     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3247     Acked-by: Kim Phillips <kim.phillips@freescale.com>
3248     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3249
3250 commit 039594a4301dadceb267db5e8b9c8c78b1bb86b5
3251 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
3252 Date:   Thu Jul 2 16:15:01 2009 +0530
3253
3254     8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors
3255
3256     Defining the next two configs allows to switch the serial port from the
3257     console using the setenv stdin and stdout
3258       1. #define CONFIG_SERIAL_MULTI 1 /* Enable both serial ports */
3259       2. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* determine from environment */
3260
3261     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
3262     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
3263     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3264
3265 commit 546b1032907df70f2dd0f98f3ad09885a88411e5
3266 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
3267 Date:   Thu Jul 2 16:14:40 2009 +0530
3268
3269     85xx: Adds GPIO registers to MPC85xx Memory Map.
3270
3271     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
3272     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3273
3274 commit 5da6f806b400372b8a0664f3282c9e83a402eb66
3275 Author: Peter Tyser <ptyser@xes-inc.com>
3276 Date:   Tue Jun 30 17:26:01 2009 -0500
3277
3278     86xx: XPedite5170 board support
3279
3280     Initial support for Extreme Engineering Solutions XPedite5170 -
3281     a MPC8640-based 3U VPX single board computer with a PMC/XMC
3282     site.
3283
3284     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3285     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3286
3287 commit e66f38da8434425aca8df08d06d9ef41b3478d3b
3288 Author: Timur Tabi <timur@freescale.com>
3289 Date:   Wed Jul 1 16:51:59 2009 -0500
3290
3291     fsl_ddr: Fix DDR3 calculation of rank density with 8GB or more
3292
3293     The calculate for rank density in compute_ranksize() for DDR3 used all
3294     integers for the expression, so the result was also a 32-bit integer, even
3295     though the 'bsize' variable is a u64.  Fix the expression to calculate a
3296     true 64-bit value.
3297
3298     Signed-off-by: Timur Tabi <timur@freescale.com>
3299     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3300
3301 commit 6af015b86b86d94de7ca1b23a3890bc93a50c2ab
3302 Author: Peter Tyser <ptyser@xes-inc.com>
3303 Date:   Tue Jun 30 17:15:49 2009 -0500
3304
3305     fsl_dma: Make DMA transactions snoopable
3306
3307     Make DMA transactions snoopable so that CPUs can keep caches up-to-date.
3308     This allows dma transactions to be used for operations such as memory
3309     copies without any additional cache control operations.
3310
3311     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3312     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3313
3314 commit 0d595f76bc9c7c8dff5bd31dffed87a840a03c56
3315 Author: Peter Tyser <ptyser@xes-inc.com>
3316 Date:   Tue Jun 30 17:15:48 2009 -0500
3317
3318     fsl_dma: Break out common memory initialization function
3319
3320     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3321     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3322
3323 commit 79f4333ceb059049b3ee560167d6cbaec493695f
3324 Author: Peter Tyser <ptyser@xes-inc.com>
3325 Date:   Tue Jun 30 17:15:47 2009 -0500
3326
3327     8xxx: Move dma_init() call to common code
3328
3329     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3330     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3331
3332 commit 191c7118592cd182f2dc7f46b4f72d9bed0e2c76
3333 Author: Peter Tyser <ptyser@xes-inc.com>
3334 Date:   Tue Jun 30 17:15:46 2009 -0500
3335
3336     fsl_dma: Move dma function prototypes to common header file
3337
3338     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3339     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3340
3341 commit 7892f619d40f4196e41e7114c5dfee9fad0f572f
3342 Author: Peter Tyser <ptyser@xes-inc.com>
3343 Date:   Tue Jun 30 17:15:45 2009 -0500
3344
3345     8xxx: Rename dma_xfer() to dmacpy()
3346
3347     Also update dmacpy()'s argument order to match memcpy's and use
3348     phys_addr_t/phy_size_t for address/size arguments
3349
3350     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3351     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3352
3353 commit 484919cf3351212ebf748b9b13ece1ddaf7e7d1c
3354 Author: Peter Tyser <ptyser@xes-inc.com>
3355 Date:   Tue Jun 30 17:15:44 2009 -0500
3356
3357     fsl_dma: Fix Channel Start bug in dma_check()
3358
3359     The Channel Start (CS) bit in the Mode Register (MR) should actually be
3360     cleared as the comment in the code suggests.  Previously, CS was being
3361     set, not cleared.
3362
3363     Assuming normal operation of the DMA engine, this change shouldn't have
3364     any real affect.
3365
3366     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3367     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3368
3369 commit 51402ac12be9a0025f16db51fbde7c050a54e5fe
3370 Author: Peter Tyser <ptyser@xes-inc.com>
3371 Date:   Tue Jun 30 17:15:43 2009 -0500
3372
3373     fsl_dma: Add support for arbitrarily large transfers
3374
3375     Support DMA transfers larger than the DMA controller's limit of
3376     (2 ^ 26 - 1) bytes
3377
3378     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3379     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3380
3381 commit a730393a362741c318b21771b8d7b2647e546c3e
3382 Author: Peter Tyser <ptyser@xes-inc.com>
3383 Date:   Tue Jun 30 17:15:42 2009 -0500
3384
3385     fsl_dma: Use proper I/O access functions
3386
3387     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3388     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3389
3390 commit 9c06071a6077ba95e9d43226156e39567d5d064a
3391 Author: Peter Tyser <ptyser@xes-inc.com>
3392 Date:   Tue Jun 30 17:15:41 2009 -0500
3393
3394     fsl_dma: Add bitfield definitions for common registers
3395
3396     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3397     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3398
3399 commit 017f11f68ef543e866be033bcb7b8058a8a380d8
3400 Author: Peter Tyser <ptyser@xes-inc.com>
3401 Date:   Tue Jun 30 17:15:40 2009 -0500
3402
3403     8xxx: Break out DMA code to a common file
3404
3405     DMA support is now enabled via the CONFIG_FSL_DMA define instead of the
3406     previous CONFIG_DDR_ECC
3407
3408     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3409     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3410
3411 commit 6bbced671719518d0e28ff422623cd7ce396cbda
3412 Author: Mark Jackson <mpfj-list@mimc.co.uk>
3413 Date:   Mon Jun 29 15:59:10 2009 +0100
3414
3415     Atmel LCD driver GUARDTIME fix
3416
3417     This patch allows the guard time parameter to be set in
3418     the Atmel LCDC driver.
3419
3420     By default, the previous value of 1 is used, unless the
3421     setting is defined elsewhere.
3422
3423     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
3424
3425 commit 29c35182462feea09f322e51913759a53359a3e0
3426 Author: Roy Zang <tie-fei.zang@freescale.com>
3427 Date:   Tue Jun 30 13:56:23 2009 +0800
3428
3429     85xx: Add pci e1000 Ethernet support for P2020 board
3430
3431     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
3432     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3433
3434 commit 156984a3611c28093919d3e3c042f722b5548253
3435 Author: Kumar Gala <galak@kernel.crashing.org>
3436 Date:   Thu Jun 18 08:39:42 2009 -0500
3437
3438     8xxx: Fix PCI bus address setup for 36-bit configs
3439
3440     We want the outbound PCI memory map to end at the 4G boundary so we
3441     can maximize the amount of space available for inbound mappings if
3442     we have large amounts of memory.
3443
3444     This matches the device tree setup in the kernel for the 36-bit physical
3445     configs for the platforms that have one (MPC8641 HPCN & MPC8572 DS).
3446
3447     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3448
3449 commit 480f61790565d77432b70b4016b73f2ae27d530f
3450 Author: Kumar Gala <galak@kernel.crashing.org>
3451 Date:   Thu Jun 18 08:23:01 2009 -0500
3452
3453     86xx: Add CPU_TYPE_ENTRY support
3454
3455     Unify with 83xx and 85xx and use CPU_TYPE_ENTRY.  We are going to use
3456     this to convey the # of cores and DDR width in the near future so its
3457     good to keep in sync.
3458
3459     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3460
3461 commit 98ab14e858bf60306d0aa3f0df5a7a5f88264aff
3462 Author: Peter Meerwald <pmeerw@pmeerw.net>
3463 Date:   Mon Jun 29 15:48:33 2009 -0400
3464
3465     Blackfin: TWI/I2C: fix pure writes
3466
3467     If doing a pure write with register address and data (not a read/write
3468     combo transfer), we don't set the initial transfer length properly which
3469     ends up causing only the register address to be transferred.
3470
3471     While we're here, fix the i2c_write() parameter description of the buffer.
3472
3473     Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
3474     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3475
3476 commit 5710de45808eb8f1cc34b51dc3e67e2422113249
3477 Author: Prafulla Wadaskar <prafulla@marvell.com>
3478 Date:   Sat May 30 01:13:33 2009 +0530
3479
3480     spi: Add Marvell Kirkwood SPI driver
3481
3482     This patch adds a SPI driver for the Marvell Kirkwood SoC's.
3483
3484     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3485
3486 commit 6bde171a4c4116cee179167cb65335a28f99932d
3487 Author: Minkyu Kang <mk7.kang@samsung.com>
3488 Date:   Thu Jun 25 19:21:33 2009 +0900
3489
3490     s3c64xx: move the reset_cpu function
3491
3492     Because of the reset_cpu is soc specific, should be move to soc
3493     And read reset value from SYS_ID register instead of hard code
3494     this patch also supports s3c6410
3495
3496     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
3497
3498 commit 576afd4faeba1519bcb8c0083c3e4d45e5643a48
3499 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3500 Date:   Sun May 17 00:58:37 2009 +0200
3501
3502     integrator: merge integratorap and integratorcp
3503
3504     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3505     Acked-by: Peter Pearse <peter.pearse@arm.com>
3506
3507 commit 46937b27427688a56bf7f5944a92d962dc43c3fa
3508 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3509 Date:   Sun May 17 00:58:36 2009 +0200
3510
3511     integratorap/cp: use cfi driver
3512
3513     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3514     Acked-by: Peter Pearse <peter.pearse@arm.com>
3515
3516 commit de7a01abd8aeb167946f391327e1e0d1e01f90c9
3517 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3518 Date:   Sun May 17 00:58:36 2009 +0200
3519
3520     integratorap/cp/versatile: remove non used functions
3521
3522     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3523     Acked-by: Peter Pearse <peter.pearse@arm.com>
3524
3525 commit f54851a6e3844b7e01581b5a9681f294118b7529
3526 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3527 Date:   Sun May 17 00:58:36 2009 +0200
3528
3529     integratorcp: split timer support
3530
3531     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3532     Acked-by: Peter Pearse <peter.pearse@arm.com>
3533
3534 commit 2bcef0723ea11c4e9bfbcfff2a93ec2da520b5f1
3535 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3536 Date:   Sun May 17 00:58:36 2009 +0200
3537
3538     integratorap: split timer support
3539
3540     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3541     Acked-by: Peter Pearse <peter.pearse@arm.com>
3542
3543 commit 86baa085c52a7f3377a88074679c5aca9b9e4d38
3544 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3545 Date:   Sun May 17 00:58:36 2009 +0200
3546
3547     integratorap: split pci support
3548
3549     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3550     Acked-by: Peter Pearse <peter.pearse@arm.com>
3551
3552 commit 379e9fc0a319b8f6ae16d763590bf023f3afb87c
3553 Author: Ilya Yanok <yanok@emcraft.com>
3554 Date:   Mon Jun 8 04:12:50 2009 +0400
3555
3556     arm: add support for CONFIG_GENERIC_MMC
3557
3558     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
3559
3560 commit 47d19da4d3f9ac4787abe9dee32406478424be52
3561 Author: Ilya Yanok <yanok@emcraft.com>
3562 Date:   Mon Jun 8 04:12:46 2009 +0400
3563
3564     serial_mx31: allow it to work with mx27 too and rename to serial_mxc
3565
3566     UART hardware on i.MX27 is the same as on the i.MX31 so we just
3567     need to provide the driver with correct address of the registers.
3568
3569     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
3570
3571 commit 1dc4da749dbde27ec862f5b65703e8e4541fbba3
3572 Author: Ilya Yanok <yanok@emcraft.com>
3573 Date:   Mon Jun 8 04:12:45 2009 +0400
3574
3575     mx27: basic cpu support
3576
3577     This patch adds generic code to support Freescale's i.MX27 SoCs.
3578
3579     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
3580
3581 commit dd2f6965a6c71f6f711ec98827880152e022c236
3582 Author: Magnus Lilja <lilja.magnus@gmail.com>
3583 Date:   Sat Jun 13 20:50:03 2009 +0200
3584
3585     i.MX31: Create a common device file.
3586
3587     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
3588
3589 commit 958f7da7887fea4a2091ae60944d62c1708c2c55
3590 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3591 Date:   Sat Jun 13 20:50:02 2009 +0200
3592
3593     ARM: Add macros.h to be used in assembler file.
3594
3595     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3596
3597 commit 40c642bc19b9fa2906e3172487a522fee456340b
3598 Author: Magnus Lilja <lilja.magnus@gmail.com>
3599 Date:   Sat Jun 13 20:50:01 2009 +0200
3600
3601     MX31: Add NAND SPL for i.MX31.
3602
3603     This patch adds the NAND SPL framework needed to boot i.MX31 boards
3604     from NAND.
3605
3606     It has been tested on a i.MX31 PDK board with large page NAND. Small
3607     page NANDs should work as well, but this has not been tested.
3608
3609     Note: The i.MX31 NFC uses a non-standard layout for large page NANDs,
3610     whether this is compatible with a particular setup depends on how
3611     the NAND device is programmed by the flash programmer (e.g. JTAG
3612     debugger).
3613
3614     The patch is based on the work by Maxim Artamonov.
3615
3616     Signed-off-by: Maxim Artamonov <scn1874@yandex.ru>
3617     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
3618
3619 commit df81238b3e27a791da996a9208402ac8f40b9862
3620 Author: Magnus Lilja <lilja.magnus@gmail.com>
3621 Date:   Sat Jun 13 20:50:00 2009 +0200
3622
3623     ARM1136: Introduce CONFIG_PRELOADER macro.
3624
3625     Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's
3626     in start.S. In preparation for adding support for NAND SPL
3627     the macro CONFIG_PRELOADER is introducted and replaces the
3628     CONFIG_ONENAND_IPL in start.S.
3629
3630     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
3631
3632 commit 8096c51fd4e611ed666dbe77767e81af5d94fc7b
3633 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3634 Date:   Sat Jun 13 12:50:04 2009 +0200
3635
3636     at91: unify nor boot support
3637
3638     the lowlevel init sequence is the same so unify it
3639
3640     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3641
3642 commit 1b3b7c640d04df2ba9a9d947117d112a75fee7f4
3643 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3644 Date:   Sat Jun 13 12:48:36 2009 +0200
3645
3646     at91sam9263ek: add nor flash support
3647
3648     this will allow you to store use it for the env and to boot directly U-Boot from
3649
3650     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3651
3652 commit 329492329700812c6df275aa0fda09d609cd0fd4
3653 Author: Ilko Iliev <iliev@ronetix.at>
3654 Date:   Fri Jun 12 21:20:39 2009 +0200
3655
3656     at91: add support for the PM9261 board of Ronetix GmbH
3657
3658     The PM9261 board is based on the AT91SAM9261-EK board.
3659
3660     Here is the page on Ronetix website:
3661     http://www.ronetix.at/starter_kit_9261.html
3662
3663     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
3664     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3665
3666 commit 01550a2b650fbabc03334f9eadcc6083601a2414
3667 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3668 Date:   Fri Jun 12 21:20:38 2009 +0200
3669
3670     pm9263: use macro instead of hardcode value for the lowlevel_init
3671
3672     optimize a few the RAM init
3673
3674     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
3675     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3676
3677 commit 7a11c7f9747240dc770954d320569596c0fbcb50
3678 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3679 Date:   Fri Jun 12 21:20:37 2009 +0200
3680
3681     pm9263: lowlevel init update
3682
3683     move PSRAM init to pm9263.c
3684     this will allow us after to make the nor lowlevel_init generic
3685
3686     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3687
3688 commit 3e88337b225bf796f6df21d0a7f591530e9d4ce0
3689 Author: Mike Frysinger <vapier@gentoo.org>
3690 Date:   Mon Jun 15 00:25:19 2009 -0400
3691
3692     Blackfin: move ALL += u-boot.ldr to blackfin_config.mk
3693
3694     The way the ALL variable is used allows for config.mk's to add more
3695     targets themselves without having to clutter up the top level Makefile.
3696
3697     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3698
3699 commit afac8b07172d7e4a65f86ce1ec4c783a6165ba1f
3700 Author: Mike Frysinger <vapier@gentoo.org>
3701 Date:   Sun Jun 14 22:29:35 2009 -0400
3702
3703     Blackfin: fix SPI flash speed define name
3704
3705     The SPI flash define is named CONFIG_SF_DEFAULT_SPEED, not
3706     CONFIG_SF_DEFAULT_HZ, so fix the typos in the Blackfin boards.
3707
3708     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3709
3710 commit 9ae55ccf601de7a5b75eb418f3fc3d5eca92c106
3711 Author: Mike Frysinger <vapier@gentoo.org>
3712 Date:   Sun Jun 14 22:26:31 2009 -0400
3713
3714     Blackfin: enable -O2 in lib_generic/ for ADI/Bluetechnix boards
3715
3716     Building the compression code in lib_generic/ with -O2 rather than -Os
3717     gives a nice speed boost without too much code size increase.
3718
3719     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3720
3721 commit fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4
3722 Author: Mike Frysinger <vapier@gentoo.org>
3723 Date:   Sun Jun 14 21:23:27 2009 -0400
3724
3725     Blackfin: bf548-ezkit: bump up monitor size
3726
3727     The latest version of U-Boot got a bit fatter in the BSS section which
3728     caused overflows in the RAM region, so increase the monitor size.
3729
3730     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3731
3732 commit bc43a8d8994c2f0be29e09b13b15da7f79e2c081
3733 Author: Vivi Li <vivi.li@analog.com>
3734 Date:   Fri Jun 12 10:53:22 2009 +0000
3735
3736     Blackfin: bf533-stamp/bf537-stamp: fix env settings for SPI flash
3737
3738     The SPI flash layer is much stricter about sector usage than the eeprom
3739     layer we used to use, so update the env settings to better match the
3740     sector alignment of the flashes we use.
3741
3742     Signed-off-by: Vivi Li <vivi.li@analog.com>
3743     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3744
3745 commit 63cb0f4eb2d3cf15e7a1add19d1289f4ae75816c
3746 Author: Vivi Li <vivi.li@analog.com>
3747 Date:   Fri Jun 12 10:33:23 2009 +0000
3748
3749     Blackfin: bump up default JTAG console timeout
3750
3751     The debug tools that interface with the other side of the JTAG console
3752     got much slower when generalizing things, so bump up the default timeout
3753     value on the U-Boot side to cope.  Hopefully at some point we can improve
3754     the debug tools to speed things back up.
3755
3756     Signed-off-by: Vivi Li <vivi.li@analog.com>
3757     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3758
3759 commit c11ff779f4e0e0c7edc322e84dd229ad28709595
3760 Author: Mike Frysinger <vapier@gentoo.org>
3761 Date:   Mon Jun 1 19:08:33 2009 -0400
3762
3763     Blackfin: add jtagconsole helper script
3764
3765     This script is similar to the netconsole script, but instead works with
3766     the JTAG console device driver that exists on Blackfin parts.
3767
3768     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3769
3770 commit 60f61e6d7655400bb785a2ef637581679941f6d1
3771 Author: Remy Bohmer <linux@bohmer.net>
3772 Date:   Sat May 2 21:49:18 2009 +0200
3773
3774     Convert DM9000 driver for CONFIG_NET_MULTI
3775
3776     All drivers need to be converted to CONFIG_NET_MULTI.
3777     This patch converts the dm9000 driver.
3778
3779     Signed-off-by: Thomas Smits <ts.smits@gmail.com>
3780     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3781     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3782
3783 commit 9131589ada4dda0718604d0a425ca46e52775f6e
3784 Author: Prafulla Wadaskar <prafulla@marvell.com>
3785 Date:   Sun Jun 14 22:33:46 2009 +0530
3786
3787     net: Add Marvell Kirkwood gigabit ethernet driver
3788
3789     This patch adds a egiga driver for the Marvell Kirkwood SoC's.
3790
3791     Contributors:
3792     Yotam Admon <yotam@marvell.com>
3793     Michael Blostein <michaelbl@marvell.com
3794
3795     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
3796     Acked-by: Stefan Rose <sr@denx.de>
3797     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3798     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3799
3800 commit 7835f4b94927ecb5affd99aad62592108db606ad
3801 Author: s-paulraj@ti.com <s-paulraj@ti.com>
3802 Date:   Tue May 12 11:45:34 2009 -0400
3803
3804     DaVinci Network Driver Updates
3805
3806     Different flavours of DaVinci SOC's have differences in their EMAC IP
3807     This patch does the following
3808     1) Updates base addresses for DM365
3809     2) Updates MDIO frequencies for DM365 and DM646x
3810     3) Update EMAC wrapper registers for DM365 and DM646x
3811
3812     Patch applies to u-boot-net git. the EMAC driver itself
3813     will be updated shortly to add support for DM365 and DM646x
3814
3815     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3816     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3817
3818 commit 44578bea14e49035331a8f0e000e935e0d830ff4
3819 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
3820 Date:   Tue May 26 08:29:29 2009 -0400
3821
3822     Subject: [PATCH] [repost] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
3823
3824      From 584b5fbd4abfc43f920cc1c329633e03816e28be Mon Sep 17 00:00:00 2001
3825     From: Richard Retanubun <RichardRetanubun@RuggedCom.com>
3826     Date: Wed, 20 May 2009 18:26:01 -0400
3827     Subject: [PATCH] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
3828
3829     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
3830     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3831
3832 commit c9a2aab1512fb2d132670fff9c27656d2eb949cd
3833 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
3834 Date:   Thu Jun 4 09:39:48 2009 +0200
3835
3836     A VLAN tagged DHCP request/discover is 4 bytes short
3837
3838     The problem is that BOOTP_SIZE uses ETHER_HDR_SIZE which is 14 bytes.
3839     If sending a VLAN tagged frame (when env variable vlan is set) this
3840     should be VLAN_ETHER_HDR_SIZE=18 which is what NetSetEther returns.
3841
3842     Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
3843     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3844
3845 commit 6e0d2fc7fe0dcfa2f51ab8931d706940ee364193
3846 Author: Ben Warren <biggerbadderben@gmail.com>
3847 Date:   Tue Apr 28 16:39:19 2009 -0700
3848
3849     Remove support for non-CONFIG_NET_MULTI on PPC4xx EMAC
3850
3851     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3852
3853 commit 8453587ef9137daf98b7c9cf4f3b865f4039cea0
3854 Author: Ben Warren <biggerbadderben@gmail.com>
3855 Date:   Tue May 26 00:34:07 2009 -0700
3856
3857     Switched davinci_emac Ethernet driver to use newer API
3858
3859     Added CONFIG_NET_MULTI to all Davinci boards
3860     Removed all calls to Davinci network driver from board code
3861     Added cpu_eth_init() to cpu/arm926ejs/cpu.c
3862
3863     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3864
3865 commit 8cc13c13f1d154c8fa8fff56cea357ed38af76bf
3866 Author: Ben Warren <biggerbadderben@gmail.com>
3867 Date:   Mon Apr 27 23:19:10 2009 -0700
3868
3869     Initial cleanup of Davinci Ethernet driver
3870
3871      Removed pointless #ifdefs
3872      Moved functions around in file in preparation for switch to newer API
3873
3874     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3875
3876 commit 09cdd1b9b01450e91786d26ff3c866dc9c8d8d6b
3877 Author: Ben Warren <biggerbadderben@gmail.com>
3878 Date:   Tue May 26 00:17:59 2009 -0700
3879
3880     Moved Davinci Ethernet driver to drivers/net
3881
3882     This driver has been renamed davinci_emac.c
3883
3884     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3885
3886 commit 6f51deb7f298413cfcb0a36d24c97ef7dd69d48f
3887 Author: Prafulla Wadaskar <prafulla@marvell.com>
3888 Date:   Tue May 19 01:40:16 2009 +0530
3889
3890     Marvell MV88E61XX Switch Driver support
3891
3892     Chips supported:-
3893     1. 88E6161 6 port gbe swtich with 5 integrated PHYs
3894     2. 88E6165 6 port gbe swtich with 5 integrated PHYs
3895     2. 88E6132 3 port gbe swtich with 2 integrated PHYs
3896     Platform specific configuration supported for:-
3897     default or router port vlan configuration
3898     led_init configuration
3899     mdip/n polarity reversal configuration
3900
3901     Note: This driver is supported and tested against
3902     kirkwood egiga interface
3903
3904     Contributors:
3905     Yotam Admon <yotam@marvell.com>
3906     Michael Blostein <michaelbl@marvell.com
3907
3908     Reviewed by: Ronen Shitrit <rshitrit@marvell.com>
3909     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3910     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3911
3912 commit 091dc9f6adaf572b067ae91af92c4e7db33d7903
3913 Author: Zach LeRoy <zleroy@xes-inc.com>
3914 Date:   Fri May 22 10:26:33 2009 -0500
3915
3916     tsec: Add support for BCM5482S PHY
3917
3918     Signed-off-by: Zach LeRoy <zleroy@xes-inc.com>
3919     Acked-by: Kumar Gala <galak@kernel.crashing.org>
3920     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3921
3922 commit 9ff67e5e4c719556d57f136a6453f8e4798d85c0
3923 Author: Mike Frysinger <vapier@gentoo.org>
3924 Date:   Sun Jun 14 06:29:07 2009 -0400
3925
3926     Blackfin: unify u-boot linker scripts
3927
3928     All the Blackfin linker scripts were duplicated across the board dirs with
3929     no difference save from the semi-often used ENV_IS_EMBEDDED option.  So
3930     unify all of them in the lib_blackfin/ dir and for the few boards that
3931     need to embedded the environment directly, add a LDS_BOARD_TEXT define for
3932     them to customize via their board config file.  This is much simpler than
3933     forcing them to duplicate the rest of the linker script.
3934
3935     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3936
3937 commit f52efcae98cbb8a39f1d0535df8d9646a776af9e
3938 Author: Mike Frysinger <vapier@gentoo.org>
3939 Date:   Fri May 29 17:02:37 2009 -0400
3940
3941     Blackfin: bf518f-ezbrd: enable SST SPI flash driver
3942
3943     The BF51xF parts have an internal SST SPI flash, so make sure the driver is
3944     enabled by default so we can access it.
3945
3946     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3947
3948 commit f348ab85f741dc98b2d202c04b5f430eace94925
3949 Author: Mike Frysinger <vapier@gentoo.org>
3950 Date:   Fri Apr 24 17:22:40 2009 -0400
3951
3952     Blackfin: convert specific pre/post config headers to common method
3953
3954     The Blackfin port was using asm/blackfin-config-{pre,post}.h to setup
3955     common Blackfin board defines.  The common method now is to use config.h,
3956     so convert blackfin-config-post.h to that.  Rename the still Blackfin
3957     specific blackfin-config-pre.h to config-pre.h so the naming conventions
3958     at least line up.
3959
3960     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3961
3962 commit 7c7503ee6cd03c0f3b16e98d33d5aa23b30d65b1
3963 Author: Mike Frysinger <vapier@gentoo.org>
3964 Date:   Fri Apr 24 17:11:47 2009 -0400
3965
3966     Blackfin: enable LZMA for all ADI boards
3967
3968     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3969
3970 commit 0e63dc0679451d48f8b727c543ce48b488f7a33f
3971 Author: Mike Frysinger <vapier@gentoo.org>
3972 Date:   Mon Apr 13 05:52:45 2009 -0400
3973
3974     Blackfin: make default ADI env more flexible
3975
3976     Allow boards to easily override the root= and default bootcmd, allow
3977     people to tweak the file used in default bootcmds at runtime via one env
3978     var, and add a stock nandboot command.
3979
3980     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3981
3982 commit 0f52b560f19623ec651f9b9b40405d138ec251d3
3983 Author: Hoan Hoang <hnhoan@i-syst.com>
3984 Date:   Sun Jan 18 22:44:17 2009 -0500
3985
3986     Blackfin: ibf-dsp561: new board port
3987
3988     Signed-off-by: Hoan Hoang <hnhoan@i-syst.com>
3989     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3990
3991 commit 3088189a15d219c48fd7e71623ca4daa08b80b59
3992 Author: Mike Frysinger <vapier@gentoo.org>
3993 Date:   Sun Oct 12 23:28:33 2008 -0400
3994
3995     Blackfin: blackstamp: new board port
3996
3997     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3998
3999 commit 59ac9729700db1d4446c1a6db3ffe38398b7abb2
4000 Author: Mike Frysinger <vapier@gentoo.org>
4001 Date:   Sun Oct 12 23:22:25 2008 -0400
4002
4003     Blackfin: bf537-srv1: new board port
4004
4005     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4006
4007 commit d7fdc1410b5fa5ef623b35a283733b6bcee3753b
4008 Author: Mike Frysinger <vapier@gentoo.org>
4009 Date:   Sun Oct 12 23:16:52 2008 -0400
4010
4011     Blackfin: bf537-minotaur: new board port
4012
4013     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4014
4015 commit cb4b5e874f3c9b882a6f4394bbebbbd91fd01bbf
4016 Author: Mike Frysinger <vapier@gentoo.org>
4017 Date:   Sun Oct 12 23:08:03 2008 -0400
4018
4019     Blackfin: bf537-pnav: new board port
4020
4021     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4022
4023 commit 59e4be945b6469e31eee721e0bcdccf4940d75ac
4024 Author: Mike Frysinger <vapier@gentoo.org>
4025 Date:   Sun Oct 12 21:55:45 2008 -0400
4026
4027     Blackfin: cm-bf527: new board port
4028
4029     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4030
4031 commit 8b219cf07c186cc9d97354cf4b14f24a53d193c5
4032 Author: Mike Frysinger <vapier@gentoo.org>
4033 Date:   Sun Oct 12 21:54:07 2008 -0400
4034
4035     Blackfin: cm-bf548: new board port
4036
4037     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4038
4039 commit 9417d9a21384279308abe5b4dd8dfd418742484c
4040 Author: Mike Frysinger <vapier@gentoo.org>
4041 Date:   Sun Oct 12 21:49:28 2008 -0400
4042
4043     Blackfin: tcm-bf537: new board port
4044
4045     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4046
4047 commit e548321af00e869af7194896576beb9b68457ff7
4048 Author: Mike Frysinger <vapier@gentoo.org>
4049 Date:   Sun Oct 12 21:45:05 2008 -0400
4050
4051     Blackfin: cm-bf561: new board port
4052
4053     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4054
4055 commit 8a9bab08a6fe93e5f3bf57b90438f1d2a67fad3c
4056 Author: Mike Frysinger <vapier@gentoo.org>
4057 Date:   Sun Oct 12 21:41:06 2008 -0400
4058
4059     Blackfin: cm-bf537e: new board port
4060
4061     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4062
4063 commit e82d8a1f028bedb12c4ab88a35a935010d92898c
4064 Author: Mike Frysinger <vapier@gentoo.org>
4065 Date:   Sun Oct 12 21:36:22 2008 -0400
4066
4067     Blackfin: cm-bf533: new board port
4068
4069     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4070
4071 commit dd14af7640f7d48d8e9768eeeb09592e6f94ed38
4072 Author: Mike Frysinger <vapier@gentoo.org>
4073 Date:   Thu Nov 27 16:50:32 2008 -0500
4074
4075     Blackfin: new spibootldr command
4076
4077     Newer Blackfin parts can an on-chip ROM that can boot LDRs over SPI flashes,
4078     so add a new 'spibootldr' command to take advantage of it.
4079
4080     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4081
4082 commit 67c2829b646bb5b859088b36fbc89e971b9c1960
4083 Author: Mike Frysinger <vapier@gentoo.org>
4084 Date:   Mon Oct 6 04:42:33 2008 -0400
4085
4086     Blackfin: support embedding the environment into loader files (LDRs)
4087
4088     For the most part, the Blackfin processor boots files in the LDR format
4089     rather than binary/ELF files.  So we want to export the environment as a
4090     raw blob to the LDR utility so it can embed it at the right location.
4091
4092     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4093
4094 commit 31f30c9eb60d9ab0bd702e31f66345f99b34bdc6
4095 Author: Mike Frysinger <vapier@gentoo.org>
4096 Date:   Sun Jun 14 11:03:48 2009 -0400
4097
4098     add %.c->%.i and %.c->%.s rules
4099
4100     The Linux kernel has some helper rules which allow you to quickly produce
4101     some of the intermediary files from C source.  Specifically, you can
4102     create .i files which is the preprocessed output and you can create .s
4103     files which is the assembler output.  This is useful when you are trying
4104     to track down header/macro expansion errors or inline assembly errors.
4105
4106     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4107     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4108
4109 commit 6d1ce387874c1060f27656f70151a52c511cd0e3
4110 Author: Mike Frysinger <vapier@gentoo.org>
4111 Date:   Sat May 30 01:02:03 2009 -0400
4112
4113     make sure toplevel $(SUBDIRS) is always declared
4114
4115     The $(SUBDIRS) variable is only declared when U-Boot has been configured,
4116     but it gets used all the time.  In the non-configured case, it is used to
4117     generate a helpful error message, but it needs to be set properly for that
4118     to occur.
4119
4120     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4121
4122 commit 1260233982f7dfbdfd1adee12daa95a0c0e84a43
4123 Author: Grzegorz Bernacki <gjb@semihalf.com>
4124 Date:   Fri Jun 12 11:33:55 2009 +0200
4125
4126     digsy mtc: Add description to GPIO initial configuration.
4127
4128     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
4129
4130 commit 12304871bc7839145f2b4238923e9023616d7399
4131 Author: Grzegorz Bernacki <gjb@semihalf.com>
4132 Date:   Fri Jun 12 11:33:54 2009 +0200
4133
4134     digsy MTC: Add 'mtc' command.
4135
4136     New command allows to:
4137          o check FW version
4138          o set LED status
4139          o set digital output status
4140          o get digital input status
4141
4142     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
4143
4144 commit f1f66edfc76f4a9f5b9f63972d90309784a8cae5
4145 Author: Grzegorz Bernacki <gjb@semihalf.com>
4146 Date:   Fri Jun 12 11:33:53 2009 +0200
4147
4148     digsy MTC: Add SPI support.
4149
4150     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
4151
4152 commit 6325b7780dad8be26ba6fc25ef88ba338c50205b
4153 Author: Grzegorz Bernacki <gjb@semihalf.com>
4154 Date:   Fri Jun 12 11:33:52 2009 +0200
4155
4156     mpc52xx: Add SPI driver.
4157
4158     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
4159
4160 commit 5ec5529b82f314ca2cf9c262cdfc985d5fc468a0
4161 Author: Mike Frysinger <vapier@gentoo.org>
4162 Date:   Sun Jun 14 09:33:00 2009 -0400
4163
4164     allow boards to customize compiler options on a per-file/dir basis
4165
4166     With our Blackfin boards, we like to build the compression routines with
4167     -O2 as our tests show a pretty good size/speed tradeoff.  For the rest of
4168     U-Boot though, we want to stick with the default -Os as that is mostly
4169     control code.  So in our case, we would add a line like so to the board
4170     specific config.mk file:
4171         CFLAGS_lib_generic += -O2
4172
4173     Now all files under lib_generic/ will have -O2 appended to their build.
4174
4175     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4176     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4177
4178 commit 6b1f78ae6ad037382ad430b07064105c88f7ac02
4179 Author: Wolfgang Denk <wd@denx.de>
4180 Date:   Sun Jun 14 21:30:39 2009 +0200
4181
4182     Prepare v2009.06
4183
4184     Update CHANGELOG, fix minor coding stylke issue. Update Makefile.
4185
4186     Signed-off-by: Wolfgang Denk <wd@denx.de>
4187
4188 commit c3147c1762f8caf99649051116a2411bdf887c10
4189 Author: Wolfgang Denk <wd@denx.de>
4190 Date:   Sun Jun 14 20:31:36 2009 +0200
4191
4192     Revert "SMC911x driver fixed for NFS boot"
4193
4194     This reverts commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43,
4195     which causes compile warnings ("large integer implicitly truncated
4196     to unsigned type") on all systems that use this driver. The warning
4197     results from passing long constants (TX_CFG, RX_CFG) into
4198     smc911x_set_mac_csr() which is declared to accept "unsigned
4199     character" arguments only.
4200
4201     Being close to a release, with nobody available to actually test the
4202     code or the suggested fixes, it seems better to revert the patch.
4203
4204 commit 388517e4b745b00256c2fa201ce7bccb67b4f245
4205 Author: Peter Tyser <ptyser@xes-inc.com>
4206 Date:   Fri May 22 10:26:37 2009 -0500
4207
4208     xes: Update Freescale clock code to work with 86xx processors
4209
4210     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4211     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4212
4213 commit 25623937bb81cae788d767e6c59a11c96fc82866
4214 Author: Peter Tyser <ptyser@xes-inc.com>
4215 Date:   Fri May 22 10:26:36 2009 -0500
4216
4217     xes: Update Freescale DDR code to work with 86xx processors
4218
4219     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4220     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4221
4222 commit bef3013908bbc68f24084174a3ca86cc2a3eb986
4223 Author: Peter Tyser <ptyser@xes-inc.com>
4224 Date:   Fri May 22 10:26:35 2009 -0500
4225
4226     xes: Update Freescale PCI code to work with 86xx processors
4227
4228     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4229     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4230
4231 commit 6442b71b522face775c1c31bd43121db3b4bf7d6
4232 Author: Peter Tyser <ptyser@xes-inc.com>
4233 Date:   Fri May 22 10:26:32 2009 -0500
4234
4235     85xx: Add PORBMSR and PORDEVSR shift defines
4236
4237     Add defines similar to those already used for the the 86xx architecture.
4238     This will ease sharing of PCI code between the 85xx and 86xx
4239     architectures.
4240
4241     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4242     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4243
4244 commit 2f21ce4d546d31289ac49a680f78bcc9a792c6ec
4245 Author: Peter Tyser <ptyser@xes-inc.com>
4246 Date:   Thu May 21 12:10:00 2009 -0500
4247
4248     fsl/85xx, 86xx: Sync up DMA code
4249
4250     The following changes were made to sync up the DMA code between the 85xx
4251     and 86xx architectures which will make it easier to break out common
4252     8xxx DMA code:
4253
4254     85xx:
4255     - Don't set STRANSINT and SPCIORDER fields in SATR register.  These bits
4256       only have an affect when the SBPATMU bit is set.
4257     - Write 0xffffffff instead of 0xfffffff to clear errors in the DMA
4258       status register.  We may as well clear all 32 bits of the register...
4259
4260     86xx:
4261     - Add CONFIG_SYS_MPC86xx_DMA_ADDR define to address DMA registers
4262     - Add clearing of errors in the DMA status register when initializing
4263       the controller
4264     - Clear the channel start bit in the DMA mode register after a transfer
4265
4266     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4267     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4268
4269 commit b1f12650d332eadac1306a772cab6096abee6ddd
4270 Author: Peter Tyser <ptyser@xes-inc.com>
4271 Date:   Thu May 21 12:09:59 2009 -0500
4272
4273     fsl: Create common fsl_dma.h for 85xx and 86xx cpus
4274
4275     Break out DMA structures for the Freescale MPC85xx and MPC86xx cpus to
4276     reduce a large amount of code duplication
4277
4278     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4279     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4280
4281 commit 3bd8e532b5de20647aeaff94a1cbf33fb8b897b9
4282 Author: Haiying Wang <Haiying.Wang@freescale.com>
4283 Date:   Wed May 20 12:30:41 2009 -0400
4284
4285     85xx: Add UEC6 and UEC8 at SGMII mode for MPC8569MDS
4286
4287     On MPC8569MDS board, UCC6 and UCC8 can be configured to work at SGMII mode via
4288     UEM on PB board. Since MPC8569 supports up to 4 Gigabit Ethernet ports, we
4289     disable UEC6 and UEC8 by default.
4290
4291     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4292     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4293
4294 commit e8efef7c1b457442583a8b9d38d8a5b667661616
4295 Author: Haiying Wang <Haiying.Wang@freescale.com>
4296 Date:   Thu Jun 4 16:12:42 2009 -0400
4297
4298     drivers/qe: add sgmii support in for UEC driver
4299
4300     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4301     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4302
4303 commit 8e55258f144764de8902e9f078a7ad4c6c022c2f
4304 Author: Haiying Wang <Haiying.Wang@freescale.com>
4305 Date:   Thu Jun 4 16:12:41 2009 -0400
4306
4307     qe: Pass in uec_info struct through uec_initialize
4308
4309     The uec driver contains code to hard code configuration information for the uec
4310     ethernet controllers. This patch creates an array of uec_info structures, which
4311     are then parsed by the corresponding driver instance to determine configuration.
4312     It also creates function uec_standard_init() to initialize all UEC interfaces
4313     for 83xx and 85xx.
4314
4315     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4316     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4317
4318 commit 9a6110897fc9282ade598bbba70ad72b940436e3
4319 Author: Haiying Wang <Haiying.Wang@freescale.com>
4320 Date:   Thu Jun 4 16:12:40 2009 -0400
4321
4322     fsl: Update the number of ethxaddr in reading system eeprom
4323
4324     We support up to 8 mac addresses in system eeprom, so we define the macro
4325     MAX_NUM_PORTS to limit the mac_count to 8, and update the number of ethxaddr
4326     according to mac_count.
4327
4328     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4329     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4330
4331 commit f82107f637f167a77803c0933f9b24741a91c711
4332 Author: Haiying Wang <Haiying.Wang@freescale.com>
4333 Date:   Wed May 20 12:30:37 2009 -0400
4334
4335     85xx: Add RMII support for MPC8569MDS
4336
4337     This patch supports UCC working at RMII mode on PIB board, fixup fdt blob to
4338     support rmii in kernel. It also changes the name of enable_mpc8569mds_qe_mdio to
4339     enalbe_mpc8569mds_qe_uec which is  more accurate.
4340
4341     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4342     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4343
4344 commit 750098d33bc362ac4263863e92da158cf011063f
4345 Author: Haiying Wang <Haiying.Wang@freescale.com>
4346 Date:   Wed May 20 12:30:36 2009 -0400
4347
4348     85xx: Add UEC3 and UEC4 support for MPC8569MDS
4349
4350     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4351     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4352
4353 commit 4e7b25e4fe777f525e426cbd58c3a3976c564f2e
4354 Author: Haiying Wang <Haiying.Wang@freescale.com>
4355 Date:   Wed May 20 12:30:35 2009 -0400
4356
4357     drivers/qe: Add more SNUM number for QE
4358
4359     Some QE chips like 8569 need more SNUM numbers for supporting 4 UECs in RGMII-
4360     1000 mode.
4361
4362     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4363     Acked-by: Timur Tabi <timur@freescale.com>
4364     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4365
4366 commit 7211fbfa18f3061858696150ee6e9e093d9eceae
4367 Author: Haiying Wang <Haiying.Wang@freescale.com>
4368 Date:   Thu May 21 15:34:14 2009 -0400
4369
4370     drivers/qe: Change QE RISC ALLOCATION to support 4 RISCs
4371
4372     Also define the QE_RISC_ALLOCATION_RISCs to MACROs instead of using enum, and
4373     define MAX_QE_RISC for QE based silicons.
4374
4375     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4376     Acked-by: Timur Tabi <timur@freescale.com>
4377     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4378
4379 commit b3d7f20f43a0f8d11c65e2f92153b5512b11580c
4380 Author: Haiying Wang <Haiying.Wang@freescale.com>
4381 Date:   Wed May 20 12:30:29 2009 -0400
4382
4383     85xx: Add QE clk support
4384
4385     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4386     Acked-by: Timur Tabi <Timur@freescale.com>
4387     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4388
4389 commit 71b358cc26792889bbac35054d8e89d59b3fabc4
4390 Author: Kumar Gala <galak@kernel.crashing.org>
4391 Date:   Wed May 20 01:11:33 2009 -0500
4392
4393     85xx: Added MPC8535/E identifiers
4394
4395     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4396
4397 commit 22419d77976bbd0df9fcf45513f1b96bd73e50d1
4398 Author: Kumar Gala <galak@kernel.crashing.org>
4399 Date:   Thu May 21 08:36:43 2009 -0500
4400
4401     85xx: Always attempt ethernet device tree fixup
4402
4403     Its reasonable that we may have ethernet devices but dont have drivers
4404     or support enabled for them in u-boot and want the device tree fixed up.
4405     Unconditionally calling the ethernet fixup is fine since if we dont have
4406     ethernet nodes that match (or aliases) we will not attempt to do
4407     anything.
4408
4409     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4410     Acked-by: Timur Tabi <timur@freescale.com>
4411
4412 commit 52d6ad5ecfb22938441c8e3e62935fbd7b0f0920
4413 Author: Haiying Wang <Haiying.Wang@freescale.com>
4414 Date:   Thu May 21 15:32:13 2009 -0400
4415
4416     drivers/qe: Rename the camel-case identifiers in uec
4417
4418     Rename riscRx/riscTx to risc_rx/risc_tx to comply with Codingstyle.
4419
4420     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4421
4422 commit feb7838f979ec2b581df3c791b9ae3284c36bb47
4423 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
4424 Date:   Fri Apr 3 15:36:13 2009 -0500
4425
4426     85xx: Add P2020DS support
4427
4428     The patch adds support for P2020DS reference platform.
4429     DDR3 interface uses hard-coded initialization rather than SPD
4430     for now and was tested at 667Mhz. Some PIXIS register
4431     definitions and associated code sections need to be fixed.
4432     TSEC1/2/3, NOR flash, MAC/SYS ID EEPROM, PCIE1/2/3 are all
4433     tested under u-boot.
4434
4435     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
4436     Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
4437     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4438
4439 commit 229549a56d9ae413c00f64fd7c728c6879a1b54b
4440 Author: Stefan Roese <sr@denx.de>
4441 Date:   Tue Jun 9 16:57:47 2009 +0200
4442
4443     mpc512x: MPC5121ADS: Add NAND support
4444
4445     This patch adds NAND support to the MPC5121ADS board. Please
4446     note that the image size increased since NAND support didn't
4447     fit in the current image size (256k).
4448
4449     Signed-off-by: Stefan Roese <sr@denx.de>
4450     Signed-off-by: Wolfgang Denk <wd@denx.de>
4451     Cc: Wolfgang Denk <wd@denx.de>
4452
4453 commit 35f2edbb6cad043ccd5ea6e78fe9b7aa21d8395f
4454 Author: Stefan Roese <sr@denx.de>
4455 Date:   Tue Jun 9 16:57:03 2009 +0200
4456
4457     nand/mpc512x: Add MPC512x NAND support (NFC)
4458
4459     This patch adds NAND Flash Controller driver for MPC5121 revision 2.
4460     All device features, except hardware ECC and power management, are
4461     supported.
4462
4463     This NFC driver replaces the one orignally posted by John Rigby:
4464
4465     "[PATCH] Freescale NFC NAND driver"
4466
4467     It's a port of the Linux driver version posted by Piotr Ziecik a few
4468     weeks ago. Using this driver has the following advantages (from my
4469     point of view):
4470
4471     - Compatibility with the Linux NAND driver (e.g. ECC usage)
4472     - Better code quality in general
4473     - Resulting U-Boot image is a bit smaller (approx. 3k)
4474     - Better to sync with newer Linux driver versions
4475
4476     The only disadvantage I can see, is that HW-ECC is not supported right
4477     now. But this could be added later (e.g. port from Linux driver after
4478     it's supported there). Using HW-ECC on the MCP5121 NFC has a general
4479     problem because of the ECC usage in the spare area. This collides with
4480     JFFS2 for example.
4481
4482     Signed-off-by: Stefan Roese <sr@denx.de>
4483     Cc: Piotr Ziecik <kosmo@semihalf.com>
4484     Cc: Wolfgang Denk <wd@denx.de>
4485     Cc: John Rigby <jcrigby@gmail.com>
4486     Cc: Scott Wood <scottwood@freescale.com>
4487
4488 commit e53b507cee5d976953134a565c72fd32c967d7dd
4489 Author: Stefan Roese <sr@denx.de>
4490 Date:   Tue Jun 9 11:50:40 2009 +0200
4491
4492     mpc512x: Add esd gmbh mecp5123 board support
4493
4494     MECP5123 is a MPC5121E based module by esd gmbh.
4495
4496     Signed-off-by: Stefan Roese <sr@denx.de>
4497     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4498
4499 commit 6bd55cc65d0c3aa84d719518254fb3c650239ed9
4500 Author: Stefan Roese <sr@denx.de>
4501 Date:   Tue Jun 9 11:50:05 2009 +0200
4502
4503     mcp512x: Add macros for SCFR LPC divisor access
4504
4505     Thos macros will be used by the esd mecp5123 board.
4506
4507     Signed-off-by: Stefan Roese <sr@denx.de>
4508
4509 commit c60dc8527dbb2a1318c03bc18bdebcfbd0164551
4510 Author: Stefan Roese <sr@denx.de>
4511 Date:   Mon Jun 8 09:38:07 2009 +0200
4512
4513     mpc512x: Fix problem with I2C access before relocation
4514
4515     This is needed for the upcoming esd MECP5123 board port which uses
4516     I2C EEPROM for environment storage.
4517
4518     Signed-off-by: Stefan Roese <sr@denx.de>
4519     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4520     Acked-by: Heiko Schocher<hs@denx.de>
4521
4522 commit 58f10460b05e0928d986b15edd4f2e1e99403f7e
4523 Author: Stefan Roese <sr@denx.de>
4524 Date:   Thu Jun 4 13:35:39 2009 +0200
4525
4526     74xx_7xx: CPCI750: Add CPCI adapter/target support
4527
4528     The CPCI750 can be built as CPCI host or adapter/target board. This patch
4529     adds support for runtime detection of those variants.
4530
4531     Signed-off-by: Stefan Roese <sr@denx.de>
4532     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4533
4534 commit ae7a2739d7a0704437376e229bb21940952c55be
4535 Author: Stefan Roese <sr@denx.de>
4536 Date:   Fri Jun 5 05:45:41 2009 +0200
4537
4538     74xx_7xx: CPCI750: Enable access to PCI function > 0
4539
4540     The Marvell bridge 64360 supports serveral PCI functions, not only 0. This
4541     patch enables access to those functions.
4542
4543     Signed-off-by: Stefan Roese <sr@denx.de>
4544     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4545
4546 commit e5b563e9ec54c3f6d702c8fa2b711b4a6150243a
4547 Author: Stefan Roese <sr@denx.de>
4548 Date:   Thu Jun 4 13:35:37 2009 +0200
4549
4550     74xx_7xx: CPCI750: Minor coding style cleanup of cpci750.c
4551
4552     Signed-off-by: Stefan Roese <sr@denx.de>
4553     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4554
4555 commit 0e5ef07d0d91bd3d87ebea0534f538561aa974d5
4556 Author: Stefan Roese <sr@denx.de>
4557 Date:   Thu Jun 4 13:35:36 2009 +0200
4558
4559     74xx_7xx: CPCI750: Add loadpci command
4560
4561     This command is used to load/boot an OS-image which is transferred from
4562     the CPCI host to the CPCI target/adapter.
4563
4564     Signed-off-by: Stefan Roese <sr@denx.de>
4565     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4566
4567 commit 0a14d6b8f4d21ff59a9b7686a49a77069a9fcd2a
4568 Author: Stefan Roese <sr@denx.de>
4569 Date:   Thu Jun 4 13:35:35 2009 +0200
4570
4571     74xx_7xx: CPCI750: Add commandline editing/history
4572
4573     Signed-off-by: Stefan Roese <sr@denx.de>
4574     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4575
4576 commit 60cfe87bd39e6f07f2b92eb4bff82bfd105f4724
4577 Author: Stefan Roese <sr@denx.de>
4578 Date:   Thu Jun 4 16:55:34 2009 +0200
4579
4580     UBI: Add compile-time check for correct malloc area configuration
4581
4582     UBI is quite memory greedy and requires at least approx. 512k of malloc
4583     area. This patch adds a compile-time check, so that boards will not
4584     build with less memory reserved for this area (CONFIG_SYS_MALLOC_LEN).
4585
4586     Signed-off-by: Stefan Roese <sr@denx.de>
4587
4588 commit 7ce6031afc8671c8b47c6135b3678d43fcd02852
4589 Author: Prafulla Wadaskar <prafulla@marvell.com>
4590 Date:   Mon Apr 6 21:24:43 2009 +0530
4591
4592     sf: new Macronix MX25xx SPI flash driver
4593
4594     Added macronix SF driver for MTD framework
4595     MX25L12805D is supported and tested
4596     TBD: sector erase implementation, other deivces support
4597
4598     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
4599     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4600
4601 commit 2a6cc58869305f346e389eefdfa96dea5146cb0c
4602 Author: Todor I Mollov <tmollov@ucsd.edu>
4603 Date:   Sat Apr 4 07:14:44 2009 -0400
4604
4605     sf: atmel: implement power-of-two write/erase funcs
4606
4607     Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
4608     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4609     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4610
4611 commit 4bc6eb79be2a7317425575184324b94e3b43fbc2
4612 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
4613 Date:   Mon May 25 17:23:18 2009 +0530
4614
4615     mpc85xx: 8536ds: Add USB related CONFIGs
4616
4617     This patch adds CONFIGs for enabling USB in mpc8536ds and also
4618     adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
4619     Copyright.
4620
4621     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
4622     Signed-off-by: Remy Bohmer <linux@bohmer.net>
4623
4624 commit 6823e9b01290977c4d9c90381459c01f66e12e79
4625 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
4626 Date:   Mon May 25 17:23:17 2009 +0530
4627
4628     mpc83xx: 8315erdb: Add USB related CONFIGs
4629
4630     This patch adds CONFIGs for enabling USB in mpc8315erdb and also
4631     adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
4632     Copyright.
4633
4634     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
4635     Signed-off-by: Remy Bohmer <linux@bohmer.net>
4636
4637 commit a07bf180efc3c0de4a89a3bd49a7c7584dfb95a8
4638 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
4639 Date:   Thu May 21 17:32:48 2009 +0530
4640
4641     mpc85xx: USB: Add support
4642
4643     The following patch adds 85xx-specific USB support and also
4644     revamps Copyright in immap_85xx.h
4645
4646     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
4647     Signed-off-by: Remy Bohmer <linux@bohmer.net>
4648
4649 commit 4ef01010aa4799c759d75e67007fdd3a38c88c8a
4650 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
4651 Date:   Mon May 25 17:23:16 2009 +0530
4652
4653     mpc83xx: USB: Reorganized its support
4654
4655     The following patch reorganizes/reworks the USB support for mpc83xx
4656     as under:-
4657
4658       * Moves the 83xx USB clock init from drivers/usb/host/ehci-fsl.c to
4659         cpu/mpx83xx/cpu_init.c
4660
4661       * Board specific usb_phy_type is read from the environment
4662
4663       * Adds USB EHCI specific structure in include/usb/ehci-fsl.h
4664
4665       * Copyrights revamped in most of the following files
4666
4667     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
4668     Signed-off-by: Remy Bohmer <linux@bohmer.net>
4669
4670 commit ed90d2c87158e5114b6009fa95bb6417e4b27b3e
4671 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
4672 Date:   Thu May 21 17:32:27 2009 +0530
4673
4674     mpc8xxx: USB: Relocates ehci-fsl.h to include/usb
4675
4676     The following patch moves 8xxx-specifc USB #defines from
4677     drivers/usb/host/ehci-fsl.h to include/usb.
4678
4679     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
4680     Signed-off-by: Remy Bohmer <linux@bohmer.net>
4681
4682 commit cfd39cdf9422d3d25e9b3c058865f4c1f66f34da
4683 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
4684 Date:   Thu May 21 17:32:15 2009 +0530
4685
4686     mpc8xxx: USB: Removed reenablement of its interface
4687
4688     To prepare for the 85xx USB support, which requires interface enablement
4689     only once in (specified) order, no different than instructions for
4690     enabling the interface under 83xx.  It is unknown why the original author
4691     enabled the interface twice (checked for references in errata, etc).
4692
4693     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
4694     Signed-off-by: Remy Bohmer <linux@bohmer.net>
4695
4696 commit 2c7920afaf96d9779304202cd8a355b4f7576a83
4697 Author: Peter Tyser <ptyser@xes-inc.com>
4698 Date:   Fri May 22 17:23:25 2009 -0500
4699
4700     83xx: Replace CONFIG_MPC83[0-9]X with MPC83[0-9]x
4701
4702     Use the standard lowercase "x" capitalization that other Freescale
4703     architectures use for CPU defines to prevent confusion and errors
4704
4705     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4706     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4707
4708 commit 0f898604945af4543c1525fc33b6bae621a3b805
4709 Author: Peter Tyser <ptyser@xes-inc.com>
4710 Date:   Fri May 22 17:23:24 2009 -0500
4711
4712     83xx: Replace CONFIG_MPC83XX with CONFIG_MPC83xx
4713
4714     Use the standard lowercase "xx" capitalization that other Freescale
4715     architectures use for CPU defines to prevent confusion and errors
4716
4717     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4718     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4719
4720 commit ba4feae90ca71de1681d5808f17e73224d8f03c4
4721 Author: Stefan Roese <sr@denx.de>
4722 Date:   Tue Jun 2 16:53:16 2009 +0200
4723
4724     mpc512x: Use serial_setbrg() in serial_init() to not duplicate the code
4725
4726     This patch removes the duplicated code for baudrate generator configuration
4727     in the PSC serial_init() implementation by calling serial_setbrg() instead
4728     of duplicating the code.
4729
4730     Signed-off-by: Stefan Roese <sr@denx.de>
4731
4732 commit b8c1d6a54ff8195488b68e163de8ec31f1603496
4733 Author: Stefan Roese <sr@denx.de>
4734 Date:   Tue Jun 2 16:53:15 2009 +0200
4735
4736     mpc512x: Fix PSC divisor calculation for baudrate setting
4737
4738     The wrong input frequency was used in serial_setbrg(). This patch fixes
4739     this by using ips_clk as input frequency for the PSC baudrate generator.
4740
4741     Signed-off-by: Stefan Roese <sr@denx.de>
4742
4743 commit 52568c3654b2b257016d52167805ae132faac14e
4744 Author: Wolfgang Denk <wd@denx.de>
4745 Date:   Sat May 16 10:47:46 2009 +0200
4746
4747     MPC512x: add support for ARIA board
4748
4749     ARIA is a MPC5121E based COM Express module by Dave/DENX.
4750
4751     Signed-off-by: Wolfgang Denk <wd@denx.de>
4752     Cc: John Rigby <jcrigby@gmail.com>
4753
4754 commit 3b74e7ec58e2cc352b0a396a614065cfeb8d138f
4755 Author: Wolfgang Denk <wd@denx.de>
4756 Date:   Sat May 16 10:47:45 2009 +0200
4757
4758     MPC512x: remove include/mpc512x.h
4759
4760     Move needed definitions (register descriptions etc.) from
4761     include/mpc512x.h  into  include/asm-ppc/immap_512x.h.
4762
4763     Instead of using a #define'd register offset, use a function that
4764     provides the PATA controller's base address.
4765
4766     All the rest of include/mpc512x.h are register offset definitions
4767     which can be eliminated by proper use of C structures.
4768
4769     There are only a few register offsets remaining that are needed in
4770     cpu/mpc512x/start.S; for these we provide cpu/mpc512x/asm-offsets.h
4771     which is intended as a temporary workaround only. In a later patch
4772     this file will be removed, too, and then auto-generated from the
4773     respective C structs.
4774
4775     Signed-off-by: Wolfgang Denk <wd@denx.de>
4776     Cc: John Rigby <jcrigby@gmail.com>
4777
4778 commit a927e491b2a326c1e9c4313e3ce4042988422697
4779 Author: Wolfgang Denk <wd@denx.de>
4780 Date:   Sat May 16 10:47:44 2009 +0200
4781
4782     MPC512x FEC: get rid of duplicated struct ethernet_regs
4783
4784     Use existing struct fec512x instead.
4785
4786     Signed-off-by: Wolfgang Denk <wd@denx.de>
4787     Cc: John Rigby <jcrigby@gmail.com>
4788     Acked-by: Ben Warren <biggerbadderben@gmail.com>
4789
4790 commit 843efb1192cc8fd4f904a23dbab4e0fe3e1c5bc2
4791 Author: Wolfgang Denk <wd@denx.de>
4792 Date:   Sat May 16 10:47:43 2009 +0200
4793
4794     MPC512x: use I/O accessors instead of pointer accesses
4795
4796     This commit changes the MPC512x code to use I/O accessor calls (i.e.
4797     out_*() and in_*()) instead of using deprecated pointer accesses.
4798
4799     Signed-off-by: Wolfgang Denk <wd@denx.de>
4800     Cc: John Rigby <jcrigby@gmail.com>
4801
4802 commit 19dc7e179268be148e550c36203208c662610d76
4803 Author: Wolfgang Denk <wd@denx.de>
4804 Date:   Sat May 16 10:47:42 2009 +0200
4805
4806     MPC512x: add more hardware description to immap_512x.h
4807
4808     - add GPIO module description
4809     - add Address Latch Timing Register description
4810     - add IO Control Memory Map
4811     - add FEC Memory Map
4812
4813     Also change board/freescale/mpc5121ads/mpc5121ads.c and
4814     cpu/mpc512x/iopin.c as needed.
4815
4816     Signed-off-by: Wolfgang Denk <wd@denx.de>
4817     Cc: John Rigby <jcrigby@gmail.com>
4818
4819 commit 72601d04fdfdd4c7597afcf1f6aab654bd99366c
4820 Author: Wolfgang Denk <wd@denx.de>
4821 Date:   Sat May 16 10:47:41 2009 +0200
4822
4823     Rename ads5121 board into mpc5121ads
4824
4825     We rename the board so we use a consistent name in U-Boot and in
4826     Linux.  Also, we use this opportunity to move the board into the
4827     Freecale vendor directory.
4828
4829     Signed-off-by: Wolfgang Denk <wd@denx.de>
4830     Cc: John Rigby <jcrigby@gmail.com>
4831
4832 commit debf87415579c0f50aab9e0832976d4506babe0f
4833 Author: Wolfgang Denk <wd@denx.de>
4834 Date:   Sat May 16 10:47:40 2009 +0200
4835
4836     cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type
4837
4838     Signed-off-by: Wolfgang Denk <wd@denx.de>
4839     Cc: John Rigby <jcrigby@gmail.com>
4840
4841 commit 8b251263191ec554967dd1add6237c1ba7f7eb25
4842 Author: Wolfgang Denk <wd@denx.de>
4843 Date:   Sat May 16 10:47:39 2009 +0200
4844
4845     cpu/mpc512x/pci.c: minor coding style cleanup
4846
4847     Get rid of variable declaration in the middle of the code.
4848
4849     Signed-off-by: Wolfgang Denk <wd@denx.de>
4850     Cc: John Rigby <jcrigby@gmail.com>
4851
4852 commit de26ef99bddbce4ed225f93afcf0bee99c3b6f87
4853 Author: Wolfgang Denk <wd@denx.de>
4854 Date:   Sat May 16 10:47:38 2009 +0200
4855
4856     mpc512x: Move common files to share them by several boards
4857
4858     We will soon see several new MPC521x based boards added.  This patch
4859     moves files that are not board specific to a common directory so they
4860     can be shared by all such ports.  It also splits off common IDE code
4861     into a new file, cpu/mpc512x/ide.c .
4862
4863     Signed-off-by: Wolfgang Denk <wd@denx.de>
4864     Cc: John Rigby <jcrigby@gmail.com>
4865
4866 commit 03e069dc0a765d506f78a68319acf33d432e035b
4867 Author: Wolfgang Denk <wd@denx.de>
4868 Date:   Sat May 16 10:47:37 2009 +0200
4869
4870     mpc512x: change cpu/mpc512x/Makefile to use Kconfig style
4871
4872     Signed-off-by: Wolfgang Denk <wd@denx.de>
4873     Cc: John Rigby <jcrigby@gmail.com>
4874
4875 commit a89c33db96a1e55319a286dd4c3c05ca64ac6bfd
4876 Author: Wolfgang Denk <wd@denx.de>
4877 Date:   Sun May 24 17:06:54 2009 +0200
4878
4879     General help message cleanup
4880
4881     Many of the help messages were not really helpful; for example, many
4882     commands that take no arguments would not print a correct synopsis
4883     line, but "No additional help available." which is not exactly wrong,
4884     but not helpful either.
4885
4886     Commit ``Make "usage" messages more helpful.'' changed this
4887     partially. But it also became clear that lots of "Usage" and "Help"
4888     messages (fields "usage" and "help" in struct cmd_tbl_s respective)
4889     were actually redundant.
4890
4891     This patch cleans this up - for example:
4892
4893     Before:
4894         => help dtt
4895         dtt - Digital Thermometer and Thermostat
4896
4897         Usage:
4898         dtt         - Read temperature from digital thermometer and thermostat.
4899
4900     After:
4901         => help dtt
4902         dtt - Read temperature from Digital Thermometer and Thermostat
4903
4904         Usage:
4905         dtt
4906
4907     Signed-off-by: Wolfgang Denk <wd@denx.de>
4908
4909 commit 94796d8544d4248028141bad11c6a74b840e9d6e
4910 Author: Wolfgang Denk <wd@denx.de>
4911 Date:   Sun May 24 19:17:29 2009 +0200
4912
4913     Make "usage" messages more helpful.
4914
4915     In case of incorrect command invocations U-Boot used to print pretty
4916     useless "usage" messages, for example:
4917
4918         => nand markbad
4919         Usage:
4920         nand - NAND sub-system
4921
4922     In the result, the user would have to run the "help" command to get
4923     the (available) information about correct command usage. Change this,
4924     so that this information gets always printed.
4925
4926     Note that this changes the user interface of all commands, but
4927     hopefully to the better.
4928
4929     Signed-off-by: Wolfgang Denk <wd@denx.de>
4930
4931 commit 4c94f6c54bbc4dc5f418da01d8ec01e2adf636be
4932 Author: Mike Frysinger <vapier@gentoo.org>
4933 Date:   Sun May 24 02:26:19 2009 -0400
4934
4935     nvedit: speed up printing of environment
4936
4937     The printing code would check the same environment byte multiple times and
4938     write to the console one byte at a time.  For some devices (such as the
4939     Blackfin JTAG console which operates in 8 bytes at a time), this is pretty
4940     damned slow.  So create a small 16 byte buffer to fill up and send to puts
4941     as needed.  In the process, unify the different print functions, shrink
4942     the resulting code (source and compiled), and avoid excess env reads as
4943     those too can be somewhat expensive depending on the board.
4944
4945     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4946
4947 commit 3112030a430553768de5d30c05bedf8710784452
4948 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4949 Date:   Fri May 22 19:28:52 2009 +0200
4950
4951     config.mk: remove un-needed REMOTE_BUILD check
4952
4953     as $(obj) is empty when in tree build
4954
4955     %.s:        %.S
4956         $(CPP) $(AFLAGS) -o $@ $<
4957
4958     and
4959
4960     $(obj)%.s:  %.S
4961         $(CPP) $(AFLAGS) -o $@ $<
4962
4963     are the same
4964
4965     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4966     Acked-by: Mike Frysinger <vapier@gentoo.org>
4967
4968 commit 651351fe980b20217b014b9a888398f18d77951c
4969 Author: Tom Rix <Tom.Rix@windriver.com>
4970 Date:   Wed May 20 07:55:41 2009 -0500
4971
4972     FAT replace compare_sign with strncmp.
4973
4974     The static function compare_sign is only used to compare the fs_type string
4975     and does not do anything more than what strncmp does.
4976
4977     The addition of the trailing '\0' to fs_type, while legal, is not needed
4978     because the it is never printed out and strncmp does not depend on NULL
4979     terminated strings.
4980
4981     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4982
4983 commit ecb1dc892297d5d99876907328fed732feefeab2
4984 Author: Mike Frysinger <vapier@gentoo.org>
4985 Date:   Wed May 20 04:35:14 2009 -0400
4986
4987     Add support for Linux-like kallsysms
4988
4989     The kernel stores address<->symbol names in it so things can be decoded at
4990     runtime.  Do it in U-Boot, and we get nice symbol decoding when crashing.
4991
4992     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4993
4994 commit 36c9169aa6f79ddf604a3bca64e145654f94888b
4995 Author: Wolfgang Denk <wd@denx.de>
4996 Date:   Sun May 17 16:01:54 2009 +0200
4997
4998     cmd_mtdparts.c: allow to omit definitions for default settings
4999
5000     There is actually no good reason to enforce that all board
5001     configuations must define default settings for "mtdids" and
5002     "mtdparts".  Actually this may be difficult to handle, especially on
5003     boards where different sizes of flash chips can be fit, so there is no
5004     real "default" partition map for all boards.
5005
5006     Lift this arbitrary limitation.
5007
5008     Signed-off-by: Wolfgang Denk <wd@denx.de>
5009
5010 commit 864aa034f3a0e10ce710e8bbda171df3cab59414
5011 Author: Stefan Roese <sr@denx.de>
5012 Date:   Tue May 12 14:31:56 2009 +0200
5013
5014     cmd_mtdparts: Move to common handling of FLASH devices via MTD layer
5015
5016     This patch removes all references to the direct CFI FLASH interface
5017     (via flash_info[]). Now that all FLASH types currently handled in
5018     mtdparts are available (if selected, see below) via the MTD infrastructure.
5019     This is NOR, NAND and OneNAND right now. This can be achieved by defining
5020     the following options:
5021
5022     CONFIG_MTD_DEVICE (for all FLASH types)
5023
5024     plus
5025
5026     CONFIG_FLASH_CFI_MTD (for NOR FLASH)
5027
5028     So we need to add those defines to the board config headers currently
5029     using the mtdparts commands. This is done via another patch, so
5030     we shouldn't break mtdparts compatibility.
5031
5032     One big advantage from this solution is that the cmd_mtdparts.c is
5033     *much* cleaner now. Lot's of #ifdef's are removed and the code itself
5034     is smaller. Additionally the newly added MDT concatenation feature
5035     can new be used via the mtdparts infrastructure and therefor via
5036     UBI etc.
5037
5038     Signed-off-by: Stefan Roese <sr@denx.de>
5039     Cc: Ladislav Michl <ladis@linux-mips.org>
5040     Cc: Scott Wood <scottwood@freescale.com>
5041
5042 commit d558107c18708050f05b6639b2192efb67c905dc
5043 Author: Stefan Roese <sr@denx.de>
5044 Date:   Tue May 12 14:31:18 2009 +0200
5045
5046     mtd: Introduce CONFIG_MTD_DEVICE to select compilation of mtdcore.o
5047
5048     This new define enables mtdcore.c compilation and with this we can
5049     select the MTD device infrastructure needed for the reworked mtdparts
5050     command.
5051
5052     We now have the 2 MTD infrastructure defines, CONFIG_MTD_DEVICE and
5053     CONFIG_MTD_PARTITIONS. CONFIG_MTD_DEVICE is needed (as explained above)
5054     for the "mtdparts" command and CONFIG_MTD_PARTITIONS is needed for UBI.
5055
5056     Signed-off-by: Stefan Roese <sr@denx.de>
5057     Cc: Scott Wood <scottwood@freescale.com>
5058
5059 commit 942556a92a8c1eb1bd76584a5143f6f57dcb25ad
5060 Author: Stefan Roese <sr@denx.de>
5061 Date:   Tue May 12 14:32:58 2009 +0200
5062
5063     mtd: MTD related config header changes (mtdparts command)
5064
5065     By changing the cmd_mtdparts to only use the MTD infrastructure and
5066     not the direct interface to the CFI NOR FLASH driver we now need
5067     to add the MTD infrastructure to all boards using those mtdparts
5068     commands. This patch adds those components:
5069
5070     CONFIG_MTD_DEVICE (for all FLASH types)
5071
5072     plus
5073
5074     CONFIG_FLASH_CFI_MTD (for NOR FLASH)
5075
5076     To all board maintainers: Please test this on your platforms and
5077     report any problems/issues found. Thanks.
5078
5079     Signed-off-by: Stefan Roese <sr@denx.de>
5080     Cc: Wolfgang Denk <wd@denx.de>
5081     Cc: Ron Madrid <info@sheldoninst.com>
5082     Cc: Georg Schardt <schardt@team-ctech.de>
5083     Cc: Michal Simek <monstr@monstr.eu>
5084     Cc: Ladislav Michl <ladis@linux-mips.org>
5085     Cc: Martin Krause <martin.krause@tqs.de>
5086     Cc: Gary Jennejohn <garyj@denx.de>
5087     Cc: Ricardo Ribalda <ricardo.ribalda@uam.es>
5088
5089 commit 8d2effea23e938631126a7888008a0637e13b389
5090 Author: Stefan Roese <sr@denx.de>
5091 Date:   Mon May 11 16:03:55 2009 +0200
5092
5093     mtd: Update MTD infrastructure to support 64bit device size
5094
5095     This patch brings the U-Boot MTD infrastructure in sync with the current
5096     Linux MTD version (2.6.30-rc3). Biggest change is the 64bit device size
5097     support and a resync of the mtdpart.c file which has seen multiple fixes
5098     meanwhile.
5099
5100     Signed-off-by: Stefan Roese <sr@denx.de>
5101     Cc: Scott Wood <scottwood@freescale.com>
5102     Cc: Kyungmin Park <kmpark@infradead.org>
5103
5104 commit 0a57265533c412adf6024f4b4955141f4346b2b9
5105 Author: Stefan Roese <sr@denx.de>
5106 Date:   Tue May 12 14:29:39 2009 +0200
5107
5108     mtd: Add MTD concat support to concatenate multiple MTD NOR devices
5109
5110     This patch adds concatenation support to the U-Boot MTD infrastructure.
5111     By enabling CONFIG_MTD_CONCAT this MTD CFI wrapper will concatenate
5112     all found NOR devices into one single MTD device. This can be used by
5113     e.g by UBI to access a partition that spans over multiple NOR chips.
5114
5115     Signed-off-by: Stefan Roese <sr@denx.de>
5116
5117 commit 55e0ed6078b10b0d425b6a0677f38a015c277df6
5118 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5119 Date:   Sat Apr 25 14:57:52 2009 +0200
5120
5121     make MODEM SUPPORT generic instead of duplicate it
5122
5123     and fix comment
5124
5125     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5126
5127     Adjusted Copyright message.
5128
5129     Signed-off-by: Wolfgang Denk <wd@denx.de>
5130
5131 commit a30f519bd0cde78ba46b424314de94fdab863726
5132 Author: Tom Rix <Tom.Rix@windriver.com>
5133 Date:   Tue Jun 2 20:53:56 2009 -0500
5134
5135     ZOOM2 detect the version of the zoom2 board at runtime.
5136
5137     There are currently 3 versions of the zoom2 board.
5138     The production board, that is currently being released.
5139     The beta board, similar in form to the production board but not released.
5140     The alpha board, a set of PCBs with a very limited circulation.
5141
5142     GPIO 94 is used to determine the version of the board. If GPIO 94 is clear,
5143     the board is a production board, otherwise it is a beta board.
5144
5145     The alpha board will likely be mistaken for a beta board.  An alpha board
5146     was unavailible for testing.
5147
5148     This has been tested on the beta and production boards.
5149
5150     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5151     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5152
5153 commit 718763c4745fd3d987a5576d2a67325e9444f9d4
5154 Author: Tom Rix <Tom.Rix@windriver.com>
5155 Date:   Wed Jun 3 01:53:57 2009 -0500
5156
5157     Beagle Convert the board version detection to use the OMAP3 GPIO interface.
5158
5159     There is no new functionality in the change.
5160
5161     This change is a conversion from the using raw register access to using
5162     the OMAP3 GPIO API described in doc/README.omap3.
5163
5164     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5165     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
5166
5167 commit 7caa13fdd2d3dc957b4e0a228810a3a4a8ba499b
5168 Author: Tom Rix <Tom.Rix@windriver.com>
5169 Date:   Wed Jun 3 01:53:55 2009 -0500
5170
5171     Fix a typo in the instructions on using omap3's gpio interface.
5172
5173     Using the example for reading a gpio, shows the problem.
5174     NULL should be the gpio number.
5175
5176     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5177     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
5178
5179 commit 0c9520efd651ce13451654a35307ec87d4a13a69
5180 Author: Tom Rix <Tom.Rix@windriver.com>
5181 Date:   Fri May 29 18:57:32 2009 -0500
5182
5183     ZOOM2 Define GPIO banks used.
5184
5185     Enable the function and interface clocks for banks 2,3,5 and 6.
5186
5187     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5188     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
5189
5190 commit 708cfb74b7c6df9c37d3c48988a154be79daefeb
5191 Author: Tom Rix <Tom.Rix@windriver.com>
5192 Date:   Fri May 29 18:57:31 2009 -0500
5193
5194     OMAP3 Turn on the GPIO bank clocks
5195
5196     The function and interface clocks for each GPIO bank, except the first, must
5197     be explicitly turned on.  These are controlled by the config level defines
5198     CONFIG_OMAP3_GPIO_n where n is from 2 to 6.
5199
5200     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5201     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
5202
5203 commit 59272620c24549b5bcd03c94ba12ec302c1476a2
5204 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5205 Date:   Thu Mar 26 15:26:01 2009 -0400
5206
5207     Coldfire M5271: Activate u-boot system timer interrupt.
5208
5209     This patch assigns the u-boot system timer interrupt to
5210     interrupt level 3, priority 6. Without this patch the interrupt
5211     will be a level 0, priority 0, which disables it and cause
5212     u-boot functions that relies on the timer (e.g. sleep command)
5213     to never return.
5214
5215     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5216
5217 commit dc26965ad3acdfb18780361d77a276b2843a90af
5218 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5219 Date:   Mon Mar 23 13:35:48 2009 -0400
5220
5221     Compier warning cleanup
5222
5223     Follow up to git commit: 19b5b533ccd522abeb501d510750693c35e20456
5224
5225     Cleanup on compiler warnings on unused variables now that
5226     bd->bi_enetaddr is no longer used.
5227
5228     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5229
5230 commit 42a83765d54f042b4079e05a3438789542429981
5231 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5232 Date:   Fri Mar 20 15:30:10 2009 -0400
5233
5234     Adds WATCHDOG_RESET() function call to lib_m68k dtimer_interrupt.
5235
5236     Ported from lib_ppc/interrupts.c, this adds the ability for
5237     the coldfire system timer to auto-reset the watchdog when
5238     dtimer_interrupts is called.
5239
5240     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5241
5242 commit a24d96e40e1ca66dde6e6c158e7ecffafc5a2199
5243 Author: Prafulla Wadaskar <prafulla@marvell.com>
5244 Date:   Sun May 31 14:53:20 2009 +0200
5245
5246     arch_misc_init support for ARM architectures
5247
5248     This patch is required for Kirkwood support
5249     may be used by other ARM architectures
5250
5251     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5252
5253 commit b2403589b4d9996394bafc73eca3623f43ac2c31
5254 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5255 Date:   Sun May 31 14:53:18 2009 +0200
5256
5257     at91: move cpu info print to cpu
5258
5259     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5260
5261 commit b32e189079fa16e1b647ac6b949fd4e0a9435343
5262 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5263 Date:   Sun May 31 12:44:46 2009 +0200
5264
5265     at91: move cpu name define to arm/arch/ cpu header
5266
5267     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5268
5269 commit 5bb59b3c906ee01adfaac9565443e5236a793079
5270 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5271 Date:   Sun May 31 12:44:45 2009 +0200
5272
5273     at91: extract reset from timer
5274
5275     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5276
5277 commit 61cf851b09cf8b67009ec11fc47c16add6b142a5
5278 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5279 Date:   Sun May 31 12:44:43 2009 +0200
5280
5281     omap24xx: rename reset file
5282
5283     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5284
5285 commit 9d4fc99dbdbfda1260aad478e83fca7cdf0e1a32
5286 Author: Dirk Behme <dirk.behme@googlemail.com>
5287 Date:   Sun May 31 12:44:42 2009 +0200
5288
5289     OMAP3: Fix CKE1 MUX setting to allow self-refresh
5290
5291     The Beagle rev Cx and Overo boards are using both SDRC CSes. The MUX
5292     setting is needed for the second CS clock signal to allow the 2 RAM
5293     parts to be put in self-refresh correctly. This also works on rev B
5294     Beagle boards with 128M of RAM.
5295
5296     From: Steve Sakoman <steve@sakoman.com>
5297     From: Jean Pihet <jpihet@mvista.com>
5298     Signed-off-by: Jean Pihet <jpihet@mvista.com>
5299     Signed-off-by: Steve Sakoman <steve@sakoman.com>
5300     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
5301
5302 commit 3962c4f9fc4482a6547f3c3d3d5e986e625abb8a
5303 Author: Dirk Behme <dirk.behme@googlemail.com>
5304 Date:   Sun May 31 12:44:41 2009 +0200
5305
5306     OMAP3: Zoom2: Enable Board and CPU info
5307
5308     With other OMAP3 boards we recently switched to CPU and Board
5309     info API. From parallel merge, this is missing for Zoom2.
5310     Enable it for Zoom2, too.
5311
5312     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
5313     Acked-by: Tom Rix <Tom.Rix@windriver.com>
5314
5315 commit 83ae698ff26b81b569ca32f7f2b008ad0da15e66
5316 Author: Tom Rix <Tom.Rix@windriver.com>
5317 Date:   Sun May 31 12:44:39 2009 +0200
5318
5319     ZOOM2 Add led support.
5320
5321     This patch controls the large LED on the top left of the zoom2.
5322
5323     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5324
5325 commit 660888b7fb8840ce169dcd2589e49ab44c46b87b
5326 Author: Tom Rix <Tom.Rix@windriver.com>
5327 Date:   Sun May 31 12:44:37 2009 +0200
5328
5329     ZOOM2 Add serial support.
5330
5331     Zoom2 serial is in general supplied by one of the 4 UARTS on the debug board.
5332     The default serial is from the USB connector on left side of the debug board.
5333     The USB connector will produce 2 of the 4 UARTS.  On your host pick the first
5334     enumeration.
5335
5336     The details of the setting of the serial gpmc setup are not available.
5337     The values were provided by another party.
5338
5339     The serial port set up is the same with Zoom1.
5340     Baud rate 115200, 8 bit data, no parity, 1 stop bit, no flow.
5341
5342     The kernel bootargs are
5343     console=ttyS3,115200n8
5344
5345     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5346
5347 commit 3ea201b016ab259a5ac8824af767569522768c47
5348 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5349 Date:   Sun May 31 12:44:27 2009 +0200
5350
5351     lh7a40x: move serial driver to drivers/serial
5352
5353     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5354
5355 commit 379be585eb2343d8814a5cee5fb3da930d846bee
5356 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5357 Date:   Sat May 16 22:48:46 2009 +0200
5358
5359     pxa: move serial driver to drivers/serial
5360
5361     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5362
5363 commit ad7e8aac6920f8b8a85b3cc2e93bca7458e99aa1
5364 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5365 Date:   Sat May 9 13:21:19 2009 +0200
5366
5367     arm: remove cpu_init
5368
5369     move s3c44b0 to arch_cpu_init and as noone use cpu_init remove it
5370
5371     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5372
5373 commit c358d9c3f16571e8f825e81b75eaf32e228cb669
5374 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5375 Date:   Sat May 9 13:21:18 2009 +0200
5376
5377     arm: unify interrupt init
5378
5379     all arm init the IRQ stack the same way
5380     so unify it in lib_arm/interrupts.c and then call arch specific interrupt init
5381
5382     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5383
5384 commit 10a451cd57cffbca875c97bbd8929059c5627ec6
5385 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5386 Date:   Fri May 8 20:24:12 2009 +0200
5387
5388     arm: unify linker script
5389
5390     all arm boards except a few use the same cpu linker script
5391     so move it to cpu/$(CPU)
5392
5393     that could be overwrite in following order
5394     SOC
5395     BOARD
5396     via the corresponding config.mk
5397
5398     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5399
5400 commit 9475c63c7855edd863c93a9bb0f4b8e240d9d212
5401 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5402 Date:   Sat May 16 10:02:05 2009 +0200
5403
5404     afeb9260: fix macb device init
5405
5406     uses PA10, PA11 for ETX2 and ETX3.
5407
5408     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5409
5410 commit 1bbae2b816d4ed38db2ebf42166a973b1ffc0df7
5411 Author: Stefan Roese <sr@denx.de>
5412 Date:   Wed May 27 10:34:32 2009 +0200
5413
5414     ppc4xx: Remove PCI async bootup message if PCI is not used
5415
5416     Signed-off-by: Stefan Roese <sr@denx.de>
5417
5418 commit a3455c00510c5abf1e91743c4a02d8393b6df18d
5419 Author: Wolfgang Denk <wd@denx.de>
5420 Date:   Fri May 15 09:19:52 2009 +0200
5421
5422     TQM834x: use buffered writes to accelerate writing to flash
5423
5424     Also enable display of 'E'mpty sectors in "flinfo" output.
5425
5426     Signed-off-by: Wolfgang Denk <wd@denx.de>
5427     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5428
5429 commit 4681e673a51c48f4c096aa3c8fae5e6217ffd58d
5430 Author: Wolfgang Denk <wd@denx.de>
5431 Date:   Thu May 14 23:18:34 2009 +0200
5432
5433     TQM834x: add FDT support
5434
5435     Signed-off-by: Wolfgang Denk <wd@denx.de>
5436     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5437
5438 commit 929b79a0b5e48303ab04aae9d0abceb0c707f111
5439 Author: Wolfgang Denk <wd@denx.de>
5440 Date:   Thu May 14 23:18:33 2009 +0200
5441
5442     TQM834x: fix environment size; add redundant env.
5443
5444     Also reserve more space for U-Boot as it will probably grow soon.
5445
5446     Signed-off-by: Wolfgang Denk <wd@denx.de>
5447     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5448
5449 commit 2ae0f35fd60c7345446835b95a4daff356e1f031
5450 Author: Thomas Lange <thomas@corelatus.se>
5451 Date:   Sun May 3 20:07:33 2009 +0200
5452
5453     ARM DaVinci: Reset with watchdog enabled
5454
5455     Once the Davinci watchdog has been enabled, the timeout
5456     value cannot be changed. If the timeout in use is long,
5457     it can take a long time for card to reset. By writing
5458     an invalid service key, we can trigger an immediate reset.
5459
5460     Signed-off-by: Thomas Lange <thomas@corelatus.se>
5461
5462 commit 6cc7ba9ed43106946aa9aa868302aa2faf1d17be
5463 Author: Wolfgang Denk <wd@denx.de>
5464 Date:   Fri May 15 10:07:43 2009 +0200
5465
5466     video: Add an option to skip video initialization
5467
5468     This patch adds an option to skip the video initialization on for all
5469     video drivers. This is needed for the CPCI750 which can be built as
5470     CPCI host and adapter/target board. And the adapter board can't
5471     access the video cards located on the CompactPCI bus.
5472
5473     Signed-off-by: Stefan Roese <sr@denx.de>
5474     Cc: Anatolij Gustschin <agust@denx.de>
5475
5476     Rebased against simplifying patch.
5477     Signed-off-by: Wolfgang Denk <wd@denx.de>
5478
5479 commit f62f64692ff7f6226ad221d5df6487ea5ef39bdd
5480 Author: Wolfgang Denk <wd@denx.de>
5481 Date:   Fri May 15 10:07:42 2009 +0200
5482
5483     drv_video_init(): simplify logic
5484
5485     Simplify nesting of drv_video_init() and use a consistent way of
5486     indicating failure / success. Before, it took me some time to realize
5487     which of the returns was due to an error condition and which of them
5488     indicated success.
5489
5490     Signed-off-by: Wolfgang Denk <wd@denx.de>
5491     Cc: Anatolij Gustschin <agust@denx.de>
5492
5493 commit 1699da6297b8c22da16cf85b3c79192f1a6d70ca
5494 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5495 Date:   Wed May 13 21:01:13 2009 +0200
5496
5497     at91: regroup IP hw init in one file per soc
5498
5499     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5500
5501 commit 28b00324becf3552134ae1e086509dc9c3d6e932
5502 Author: David Brownell <dbrownell@users.sourceforge.net>
5503 Date:   Fri May 15 23:48:37 2009 +0200
5504
5505     dm355 evm support
5506
5507     Initial U-Boot support for the DaVinci DM355 EVM.  This is a board
5508     from Spectrum Digital.  Board docs include schematic and firmware
5509     for its microcontroller:
5510
5511       http://c6000.spectrumdigital.com/evmdm355/revd/
5512
5513     Most of the DM355 chip is fully documented by TI, the most notable
5514     exception being the MPEG/JPEG coprocessor (programmable using codecs
5515     available at no cost from TI), which is omitted from its DM335 sibling:
5516
5517       http://focus.ti.com/docs/prod/folders/print/tms320dm355.html
5518
5519     This version can boot from the on-board DM9000 Ethernet chip, after
5520     being loaded (from NAND, MMC/SD, or UART).  In the near future, NAND
5521     and USB support could be added ... NAND support is being held back
5522     until the support for the 4-bit ECC hardware is ready.
5523
5524     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5525
5526 commit 136cf92dc9e84c9a1bf567f1fe741092bf765495
5527 Author: Sanjeev Premi <premi@ti.com>
5528 Date:   Fri May 15 23:48:37 2009 +0200
5529
5530     OMAP3EVM: Set default bootfile
5531
5532     The current configuration doesn't define default
5533     bootfile; leading to this warning at execution:
5534
5535     OMAP3_EVM # dhcp
5536     ...
5537     ...
5538     DHCP client bound to address 192.168.1.11
5539     *** Warning: no boot file name; using 'AC18BE16.img'
5540     TFTP from server 0.0.0.0; our IP address is 192.168.1.11;
5541     sending through gateway 192.168.1.1
5542     Filename 'AC18BE16.img'.
5543     Load address: 0x82000000
5544     Loading: *
5545     TFTP error: 'File not found' (1)
5546
5547     Signed-off-by: Sanjeev Premi <premi@ti.com>
5548
5549 commit 1a09d05abfc6d4d4f1fce9f6bd0275bd1c08d4f5
5550 Author: s-paulraj@ti.com <s-paulraj@ti.com>
5551 Date:   Fri May 15 23:48:36 2009 +0200
5552
5553     ARM DaVinci: Minor Updates to base addresses
5554
5555     Patch adds base addresses for DaVinci DM365. Updated patches for DM365
5556     will be posted soon.
5557
5558     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5559
5560 commit de193e8e369f5f029ed3b6e2fc60341098eea766
5561 Author: Tom Rix <Tom.Rix@windriver.com>
5562 Date:   Fri May 15 23:48:36 2009 +0200
5563
5564     ZOOM2 Add support for debug board detection.
5565
5566     The logicpd web site is a good source for general information on this board.
5567     Please start looking here if the below links are broken.
5568     http://www.logicpd.com
5569
5570     This is a pdf of the product
5571     http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
5572
5573     This is a pdf of the product quick start guide.
5574     The debug board is described here.
5575     http://support.logicpd.com/downloads/1165/
5576
5577     This is a wiki showing the debug board in use
5578     https://omapzoom.org/gf/project/omapzoom/wiki/?pagename=GettingStartedWithZoomII_AKA_OMAP34XII_MDP
5579
5580     The zoom2 has an auxillary board that contains the serial, net, jtag and
5581     battery simulator.  This change supports a runtime check if the debug board is
5582     connected.
5583
5584     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5585
5586 commit 0c872ecd01d6782ae9d37b6eb721404a4a48f356
5587 Author: Tom Rix <Tom.Rix@windriver.com>
5588 Date:   Fri May 15 23:48:36 2009 +0200
5589
5590     OMAP3 Port kernel omap gpio interface.
5591
5592     Port version 2.6.27 of the linux kernel's omap gpio interface to u-boot.
5593     The orignal source is in linux/arch/arm/plat-omap/gpio.c
5594
5595     See doc/README.omap3 for instructions on use.
5596
5597     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5598
5599 commit 376aee78dd66ae0dc4ce496cbe93ecc80aaad48e
5600 Author: Tom Rix <Tom.Rix@windriver.com>
5601 Date:   Fri May 15 23:48:36 2009 +0200
5602
5603     ZOOM2 Add initial support for Zoom2
5604
5605     Zoom2 is a new board from Texas Instruments and LogicPD
5606
5607     The logicpd web site is a good source for general information on this board.
5608     Please start looking here if the below links are broken.
5609     http://www.logicpd.com
5610
5611     This is a pdf of the product
5612     http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
5613     This is the product description web page
5614     http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp
5615
5616     This patch provides a zoom2 base target by copying zoom1 and by making some
5617     obvious changes.
5618
5619     To configure, run
5620     make omap3_zoom2_config
5621
5622     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5623
5624 commit 53925acf1b5c1a1e6230cda2697640cd05bd1104
5625 Author: Sandeep Paulraj <s-paulraj@ti.com>
5626 Date:   Fri May 15 23:48:33 2009 +0200
5627
5628     ARM DaVinci:Consolidate common u-boot.lds
5629
5630     The u-boot.lds is common for all DaVinci boards. The patch removes
5631     multiple instances and moves the u-boot.lds to /cpu/arm926ejs/davinci
5632     folder. This addresses one of the comments i received while submitting
5633     patches for DM3xx
5634
5635     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5636
5637 commit 68a531fd465f5c0b3d373e0010afed32e88d37c4
5638 Author: Tom Rix <Tom.Rix@windriver.com>
5639 Date:   Fri May 15 23:47:52 2009 +0200
5640
5641     OMAP Consolidate common u-boot.lds to cpu layer.
5642
5643     The u-boot.lds file is common for all omap boards.
5644     Move a cleaned up version to the cpu layer and add makefile logic to use it.
5645
5646     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5647
5648 commit 65a76d4f947a193e57bb8f8093c481f27e059f8f
5649 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5650 Date:   Fri May 15 23:47:14 2009 +0200
5651
5652     arm/dcc: add xscale support
5653
5654     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5655
5656 commit 66e8f9da6879fe37f3159b3997bff874842dc51d
5657 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5658 Date:   Fri May 15 23:47:14 2009 +0200
5659
5660     arm/dcc: use static support to allow to use it at anytime
5661
5662     the dcc can be used at the start of the cpu
5663
5664     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5665
5666 commit 7893aa1eb6f52c3957efc301b436f1fa11e91a00
5667 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5668 Date:   Fri May 15 23:47:13 2009 +0200
5669
5670     ARM: Update mach-types
5671
5672     update against linux v2.6.29
5673
5674     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5675
5676 commit 2907798926ee932f453ac8538e7a6c05c18428a5
5677 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5678 Date:   Fri May 15 23:47:13 2009 +0200
5679
5680     arm920/926/926: remove non needed header
5681
5682     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5683
5684 commit 269dfea017b09c5a999d3053d00505c19789c350
5685 Author: David Brownell <david-b@pacbell.net>
5686 Date:   Fri May 15 23:47:13 2009 +0200
5687
5688     davinci dm6446evm NAND update
5689
5690     This updates the optional (non-default!) NAND support for the
5691     DaVinci DM6446 EVM:
5692
5693      - include MTD partitioning, defaulting to what Linux uses
5694
5695      - use a flash-based BBT, which among other things speeds bootup
5696
5697     This matches code that's now queued for mainline Linux, and might
5698     even merge in an upcoming 2.6.30-rc; and the MTIDS are set up so
5699     that the U-Boot $mtdparts environment variable can be passed as-is
5700     on the kernel command line as a cmdlinepart override.
5701
5702     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5703
5704 commit 7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc
5705 Author: David Brownell <dbrownell@users.sourceforge.net>
5706 Date:   Fri May 15 23:47:12 2009 +0200
5707
5708     davinci: display correct clock info
5709
5710     Move the clock-rate dumping code into the cpu/.../davinci area
5711     where it should have been, enabled by CONFIG_DISPLAY_CPUINFO,
5712     updating the format and showing the DSP clock (where relevant).
5713
5714     Switch boards to use the cpuinfo() hook for this stuff.
5715
5716     Remove a few now-obsolete PLL #defines.
5717
5718     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5719
5720 commit daea928829098cae3c9ec6b801e52ba616725034
5721 Author: Tom Rix <Tom.Rix@windriver.com>
5722 Date:   Fri May 15 23:47:12 2009 +0200
5723
5724     ZOOM1 Remove more legacy NAND defines.
5725
5726     These legacy NAND defines are no longer needed by this target.
5727
5728     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5729
5730 commit 65fd21c80fcaca2bbfe3ab06ab6ac68207408078
5731 Author: Tom Rix <Tom.Rix@windriver.com>
5732 Date:   Fri May 15 23:47:12 2009 +0200
5733
5734     LED Add documentation describing the status_led and colour led API.
5735
5736     This document describes the u-boot status LED API.
5737     This allows common u-boot commands to use a board's leds to
5738     provide status for activities like booting and downloading files.
5739
5740     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5741
5742 commit 7cdf804f34378b910b4c4edd2dac7e3ca61c0825
5743 Author: Tom Rix <Tom.Rix@windriver.com>
5744 Date:   Fri May 15 23:47:12 2009 +0200
5745
5746     ARM Add blue colour LED to status_led.
5747
5748     There is exiting support for red,yellow,green but no blue.
5749     The main LED on the zoom2 is a blue LED.
5750
5751     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5752
5753 commit b54384e3ba6b5535751f317fcd3940a53eed0d3a
5754 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5755 Date:   Fri May 15 23:47:02 2009 +0200
5756
5757     arm: timer and interrupt init rework
5758
5759     actually the timer init use the interrupt_init as init callback
5760     which make the interrupt and timer implementation difficult to follow
5761
5762     so now rename it as int timer_init(void) and use interrupt_init for interrupt
5763
5764     btw also remane the corresponding file to the functionnality implemented
5765
5766     as ixp arch implement two timer - one based on interrupt - so all the timer
5767     related code is moved to timer.c
5768
5769     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5770
5771 commit 5b4bebe1d20c4f2b70d48b06aed1016785efcc25
5772 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5773 Date:   Fri May 15 23:45:22 2009 +0200
5774
5775     OMAP3: Reorganize Makefile style
5776
5777     Reformat COBJS handling.
5778
5779     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5780     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
5781
5782 commit b1966982718347f67317b3fb356439743ca68a37
5783 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5784 Date:   Fri May 15 23:45:22 2009 +0200
5785
5786     OMAP3: Remove dublicated interrupt code
5787
5788     Remove duplicated interrupt code. Original, identical code can be found
5789     in lib_arm/interrupts.c
5790
5791     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5792     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
5793
5794 commit ac7260a4190315eba4a6e526c764f6cad0bbf8c5
5795 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5796 Date:   Fri May 15 23:45:22 2009 +0200
5797
5798     at91rm9200: move reset code to reset.c
5799
5800     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5801
5802 commit 2c75c78d94574ee996db2aa9b511258519471dd6
5803 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5804 Date:   Fri May 15 23:45:22 2009 +0200
5805
5806     ixp/interrupts: Move conditional compilation to Makefile
5807
5808     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5809
5810 commit 8fc3bb4b0603516ad641e2de252a400b85fd869b
5811 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5812 Date:   Fri May 15 23:45:20 2009 +0200
5813
5814     arm: cleanup remaining CONFIG_INIT_CRITICAL
5815
5816     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5817
5818 commit c20e28f49aaf38c7dede46d8f8fe8234fe90822c
5819 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5820 Date:   Fri May 15 23:45:12 2009 +0200
5821
5822     arm946es: remove non used timer
5823
5824     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5825
5826 commit f1d944e30eb8ff89080fa03fb98d8fb5c82388d2
5827 Author: David Brownell <dbrownell@users.sourceforge.net>
5828 Date:   Fri May 15 23:44:09 2009 +0200
5829
5830     davinci: add basic dm355/dm350/dm335 support
5831
5832     Add some basic declarations for DaVinci DM355/DM350/DM335 support,
5833     keyed on CONFIG_SOC_DM355.  (DM35X isn't quite right because the
5834     DM357 is very different; while the DM355 is like a DM355 without
5835     the MPEG/JPEG coprocessor).
5836
5837     These have different peripherals than the DM6446, and some of
5838     the peripherals are at different addresses.  Notably for U-Boot,
5839     there's no EMAC, and the NAND controller address is different
5840
5841     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5842
5843 commit bd36fdc146654f9de4e2ad346126e6bd2990fb19
5844 Author: David Brownell <dbrownell@users.sourceforge.net>
5845 Date:   Fri May 15 23:44:09 2009 +0200
5846
5847     davinci: fix dm644x buglets
5848
5849     Fix two buglets in the dm644x support:  don't set two must-be-zero
5850     bits in the UART management register; and only include the I2C hooks
5851     if the I2C driver is being included.
5852
5853     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5854
5855 commit f79043681ff44bae435c06f830e51e1546db7e19
5856 Author: David Brownell <dbrownell@users.sourceforge.net>
5857 Date:   Fri May 15 23:44:08 2009 +0200
5858
5859     davinci: split out some dm644x-specific bits from psc
5860
5861     Split out DaVinci DM6446-specific bits from more generic bits:
5862
5863      - Add a CONFIG_SOC_DM644X.  All current boards use DM6446 chips;
5864        DM6443 and DM6441 chips differ in available peripherals.
5865
5866      - Move most DM644X-specific bits from psc.c to a new dm644x.c file,
5867        which is conditionally built.  It provides device-specific setup.
5868
5869     Plus minor coding style and comment updates with respect to the PSC.
5870
5871     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5872
5873 commit 48ef5729555f41f51618b6a3016ac5c53c7c75dc
5874 Author: David Brownell <dbrownell@users.sourceforge.net>
5875 Date:   Fri May 15 23:44:08 2009 +0200
5876
5877     davinci: cpu-specific build uses conditional make syntax
5878
5879     Update cpu/arm926ejs/davinci/Makefile to use COBJ-y type syntax.
5880     Add the first conditional: for EMAC driver support.  Not all
5881     chips have an EMAC; and boards might not use it, anyway.
5882
5883     This doesn't touch PHY configuration; that should eventually
5884     become conditional too.
5885
5886     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5887
5888 commit 7b7808ae6dace59287f565e9323cda7b098a5612
5889 Author: David Brownell <dbrownell@users.sourceforge.net>
5890 Date:   Fri May 15 23:44:06 2009 +0200
5891
5892     davinci: move psc support board-->cpu
5893
5894     Move DaVinci PSC support from board/* to cpu/* where it belongs.
5895     The PSC module manages clocks and resets for all DaVinci-family
5896     SoCs, and isn't at all board-specific.
5897
5898     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5899
5900 commit 84f7411cb901b8df2391cf7e967ad0737f6194aa
5901 Author: David Brownell <david-b@pacbell.net>
5902 Date:   Tue Apr 14 08:52:58 2009 -0700
5903
5904     DaVinci now respects SKIP_LOWLEVEL_INIT
5905
5906     Don't needlessly include lowlevel init code; that's only really
5907     needed with boot-from NOR (not boot-from-NAND).  The 2nd stage
5908     loader (UBL) handles that before it loads U-Boot.
5909
5910     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5911
5912 commit 641e0925e4bf7adf8e2e04e3ad81b840fd71cadd
5913 Author: David Brownell <dbrownell@users.sourceforge.net>
5914 Date:   Sun Apr 12 22:49:26 2009 -0700
5915
5916     DaVinci Ethernet cleanup
5917
5918     Chips without the EMAC controller won't need the utilities
5919     it uses to read an Ethernet address from EEPROM; so don't
5920     include them needlessly.
5921
5922     Use is_valid_ether() to validate the address from EEPROM.
5923     All-zero addresses aren't the only invalid addresses.
5924     A fully erased EEPROM returns all-ones, also invalid...
5925
5926     Switch those Ethernet utilities to use "%pM" for printing
5927     MAC addresses; and not say ROM when they mean EEPROM.
5928
5929     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5930     Acked-by: Ben Warren <biggerbadderben@gmail.com>
5931
5932 commit c790b04d230363d03939dc008bcc80f3ba4de1ae
5933 Author: Stefan Roese <sr@denx.de>
5934 Date:   Mon May 11 15:50:12 2009 +0200
5935
5936     lib_arch/board.c: Move malloc initialization before flash_init()
5937
5938     This patch moves the malloc initialization before calling flash_init().
5939     Upcoming changes to the NOR FLASH common CFI driver with optional
5940     MTD infrastructure and MTD concatenation support will call malloc().
5941     And nothing really speaks against enabling malloc just a little earlier
5942     in the boot stage. Some architectures already enable malloc before
5943     calling flash_init() so they don't need any changes here.
5944
5945     Signed-off-by: Stefan Roese <sr@denx.de>
5946     Cc: Wolfgang Denk <wd@denx.de>
5947     Cc: Mike Frysinger <vapier@gentoo.org>
5948     Cc: Scott McNutt <smcnutt@psyent.com>
5949     Cc: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
5950     Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5951     Cc: Daniel Hellstrom <daniel@gaisler.com>
5952     Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5953     Cc: John Rigby <jcrigby@gmail.com>
5954
5955 commit d873133f2ba9bd613d5f6552c31cc70fb13f15d3
5956 Author: Stefan Roese <sr@denx.de>
5957 Date:   Mon May 11 13:46:14 2009 +0200
5958
5959     ppc4xx: Add Sequoia RAM-booting target
5960
5961     This patch adds another build target for the AMCC Sequoia PPC440EPx
5962     eval board. This RAM-booting version is targeted for boards without
5963     NOR FLASH (NAND booting) which need a possibility to initially
5964     program their NAND FLASH. Using a JTAG debugger (e.g. BDI2000/3000)
5965     configured to setup the SDRAM, this debugger can load this RAM-
5966     booting image to the target address in SDRAM (in this case 0x1000000)
5967     and start it there. Then U-Boot's standard NAND commands can be
5968     used to program the NAND FLASH (e.g. "nand write ...").
5969
5970     Here the commands to load and start this image from the BDI2000:
5971
5972     440EPX>reset halt
5973     440EPX>load 0x1000000 /tftpboot/sequoia/u-boot.bin
5974     440EPX>go 0x1000000
5975
5976     Please note that this image automatically scans for an already
5977     initialized SDRAM TLB (detected by EPN=0). This TLB will not be
5978     cleared. This TLB doesn't need to be TLB #0, this RAM-booting
5979     version will detect it and preserve it. So booting via BDI2000
5980     will work and booting with a complete different TLB init via
5981     U-Boot works as well.
5982
5983     Signed-off-by: Stefan Roese <sr@denx.de>
5984
5985 commit 837db3d87f4bfe9261629fb4a1bb433506a3056a
5986 Author: Mike Frysinger <vapier@gentoo.org>
5987 Date:   Wed May 6 08:41:45 2009 -0400
5988
5989     tools/envcrc: add --binary option to export embedded env
5990
5991     The --binary option to envcrc can be used to export the embedded env as a
5992     binary blob so that it can be manipulated/examined/whatever externally.
5993
5994     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5995
5996 commit 18cc7afd9a153a66854af862d14ba01c5496cf07
5997 Author: Ben Warren <biggerbadderben@gmail.com>
5998 Date:   Tue Apr 28 16:50:53 2009 -0700
5999
6000     Enable CONFIG_NET_MULTI on all remaining PPC4xx boards
6001
6002     All in-tree PPC4xx boards now use CONFIG_NET_MULTI
6003
6004     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6005     Signed-off-by: Stefan Roese <sr@denx.de>
6006
6007 commit 70be6c2d40076f14062b892152649f9a62832fc9
6008 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6009 Date:   Wed Apr 29 09:51:01 2009 +0200
6010
6011     4xx: Add support for DP405 hardware variants
6012
6013     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6014     Signed-off-by: Stefan Roese <sr@denx.de>
6015
6016 commit de47a34d4de1d007a8951efd072283516d580ffa
6017 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6018 Date:   Wed Apr 29 09:51:00 2009 +0200
6019
6020     4xx: Remove binary cpld bitstream from DP405 board
6021
6022     This patch removes the cpld binary bitstream that is
6023     used by esd's cpld command on DP405 boards.
6024
6025     Because u-boot with an external cpld bitstream may not
6026     take more space in flash than before the u-boot binary is
6027     shrinked a little bit. Some unused featues have been
6028     removed therefore.
6029
6030     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6031     Signed-off-by: Stefan Roese <sr@denx.de>
6032
6033 commit 700d553fd3afe804086de8f73d95153315eb0c32
6034 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6035 Date:   Wed Apr 29 09:50:59 2009 +0200
6036
6037     4xx: Remove binary cpld bitstream from VOM405 board
6038
6039     This patch removes the cpld binary bitstream that is
6040     used by esd's cpld command on VOM405 boards.
6041
6042     Because u-boot with an external cpld bitstream may not
6043     take more space in flash than before the u-boot binary is
6044     shrinked a little bit.
6045
6046     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6047     Signed-off-by: Stefan Roese <sr@denx.de>
6048
6049 commit 0bb10630364c48d9857cbf5353da609fc4dd6751
6050 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6051 Date:   Wed Apr 29 09:50:58 2009 +0200
6052
6053     4xx: Remove binary cpld bitstream from PMC405 board
6054
6055     This patch removes the cpld binary bitstream that is
6056     used by esd's cpld command on PMC405 boards.
6057
6058     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6059     Signed-off-by: Stefan Roese <sr@denx.de>
6060
6061 commit 7cc635fb35f5b94e304fa2243d56758f57f6416b
6062 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6063 Date:   Wed Apr 29 09:50:57 2009 +0200
6064
6065     4xx: Remove binary cpld bitstream from CMS700 board
6066
6067     This patch removes the cpld binary bitstream that is
6068     used by esd's cpld command on CMS700 boards.
6069
6070     Because u-boot with an external cpld bitstream may not
6071     take more space in flash than before the u-boot binary is
6072     shrinked a little bit. Some unused featues have been
6073     removed therefore.
6074
6075     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6076     Signed-off-by: Stefan Roese <sr@denx.de>
6077
6078 commit c1b2f79788deec75773b1d944d8aaf4a6d5baf9e
6079 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6080 Date:   Wed Apr 29 09:50:56 2009 +0200
6081
6082     esd/common: extend cpld command with address parameter
6083
6084     This patch adds support for an address parameter to esd's
6085     cpld command. This is in preparation to remove compiled-in
6086     binary cpld (xsvf) bitstreams.
6087
6088     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6089     Signed-off-by: Stefan Roese <sr@denx.de>
6090
6091 commit 9166b776350d16460c7330bfb0a50154ea0a1903
6092 Author: Peter Tyser <ptyser@xes-inc.com>
6093 Date:   Sat Apr 18 22:34:06 2009 -0500
6094
6095     cmd_i2c: Fix i2c help command output when CONFIG_I2C_MUX
6096
6097     When CONFIG_I2C_MUX was defined the output of 'help i2c' was not
6098     correct, eg:
6099
6100     => help i2c
6101     i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes.
6102     speed [speed] - show or set I2C bus speed
6103     i2c dev [dev] - show or set current I2C bus
6104     ...
6105
6106     It has been changed to:
6107     i2c speed [speed] - show or set I2C bus speed
6108     i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes
6109     i2c dev [dev] - show or set current I2C bus
6110     ...
6111
6112     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6113
6114 commit 0a45a6357b02e5ce5bf899a60db09def6a129fee
6115 Author: Peter Tyser <ptyser@xes-inc.com>
6116 Date:   Sat Apr 18 22:34:05 2009 -0500
6117
6118     cmd_i2c: Clean up trivial helper functions
6119
6120     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6121
6122 commit e96ad5d3aba42f8ffe99f7cc5ec1bb9f21810035
6123 Author: Peter Tyser <ptyser@xes-inc.com>
6124 Date:   Sat Apr 18 22:34:04 2009 -0500
6125
6126     cmd_i2c: Clean up i2c command argument parsing
6127
6128     argc and argv should only be modified once instead of once for
6129     every i2c sub-command
6130
6131     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6132
6133 commit 0f89c54be92773b23d66ac401ba6acb6144100c3
6134 Author: Peter Tyser <ptyser@xes-inc.com>
6135 Date:   Sat Apr 18 22:34:03 2009 -0500
6136
6137     i2c: Update references to individual i2c commands
6138
6139     The individual i2c commands imd, imm, inm, imw, icrc32, iprobe, iloop,
6140     and isdram are no longer available so all references to them have been
6141     updated to the new form of "i2c <cmd>".
6142
6143     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6144
6145 commit d48eb5131d287f52bb85b4c58c8680a2e8e3b641
6146 Author: Peter Tyser <ptyser@xes-inc.com>
6147 Date:   Sat Apr 18 22:34:02 2009 -0500
6148
6149     i2c: Remove deprecated individual i2c commands
6150
6151     The following individual I2C commands have been removed: imd, imm, inm,
6152     imw, icrc32, iprobe, iloop, isdram.
6153
6154     The functionality of the individual commands is still available via
6155     the 'i2c' command.
6156
6157     This change only has an impact on those boards which did not have
6158     CONFIG_I2C_CMD_TREE defined.
6159
6160     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6161
6162 commit 655b34a78adf60ef260981688837904208883ae9
6163 Author: Peter Tyser <ptyser@xes-inc.com>
6164 Date:   Sat Apr 18 22:34:01 2009 -0500
6165
6166     i2c: Create common default i2c_[set|get]_bus_speed() functions
6167
6168     New default, weak i2c_get_bus_speed() and i2c_set_bus_speed() functions
6169     replace a number of architecture-specific implementations.
6170
6171     Also, providing default functions will allow all boards to enable
6172     CONFIG_I2C_CMD_TREE.  This was previously not possible since the
6173     tree-form of the i2c command provides the ability to display and modify
6174     the i2c bus speed which requires i2c_[set|get]_bus_speed() to be
6175     present.
6176
6177     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6178
6179 commit 8229e9c04f7019ddd76aea05d4dca044cbc9a34a
6180 Author: Peter Tyser <ptyser@xes-inc.com>
6181 Date:   Sat Apr 18 22:34:00 2009 -0500
6182
6183     cm5200: Make function test command names more unique
6184
6185     Add "_test" to cm5200's function test command names to prevent
6186     overlap with common, global function names.  Originally, the
6187     "do_i2c" function test command interfered with
6188     common/cmd_i2c.c's "do_i2c" when CONFIG_I2C_CMD_TREE was defined.
6189
6190     The functions were also made static as they are not globally accessed.
6191
6192     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6193
6194 commit f0722ee762e8dada9d7f74ac2745e043f83aae85
6195 Author: Peter Tyser <ptyser@xes-inc.com>
6196 Date:   Fri Apr 24 15:34:09 2009 -0500
6197
6198     tsi108_i2c: Add i2c_init() stub function
6199
6200     Add the i2c_init() function so that the tsi108_i2c.c driver fits
6201     U-Boot's standard I2C API which is utilized by cmd_i2c.c
6202
6203     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6204
6205 commit 8d907e79bc9babb27396e34be54cfdc36ff62fb9
6206 Author: Peter Tyser <ptyser@xes-inc.com>
6207 Date:   Fri Apr 24 15:34:08 2009 -0500
6208
6209     mpc7448hpc2: Add CONFIG_SYS_I2C_SPEED define
6210
6211     Add standard CONFIG_SYS_I2C_SPEED define for the mpc7448hpc2 so that
6212     it can use the common 'i2c speed' command.  Note that the I2C controller
6213     utilized by the mpc7448hpc2 has a fixed speed and cannot be changed
6214     dynamically.
6215
6216     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6217
6218 commit a056b1ce9e19b4d4ab3dd01c3f897dcd832cd37f
6219 Author: Peter Tyser <ptyser@xes-inc.com>
6220 Date:   Fri Apr 24 15:34:07 2009 -0500
6221
6222     Marvell: i2c cleanup
6223
6224     The following changes were made, primarily to bring the Marvell i2c
6225     driver in line with U-Boot's current I2C API:
6226     - Made i2c_init() globally accessible
6227     - Made i2c_read() and i2c_write() return an integer
6228     - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
6229       offhand chance someone adds slave support in the future
6230
6231     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6232
6233 commit 54afc6ee10c8cd09598d814d49e601359b005e49
6234 Author: Peter Tyser <ptyser@xes-inc.com>
6235 Date:   Fri Apr 24 15:34:06 2009 -0500
6236
6237     cpci750: i2c cleanup
6238
6239     The following changes were made, primarily to bring the cpci750 i2c
6240     driver in line with U-Boot's current I2C API:
6241     - Made i2c_init() globally accessible
6242     - Made i2c_read() and i2c_write() return an integer
6243     - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
6244       offhand chance someone adds slave support in the future
6245
6246     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6247
6248 commit 9c90a2c8e87414007a016b7cd099ac1e32fd301b
6249 Author: Peter Tyser <ptyser@xes-inc.com>
6250 Date:   Fri Apr 24 15:34:05 2009 -0500
6251
6252     i2c.h: Provide a default CONFIG_SYS_I2C_SLAVE value
6253
6254     Many boards/controllers/drivers don't support an I2C slave interface,
6255     however CONFIG_SYS_I2C_SLAVE is used in common code so provide a
6256     default
6257
6258     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6259
6260 commit e7563aff174f77aa61dab1ef5d9b47bebaa43702
6261 Author: Kumar Gala <galak@kernel.crashing.org>
6262 Date:   Thu Jun 11 23:42:35 2009 -0500
6263
6264     fsl-ddr: Fix handling of >4G of memory when !CONFIG_PHYS_64BIT
6265
6266     The ddr code computes most things as 64-bit quantities and had some places
6267     in the middle that it was using phy_addr_t and phys_size_t.
6268
6269     Instead we use unsigned long long through out and only at the last stage of
6270     setting the LAWs and reporting the amount of memory to the board code do we
6271     truncate down to what we can cover via phys_size_t.
6272
6273     This has the added benefit that the DDR controller itself is always setup
6274     the same way regardless of how much memory we have.  Its only the LAW
6275     setup that limits what is visible to the system.
6276
6277     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6278
6279 commit d4b130dc80761b430dc5b410159cd158fca1a348
6280 Author: Kumar Gala <galak@kernel.crashing.org>
6281 Date:   Thu Jun 11 23:40:34 2009 -0500
6282
6283     85xx: Use print_size to report amount of memory not mapped by TLBs
6284
6285     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6286
6287 commit 6e2aebc33fa740c068fe28d40eaf0319b7c7287e
6288 Author: Haiying Wang <Haiying.Wang@freescale.com>
6289 Date:   Wed May 20 12:30:42 2009 -0400
6290
6291     85xx: Add README for MPC8569MDS
6292
6293     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6294     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6295
6296 commit b2aab386e957ba684d4f2a466bfaa91770e5058a
6297 Author: Haiying Wang <Haiying.Wang@freescale.com>
6298 Date:   Wed May 20 12:30:33 2009 -0400
6299
6300     85xx: Add UART1 support for MPC8569MDS
6301
6302     MPC8569 UART1 signals are muxed with PortF bit[9-12], we need to define
6303     those pins before using UART1.
6304
6305     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6306     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6307
6308 commit 399b53cbab0b377ac4c5c16c19c6e41b68a9c719
6309 Author: Haiying Wang <Haiying.Wang@freescale.com>
6310 Date:   Wed May 20 12:30:32 2009 -0400
6311
6312     85xx: Add PIB support at CS4/CS5 for MPC8569MDS
6313
6314     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6315     Signed-off-by: Yu Liu <Yu.Liu@freescale.com>
6316     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6317
6318 commit fb27949059f1bc84381a6216a819090f0cdbaa70
6319 Author: Haiying Wang <Haiying.Wang@freescale.com>
6320 Date:   Thu Jun 4 16:12:39 2009 -0400
6321
6322     85xx: Fix some settings for MPC8569MDS board
6323
6324     - Increase the size of malloc to 512KB because MPC8569MDS needs more memory for
6325     malloc to support up to eight Ethernet interfaces.
6326     - Move Environment address out of uboot thus the saved environment variables
6327     will not be erased after u-boot is re-programmed.
6328
6329     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6330     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6331
6332 commit c7f60fd29f2d638d080cdf1a49ad985b85f9429d
6333 Author: Haiying Wang <Haiying.Wang@freescale.com>
6334 Date:   Wed May 20 12:30:30 2009 -0400
6335
6336     85xx: Fix MURAM size for MPC8569
6337
6338     MPC8569 has 128K bytes MURAM.
6339
6340     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6341     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6342
6343 commit a53c997dd7fc858f2a27f5a47b200567b9343ae5
6344 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6345 Date:   Fri May 22 20:23:51 2009 +0200
6346
6347     at91/cpu.c: add missing Copyright & GPL header
6348
6349     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6350
6351 commit aa446a591aca46ef2b53cc6598ea8091feb45444
6352 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
6353 Date:   Sun Jun 7 21:45:16 2009 +0900
6354
6355     apollon: Fix a OBJCFLAGS typo
6356
6357     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
6358
6359 commit 580611cb0932143fc2d7a735cfa9ce1ef34d6002
6360 Author: Wolfgang Denk <wd@denx.de>
6361 Date:   Wed Jun 10 00:19:28 2009 +0200
6362
6363     Prepare 2009.06-rc3
6364
6365     Update CHANGELOG
6366
6367     Signed-off-by: Wolfgang Denk <wd@denx.de>
6368
6369 commit 3a76ab5c166d5956885f803ce975e7151cc0ca0e
6370 Author: Wolfgang Denk <wd@denx.de>
6371 Date:   Wed Jun 10 00:15:11 2009 +0200
6372
6373     rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared
6374
6375     Signed-off-by: Wolfgang Denk <wd@denx.de>
6376
6377 commit 165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7
6378 Author: Daniel Mack <daniel@caiaq.de>
6379 Date:   Thu Jun 4 19:44:12 2009 +0200
6380
6381     ubifs: fix small error path mismatch
6382
6383     In do_readpage(), don't free 'dn' if its allocation failed.
6384
6385     Signed-off-by: Daniel Mack <daniel@caiaq.de>
6386
6387 commit de7cf709ebd3c01fbd094e8853dabb410c0370a1
6388 Author: Wolfgang Denk <wd@denx.de>
6389 Date:   Thu Jun 4 00:31:07 2009 +0200
6390
6391     EP88x: fix broken linker script
6392
6393     Signed-off-by: Wolfgang Denk <wd@denx.de>
6394     Tested-by: Mikhail Zaturenskiy <mzaturenskiy@shoppertrak.com>
6395
6396 commit 7a2063bd80d3b58b2dd5d5e58f4411f8d250576c
6397 Author: Wolfgang Denk <wd@denx.de>
6398 Date:   Fri May 15 00:16:02 2009 +0200
6399
6400     TQM85xx: minor config file cleanup
6401
6402     Remove "saveenv" from "update" definition: the environment is outside
6403     the U-Boot image on TQM85xx and therefor not affected by updates.
6404
6405     Also "beautify" code a bit (vertical alignment).
6406
6407     Signed-off-by: Wolfgang Denk <wd@denx.de>
6408
6409 commit c0296b1801fc9426d772fa75fe58458db605dfee
6410 Author: Wolfgang Denk <wd@denx.de>
6411 Date:   Fri May 15 00:16:01 2009 +0200
6412
6413     TQM85xx: adapt for new flash types
6414
6415     Old TQM85xx boards had 'M' type Spansion Flashes from the S29GLxxxM
6416     series while new boards have 'N' type Flashes from the S29GLxxxN
6417     series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB.
6418
6419     We now change the configuration to the new flash types for all
6420     boards; this also works on old boards - we just waste two flash
6421     sectors for the environment which could be smaller there.
6422
6423     Signed-off-by: Wolfgang Denk <wd@denx.de>
6424
6425 commit 6735104924f06340071a6914a9ee3345607fc102
6426 Author: Dave Liu <daveliu@freescale.com>
6427 Date:   Mon May 18 17:49:23 2009 +0800
6428
6429     85xx: Fix the wrong SYS_CLK_IN for 8569MDS
6430
6431     The SYS_CLK_IN of MPC8569MDS is 66.66MHz,
6432     The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor.
6433     so, change the SYS_CLK_IN from 66MHz to 66.66MHz.
6434
6435     Signed-off-by: Dave Liu <daveliu@freescale.com>
6436
6437 commit 16e7559c08b6f29db4596d795b92914c01e6a1b3
6438 Author: Dave Liu <daveliu@freescale.com>
6439 Date:   Fri May 15 10:27:44 2009 +0800
6440
6441     85xx: Fix the wrong BCSR address of 8569MDS
6442
6443     The BCSR17[7] = 1 will unlock the write protect of FLASH.
6444     The WP# pin only controls the write protect of top/bottom sector,
6445     That is why we can save env, but we can't write the first sector
6446     before the patch.
6447
6448     Signed-off-by: Dave Liu <daveliu@freescale.com>
6449
6450 commit 90d13b8ac3d515349626d7c8a3dc34ef38c43fa6
6451 Author: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
6452 Date:   Tue Jun 2 16:27:10 2009 -0500
6453
6454     85xx: bugfix for reading maximum TLB size on mpc85xx
6455
6456     The MAXSIZE field in the TLB1CFG register is 4 bits, not 8 bits.
6457     This made setup_ddr_tlbs() try to set up a TLB larger than the e500 maximum
6458     (256 MB)
6459     which made u-boot hang in board_init_f() when trying to create a new stack
6460     in RAM.
6461     I have an mpc8540 with one 1GB dimm.
6462
6463     Signed-off-by: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
6464     Signed-off-by: Andy Fleming <afleming@freescale.com>
6465     Acked-by: Kumar Gala <galak@kernel.crashing.org>
6466
6467 commit 1b5291dddf5f16c7ae10e3cb165882fa96038b26
6468 Author: Dave Liu <daveliu@freescale.com>
6469 Date:   Fri Mar 27 14:32:43 2009 +0800
6470
6471     85xx: Fix the clock adjust of mpc8569mds board
6472
6473     Currently the clk_adj is 6 (3/4 cycle), The settings will cause
6474     the DDR controller hang at the data init. Change the clk_adj
6475     from 6 to 4 (1/2 cycle), make the memory system stable.
6476
6477     Signed-off-by: Dave Liu <daveliu@freescale.com>
6478
6479 commit faa14babd7466dfade358f9cac128ae246b9bf1b
6480 Author: RONETIX - Ilko Iliev <iliev@ronetix.at>
6481 Date:   Fri Jun 5 16:54:31 2009 +0200
6482
6483     at91: fix a USB problem for AT91SAM9261
6484
6485     This patch corrects the missing PLLB initialization in usb_cpu_init()
6486     for AT91SAM9261.
6487     Because of the missing PLLB initialization, the USB support for all
6488     AT91SAM9261 based boards will work only if the PLLB is configured by a
6489     precedent bootloader.
6490
6491     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
6492     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6493     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6494
6495 commit 0c24dec550ddb7d86b8bfdd8645b18479f73e6e2
6496 Author: Felix Radensky <felix@embedded-sol.com>
6497 Date:   Sun May 31 20:44:15 2009 +0300
6498
6499     ppc4xx/net: Fix MDIO clock setup
6500
6501     This patch fixes MDIO clock setup in case when OPB frequency is 100MHz.
6502     Current code assumes that the value of sysinfo.freqOPB is 100000000
6503     when OPB frequency is 100MHz. In reality it is 100000001. As a result
6504     MDIO clock is set to incorrect value, larger than 2.5MHz, thus violating
6505     the standard. This in not a problem on boards equipped with Marvell PHYs
6506     (e.g. Canyonlands), since those PHYs support MDIO clocks up to 8.3MHz,
6507     but can be a problem for other PHYs (e.g. Realtek ones).
6508
6509     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
6510     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6511
6512 commit d65e34d12514de2bbe3b8f519761d641c081bad0
6513 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
6514 Date:   Wed Feb 25 14:27:29 2009 +0900
6515
6516     rtl8169: fix PCI system memory address
6517
6518     When PCI device use system memory, some PCI host controller should be
6519     set physical memory address.
6520
6521     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
6522     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6523
6524 commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43
6525 Author: Manikandan Pillai <mani.pillai@ti.com>
6526 Date:   Wed Apr 8 09:14:35 2009 +0530
6527
6528     SMC911x driver fixed for NFS boot
6529
6530     eth_halt() function in the smc911x drivers used to call the
6531     smc911x_reset() function. eth_halt() used to be called after
6532     tftp transfers. This used to put the ethernet chip in reset
6533     while the linux boots up resulting in the ethernet driver
6534     not coming up. NFS boot used to fail as a result.
6535
6536     This patch calls smc911x_shutdown() instead of smc911x_reset().
6537     Some comments received has also been fixed.
6538
6539     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
6540     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6541
6542 commit e5a3bc2401a23f1890611f020f57f94824a534db
6543 Author: Remy Bohmer <linux@bohmer.net>
6544 Date:   Sun May 3 12:11:40 2009 +0200
6545
6546     Add config option for disabling DM9000-SROM support.
6547
6548     Some boards do not have SROM support for the DM9000 network adapter.
6549     Instead of listing these board names in the driver code, make this
6550     option configurable from the board config file.
6551
6552     It also removes a build warning for the at91sam9261ek board:
6553     'dm9000x.c:545: warning: 'read_srom_word' defined but not used'
6554
6555     And it repaires the trizepsiv board build which was broken around the
6556     same routines
6557
6558     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6559     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6560
6561 commit 3c9b1ee17e19bd6d80344678d41a85e52b0be713
6562 Author: Kim Phillips <kim.phillips@freescale.com>
6563 Date:   Fri Jun 5 14:11:33 2009 -0500
6564
6565     mpc83xx: don't set SICRH_TSOBI1 to RMII/RTBI operation
6566
6567     In GMII mode (which operates at 3.3V) both SICRH TSEC1/2 output buffer
6568     impedance bits should be clear, i.e., SICRH[TSIOB1] = 0 and SICRH[TSIOB2] = 0.
6569     SICRH[TSIOB1] was erroneously being set high.
6570
6571     U-Boot always operated this PHY interface in GMII mode.  It is assumed this
6572     was missed in the clean up by the original board porters, and copied along
6573     to the TQM and sbc boards.
6574
6575     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6576     Acked-by: Ira Snyder <iws@ovro.caltech.edu>
6577     Reviewed-by: David Hawkins <dwh@ovro.caltech.edu>
6578     Tested-by: Paul Gortmaker <paul.gortmaker@windriver.com>
6579     CC: Dave Liu <DaveLiu@freescale.com>
6580
6581 commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7
6582 Author: Daniel Mack <daniel@caiaq.de>
6583 Date:   Wed Apr 8 13:23:37 2009 +0200
6584
6585     smc911x: write back the manually set MAC address
6586
6587     If the MAX address is given by the environment, write it back to the
6588     hardware.
6589
6590     Signed-off-by: Daniel Mack <daniel@caiaq.de>
6591     Cc: Sascha Hauer <s.hauer@pengutronix.de>
6592     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6593
6594 commit dfcd7f21607fd847236b04bb1a8d59a7c10ab99c
6595 Author: Wolfgang Denk <wd@denx.de>
6596 Date:   Fri May 15 00:16:03 2009 +0200
6597
6598     Redundant Environment: protect full sector size
6599
6600     Several boards used different ways to specify the size of the
6601     protected area when enabling flash write protection for the sectors
6602     holding the environment variables: some used CONFIG_ENV_SIZE and
6603     CONFIG_ENV_SIZE_REDUND, some used CONFIG_ENV_SECT_SIZE, and some even
6604     a mix of both for the "normal" and the "redundant" areas.
6605
6606     Normally, this makes no difference at all. However, things are
6607     different when you have to deal with boards that can come with
6608     different types of flash chips, which may have different sector
6609     sizes.
6610
6611     Here we may have to chose CONFIG_ENV_SECT_SIZE such that it fits the
6612     biggest sector size, which may include several sectors on boards using
6613     the smaller sector flash types. In such a case, using CONFIG_ENV_SIZE
6614     or CONFIG_ENV_SIZE_REDUND to enable the protection may lead to the
6615     case that only the first of these sectors get protected, while the
6616     following ones aren't.
6617
6618     This is no real problem, but it can be confusing for the user -
6619     especially on boards that use CONFIG_ENV_SECT_SIZE to protect the
6620     "normal" areas, while using CONFIG_ENV_SIZE_REDUND for the
6621     "redundant" area.
6622
6623     To avoid such inconsistencies, I changed all sucn boards that I found
6624     to consistently use CONFIG_ENV_SECT_SIZE for protection. This should
6625     not cause any functional changes to the code.
6626
6627     Signed-off-by: Wolfgang Denk <wd@denx.de>
6628     Cc: Paul Ruhland
6629     Cc: Pantelis Antoniou <panto@intracom.gr>
6630     Cc: Stefan Roese <sr@denx.de>
6631     Cc: Gary Jennejohn <garyj@denx.de>
6632     Cc: Dave Ellis <DGE@sixnetio.com>
6633     Acked-by: Stefan Roese <sr@denx.de>
6634
6635 commit b81830f6e3b3e6ed114d071eb107965e49fa9b5a
6636 Author: Ilya Yanok <yanok@emcraft.com>
6637 Date:   Thu May 14 14:03:09 2009 +0400
6638
6639     mmc: it's safe to ignore mmc_send_if_cond() return value
6640
6641     Return value of mmc_send_if_cond() can be safely ignored (as it is
6642     done in Linux). This makes older cards work with MXC MCI controller.
6643
6644     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6645
6646 commit dba6fcf6517faa5dda7df8109febe03c9c72a6f5
6647 Author: Stefan Roese <sr@denx.de>
6648 Date:   Mon May 11 15:54:13 2009 +0200
6649
6650     cfi_mtd: Fix bug in last sector detection
6651
6652     This patch now enabled this cfi-mtd wrapper to correctly detect and
6653     erase the last sector in an NOR FLASH device.
6654
6655     Signed-off-by: Stefan Roese <sr@denx.de>
6656
6657 commit 4e3d89ba948eef801ffd46ef862cdede5b3f8320
6658 Author: Yauhen Kharuzhy <jekhor@gmail.com>
6659 Date:   Thu May 7 00:43:30 2009 +0300
6660
6661     mmc: Fix decoding of SCR & function switch data on little-endian machines
6662
6663     SCR & switch data are read from card as big-endian words and should be
6664     converted to CPU byte order.
6665
6666     Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
6667     Signed-off-by: Andy Fleming <afleming@freescale.com>
6668
6669 commit f33cb34b3971dabe3720d577b0e1b8601c09fe17
6670 Author: Yauhen Kharuzhy <jekhor@gmail.com>
6671 Date:   Thu May 7 13:08:53 2009 +0300
6672
6673     mmc: Remove return from mmc_init for non SD 2.0 compatible cards.
6674
6675     Cards which are not compatible with SD 2.0 standard, may return response
6676     for CMD8 command, but it will be invalid in terms of SD 2.0. We should
6677     accept this case as admissible, just like Linux does.
6678
6679     Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
6680     Signed-off-by: Andy Fleming <afleming@freescale.com>
6681
6682 commit 998be3dd59ed0af4bec38324047fecfa88ac45db
6683 Author: Rabin Vincent <rabin@rab.in>
6684 Date:   Sun Apr 5 13:30:56 2009 +0530
6685
6686     mmc: drop unnecessary casts
6687
6688     Now that response is a uint, we can drop all the casts.
6689
6690     Signed-off-by: Rabin Vincent <rabin@rab.in>
6691
6692 commit 0b453ffe28bb9227d86ddbe0893bd19c93f04ed7
6693 Author: Rabin Vincent <rabin@rab.in>
6694 Date:   Sun Apr 5 13:30:55 2009 +0530
6695
6696     mmc: fix response decoding on little endian
6697
6698     The mmc code defines the response as an array of chars.  However, it
6699     access the response bytes both as (i) an array of four uints (with
6700     casts) and (ii) as individual chars.  The former case is used more
6701     often, including by the driver when it assigns the response.
6702
6703     The char-wise accesses are broken on little endian systems because they
6704     assume that the bytes in the uints are in big endian byte order.
6705
6706     This patch fixes this by changing the response to be an array of four
6707     uints and replacing the char-wise accesses with equivalent uint-wise
6708     accesses.
6709
6710     Signed-off-by: Rabin Vincent <rabin@rab.in>
6711
6712 commit 9b1f942c09dd942e6de3185caa81c111b14de567
6713 Author: Rabin Vincent <rabin@rab.in>
6714 Date:   Sun Apr 5 13:30:54 2009 +0530
6715
6716     mmc: use lldiv to fix arm eabi build
6717
6718     The generic MMC core uses direct long long divisions, which do not build
6719     with ARM EABI toolchains.  Use lldiv() instead, which works everywhere.
6720
6721     Signed-off-by: Rabin Vincent <rabin@rab.in>
6722
6723 commit e85649c7e683faea1ccfddc9fa9abc62f38e4201
6724 Author: Rabin Vincent <rabin@rab.in>
6725 Date:   Sun Apr 5 13:30:53 2009 +0530
6726
6727     mmc: check find_mmc_device return value
6728
6729     find_mmc_device returns NULL if an invalid device number is specified.
6730     Check for this to avoid dereferencing NULL pointers.
6731
6732     Signed-off-by: Rabin Vincent <rabin@rab.in>
6733
6734 commit ac0865ff33870cdf2cd480165045e1bc311e9fa2
6735 Author: Rabin Vincent <rabin@rab.in>
6736 Date:   Sun Apr 5 13:30:52 2009 +0530
6737
6738     mmc: clean up help texts
6739
6740     Remove some repeated words and superfluous newlines in the mmc command
6741     help entries.
6742
6743     Signed-off-by: Rabin Vincent <rabin@rab.in>
6744
6745 commit 7d6900ebe16d679c0e03f8d1584b64057a64ce39
6746 Author: Mike Frysinger <vapier@gentoo.org>
6747 Date:   Fri May 29 17:01:48 2009 -0400
6748
6749     Blackfin: spi: fix pin handling of SPI0 SSEL4
6750
6751     CS4 on SPI0 has a dedicated PH8 pin which needs to be enabled as a
6752     peripheral in order to work.
6753
6754     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6755
6756 commit 2157359dad2533987f5eb0181ef543693fad6a33
6757 Author: Mike Frysinger <vapier@gentoo.org>
6758 Date:   Tue May 26 02:51:57 2009 -0400
6759
6760     Blackfin: fix if() logic in bootrom evt1 check
6761
6762     A missing set of parenthesis caused the silicon revision to apply only to
6763     the BF533 and not the BF531/BF532 variants.
6764
6765     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6766
6767 commit 76b5883da2cf049cd410901c04ea450e5f5c27c3
6768 Author: Stefan Roese <sr@denx.de>
6769 Date:   Sat May 16 12:04:22 2009 +0200
6770
6771     jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together
6772
6773     Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because
6774     mtdparts_init() is available in both files, cmd_mtdparts.c and
6775     cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before
6776     the jffs2/mtdparts command/file split those 2 different versions
6777     already existed. So this is nothing new. The main problem is that the
6778     variables "current_dev" and "current_partnum" are declared in both
6779     files now. This doesn't work.
6780
6781     This patch now changes the names of those variable to more specific
6782     names: "current_mtd_dev" and "current_mtd_partnum". This is because
6783     this patch also changes the declaration from static to global, so
6784     that they can be used from both files.
6785
6786     Please note that my first tests were not successful. The MTD devices
6787     selected via mtdparts are now accessed but I'm failing to see the
6788     directory listed via the "ls" command. Nothing is displayed. Perhaps
6789     I didn't generate the JFFS2 image correctly (I never used JFFS2 in
6790     U-Boot before). Not sure. Perhaps somebody else could take a look at
6791     this as well. I'll continue looking into this on Monday.
6792
6793     Signed-off-by: Stefan Roese <sr@denx.de>
6794     Cc: Wolfgang Denk <wd@denx.de>
6795     Cc: Detlev Zundel <dzu@denx.de>
6796     Cc: Ilya Yanok <yanok@emcraft.com>
6797     Cc: Renaud barbier <renaud.barbier@ge.com>
6798
6799 commit ab687907980fa28940a1a992d3f1c5d17cdbbf5d
6800 Author: Graf Yang <graf.yang@analog.com>
6801 Date:   Sun May 24 02:34:34 2009 -0400
6802
6803     Blackfin: bf518f-ezbrd: setup portmux for async flash
6804
6805     The pins for async memory where parallel flash lives are not enabled by
6806     default, so make sure we mux them as needed.
6807
6808     Signed-off-by: Graf Yang <graf.yang@analog.com>
6809     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6810
6811 commit f40f6db278f602b55820693634a7256b0b4e4b80
6812 Author: Stefan Roese <sr@denx.de>
6813 Date:   Wed May 20 10:58:03 2009 +0200
6814
6815     nand: Fix problem with ECC ordering for PPC4xx NDFC platforms
6816
6817     This patch enables Smart Media (SMC) ECC byte ordering which is used
6818     on the PPC4xx NAND FLASH controller (NDFC). Without this patch we have
6819     incompatible ECC byte ordering to the Linux kernel NDFC driver.
6820
6821     Signed-off-by: Stefan Roese <sr@denx.de>
6822     Acked-by: Scott Wood <scottwood@freescale.com>
6823
6824 commit 399aab7748bef053d59612211e1bd7a3fabfce18
6825 Author: Stefan Roese <sr@denx.de>
6826 Date:   Wed May 20 10:58:02 2009 +0200
6827
6828     ppc4xx: Fix problem with ECC ordering for PPC4xx NDFC platforms
6829
6830     This patch now uses the correct ECC byte order (Smart Media - SMC)
6831     to be used on the 4xx NAND FLASH driver. Without this patch we have
6832     incompatible ECC byte ordering to the Linux kernel NDFC driver.
6833
6834     Please note that we also have to enable CONFIG_MTD_NAND_ECC_SMC in
6835     drivers/mtd/nand/nand_ecc.c for correct operation. This is done with
6836     a seperate patch.
6837
6838     Signed-off-by: Stefan Roese <sr@denx.de>
6839     Acked-by: Scott Wood <scottwood@freescale.com>
6840
6841 commit 5d841fac8249a2b3f9a814da2140132be0a9f60d
6842 Author: Stefan Roese <sr@denx.de>
6843 Date:   Wed May 20 10:58:01 2009 +0200
6844
6845     ppc4xx: Move definition for PPC4xx NAND FLASH controller to header
6846
6847     This patch moves the definition for the PPC4xx NAND FLASH controller
6848     (NDFC) CONFIG_NAND_NDFC into include/ppc4xx.h. This is needed for the
6849     upcoming fix for the ECC byte ordering of the NDFC driver.
6850
6851     Signed-off-by: Stefan Roese <sr@denx.de>
6852     Acked-by: Scott Wood <scottwood@freescale.com>
6853
6854 commit 2df72b82bc9e17b88dc82735a067749220beb025
6855 Author: Kim Phillips <kim.phillips@freescale.com>
6856 Date:   Tue May 19 12:53:36 2009 -0500
6857
6858     common: fix inline--weak error spotted by gcc 4.4
6859
6860     cmd_ide.c:547: error: inline function 'ide_inb' cannot be declared weak
6861
6862     removing the inline attribute fixes it.
6863
6864     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6865
6866 commit 9fd9abedcc3c10cf89353265cbe05f58609d51f3
6867 Author: Kim Phillips <kim.phillips@freescale.com>
6868 Date:   Tue May 19 12:53:32 2009 -0500
6869
6870     TQM834x: remove defines causing gcc4.4 warnings
6871
6872     Configuring for TQM834x board...
6873     cpu_init.c: In function 'cpu_init_f':
6874     cpu_init.c:262: warning: array subscript is above array bounds
6875     cpu_init.c:263: warning: array subscript is above array bounds
6876     cpu_init.c:270: warning: array subscript is above array bounds
6877     ...
6878
6879     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6880
6881 commit 0850301747228a3327f2815a85284d26ade3de95
6882 Author: Andreas Huber <andreas.huber@keymile.com>
6883 Date:   Tue May 19 11:06:30 2009 +0200
6884
6885     UBI: fix return code in ubi_volume_read
6886
6887     Return -ENODEV instead of 0 when trying to read from a non existing volume.
6888
6889     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
6890     Signed-off-by: Stefan Roese <sr@denx.de>
6891
6892 commit ec01481ddc4cf302c7f6d760b776ca94819ec21e
6893 Author: Graf Yang <graf.yang@analog.com>
6894 Date:   Tue May 19 04:40:08 2009 -0400
6895
6896     Blackfin: fix timer_init()/timer_reset()
6897
6898     The timer_init() function was not using the right csync instruction, nor
6899     was it doing it right after disabling the core timer.
6900
6901     The timer_reset() function would reset the timestamp, but not the actual
6902     timer, so there was a common edge case where get_timer() return a jump of
6903     one timestamp (couple milliseconds) right after resetting.  This caused
6904     many functions to improperly timeout right away.
6905
6906     Signed-off-by: Graf Yang <graf.yang@analog.com>
6907     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6908
6909 commit c06326c73bf90e48a8e1cf8893ad31c575423f50
6910 Author: Shinya Kuribayashi <skuribay@pobox.com>
6911 Date:   Sat May 16 09:12:09 2009 +0900
6912
6913     MIPS: lib_mips/board.c: Remove unused variables
6914
6915     This fixes the following build warnings:
6916
6917     board.c: In function 'board_init_r':
6918     board.c:328: warning: unused variable 'i'
6919     board.c:326: warning: unused variable 'e'
6920
6921     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
6922
6923 commit 47f6a36cc3f3427cc8e4f1d0f3e6678be6f33769
6924 Author: Shinya Kuribayashi <skuribay@pobox.com>
6925 Date:   Sat May 16 09:12:09 2009 +0900
6926
6927     MIPS: Make all extern-ed functions in bitops.h static
6928
6929     All these functions are expected to be static inline-ed.
6930     This patch also fixes the following build warnings on MIPS targets:
6931
6932     include/asm/bitops.h: In function 'ext2_find_next_zero_bit':
6933     include/asm/bitops.h:862: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
6934     include/asm/bitops.h:885: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
6935     include/asm/bitops.h:887: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
6936
6937     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
6938
6939 commit 87423d740b91329b8d1d0b73cafd6930993b558a
6940 Author: Thomas Lange <thomas@corelatus.se>
6941 Date:   Fri Apr 24 16:22:16 2009 +0200
6942
6943     MIPS: Implement ethernet halt for au1x00
6944
6945     Implement ethernet halt() by putting MAC0 in reset.
6946     If we do not do this, we will get memory corruption
6947     when ethernet frames are received during early OS boot.
6948
6949     Signed-off-by: Thomas Lange <thomas@corelatus.se>
6950     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
6951
6952 commit a2e0ffcf2d9a22c582a93e84a4bef20fd3877f47
6953 Author: Wolfgang Denk <wd@denx.de>
6954 Date:   Fri May 15 23:29:23 2009 +0200
6955
6956     Prepare v2009.06-rc2
6957
6958     Update CHANGELOG.
6959
6960     Signed-off-by: Wolfgang Denk <wd@denx.de>
6961
6962 commit f4317ea91942f44cc1c433277927b61618e9b0a5
6963 Author: Daniel Mack <daniel@caiaq.de>
6964 Date:   Tue May 5 12:48:29 2009 +0200
6965
6966     ARM: fix PXA build by defining UP2OCR
6967
6968     U-Boot does not currently build for PXA platforms with USB support
6969     enabled:
6970
6971     usb.c:46: error: 'UP2OCR' undeclared (first use in this function)
6972
6973     Signed-off-by: Daniel Mack <daniel@caiaq.de>
6974     Cc: Markus Klotzbuecher <mk@denx.de>
6975
6976     Edited commit message.
6977     Signed-off-by: Wolfgang Denk <wd@denx.de>
6978
6979 commit e26ad0eabd10a8cda51920fbcfe4da5b4ccf0c98
6980 Author: Wolfgang Denk <wd@denx.de>
6981 Date:   Fri May 15 22:32:57 2009 +0200
6982
6983     Minor Coding Style fix; update CHANGELOG.
6984
6985     Signed-off-by: Wolfgang Denk <wd@denx.de>
6986
6987 commit af75a45d23b72a59ac5cc0427696c7f634fdc94b
6988 Author: Wolfgang Denk <wd@denx.de>
6989 Date:   Fri May 15 09:27:58 2009 +0200
6990
6991     IDE: bail out of dev_print() for unknown device types
6992
6993     Commit 574b319512 introduced a subtle bug by mixing a list of tests
6994     for "dev_desc->type" and "dev_desc->if_type" into one switch(), which
6995     then mostly did not work because "dev_desc->type" cannot take any
6996     "IF_*" type values. A later fix in commit 8ec6e332ea changed the
6997     switch() into testing "dev_desc->if_type", but at this point the
6998     initial test for unknown device types was completely lost, which
6999     resulted in output like that for IDE ports without device attached:
7000
7001       Device 1: Model:  Firm:  Ser#:
7002                 Type: # 1F #
7003                 Capacity: not available
7004
7005     This patch re-introduces the missing test for unknown device types.
7006
7007     Signed-off-by: Wolfgang Denk <wd@denx.de>
7008     Cc: Stefan Roese <sr@denx.de>
7009     Cc: Detlev Zundel <dzu@denx.de>
7010     Tested-by: Stefan Roese <sr@denx.de>
7011
7012 commit c21f62d8483fbab44cd98d93ff2e9355a330d225
7013 Author: Stefan Roese <sr@denx.de>
7014 Date:   Thu May 14 07:25:13 2009 +0200
7015
7016     74xx_7xx: Fix rounding problem in CPU frequency calculation
7017
7018     This patch fixes a problem in the CPU frequency calculation. Without it
7019     a 798MHz CPU is displayed as 368.503 MHz. And with it it's 798 MHz.
7020
7021     Signed-off-by: Stefan Roese <sr@denx.de>
7022
7023 commit 3ad8a0517b724782ab36f2b554a94de4c00c1adb
7024 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7025 Date:   Wed May 13 22:24:12 2009 +0200
7026
7027     console.h: remove unused prototype 'console_realloc'
7028
7029     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7030
7031 commit 84bf7ca522e94ec402a1264b01971b924b7e268f
7032 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7033 Date:   Wed May 13 22:16:31 2009 +0200
7034
7035     api: remove un-needed ifdef CONFIG_API already handle by the Makefile
7036
7037     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7038
7039 commit 792a09eb9d5d8c4f74b7e9f2e887316d511a4e80
7040 Author: Detlev Zundel <dzu@denx.de>
7041 Date:   Wed May 13 10:54:10 2009 +0200
7042
7043     Fix e-mail address of Gary Jennejohn.
7044
7045     Signed-off-by: Detlev Zundel <dzu@denx.de>
7046
7047 commit 5e2c08c3ac90808e9be64856916bfd6df984823c
7048 Author: Emil Medve <Emilian.Medve@Freescale.com>
7049 Date:   Tue May 12 13:48:32 2009 -0500
7050
7051     Remove inline qualifier from show_boot_progress()
7052
7053     The 'inline' is conflicting with the semantic of 'weak' attribute and with the
7054     way the show_boot_progress() function is used.
7055
7056     Also gcc 4.4 is complaining about it:
7057
7058     main.c:51: error: inline function 'show_boot_progress' cannot be declared weak
7059
7060     Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
7061
7062 commit fe6da4837308aa33d537ac3e7f36c2d66e3d9a36
7063 Author: Wolfgang Denk <wd@denx.de>
7064 Date:   Tue May 12 15:17:35 2009 +0200
7065
7066     MPC8260: fixup device tree by property instead of path
7067
7068     cpu/mpc8260/cpu.c used to use do_fixup_by_path_u32() to update the
7069     clock frequencies in the device tree, using a CPU path
7070     "/cpus/OF_CPU", with OF_CPU beind defined in the board config file.
7071
7072     However, this does not work when one board config file (here:
7073     MPC8260ADS.h) is intended to be used for several diffrent CPUs and
7074     therefor contains a generic definition like "cpu@0", as the device
7075     trees that will then be loaded will contain specific names like
7076     "PowerPC,8272@0".
7077
7078     We switch to using do_fixup_by_prop_u32() instead, so we can search
7079     for device_type="cpu", as it is done in other architectures, too.
7080
7081     Signed-off-by: Wolfgang Denk <wd@denx.de>
7082     Cc: Heiko Schocher <hs@denx.de>
7083     Acked-by: Heiko Schocher <hs@denx.de>
7084     Tested-by: Heiko Schocher <hs@denx.de>
7085
7086 commit 12a6753155716e5c3c181a8f40e8b2d3d669aefd
7087 Author: Rohit Hagargundgi <h.rohit@samsung.com>
7088 Date:   Mon Mar 9 19:45:46 2009 +0530
7089
7090     Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
7091
7092     Add CONFIG_SYS_MONITOR_LEN macro to apollon board config.
7093     CONFIG_SYS_MONITOR_LEN defines the U-Boot image size.
7094     and is used by OneNAND ipl when reading U-Boot image.
7095
7096     Signed-off-by: Rohit Hagargundgi <h.rohit at samsung.com>
7097     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
7098
7099 commit c404cc5884b0c82fd82d751dbd8e8b3f8919a23a
7100 Author: Ben Warren <biggerbadderben@gmail.com>
7101 Date:   Tue Apr 28 17:04:51 2009 -0700
7102
7103     Schedule removal of non-CONFIG_NET_MULTI net driver API
7104
7105     This will make CONFIG_NET_MULTI the only net driver configuration and
7106     we'll be able to remove this option.
7107
7108     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7109
7110 commit 60bbcf0cc6e55095dd186e59a557d584b9b56eb1
7111 Author: Detlev Zundel <dzu@denx.de>
7112 Date:   Tue May 5 16:04:06 2009 +0200
7113
7114     powerpc/inka4x0: Remove left-over ide reset code.
7115
7116     The pin which was used in preliminary versions of the board for ide
7117     reset is really connected to the rtc clock.
7118
7119     Signed-off-by: Detlev Zundel <dzu@denx.de>
7120
7121 commit f578a2da6770951239ad91ee9a1875fdc71dbe48
7122 Author: Marco Stornelli <marco.stornelli@gmail.com>
7123 Date:   Tue Apr 28 19:04:02 2009 +0200
7124
7125     Add imls utility command
7126
7127     This patch adds, under tools folder, a new command called imls. Its
7128     goal is the same of UBoot's imls but it can be used as Linux shell
7129     command. It reads from raw mtd partition and prints the list of the
7130     stored images.
7131
7132     Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
7133
7134 commit da95427ce431908714ae5e9f663ee6e2bc3bcc33
7135 Author: Heiko Schocher <hs@denx.de>
7136 Date:   Tue Apr 28 08:36:11 2009 +0200
7137
7138     netloop: updates for NetLoop
7139
7140     Fix some issues introduced from commit:
7141     2f70c49e5b9813635ad73666aa30f304c7fdeda9
7142     suggested by Mike Frysinger.
7143
7144     - added some comment for the env_id variable in common_cmd_nvedit.c
7145     - moved some variables in fn scope instead of file scope
7146     - NetInitLoop now static void
7147
7148     Signed-off-by: Heiko Schocher <hs@denx.de>
7149     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7150
7151 commit 3c1d89545de11822f8b5afb5646a57757620bd95
7152 Author: Heiko Schocher <hs@denx.de>
7153 Date:   Tue Apr 28 07:48:39 2009 +0200
7154
7155     82xx, ids8247: added ids8247 board to MAKEALL script
7156
7157     Signed-off-by: Heiko Schocher <hs@denx.de>
7158
7159 commit 890a017a8a995c921d1e889d360e8d6538ceecfe
7160 Author: Detlev Zundel <dzu@denx.de>
7161 Date:   Thu May 7 13:08:55 2009 +0200
7162
7163     arm/imx31_phycore: Fix bi_arch_number
7164
7165     Signed-off-by: Detlev Zundel <dzu@denx.de>
7166     Cc: Sascha Hauer <s.hauer@pengutronix.de>
7167
7168 commit ee47bfabefeb25bdfc83f49ef3bae0f325d3e69e
7169 Author: Sascha Hauer <s.hauer@pengutronix.de>
7170 Date:   Fri May 15 10:21:33 2009 +0200
7171
7172     remove myself as phycore/litekit Maintainer
7173
7174     I never acked a patch that adds me as phycore i.MX31 maintainer nor was
7175     it me who pushed the patches, so remove myself from the maintainer list
7176     so that other people do not longer wait for my ack.
7177
7178     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
7179
7180 commit c63254ef5628efe1c77cb2fdba20753f9666f55d
7181 Author: Sergey Lapin <slapin@ossfans.org>
7182 Date:   Tue May 12 12:25:14 2009 +0400
7183
7184     AFEB9260 network fix
7185
7186     AFEB9260 uses PA10, PA11 for ETX2 and ETX3.
7187     Also, due to extarnal pull-up on IRQ line, Micrel PHY ID is 1 after reset sequence,
7188     not 0.
7189
7190     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
7191
7192 commit f8ddcd58221cab63dd25c2324dd2032487f748b1
7193 Author: Graf Yang <graf.yang@analog.com>
7194 Date:   Tue May 5 02:26:27 2009 -0400
7195
7196     Blackfin: bf518f-ezbrd: reset ethernet PHY during init
7197
7198     We don't know what state the ethernet PHY is in when starting up, so make
7199     sure we set it to a sane state.  This fixes troubles seen when Linux boots
7200     up, configures the PHY is a non-default state, and then the system reboots
7201     into U-Boot which previously expected a reset state only.
7202
7203     Signed-off-by: Graf Yang <graf.yang@analog.com>
7204     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7205
7206 commit 53310b88eaa27fb5cb83144d0b22389190ad87a1
7207 Author: Mike Frysinger <vapier@gentoo.org>
7208 Date:   Tue May 5 01:35:41 2009 -0400
7209
7210     Blackfin: bf527-ezkit: fix SPI flash env params
7211
7212     The BF527-EZKIT settings for storing the environment in SPI flash wasn't
7213     using the correct sector settings for the SPI flash part that is actually
7214     on the board.
7215
7216     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7217
7218 commit f58bf804a14324c6c9186a7a664fa23281780e8b
7219 Author: Mike Frysinger <vapier@gentoo.org>
7220 Date:   Fri Apr 24 23:54:19 2009 -0400
7221
7222     Blackfin: avoid get_sclk() with early serial debug
7223
7224     When the clock functions were changed to use cached values (and thereby
7225     avoiding expensive math functions), early serial debug broke because the
7226     baud programming is called before external memory is available.
7227
7228     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7229
7230 commit 02778f2f1b4b1a28b492367477db27c58d45ae35
7231 Author: Mike Frysinger <vapier@gentoo.org>
7232 Date:   Fri Apr 24 23:39:41 2009 -0400
7233
7234     Blackfin: fix booting with older bootroms (no EVT1)
7235
7236     When dropping jump block support, the assumption was that all bootroms
7237     supported entry point redirection via the EVT1 register.  Unfortunately,
7238     this turned out to be incorrect for the oldest Blackfin parts (BF533-0.2
7239     and older and BF561).  No one really noticed earlier because these parts
7240     usually are booted by bypassing the bootrom entirely, and older BF533
7241     parts are not supported at all (too many anomalies).
7242
7243     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7244
7245 commit af2c37378f203857d5e6c957e77a14c2da5b59d2
7246 Author: Mike Frysinger <vapier@gentoo.org>
7247 Date:   Fri Apr 24 23:22:48 2009 -0400
7248
7249     Blackfin: recurse with early serial initcode
7250
7251     Make sure we recurse through serial_putc() rather than bang on the UART
7252     transmit register directly to avoid hardware overflows when using \n.
7253
7254     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7255
7256 commit 6b8edfde22acc574b5532e9f086e6a7287a9bc78
7257 Author: Wolfgang Denk <wd@denx.de>
7258 Date:   Fri May 1 21:59:12 2009 +0200
7259
7260     Prepare v2009.06-rc1
7261
7262     Update CHANGELOG.
7263
7264     Signed-off-by: Wolfgang Denk <wd@denx.de>
7265
7266 commit 6b2beb5626a143ca5347e7d2c6005be9936c1fbb
7267 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7268 Date:   Fri May 1 15:38:06 2009 +0200
7269
7270     at91: remove lowlevel_init.S
7271
7272     lowlevel_init.S is not used any more so remove it.
7273     As consequence, we also don't have to generate u-boot.lds
7274     but can use a static version as before.
7275
7276     This also fixes the out-of-tree build problem introduced
7277     with commit f0a2c7b4 "at91: add support for the PM9263 board"
7278
7279     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7280     Signed-off-by: Wolfgang Denk <wd@denx.de>
7281
7282 commit 0ee7a310479640ef17ce2fc0f6c13cf7961d2330
7283 Author: Wolfgang Denk <wd@denx.de>
7284 Date:   Fri May 1 00:16:11 2009 +0200
7285
7286     Update CHANGELOG; minor coding style cleanup.
7287
7288     Signed-off-by: Wolfgang Denk <wd@denx.de>
7289
7290 commit d3a513c23ba4100d6983161cdc1f747dfd087bbd
7291 Author: Manikandan Pillai <mani.pillai@ti.com>
7292 Date:   Tue Apr 21 17:29:05 2009 +0200
7293
7294     OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000
7295
7296     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
7297     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
7298
7299 commit ac9140037a84629c5583066ff1a177396c47d89d
7300 Author: Dirk Behme <dirk.behme@googlemail.com>
7301 Date:   Fri Apr 17 14:27:56 2009 +0200
7302
7303     OMAP3: Beagle: Set pinmux conditionally for Rev C boards
7304
7305     The Beagle Rev C boards pull UART2 from an alternate set of balls.
7306
7307     Signed-off-by: Steve Sakoman <steve@sakoman.com>
7308     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
7309
7310 commit c1a0fd5f2864e9d381f4a3dc948942cac974e89a
7311 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7312 Date:   Mon Apr 27 18:33:33 2009 +0200
7313
7314     ubifs: BUG: Blocks commpressed with zlib
7315
7316     Blocks compressed with zlib dont have the full gzip header.
7317
7318     Without this patch, block compressed with zlib cannot be readed!
7319
7320     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7321
7322 commit 35f6a943f7d92145d607c1d55f5c2e2eae5be630
7323 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7324 Date:   Mon Apr 27 18:33:32 2009 +0200
7325
7326     lib_generic: gunzip: New function zunzip
7327
7328     Separate gunzip in
7329
7330     gunzip: Find the end of the header and call zunzip.
7331     zunzip: Inflate gunzip block without header.
7332
7333     UBI fs blocks can be compresed in lzo, zlib or no-compression. The
7334     current implementation of u-boot supported all the compressions but
7335     there was a bug in the implementation of the zlib blocks.
7336
7337     UBIFS's Zlib blocks do not have header but they were compressed using
7338     gunzip, a function used to decompress gunzip files/sectors with a
7339     header.
7340
7341     This patch adds a new function zunzip that uncompress a zlib block with
7342     no header.
7343
7344     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7345
7346 commit a1e5f93185d0d85a4b3fad3b6c743cddcd373b0c
7347 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
7348 Date:   Thu Apr 23 15:37:16 2009 +0200
7349
7350     at91: fixed plla calc when no USB support is active
7351
7352     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
7353     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7354
7355 commit 3791a1187c1401c33c9512595e6e89dbb46230c5
7356 Author: Ladislav Michl <ladis@linux-mips.org>
7357 Date:   Wed Apr 22 01:12:04 2009 +0200
7358
7359     arm925t: Fix CONFIG_SYS_HZ to 1000
7360
7361     Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of
7362     get_timer.
7363
7364     Changes since original version:
7365     * Set PTV=2 (divisor 8) for boards using 12MHz timer clock source to
7366       improve timer resolution.
7367
7368     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
7369
7370 commit 42bf4b2248146abdc592bde0009c6ea42067f437
7371 Author: Dirk Behme <dirk.behme@googlemail.com>
7372 Date:   Tue Apr 14 20:15:17 2009 +0200
7373
7374     OMAP3: Remove legacy NAND defines
7375
7376     Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora.
7377
7378     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
7379
7380 commit cba0b778dd5f1ea32959b6825c7f0a31501a99d5
7381 Author: Sanjeev Premi <premi@ti.com>
7382 Date:   Mon Apr 27 21:27:54 2009 +0530
7383
7384     OMAP3: Print correct silicon revision
7385
7386     The function display_board_info() displays incorrect
7387     silicon revision - based on the return value from
7388     function get_cpu_rev().
7389
7390     This patch fixes the problem.
7391
7392     Signed-off-by: Sanjeev Premi <premi@ti.com>
7393
7394 commit 90006e9b33bcdbf241b0295d186e3634137907a9
7395 Author: Sanjeev Premi <premi@ti.com>
7396 Date:   Mon Apr 27 21:27:44 2009 +0530
7397
7398     OMAP3: Remove unused board-types
7399
7400     The board-types defined in struct omap3_sysinfo seem to be
7401     unused. The function display_board_info() is passed
7402     board type as an argument; which is ignored.
7403
7404     This patch removes all uses of board-type, related definitions
7405     and functions.
7406
7407     Signed-off-by: Sanjeev Premi <premi@ti.com>
7408
7409 commit 6a6b62e3aa4b340c4f8fc67b1487ddb5436c684d
7410 Author: Sanjeev Premi <premi@ti.com>
7411 Date:   Mon Apr 27 21:27:27 2009 +0530
7412
7413     OMAP3: Use functions print_cpuinfo() and checkboard()
7414
7415     Use the functions print_cpuinfo() and checkboard() to
7416     display the cpu and board specific information.
7417
7418     These functions reuse content from the existing function
7419     display_board_info() - which has been removed.
7420
7421     Also, updated the existig OMAP3 configurations to
7422     define:
7423      - CONFIG_DISPLAY_CPUINFO
7424      - CONFIG_DISPLAY_BOARDINFO
7425
7426     Signed-off-by: Sanjeev Premi <premi@ti.com>
7427
7428 commit f8e2b3107ee00f2782f8ebf47e3f09cda4e2353a
7429 Author: Stefan Roese <sr@denx.de>
7430 Date:   Wed Mar 18 11:17:37 2009 +0100
7431
7432     MTD: Change cfi-mtd to accept non-uniform sector sizes
7433
7434     With this patch non-uniform NOR FLASH chips (chips with multiple erase
7435     regions) can be exported via the cfi-mtd layer and therefor used by UBI.
7436     We select the largest sector size as erasesize. The cfi driver will make
7437     sure that the smaller sectors are handled correctly.
7438
7439     Signed-off-by: Stefan Roese <sr@denx.de>
7440
7441 commit 3dcbe628d66b648e954bc8147d4faff2983206d9
7442 Author: Anatolij Gustschin <agust@denx.de>
7443 Date:   Thu Apr 23 12:35:22 2009 +0200
7444
7445     video: fix bug in cfb_console.c code
7446
7447     Fix bug in drawing long version/info strings:
7448     U-Boot version string like
7449     "U-Boot 2009.03-05647-g7c51e06 (Apr 23 2009 - 12:40:00) MPC83XX"
7450     is long and doesn't wrap around correctly while drawing
7451     beside the logo. Such long strings partially overwrite
7452     the logo. This patch is an attempt to fix it.
7453
7454     Signed-off-by: Anatolij Gustschin <agust@denx.de>
7455
7456 commit 4d9eab89b3b2c2ed432b14d355a56f274d8aac75
7457 Author: Wolfgang Denk <wd@denx.de>
7458 Date:   Tue Apr 28 08:50:31 2009 +0200
7459
7460     cmd_ext2.c: fix compile warnings
7461
7462     Get rid of these warnings:
7463
7464     cmd_ext2.c:247: warning: format '%ld' expects type 'long int', but argument 2 has type 'int'
7465     cmd_ext2.c:248: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'int'
7466
7467     Signed-off-by: Wolfgang Denk <wd@denx.de>
7468
7469 commit 28afe0160f87ff74574150d703055a965f91422a
7470 Author: Heiko Schocher <hs@denx.de>
7471 Date:   Mon Apr 27 10:48:20 2009 +0200
7472
7473     ids8247: Remove legacy NAND defines
7474
7475     because legacy NAND support is deprecated converting to current
7476     NAND interface. !This just compile, because I have no more the
7477     hardware to test it.
7478
7479     Signed-off-by: Heiko Schocher <hs@denx.de>
7480
7481 commit dbd33614404b65aa441c5620c3dbd560c4460c09
7482 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7483 Date:   Mon Apr 27 09:13:31 2009 +0200
7484
7485     ubifs: BUG realpath string must be ended with NULL
7486
7487     If the memory used to copy the link_make is "dirty" the string wont
7488     be ended with NULL, throwing out multiple memory bugs.
7489
7490     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7491     Acked-by: Stefan Roese <sr@denx.de>
7492
7493 commit 65351a8793c51f3787efbbcf3aa1df0ad543c127
7494 Author: Peter Tyser <ptyser@xes-inc.com>
7495 Date:   Fri Apr 24 15:59:56 2009 -0500
7496
7497     bmp_logo: Check return value of fread()
7498
7499     Add basic error handling to fread() function calls.  This prevents
7500     compililation warnings such as:
7501
7502     bmp_logo.c: In function â€˜main’:
7503     bmp_logo.c:71: warning: ignoring return value of â€˜fread’, declared with
7504     attribute warn_unused_result
7505     ...
7506
7507     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7508
7509 commit eea8be86d1c2b570660d1f6c553845e13164231a
7510 Author: Peter Tyser <ptyser@xes-inc.com>
7511 Date:   Fri Apr 24 15:59:46 2009 -0500
7512
7513     ncb: Check return value of write()
7514
7515     This prevents the compilation warning:
7516
7517     ncb.c: In function 'main':
7518     ncb.c:32: warning: ignoring return value of â€˜write’, declared with
7519     attribute warn_unused_result
7520
7521     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7522
7523 commit dbe29e36a4c2775b69b5a63b0ce2bac89c08e691
7524 Author: Stefan Roese <sr@denx.de>
7525 Date:   Fri Apr 24 15:59:35 2009 +0200
7526
7527     mtd: nand/onenand: Register mtd device upon device scanning
7528
7529     With this patch the NAND and OneNAND devices are registered in the MTD
7530     subsystem and can then be referenced by the mtdcore code (e.g.
7531     get_mtd_device_nm()). This is needed for the new "ubi part" command
7532     syntax without the flash type parameter (nor|nand|onenand).
7533
7534     Signed-off-by: Stefan Roese <sr@denx.de>
7535
7536 commit 10bb62d85a0850dbad1fdd34123378686373f166
7537 Author: Stefan Roese <sr@denx.de>
7538 Date:   Fri Apr 24 15:58:33 2009 +0200
7539
7540     mtd: nand: Include linux/mtd/partitions.h in nand_base.h
7541
7542     This patch removes this compilation warning when CONFIG_MTD_PARTITIONS is
7543     defined:
7544
7545     nand_base.c: In function 'nand_release':
7546     nand_base.c:2922: warning: implicit declaration of function 'del_mtd_partitions'
7547
7548     Signed-off-by: Stefan Roese <sr@denx.de>
7549
7550 commit 2d579e5060413af5a740cb396dc87e1ff31bf5a9
7551 Author: Stefan Roese <sr@denx.de>
7552 Date:   Fri Apr 24 20:24:19 2009 +0200
7553
7554     ubi: Remove flash selection parameter (nor|nand|onenand) from "ubi part"
7555
7556     This patch removes the now unnecessary flash type parameter from the
7557     "ubi part" command. Currently the user has to define the type of flash
7558     he will be using UBI on. Example:
7559
7560     => ubi part nor partition1
7561
7562     With this patch this type parameter is not needed anymore. The user can
7563     now select the partition directly without the flash type paramter.
7564     Example:
7565
7566     => ubi part partition1
7567
7568     This breaks backward compatibility right now because of the change in the
7569     command syntax. But UBI support is still quite fresh and the advantage of
7570     this new command is syntax big enough for this change. Additionally the
7571     code is much cleaner now.
7572
7573     Signed-off-by: Stefan Roese <sr@denx.de>
7574     CC: Kyungmin Park <kyungmin.park@samsung.com>
7575
7576 commit 294f10ca9ea82a15e135dcb0fc658382ab206940
7577 Author: Detlev Zundel <dzu@denx.de>
7578 Date:   Thu Apr 23 13:14:20 2009 +0200
7579
7580     mips/vcth: Use generic 16550 uart driver
7581
7582     As the common code also handles baudrate switching, which the board
7583     specific vct.c driver did not support, this is one of the rare
7584     occassions where deleting code actually adds a feature :)
7585
7586     Signed-off-by: Detlev Zundel <dzu@denx.de>
7587     Acked-by: Stefan Roese <sr@denx.de>
7588     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
7589
7590 commit 0c8a84916c5dacccdc5b27b63fc463e9f3b04f07
7591 Author: Ladislav Michl <ladis@linux-mips.org>
7592 Date:   Tue Apr 21 02:26:31 2009 +0200
7593
7594     Separate mtdparts command from jffs2
7595
7596     On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
7597     > Currently the mtdparts commands are included in the jffs2 command support.
7598     > This doesn't make sense anymore since other commands (e.g. UBI) use this
7599     > infrastructure as well now. This patch separates the mtdparts commands from
7600     > the jffs2 commands making it possible to only select mtdparts when no JFFS2
7601     > support is needed.
7602
7603     One more leftover... Let nboot command know about partitions even if JFFS2
7604     support is not enabled.
7605
7606     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
7607     Acked-by: Stefan Roese <sr@denx.de>
7608
7609 commit 67c2e57c0875139dbfcd6f41c43e6ad0cb2e40c9
7610 Author: Peter Tyser <ptyser@xes-inc.com>
7611 Date:   Mon Apr 20 11:22:13 2009 -0500
7612
7613     cmd_ide: Remove unused AmigaOneG3SE code
7614
7615     The output_data_short() and input_data_short() functions for the
7616     AmigaOneG3SE are unused and result in compiler warnings.
7617
7618     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7619
7620 commit c93c102ace00764a56dbdf78bac134a23906721e
7621 Author: Peter Tyser <ptyser@xes-inc.com>
7622 Date:   Mon Apr 20 11:21:40 2009 -0500
7623
7624     AmigaOneG3SE: Fix CONFIG_CMD_CONSOLE definition
7625
7626     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7627
7628 commit 54e822f9590cc6c70411bd8cabd42236e07a2aa7
7629 Author: Peter Tyser <ptyser@xes-inc.com>
7630 Date:   Mon Apr 20 11:09:05 2009 -0500
7631
7632     Replace __asm references with __asm__
7633
7634     __asm__ follows gcc's documented syntax and is generally more common
7635     than __asm.  This change is only asthetic and should not affect
7636     functionality.
7637
7638     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7639
7640 commit f9a109b3adc5e8647535357500e2a38f0558b5c2
7641 Author: Peter Tyser <ptyser@xes-inc.com>
7642 Date:   Mon Apr 20 11:08:46 2009 -0500
7643
7644     Replace __attribute references with __attribute__
7645
7646     __attribute__ follows gcc's documented syntax and is generally more
7647     common than __attribute.  This change is only asthetic and should not
7648     affect functionality.
7649
7650     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7651
7652 commit 08f077da9298ff65cc6f85f90d2770000a1beee9
7653 Author: David Brownell <dbrownell@users.sourceforge.net>
7654 Date:   Thu Apr 16 19:55:48 2009 -0700
7655
7656     mtdpart command: align output columns
7657
7658     Make the headers in the "mtdparts" command output line up
7659     with their columns ... strike the extra TAB character.
7660
7661     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
7662
7663 commit 06f41f825c23344d889d5419bb5eaeceb3ed2a02
7664 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
7665 Date:   Thu Apr 16 10:51:03 2009 +0900
7666
7667     Remove sa1100.h
7668
7669     sa1100.h is not used anywhere, then remove it.
7670
7671     $ find . -name '*.h' -empty -print
7672     ./include/sa1100.h
7673     $ git grep 'sa1100.h' .
7674     $
7675
7676     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
7677     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7678
7679 commit 7d3d30b1b3fbd0a07db254ead99fa6fff4f4d992
7680 Author: Stefan Roese <sr@denx.de>
7681 Date:   Tue Apr 14 17:51:21 2009 +0200
7682
7683     UBIFS: Remove tnc_commit.c which is not used in the read-only version
7684
7685     I missed removing this file while implementing the UBIFS support. It's
7686     not referenced at all, so let's remove it. Thanks to Artem Bityutskiy
7687     for spotting.
7688
7689     Signed-off-by: Stefan Roese <sr@denx.de>
7690
7691 commit 6356daff70867822bdb23cea49f98e65421a25b8
7692 Author: Adrian Hunter <adrian.hunter@nokia.com>
7693 Date:   Tue Apr 14 17:50:38 2009 +0200
7694
7695     UBIFS: fix recovery bug
7696
7697     UBIFS did not recovery in a situation in which it could
7698     have. The relevant function assumed there could not be
7699     more nodes in an eraseblock after a corrupted node, but
7700     in fact the last (NAND) page written might contain anything.
7701     The correct approach is to check for empty space (0xFF bytes)
7702     from then on.
7703
7704     Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
7705     Signed-off-by: Stefan Roese <sr@denx.de>
7706
7707 commit 351f40caf2f7806b2cefb93e077ea619b9f684e8
7708 Author: Gao Guanhua <B22826@freescale.com>
7709 Date:   Tue Apr 14 14:37:35 2009 +0800
7710
7711     fs: Fix the wrong type of var
7712
7713     The filelen should be signed type, not unsigned type.
7714     otherwise, The condition as below never take.
7715         if (filelen < 0)
7716
7717     Signed-off-by: Gao Guanhua <B22826@freescale.com>
7718     Signed-off-by: Dave Liu <daveliu@freescale.com>
7719
7720 commit 05f474c4d0469bebc0bb05df60a39dc7fdf28e62
7721 Author: Wolfgang Denk <wd@denx.de>
7722 Date:   Tue Apr 28 00:29:34 2009 +0200
7723
7724     Update CHANGELOG
7725
7726     Signed-off-by: Wolfgang Denk <wd@denx.de>
7727
7728 commit ad74cae9ff8790727bc81ee91c6bca7d50dca446
7729 Author: David Brownell <dbrownell@users.sourceforge.net>
7730 Date:   Thu Apr 16 23:15:15 2009 -0700
7731
7732     dm9000 EEPROM reading bugfix
7733
7734     Make the U-Boot dm9000 driver read addresses from EEPROM just
7735     like Linux does ... read six bytes, instead of reading twelve
7736     bytes and then discarding every other one.
7737
7738     Using the right Ethernet address is a big win.
7739
7740     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
7741     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7742     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7743
7744 commit d4c02e6f5d49880123e7f584b88f857ffd874381
7745 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
7746 Date:   Wed Feb 25 14:27:24 2009 +0900
7747
7748     rtl8169: fix cache coherency problem
7749
7750     Fix the problem that cannot access actual data when CPU data cache enabled.
7751
7752     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
7753     Tested-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7754     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7755
7756 commit a85693b3bd4431b05b7df608b6f7733c0f80c53e
7757 Author: Dirk Behme <dirk.behme@googlemail.com>
7758 Date:   Tue Apr 21 17:30:51 2009 +0200
7759
7760     OMAP3: Fix changed mmc init command
7761
7762     In recent U-Boot mmcinit changed to mmc init.
7763
7764     Signed-off-by: Steve Sakoman <steve@sakoman.com>
7765     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
7766
7767 commit 34b76a14f676bc6501c27a96564e4dfb4793f033
7768 Author: Wolfgang Denk <wd@denx.de>
7769 Date:   Sun Apr 26 20:39:26 2009 +0200
7770
7771     lib_arm/board.c: remove misleading "test-only" comment.
7772
7773     For a long time, the print_cpuinfo() declaration in lib_arm/board.c
7774     had been marked as "test-only", which is plain wrong considering
7775     current usage.  Delete this misleading comment.
7776
7777     Signed-off-by: Wolfgang Denk <wd@denx.de>
7778
7779 commit 7239c5da5e9197accb3dfe395be4502c3b9bca8e
7780 Author: David Brownell <dbrownell@users.sourceforge.net>
7781 Date:   Sun Apr 12 15:40:16 2009 -0700
7782
7783     minor DaVinci clock cleanup
7784
7785     Minor cleanup to clock-related defines for DaVinci DM6446 boards:
7786
7787      - CONFIG_SYS_CLK_FREQ is unused; remove it.
7788
7789      - CONFIG_SYS_NS16550_CLK must be the same as CONFIG_SYS_HZ_CLOCK
7790
7791     On DM6446 both of those peripheral clocks actually come from the
7792     same source, the primary oscillator.  Having them use the same
7793     symbol avoids bugs in the clone'n'modify development cycle.
7794
7795     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
7796
7797 commit ffd8c7170d55c34bbfcfd2c84093dcaff796cbf3
7798 Author: Minkyu Kang <mk7.kang@samsung.com>
7799 Date:   Mon Apr 6 19:59:29 2009 +0900
7800
7801     s3c64xx: remove unnecessary definition
7802
7803     CONFIG_S3C6400 is must defined at config header file
7804     That definition is unnecessary at this file
7805
7806     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
7807
7808 commit 14b9308d511b53042ef478936e367a67282df66a
7809 Author: Heiko Schocher <hs@denx.de>
7810 Date:   Fri Apr 24 06:50:45 2009 +0200
7811
7812     83xx: searching "muram-data" by compatible property
7813
7814     if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU
7815     in the muram-data node, the reg entry needs to be updated.
7816     This is done in fdt_fixup_muram(), but we should use
7817     the compatible "fsl,qe-muram-data" for searching the
7818     node instead of searching the muram-data node with
7819     an absolute path.
7820
7821     Signed-off-by: Heiko Schocher <hs@denx.de>
7822     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7823
7824 commit 8e15088794807944b221c11609d36789efc7f767
7825 Author: Anatolij Gustschin <agust@denx.de>
7826 Date:   Thu Apr 23 21:29:34 2009 +0200
7827
7828     mpc83xx: MPC8360ERDK: fix environment offset configuration bug
7829
7830     The size of U-Boot binary for MPC8360ERDK increased
7831     (> 2 flash sectors now), so 'saveenv' will partially
7832     overwrite U-Boot in flash and will brick the board.
7833     This patch moves environment offset to fourth flash
7834     sector and also fixes CONFIG_SYS_MONITOR_LEN.
7835
7836     Signed-off-by: Anatolij Gustschin <agust@denx.de>
7837     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7838
7839 commit 3c172c4fdbbb5858fae38478d6399be4a16be3fc
7840 Author: Michael Zaidman <michael.zaidman@gmail.com>
7841 Date:   Sat Apr 4 01:43:00 2009 +0300
7842
7843     NetLoop initialization bug
7844
7845     The patch fixes the bug of partial initialization of global network
7846     parameters.
7847
7848     Upon u-boot's start up the first ping command causes a failure of the
7849     consequent TFTP command. It happens in the recently added mechanism of
7850     the NetLoop initialization where initialization of global network
7851     parameters is separated in the NetInitLoop routine which is called per
7852     env_id change. Thus, ping request will initialize the network parameters
7853     necessary for ping operation only, afterwards the env_changed_id will be
7854     set to the env_id that will prevent all following initialization requests
7855     from other protocols.
7856     The problem is that the initialized by ping subset of network parameters
7857     is not sufficient for other protocols and particularly for TFTP which
7858     requires the NetServerIp also.
7859
7860     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
7861     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7862
7863 commit b11f664f52c2855990107c18f242223377183575
7864 Author: Timur Tabi <timur@freescale.com>
7865 Date:   Thu Apr 9 10:27:05 2009 -0500
7866
7867     net: fix ULI 526x macro usage in netdev.h
7868
7869     Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526.  CONFIG_ULI526X
7870     is used everywhere else, so that's the correct macro name.  Without this fix,
7871     Ethernet will not work on the Freescale MPC8610 HPCD.
7872
7873     Signed-off-by: Timur Tabi <timur@freescale.com>
7874     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7875
7876 commit 7ee38c044ca5041d3378d6507580ea4ec344af96
7877 Author: David Brownell <dbrownell@users.sourceforge.net>
7878 Date:   Sun Apr 12 15:38:06 2009 -0700
7879
7880     fix DaVinci NS16550_REG_SIZE regression
7881
7882     Update the DaVinci DM6446 boards to use the new convention
7883     for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed
7884     from the original 4 bytes, but these chips are little-endian.
7885
7886     (Resolves a regression added recently by the include/ns16550.h
7887     patch to "Unify structure declaration for registers".  The code
7888     previously worked just fine because the registers were accessed
7889     as host-endian words, not as bytes.)
7890
7891     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
7892
7893 commit dfc99e143fca44a492918ac6cf3f76ee9c2473a9
7894 Author: Mike Frysinger <vapier@gentoo.org>
7895 Date:   Sun Apr 12 22:29:20 2009 -0400
7896
7897     cmd_nand: drop duplicate NULL ptr check
7898
7899     The first if statement checks for NULL ptrs, so there is no need to check
7900     it again in later else cases (such as .oob).
7901
7902     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7903     CC: Scott Wood <scottwood@freescale.com>
7904
7905 commit 7732cef2eeb4e339cfcd8553fab773af73a20805
7906 Author: David Brownell <dbrownell@users.sourceforge.net>
7907 Date:   Mon Apr 13 08:03:38 2009 -0700
7908
7909     CMD_UBI != MTD_PARTITIONS
7910
7911     Fix dependency goofage:  it should certainly be possible to have the
7912     partition support without bringing in UBI commands.
7913
7914     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
7915     Acked-by: Stefan Roese <sr@denx.de>
7916
7917 commit 6ebff365eb63093ca35b687316002535c6a18820
7918 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7919 Date:   Thu Apr 16 21:30:48 2009 +0200
7920
7921     at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000
7922
7923     The timer has been rewrote with a precision at ~0,18%
7924
7925     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7926     Tested-by: Sergey Lapin <slapin@ossfans.org>
7927     Tested-by: Eric BENARD <ebenard@free.fr>
7928
7929 commit f0a2c7b4b64eacd06bb272856bcc056be8719f5a
7930 Author: Ilko Iliev <iliev@ronetix.at>
7931 Date:   Thu Apr 16 21:30:48 2009 +0200
7932
7933     at91: add support for the PM9263 board of Ronetix GmbH
7934
7935     The PM9263 board is based on the AT91SAM9263-EK board.
7936
7937     Here is the page on Ronetix website:
7938     http://www.ronetix.at/starter_kit_9263.html
7939
7940     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
7941     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7942
7943 commit dc39ae9513c32dfeb9e018dc0d22c6484514fefb
7944 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7945 Date:   Thu Apr 16 21:30:44 2009 +0200
7946
7947     at91sam9/at91cap: improve clock framework
7948
7949     calculate dynamically the clock rate and pllb setting for usb
7950
7951     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7952
7953 commit dd7c302099ef5590069bdbf292aaa8230cd59de7
7954 Author: Stefan Roese <sr@denx.de>
7955 Date:   Wed Apr 15 14:08:48 2009 +0200
7956
7957     ppc4xx: Disable POST memory test on NAND-booting Kilauea
7958
7959     Don't run the memory POST on the NAND-booting version. It will
7960     overwrite part of the U-Boot image which is already loaded from NAND
7961     to SDRAM. We were just lucky that it booted at all with this SDRAM
7962     test enabled.
7963
7964     Signed-off-by: Stefan Roese <sr@denx.de>
7965
7966 commit 9a929170be89b27bce677504da27e88600c06c49
7967 Author: Stefan Roese <sr@denx.de>
7968 Date:   Wed Apr 15 14:06:26 2009 +0200
7969
7970     ppc4xx: Disable POST memory test on NAND-booting Sequoia
7971
7972     Don't run the memory POST on the NAND-booting version. It will
7973     overwrite part of the U-Boot image which is already loaded from NAND
7974     to SDRAM. We were just lucky that it booted at all with this SDRAM
7975     test enabled.
7976
7977     Signed-off-by: Stefan Roese <sr@denx.de>
7978
7979 commit 17c1b0e89b8be7d90f605eb19af9218c6275bfb3
7980 Author: Stefan Roese <sr@denx.de>
7981 Date:   Wed Apr 15 11:32:53 2009 +0200
7982
7983     ppc4xx: Remove unused code for Sequoia NAND booting version
7984
7985     The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not
7986     used at all. This patch changes it's define to the currently used value of
7987     133333333 and removes the unnecessary code.
7988
7989     Signed-off-by: Stefan Roese <sr@denx.de>
7990
7991 commit cf9409885cbe01405bad76790e99f8adf3351f4d
7992 Author: Stefan Roese <sr@denx.de>
7993 Date:   Wed Apr 15 10:50:48 2009 +0200
7994
7995     ppc4xx: Add "booting from NAND" to 4xx NAND-booting targets
7996
7997     This additional text in the bootup log helps to see if the board is
7998     configured for NAND-booting. Especially helpful for boards that can
7999     boot from NOR and NAND (e.g. most of the AMCC eval boards).
8000
8001     Signed-off-by: Stefan Roese <sr@denx.de>
8002
8003 commit 5132106a27b8fb302677852b26ffd319b40d17e2
8004 Author: Stefan Roese <sr@denx.de>
8005 Date:   Wed Apr 8 10:36:22 2009 +0200
8006
8007     ppc4xx: Fixup chip-selects in dtb for NAND-booting Sequoia
8008
8009     Currently the NOR & NAND support in Linux only works for the "standard"
8010     Sequoia, the version booting for NOR flash. The NAND-booting version
8011     has the chip-selects swapped. Here the chip-select mappings:
8012
8013     "Standard" NOR-booting version:
8014     CS0 NOR
8015     CS3 NAND
8016
8017     NAND-booting version:
8018     CS0 NAND
8019     CS3 NOR
8020
8021     With this path the dtb gets fixed-up, so that the correct chip-select
8022     numbers are patched in the dtb enabling correct NOR & NAND support
8023     in Linux on the NAND-booting Sequoia version.
8024
8025     Signed-off-by: Stefan Roese <sr@denx.de>
8026
8027 commit aad4eca4ba8d597747199d8af723426681557dda
8028 Author: Mike Frysinger <vapier@gentoo.org>
8029 Date:   Sat Apr 4 09:10:27 2009 -0400
8030
8031     Blackfin: audit UART for all known anomalies
8032
8033     There is no code change here, just new comments, but this keeps me from
8034     having to do another audit from scratch in the future.
8035
8036     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8037
8038 commit 8ef929afa43c77c9573caa57c6e17a97a33775c0
8039 Author: Mike Frysinger <vapier@gentoo.org>
8040 Date:   Sat Apr 4 08:40:13 2009 -0400
8041
8042     Blackfin: add check for anomaly 05000362
8043
8044     DESCRIPTION:
8045     The column address width settings for banks 2 and 3 are misconnected in
8046     the SDRAM controller.  Accesses to bank 2 will result in an error if the
8047     Column Address Width for bank 3 (EB3CAW ) is not set to be the same as
8048     that of bank 2.
8049
8050     WORKAROUND:
8051     If using bank 2, make sure that banks 2 and 3 have the same column address
8052     width settings in the EBIU_SDBCTL register.  This must be the case
8053     regardless of whether or not bank 3 is enabled.
8054
8055     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8056
8057 commit c2e07449f546fb375289cdac1a608fdc20357873
8058 Author: Mike Frysinger <vapier@gentoo.org>
8059 Date:   Sat Apr 4 08:29:55 2009 -0400
8060
8061     Blackfin: add comment about anomaly 05000430 avoidance
8062
8063     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8064
8065 commit 48ab1509254a4c175e4f65c478a978928ffe09ec
8066 Author: Mike Frysinger <vapier@gentoo.org>
8067 Date:   Sat Apr 4 08:10:22 2009 -0400
8068
8069     Blackfin: add workaround for anomaly 05000242
8070
8071     DESCRIPTION:
8072     If the DF bit is set prior to a hardware reset, the PLL will continue to
8073     divide CLKIN by 2 after the hardware reset, but the DF bit itself will be
8074     cleared in the PLL_CTL register.
8075
8076     WORKAROUND:
8077     Reprogram the PLL with DF cleared if the desire is to not divide CLKIN by
8078     2 after reset.
8079
8080     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8081
8082 commit ce1fe4ba6bb9df7c57351436fa17d1af8bbe7916
8083 Author: Mike Frysinger <vapier@gentoo.org>
8084 Date:   Sat Apr 4 08:09:24 2009 -0400
8085
8086     Blackfin: add workaround for anomaly 05000171
8087
8088     DESCRIPTION:
8089     The Boot ROM is executed at power up/reset and changes the value of the
8090     SICA_IWR registers from their default reset value of 0xFFFF, but does not
8091     restore them.
8092
8093     WORKAROUND:
8094     User code should not rely on the default value of these registers.  Set
8095     the desired values explicitly.
8096
8097     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8098
8099 commit 51ee6e057f7a920e2a125cd9f985d10f625e355f
8100 Author: Mike Frysinger <vapier@gentoo.org>
8101 Date:   Sat Apr 4 08:22:36 2009 -0400
8102
8103     Blackfin: update anomaly sheets
8104
8105     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8106
8107 commit a343ba87ea0320ca0a4ecfa2c42cd9d4f18883df
8108 Author: Graf Yang <graf.yang@analog.com>
8109 Date:   Sat Apr 4 07:45:57 2009 -0400
8110
8111     Blackfin: nand: flush peripheral before polling it
8112
8113     We need to make sure the data written to the nand flash controller makes
8114     it there before we start polling its status register.  Otherwise, we may
8115     get stale data and return before the controller is actually ready.
8116
8117     Signed-off-by: Graf Yang <graf.yang@analog.com>
8118     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8119     Acked-by: Scott Wood <scottwood@freescale.com>
8120
8121 commit 3ccbfb25f48af78e7092ac75f3115e924e76c748
8122 Author: Remy Bohmer <linux@bohmer.net>
8123 Date:   Sun Apr 5 11:43:28 2009 +0200
8124
8125     Support for PXA27X UDC.
8126
8127         This Patch adds Support for PXA27X UDC.
8128         (Rebased to drivers/usb reorganisation)
8129
8130     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
8131     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8132
8133 commit 2731b9a86685190d26b1883f27afda5ac8e1a313
8134 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8135 Date:   Fri Apr 3 12:46:58 2009 +0200
8136
8137     drivers/usb: regorganisation
8138
8139     move to linux usb driver organisation
8140
8141     as following
8142
8143     drivers/usb/gadget
8144     drivers/usb/host
8145     drivers/usb/musb
8146
8147     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8148     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8149
8150 commit d04371a116d102e587ba7aa4c329b441cdbea3f4
8151 Author: Todor I Mollov <tmollov@ucsd.edu>
8152 Date:   Sat Apr 4 06:53:06 2009 -0400
8153
8154     Blackfin: spi: make cs deassert function deterministic
8155
8156     Blackfin SPI driver was not driving the SPI chip-select high before
8157     putting the chip-select signals into tri-state mode.  This is probably
8158     something that slipped by unnoticed in most designs.  If the signals are
8159     put directly into a tri-state mode, then the board is relying on the
8160     pull-up resistors to pull up the chip-select before the next transaction.
8161     Most of the time this is fine, except when you have two transactions that
8162     follow each other very closely, such as the flash erase and read status
8163     register commands.  In this case I was seeing a 500ns separation between
8164     the transactions.  In my setup, with a 10kOhm pull-up, it would meet
8165     timing spec about half the time and resulted in intermittent errors.  (A
8166     stronger pull up would fix this, but our design is targeted for low power
8167     consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
8168     I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
8169     chip-selects high before putting them into tri-state.  For me, this
8170     resulted in a rise time of 5ns instead of the previous rise time of about
8171     1us, and fully satisfied the timing spec of the chip.
8172
8173     Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
8174     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8175
8176 commit c6fadb9c73a6a3e0c7f20696e978304a593a8d2d
8177 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8178 Date:   Sat Dec 13 21:08:05 2008 +0100
8179
8180     integratorap: fix PCI support
8181
8182     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8183
8184 commit 1c397508c836dfcb01fb2471c71de0727051f117
8185 Author: Dirk Behme <dirk.behme@googlemail.com>
8186 Date:   Mon Mar 30 21:15:23 2009 +0200
8187
8188     OMAP3: Update Overo pin mux for new expansion board
8189
8190     A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and
8191     switches. This patch changes the pinmux configuration for those pins.
8192     They were previously set up for unused MMC3_DAT4-7.
8193
8194     Signed-off-by: Steve Sakoman <steve@sakoman.com>
8195     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8196
8197 commit ab298231518675b3784aea88ee9b978438f99e63
8198 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8199 Date:   Sun Apr 5 13:08:03 2009 +0200
8200
8201     arm: unify reset command
8202
8203     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8204
8205 commit b3acb6cd4059dfb29a5e99095d802717f53ff784
8206 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8207 Date:   Sun Apr 5 13:06:31 2009 +0200
8208
8209     arm: clean cache management
8210
8211     unify arm cache management except for non standard cache as ARM7TDMI
8212
8213     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8214
8215 commit 677e62f43235de9a1701204d7bcea0fb3d233fa1
8216 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8217 Date:   Sun Apr 5 13:02:43 2009 +0200
8218
8219     arm: update co-processor 15 access
8220
8221     import system.h from linux
8222
8223     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8224
8225 commit 23e4af49e066a53cd3e3659b68ef90572d88de84
8226 Author: Guennadi Liakhovetski <lg@denx.de>
8227 Date:   Sun Apr 5 00:42:02 2009 +0200
8228
8229     ARM: add the imx31_phycore_eet target to MAINTAINERS
8230
8231     imx31_phycore_eet is a variant of the imx31_phycore board with a few
8232     extensions, which justifies a separate entry in the MAINTAINERS list,
8233     whereas normally all entries sharing a single configuration file and a
8234     board/ directory have only one entry in MAINTAINERS.
8235
8236     Reported-by: Wolfgang Denk <wd@denx.de>
8237     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8238
8239 commit 69c5bf29908b3a7f8e23bd9891b7ecc5b21f23e5
8240 Author: Guennadi Liakhovetski <lg@denx.de>
8241 Date:   Sun Apr 5 00:37:07 2009 +0200
8242
8243     ARM: fix out-of-tree build of imx31_phycore_eet
8244
8245     Fix out-of-tree build of the imx31_phycore_eet target.
8246
8247     Reported-by: Wolfgang Denk <wd@denx.de>
8248     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8249
8250 commit 3c853f31d6a8e4407f73a2ca2c63d383a245f237
8251 Author: Jon Smirl <jonsmirl@gmail.com>
8252 Date:   Sat Apr 4 17:44:51 2009 -0400
8253
8254     mpc5200: reduce delays in i2c
8255
8256     The previous code waited 1000us before checking i2c
8257     status. Measurement shows i2c is usually ready in
8258     under 50us. Change the polling interval to 15us,
8259     loop 6,667 times to keep the polling timeout constant
8260     at 100ms.
8261
8262 commit 36003268968949110ef145d9f2eaf8439c96d25b
8263 Author: Sanjeev Premi <premi@ti.com>
8264 Date:   Fri Apr 3 14:00:07 2009 +0530
8265
8266     OMAP: Fix compile issue
8267
8268     Fixes this compile error:
8269     board.c: In function 'do_switch_ecc':
8270     board.c:339: error: 'cmd_tbl_t' has no member named 'help'
8271     make[1]: *** [board.o] Error 1
8272     make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3'
8273     make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2
8274
8275     This is due to the fact that current command uses long
8276     help for the usage print even if the CONFIG_SYS_LONGHELP
8277     is not enabled. (Thanks Jean-Christophe for explanation).
8278
8279     Signed-off-by: Sanjeev Premi <premi@ti.com>
8280
8281 commit 342c1a5d9ab74febf3226a86216dc5aa05295d46
8282 Author: Minkyu Kang <mk7.kang@samsung.com>
8283 Date:   Fri Apr 3 09:56:16 2009 +0900
8284
8285     s3c64xx: fix the wrong gpio offset
8286
8287     This patch fix the wrong gpio offset
8288
8289     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8290
8291 commit ab0689c316c9b2ee33f4de1c50263b64e539f12a
8292 Author: Kyungmin Park <kmpark@infradead.org>
8293 Date:   Wed Nov 26 10:18:13 2008 +0900
8294
8295     Move machine specific code to board at s3c64xx (v2)
8296
8297     Move machine specific code to smdk6400.
8298     Some board use OneNAND instead of NAND.
8299
8300     Some register MP0_CS_CFG[5:0] are controled by both h/w and s/w.
8301     So it's better to use macro instead of hard-coded value.
8302
8303     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
8304
8305 commit 767f3acd9f6e1dcb8ada926c333945382eddc7e8
8306 Author: Tom Rix <Tom.Rix@windriver.com>
8307 Date:   Wed Apr 1 22:02:19 2009 -0500
8308
8309     ZOOM1 Remove legacy NAND defines
8310
8311     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8312
8313 commit 5891151707ee5902fe62d554c247f42865815757
8314 Author: Tom Rix <Tom.Rix@windriver.com>
8315 Date:   Wed Apr 1 22:02:20 2009 -0500
8316
8317     OMAP3 Fix multiline formatting in board init files.
8318
8319     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8320
8321 commit c0a14aedc3440d6591b8c86d45861a0a8b46e11d
8322 Author: Wolfgang Denk <wd@denx.de>
8323 Date:   Sun Apr 5 00:27:57 2009 +0200
8324
8325     Update CHANGELOG, coding style cleanup.
8326
8327 commit f63728c804ab7413a67d70f6774cd30c3f7b40fb
8328 Author: Wolfgang Denk <wd@denx.de>
8329 Date:   Sun Apr 5 00:18:44 2009 +0200
8330
8331     One more fix for building env_embedded.o
8332
8333     In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in
8334     commit afcbce07, we also need to do the same for
8335     CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM.
8336
8337     Signed-off-by: Wolfgang Denk <wd@denx.de>
8338
8339 commit e3d1ac7bb1955d36980d267cb4cec40b0f7d30b5
8340 Author: Scott Wood <scottwood@freescale.com>
8341 Date:   Thu Apr 2 16:15:10 2009 -0500
8342
8343     common/image.c: Relocate strings in tables.
8344
8345     Without this, u-boot can crash or print garbage if the original link
8346     address no longer points to a valid string.
8347
8348     Signed-off-by: Scott Wood <scottwood@freescale.com>
8349
8350 commit 3a671fc06ae1d9e8eba76600372317c75ae0eb3e
8351 Author: Scott Wood <scottwood@freescale.com>
8352 Date:   Thu Apr 2 16:10:36 2009 -0500
8353
8354     mpc8260: Fill in brg's clock-frequency in device tree.
8355
8356     Signed-off-by: Scott Wood <scottwood@freescale.com>
8357
8358 commit c73ed274a211699739d83c2cef92853dc6716e15
8359 Author: Scott Wood <scottwood@freescale.com>
8360 Date:   Thu Apr 2 18:20:43 2009 -0500
8361
8362     MPC8260ADS: Add nfsboot/ramboot to default environment.
8363
8364     This brings it in line with other Freescale boards.
8365
8366     Signed-off-by: Scott Wood <scottwood@freescale.com>
8367
8368 commit c203ef5db0476a8c4f6dd86b2e9e9db0ea973f84
8369 Author: Andreas Huber <andreas.huber@keymile.com>
8370 Date:   Thu Apr 2 17:15:34 2009 +0200
8371
8372     UBI/cfi-mtd: Fix mtd name for multiple chips
8373
8374     On platforms with multiple NOR chips, currently only the first one
8375     can be selected using the "ubi part" command. This patch fixes this
8376     problem by using different names for the NOR "mtd devices".
8377
8378     It also changes the name of the NOR MTD device from "cfi-mtd" to
8379     "norX" (X indexing the device numer) to better match the mtdparts
8380     defaults.
8381
8382     Signed-off-by: Stefan Roese <sr@denx.de>
8383     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
8384
8385 commit 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf
8386 Author: Peter Korsgaard <jacmet@sunsite.dk>
8387 Date:   Tue Mar 31 17:52:16 2009 +0200
8388
8389     tools/setlocalversion: use git svn instead of git-svn
8390
8391     Use the new "git <subcmd>" syntax instead of the deprecated
8392     "git-<subcmd>".
8393
8394     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
8395
8396 commit 7fa96a9a54eb0d87d73888ec2565cda790ba0dff
8397 Author: Mingkai Hu <Mingkai.hu@freescale.com>
8398 Date:   Tue Mar 31 14:09:40 2009 +0800
8399
8400     eSPI: add the eSPI register support
8401
8402     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
8403
8404 commit 869f6bf4def5a053fbd1aecd8b2fc36f05196c0b
8405 Author: Minkyu Kang <mk7.kang@samsung.com>
8406 Date:   Mon Mar 30 14:55:51 2009 +0900
8407
8408     cmd_mmc: add support for device command for selecting mmc device
8409
8410     This patch improves device command for selecting mmc device
8411
8412     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8413
8414 commit 9abc9ef8fbe079bf75a634ce64b7dcdb7b0d8bdc
8415 Author: Alan Carvalho de Assis <acassis@gmail.com>
8416 Date:   Sat Mar 28 19:50:16 2009 -0300
8417
8418     Small fix to m5282evb
8419
8420     This is just a small fix to get u-boot on m5282evb.
8421
8422     Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com>
8423
8424 commit febd7e4174e54579c9aa165c85c519fe5288f9d2
8425 Author: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
8426 Date:   Fri Mar 27 10:21:14 2009 +0100
8427
8428     UBIFS: add R/O compatibility
8429
8430     Now UBIFS is supported by u-boot. If we ever decide to change the
8431     media format, then people will have to upgrade their u-boots to
8432     mount new format images. However, very often it is possible to
8433     preserve R/O forward-compatibility, even though the write
8434     forward-compatibility is not preserved.
8435
8436     This patch introduces a new super-block field which stores the
8437     R/O compatibility version.
8438
8439     Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
8440     Acked-by: Adrian Hunter <Adrian.Hunter@nokia.com>
8441     Signed-off-by: Stefan Roese <sr@denx.de>
8442
8443 commit 852dbfdd56f68eb67d138b306a64e4de58dabb91
8444 Author: Mike Frysinger <vapier@gentoo.org>
8445 Date:   Mon Mar 23 22:27:34 2009 -0400
8446
8447     more command usage cleanup
8448
8449     Fix up a few dangling commands like in "Command usage cleanup" commit.
8450
8451     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8452
8453 commit b93b24bf76f8a8220b236df3a5f30b2204eb4edc
8454 Author: Ladislav Michl <ladis@linux-mips.org>
8455 Date:   Mon Mar 23 12:06:07 2009 +0100
8456
8457     Separate mtdparts command from jffs2
8458
8459     On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
8460     > Currently the mtdparts commands are included in the jffs2 command support.
8461     > This doesn't make sense anymore since other commands (e.g. UBI) use this
8462     > infrastructure as well now. This patch separates the mtdparts commands from
8463     > the jffs2 commands making it possible to only select mtdparts when no JFFS2
8464     > support is needed.
8465
8466     ... and to make it useful for NAND chips as well, we should also remove now
8467     unrelated CONFIG_JFFS2_NAND. Note that struct part_info etc is in
8468     jffs2/load_kernel.h which is a bit misleading filename for that purpose,
8469     but that can be fixed later (tm).
8470
8471     Signed-off-by:  Ladislav Michl <ladis@linux-mips.org>
8472
8473 commit b196ca75503ce307c535b87bf47d51f05e7530df
8474 Author: Mike Frysinger <vapier@gentoo.org>
8475 Date:   Sun Mar 22 22:18:01 2009 -0400
8476
8477     smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT()
8478
8479     Rather than sticking Blackfin-specific stuff into the eeprom example, use
8480     an indirect macro so that any board can override it with their own magic
8481     sauce in their board config file.
8482
8483     Also fix some spurious semi-colons in defines while I'm at it ...
8484
8485     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8486     CC: Ben Warren <biggerbadderben@gmail.com>
8487
8488 commit f5cf2ef2ad2a8bf321712ab460ed846120163d74
8489 Author: Sascha Hauer <s.hauer@pengutronix.de>
8490 Date:   Sat Mar 21 09:38:46 2009 -0400
8491
8492     mpc52xx phy: initialize only when needed
8493
8494     Do not initialize phy on startup, instead initialize it
8495     when we actually need it.
8496
8497     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
8498
8499 commit 03bab0091948196b9558248684c04f60943ca4b5
8500 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8501 Date:   Mon Mar 30 16:51:40 2009 +0200
8502
8503     at91sam9263ek: enable hush and auto complete support
8504
8505     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8506     Acked-by: Stelian Pop <stelian@popies.net>
8507
8508 commit 4758ebdd53571d4d183be5c2db8f0ee4ef368915
8509 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8510 Date:   Fri Mar 27 23:26:44 2009 +0100
8511
8512     at91: move dataflash spi driver to drivers/spi
8513
8514     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8515
8516 commit 2b7178afce59f71e95da657273f4132012098c1f
8517 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8518 Date:   Fri Mar 27 23:26:44 2009 +0100
8519
8520     at91: move usb driver to drivers/usb
8521
8522     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8523
8524 commit f82518d7f443ebac5f8821103a3c521c963aa6ee
8525 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8526 Date:   Fri Mar 27 23:26:43 2009 +0100
8527
8528     at91rm9200: Reset update
8529
8530     Update the rm9200 reset sequence to try executing a board-specific reset
8531     function and move specific board reset to board.
8532
8533     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8534
8535 commit 3524049cd053746298e4cfab2449882e75c146fc
8536 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8537 Date:   Fri Mar 27 23:26:43 2009 +0100
8538
8539     at91rm9200: move serial shutdown code to serial drivers
8540
8541     introduce serial_exit for this purpose. Use it only when the rm9200
8542     serial driver is active
8543
8544     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8545
8546 commit beebd851cdbc9dd070bcdfec1fd8f17e3cc91bc0
8547 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8548 Date:   Fri Mar 27 23:26:43 2009 +0100
8549
8550     at91rm9200: move serial driver to drivers/serial
8551
8552     add CONFIG_AT91RM9200_USART to activate the driver
8553
8554     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8555
8556 commit cb82a532669f6b02225ec3429ea4d49ff2b97d0a
8557 Author: Ulf Samuelsson <ulf@atmel.com>
8558 Date:   Fri Mar 27 23:26:43 2009 +0100
8559
8560     Add support for the AT91RM9200EK Board.
8561
8562     The AT91RM9200-EK Evaluation Board supports the AT91RM9200
8563     ARM9-based 32-bit RISC microcontroller and enables real-time code development
8564     and evaluation.
8565
8566     Here is the chip page on Atmel website:
8567     http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507
8568
8569     with
8570         - NOR (cfi driver)
8571         - DataFlash
8572         - USB OHCI
8573         - Net
8574         - I2C (hard)
8575
8576     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
8577     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8578
8579 commit b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a
8580 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8581 Date:   Fri Mar 27 23:26:42 2009 +0100
8582
8583     add dataflash mmc mux missing support
8584
8585     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8586
8587 commit 2a325ce3c705ab2d82760afc541c511328472df8
8588 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8589 Date:   Fri Mar 27 23:26:42 2009 +0100
8590
8591     at91rm9200dk: Move conditional compilation to Makefile
8592
8593     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8594
8595 commit 90a92a708d5180a20d600ba0fc2352ec76dc3829
8596 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8597 Date:   Fri Mar 27 23:26:42 2009 +0100
8598
8599     at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT
8600
8601     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8602
8603 commit 843a2654bce74192de2b5a43474fdc27a572ab40
8604 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8605 Date:   Fri Mar 27 23:26:42 2009 +0100
8606
8607     at91sam9: add watchdog support
8608
8609     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
8610     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8611
8612 commit a47492ac60657dd9d59c713aa049319ea6eabd52
8613 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8614 Date:   Fri Mar 27 13:14:52 2009 +0100
8615
8616     at91sam9/at91cap: spi init add hardware chip select support
8617
8618     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8619
8620 commit 66932ac3929c7a145a6ef6574a96fd7535154951
8621 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8622 Date:   Sat Apr 4 19:15:40 2009 +0200
8623
8624     netstar: fix crc32.c dependancy location
8625
8626     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8627
8628 commit 42f9ebff2f758bef524780a00c712eb63a72d99b
8629 Author: Scott Wood <scottwood@freescale.com>
8630 Date:   Fri Apr 3 15:24:40 2009 -0500
8631
8632     MPC8260ADS: Define CONFIG_HAS_ETH0.
8633
8634     This is required so that the MAC address will be updated in the device tree.
8635
8636     Signed-off-by: Scott Wood <scottwood@freescale.com>
8637
8638 commit 8701eceffdf77e2908d0b58add0dabc16edf6087
8639 Author: Scott Wood <scottwood@freescale.com>
8640 Date:   Fri Apr 3 15:26:45 2009 -0500
8641
8642     PQ2FADS: Enable PCI.
8643
8644     PCI on PQ2FADS is very similar to PCI on MPC8272ADS.
8645
8646     Signed-off-by: Scott Wood <scottwood@freescale.com>
8647
8648 commit 83863df04bd30bfe2430b0c43ca9f78596d3f0bc
8649 Author: Wolfgang Denk <wd@denx.de>
8650 Date:   Sat Apr 4 16:57:50 2009 +0200
8651
8652     Fix quoting bug introduced by commit 74de7aef
8653
8654     Signed-off-by: Wolfgang Denk <wd@denx.de>
8655
8656 commit ecf3fb223a56e3c6aa696d94d694eeaca0f44d33
8657 Author: Wolfgang Denk <wd@denx.de>
8658 Date:   Sat Apr 4 16:14:51 2009 +0200
8659
8660     Fix implicit declaration of function 'htons'
8661
8662     Include <netinet/in.h> instead of <linux/in.h> to get htons()
8663     prototpye.
8664
8665     Signed-off-by: Wolfgang Denk <wd@denx.de>
8666
8667 commit e6a6789f41f0560ce280089fbd3f1bd0f0f64306
8668 Author: Kumar Gala <galak@kernel.crashing.org>
8669 Date:   Sat Apr 4 10:21:02 2009 -0500
8670
8671     fsl_law: Fix bug in calculation of LAW sizing
8672
8673     In set_ddr_laws() when we determined how much of the size requested
8674     to be mapped was covered by the the first LAW we needed to recalculate
8675     the size based on what was actually mapped.
8676
8677     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8678
8679 commit 32049b4048ff8e59bd5ba6160d6d5206d283b2a2
8680 Author: Kumar Gala <galak@kernel.crashing.org>
8681 Date:   Thu Apr 2 13:57:05 2009 -0500
8682
8683     fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
8684
8685     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8686
8687 commit c8514622e2713d9c47919acfe23fce386782afe7
8688 Author: Kumar Gala <galak@kernel.crashing.org>
8689 Date:   Thu Apr 2 13:22:48 2009 -0500
8690
8691     fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
8692
8693     Rename the pci header for FSL HW so we can move some prototypes
8694     in there and stop doing explicit externs
8695
8696     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8697
8698 commit afcbce07e9323c0e8aeb783ba7ce6104860fd7a7
8699 Author: Wolfgang Denk <wd@denx.de>
8700 Date:   Sat Apr 4 16:10:40 2009 +0200
8701
8702     Fix building of env_embedded.o
8703
8704     Since commit a706bfc7 common/env_embedded.o and tools/envcrc were
8705     only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks
8706     building for many boards.
8707
8708     We always have to build these files when CONFIG_ENV_IS_IN_FLASH is
8709     set.
8710
8711     Signed-off-by: Wolfgang Denk <wd@denx.de>
8712
8713 commit a31e091ad70915278fb15b79d6ae53ea2d44b251
8714 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8715 Date:   Sat Apr 4 12:49:11 2009 +0200
8716
8717     rename include/zlib.h to include/u-boot/zlib.h
8718
8719     Some systems have zlib.h installed in /usr/include/. This isn't the
8720     desired file for u-boot code - we want the one in include/zlib.h.
8721     This rename will avoid the conflict.
8722
8723     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8724     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8725
8726 commit ae644c178f097874a92a6d934f364985fc7e075a
8727 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8728 Date:   Sat Apr 4 12:46:31 2009 +0200
8729
8730     tools/Makefile: fix image.c dependancy location
8731
8732     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8733     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8734
8735 commit b074a7081124d7f05fd1651a3bc0b5579fdfa473
8736 Author: Mike Frysinger <vapier@gentoo.org>
8737 Date:   Sat Apr 4 07:42:25 2009 -0400
8738
8739     tools: add ncb to gitignore
8740
8741     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8742
8743 commit 453c0d7558215cbc8636d94af172886d84e0dbba
8744 Author: Detlev Zundel <dzu@denx.de>
8745 Date:   Fri Apr 3 16:45:46 2009 +0200
8746
8747     include/ns16550.h: Unify structure declaration for registers
8748
8749     Instead of special casing the different access patterns, use common
8750     code with light macros sprinkled in to accomodate for the different
8751     layouts of the register structure.
8752
8753     Note that this also changes the types of the registers for the
8754     "positively packed (>1)" cases.  As the registers truly are unsigned
8755     chars, this is surely the Right Thing, but it is a semantic change.
8756     Note that for this case depending on the endianness on the bus, we may
8757     see a change of behaviour.
8758
8759     Signed-off-by: Detlev Zundel <dzu@denx.de>
8760
8761 commit 0a145ce6e7075aa0f4869d6f6149a5ff205d95df
8762 Author: Peter Tyser <ptyser@xes-inc.com>
8763 Date:   Fri Mar 13 18:54:52 2009 -0500
8764
8765     Delete now unused tools/Makefile.win32
8766
8767     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8768
8769 commit 2f8d396b9302eddcd8d552648e101a46b7a80acd
8770 Author: Peter Tyser <ptyser@xes-inc.com>
8771 Date:   Fri Mar 13 18:54:51 2009 -0500
8772
8773     Add support for building native win32 tools
8774
8775     Add support for compiling the host tools in the tools directory using
8776     the MinGW toolchain.  This produces executables which can be used on
8777     standard Windows computers without requiring cygwin.
8778
8779     One must specify the MinGW compiler and strip utilities as if they
8780     were the host toolchain in order to build win32 executables, eg:
8781
8782     make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
8783
8784     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8785
8786 commit e50abf662efbf4ce0e731062c8d3c8ec54763ae2
8787 Author: Peter Tyser <ptyser@xes-inc.com>
8788 Date:   Fri Mar 13 18:54:50 2009 -0500
8789
8790     tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation
8791
8792     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8793
8794 commit b0d4d7219a4806e46affc96bd1f65397194a6e72
8795 Author: Peter Tyser <ptyser@xes-inc.com>
8796 Date:   Fri Mar 13 18:54:49 2009 -0500
8797
8798     tools/Makefile: Create generic build rules
8799
8800     Create a few generic build rules to replace the current method which has
8801     1 build target for each file
8802
8803     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8804
8805 commit 273174ddbcce215c42f6c307470cd5580a3f72bf
8806 Author: Peter Tyser <ptyser@xes-inc.com>
8807 Date:   Fri Mar 13 18:54:48 2009 -0500
8808
8809     tools/Makefile: Use auto-generated object file dependencies
8810
8811     Files in the SRCS variable have their dependencies automatically
8812     generated so remove duplicate explicit dependencies
8813
8814     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8815
8816 commit fb8b33c1e6d621ea3347a75ad3a42a386b44e589
8817 Author: Peter Tyser <ptyser@xes-inc.com>
8818 Date:   Fri Mar 13 18:54:47 2009 -0500
8819
8820     tools/Makefile: Remove symlinks for remaining source files
8821
8822     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8823
8824 commit eed073315b6447eceadf7468a4c2b757442c7c6f
8825 Author: Peter Tyser <ptyser@xes-inc.com>
8826 Date:   Fri Mar 13 18:54:46 2009 -0500
8827
8828     tools/Makefile: Dynamically generate libfdt object dependencies
8829
8830     Add the libfdt files to the SRCS variable so that they have their
8831     dependencies automatically generated
8832
8833     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8834
8835 commit c0170175393b94560fa7a5da6dd31377df5f4a72
8836 Author: Peter Tyser <ptyser@xes-inc.com>
8837 Date:   Fri Mar 13 18:54:45 2009 -0500
8838
8839     tools/Makefile: Remove symlinks for fdt targets
8840
8841     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8842
8843 commit 45d6bdff68877ea214ff33cc1c89a29c76e96f51
8844 Author: Peter Tyser <ptyser@xes-inc.com>
8845 Date:   Fri Mar 13 18:54:44 2009 -0500
8846
8847     tools/Makefile: Add libfdt/ to the include search path
8848
8849     This change makes the process of symlinking libfdt_internal.h
8850     unnecessary
8851
8852     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8853
8854 commit fba0e3a0814f9bf48c32a4c8a7987c36ae96651b
8855 Author: Peter Tyser <ptyser@xes-inc.com>
8856 Date:   Fri Mar 13 18:54:43 2009 -0500
8857
8858     tools: Remove unecessary symlinking of zlib.h
8859
8860     crc32.c uses the zlib.h header in include/u-boot/zlib.h.  The symlink
8861     was previously necessary to give U-Boot's version of zlib.h precedence
8862     over the host computer's version of zlib.h.
8863
8864     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8865
8866 commit 40b8d909ace06f6f494dee08ffa64a82493e72e9
8867 Author: Peter Tyser <ptyser@xes-inc.com>
8868 Date:   Fri Mar 13 18:54:42 2009 -0500
8869
8870     tools/Makefile: Add tools/ to the include search path
8871
8872     This change makes the process of symlinking mkimage.h and fdt_host.h
8873     unnecessary
8874
8875     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8876
8877 commit 1cd300de5e19c9e8383ee2eb2b6bd3b8b9378c78
8878 Author: Peter Tyser <ptyser@xes-inc.com>
8879 Date:   Fri Mar 13 18:54:41 2009 -0500
8880
8881     tools/Makefile: Compile ncb when CONFIG_NETCONSOLE
8882
8883     Also conditionally add ncb.o to OBJ_FILES list
8884
8885     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8886
8887 commit 123c48a21ce08b4a33f36e96cc75f92324e761d7
8888 Author: Peter Tyser <ptyser@xes-inc.com>
8889 Date:   Fri Mar 13 18:54:40 2009 -0500
8890
8891     tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET
8892
8893     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8894
8895 commit 4d93a0a807b8ca0289ba5da00c646cd2d54af120
8896 Author: Peter Tyser <ptyser@xes-inc.com>
8897 Date:   Fri Mar 13 18:54:39 2009 -0500
8898
8899     tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED
8900
8901     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8902
8903 commit cd26a31a23f9a58ba52870f8ffb57d77d1baee20
8904 Author: Peter Tyser <ptyser@xes-inc.com>
8905 Date:   Fri Mar 13 18:54:38 2009 -0500
8906
8907     tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP
8908
8909     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8910
8911 commit 7cd5cbc34699ccc15d0277f48375cad928d04faf
8912 Author: Peter Tyser <ptyser@xes-inc.com>
8913 Date:   Fri Mar 13 18:54:37 2009 -0500
8914
8915     tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG
8916
8917     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8918
8919 commit eeba8617908e33f7e7db3b1588c04ca65b856793
8920 Author: Peter Tyser <ptyser@xes-inc.com>
8921 Date:   Fri Mar 13 18:54:36 2009 -0500
8922
8923     tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS
8924
8925     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8926
8927 commit 335ffe7e0e0a30e90ce409c3279016a582157d8e
8928 Author: Peter Tyser <ptyser@xes-inc.com>
8929 Date:   Fri Mar 13 18:54:35 2009 -0500
8930
8931     tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled
8932
8933     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8934
8935 commit ee3584a5970230ee96aae19505ad3226734ee4ff
8936 Author: Peter Tyser <ptyser@xes-inc.com>
8937 Date:   Fri Mar 13 18:54:34 2009 -0500
8938
8939     tools/Makefile: Split variable declarations into multiple lines
8940
8941     Split variable declarations into multiple lines and use the standard
8942     VAR-y convention.  Also move object and binary variable declarations to
8943     after config.mk has been included to allow for these lists to utilize
8944     the CONFIG_XXX variables.
8945
8946     These changes lay the groundwork for conditional compilation of files
8947     in the tools directory.
8948
8949     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8950
8951 commit 21d28e95ed874ab1ed9787f939d8a53e99d30ddb
8952 Author: Peter Tyser <ptyser@xes-inc.com>
8953 Date:   Fri Mar 13 18:54:33 2009 -0500
8954
8955     tools/Makefile: Remove inappropriate double-tabs
8956
8957     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8958
8959 commit 652f4ba076689fd0acd447561a777b1c440a4b57
8960 Author: Peter Tyser <ptyser@xes-inc.com>
8961 Date:   Fri Mar 13 18:54:32 2009 -0500
8962
8963     tools/Makefile: Remove HOSTARCH HOSTOS defines
8964
8965     The values of HOSTARCH and HOSTOS which are exported from the top-level
8966     Makefile should be used
8967
8968     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8969
8970 commit 2eeb4e95fbfafe54645fae7ec0b2594101f0573b
8971 Author: Peter Tyser <ptyser@xes-inc.com>
8972 Date:   Fri Mar 13 18:54:31 2009 -0500
8973
8974     gen_eth_addr: Use POSIX rand() and srand()
8975
8976     Replace random()/srandom() use with rand()/srand() to support
8977     compilation with the mingw toolchain.  The rand()/srand() functions are
8978     generally more common and are functionally equivalent to the original
8979     random()/srandom() calls.
8980
8981     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8982
8983 commit 24d2ae5e9debe4b75151a55251031a14477fa875
8984 Author: Peter Tyser <ptyser@xes-inc.com>
8985 Date:   Fri Mar 13 18:54:28 2009 -0500
8986
8987     elf.h: Use stdint.h to provide standard typedefs for WIN32
8988
8989     The original code provided an incomplete set of typedefs for WIN32
8990     compiles and replicated the standard typedefs that are already
8991     provided by stdint.h
8992
8993     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8994
8995 commit a706bfc7d0e2d1935c5670045288e6cd1ffdfabc
8996 Author: Peter Tyser <ptyser@xes-inc.com>
8997 Date:   Fri Mar 13 18:54:27 2009 -0500
8998
8999     common/Makefile: Conditionally compile env_embedded.o
9000
9001     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9002
9003 commit 2b48f7d5f62835f87278efb498397b6ae9e2d117
9004 Author: Peter Tyser <ptyser@xes-inc.com>
9005 Date:   Fri Mar 13 18:54:26 2009 -0500
9006
9007     Makefile: Add removal of *.exe files to clean target
9008
9009     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9010
9011 commit d0d6144e0e4a03a68311b781f3dde38dc9316b82
9012 Author: Peter Tyser <ptyser@xes-inc.com>
9013 Date:   Fri Mar 13 18:54:25 2009 -0500
9014
9015     Makefile: Make autoconf.mk a dependency of the depend target
9016
9017     The original code did not generate autoconf.mk until after some targets
9018     dependencies had already been calculated, for example the directories in
9019     the SUBDIRS variable
9020
9021     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9022
9023 commit 75eb82ec7cacb18d059d701b35677b93d2bb7596
9024 Author: unsik Kim <donari75@gmail.com>
9025 Date:   Wed Feb 25 11:31:24 2009 +0900
9026
9027     mflash: Initial mflash support
9028
9029     Mflash is fusion memory device mainly targeted consumer eletronic and
9030     mobile phone.
9031     Internally, it have nand flash and other hardware logics and supports
9032     some different operation (ATA, IO, XIP) modes.
9033
9034     IO mode is custom mode for the host that doesn't have IDE interface.
9035     (Many mobile targeted SoC doesn't have IDE bus)
9036
9037     This driver support mflash IO mode.
9038
9039     Followings are brief descriptions about IO mode.
9040
9041     1. IO mode based on ATA protocol and uses some custom command. (read
9042        confirm, write confirm)
9043     2. IO mode uses SRAM bus interface.
9044
9045     Signed-off-by: unsik Kim <donari75@gmail.com>
9046
9047 commit 200779e3e2a9aeda7030b171a8c39d7797019917
9048 Author: Detlev Zundel <dzu@denx.de>
9049 Date:   Fri Apr 3 11:53:01 2009 +0200
9050
9051     Rename common ns16550 constants with UART_ prefix to prevent conflicts
9052
9053     Fix problems introduced in commit
9054     7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware
9055     diagnosis functions for inka4x0] which redefined MSR_RI which is
9056     already used on PowerPC systems.
9057
9058     Also eliminate redundant definitions in ps2mult.h.  More cleanup will
9059     be needed for other redundant occurrences though.
9060
9061     Signed-off-by: Detlev Zundel <dzu@denx.de>
9062
9063 commit 99067b08f4a0ce20ff337a35211239f334d8f451
9064 Author: Scott Wood <scottwood@freescale.com>
9065 Date:   Wed Apr 1 15:33:24 2009 -0500
9066
9067     Noisily disable the legacy NAND subsystem.
9068
9069     Legacy NAND is marked for feature removal after April 2009 (i.e. this
9070     upcoming release).  There are still several boards that reference it
9071     (though many do so only for disk-on-chip support which has been silently
9072     disabled for a while now).  These boards will now fail to build
9073     with #error, though the code is still there if the user removes #error.
9074
9075     The plan is to remove the code outright in the next release, along with
9076     any board code that refers to it (such as board/esd/common/auto_update.c).
9077
9078     Also, remove the legacy NAND API description from README.nand.
9079
9080     Signed-off-by: Scott Wood <scottwood@freescale.com>
9081
9082 commit 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf
9083 Author: apgmoorthy <moorthy.apg@samsung.com>
9084 Date:   Fri Mar 27 14:45:23 2009 +0530
9085
9086     Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
9087
9088     Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB.
9089     However, u-boot image for apollon board is 195KB making the board
9090     unbootable with OneNAND.
9091
9092     Fix ipl to read CONFIG_SYS_MONITOR_LEN.
9093     CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size.
9094
9095     Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
9096     Signed-off-by: Gangheyamoorthy   <moorthy.apg@samsung.com>
9097     Signed-off-by: Scott Wood <scottwood@freescale.com>
9098
9099 commit 74de7aefd79690bae8cf5a5120f5962d444be089
9100 Author: Wolfgang Denk <wd@denx.de>
9101 Date:   Wed Apr 1 23:34:12 2009 +0200
9102
9103     Add "source" command; prepare removal of "autoscr" command
9104
9105     According to the doc/feature-removal-schedule.txt, the "autoscr"
9106     command will be replaced by the "source" command in approximately 6
9107     months from now.
9108
9109     This patch prepares this change and starts a 6 month transition
9110     period as follows:
9111
9112     - The new "source" command has been added, which implements exactly
9113       the same functionlaity as the old "autoscr" command before
9114     - The old "autoscr" command name is kept as an alias for compatibility
9115     - Command sequences, script files atc. have been adapted to use the
9116       new "source" command
9117     - Related environment variables ("autoscript", "autoscript_uname")
9118       have *not* been adapted yet; these will be renamed resp. removed in
9119       a separate patch when the support for the "autoscr" command get's
9120       finally dropped.
9121
9122     Signed-off-by: Wolfgang Denk <wd@denx.de>
9123
9124 commit 78237df55248034a2d7c2daea992b9dbe7ca8e96
9125 Author: Wolfgang Denk <wd@denx.de>
9126 Date:   Thu Apr 2 17:31:09 2009 +0200
9127
9128     Add "GPL cleanup" task to feature-removal-schedule.txt
9129
9130     Announce removal of all non-GPL or GPL-incompatible files
9131     after August 2009.
9132
9133     Signed-off-by: Wolfgang Denk <wd@denx.de>
9134
9135 commit d9596ffbdc79cea285010b67dd20a4618303f624
9136 Author: Mike Frysinger <vapier@gentoo.org>
9137 Date:   Thu Apr 2 12:51:28 2009 -0400
9138
9139     sf: stmicro: dont send 4 bytes when reading status register
9140
9141     I can't find anywhere in the datasheet that says the status register needs
9142     3 dummy bytes sent to it before being able to read back the first real
9143     result.  Tests on a Blackfin board show that after writing the opcode, the
9144     status register starts coming back immediately.  So only write out the
9145     read status register opcode before polling the result.
9146
9147     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9148     CC: Jason McMullan <mcmullan@netapp.com>
9149     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9150
9151 commit 1abe365ffcfc29c061e8fd8b45551be5ad1428dd
9152 Author: Mike Frysinger <vapier@gentoo.org>
9153 Date:   Thu Apr 2 08:11:31 2009 -0400
9154
9155     sf: set common timeouts in seconds, not milliseconds
9156
9157     Since timeouts are only hit when there is a problem in the system, we
9158     don't want to prematurely timeout on a functioning setup.  Thus having
9159     low timeouts (in milliseconds) doesn't gain us anything in the production
9160     case, but rather increases likely hood of causing problems where none
9161     otherwise exist.
9162
9163     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9164     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9165
9166 commit 2a6ce1115b3cbe746965cfa0058ce645b6c1ada1
9167 Author: Mike Frysinger <vapier@gentoo.org>
9168 Date:   Thu Apr 2 06:51:49 2009 -0400
9169
9170     sf: stmicro: use common page timeout define
9171
9172     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9173     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9174
9175 commit 0dcdbb172c2fdf60c5c578980308b312fd56496f
9176 Author: Mike Frysinger <vapier@gentoo.org>
9177 Date:   Sat Mar 28 06:41:09 2009 -0400
9178
9179     sf: always read 5 bytes for the idcode
9180
9181     Some SPI flash drivers like to have extended id information available
9182     (like the spansion flash), so rather than making it re-issue the ID cmd
9183     to get at the last 2 bytes, have the common code read 5 bytes rather than
9184     just 3.  This also matches the Linux behavior where it always reads 5 id
9185     bytes from all flashes.
9186
9187     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9188     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9189     CC: Mingkai Hu <Mingkai.hu@freescale.com>
9190
9191 commit 9726ba4abaa16cd6c385ad350d403f98a8eacf52
9192 Author: Mike Frysinger <vapier@gentoo.org>
9193 Date:   Fri Mar 27 16:34:21 2009 -0400
9194
9195     sf: stmicro: drop redundant id read
9196
9197     The common SPI flash code reads the idcode and passes it down to the SPI
9198     flash driver, so there is no need to read it again ourselves.
9199
9200     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9201     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9202     CC: Jason McMullan <mcmullan@netapp.com>
9203     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9204
9205 commit 1c5874374e091b4bb62917c519861f7682fe066e
9206 Author: Mike Frysinger <vapier@gentoo.org>
9207 Date:   Fri Mar 27 19:27:58 2009 -0400
9208
9209     sf: add driver for SST flashes
9210
9211     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9212     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9213
9214 commit f773a1bbdb8f3bf1ddab2874f36f043c4f8f044d
9215 Author: Mike Frysinger <vapier@gentoo.org>
9216 Date:   Mon Mar 23 23:03:58 2009 -0400
9217
9218     sf: drop DEBUG defines
9219
9220     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9221     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9222
9223 commit 6b850a9fa8a216f3692da2511cb1a6c16409b1af
9224 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9225 Date:   Sun Jan 4 07:44:07 2009 +0100
9226
9227     mtd: add some at45 spi flash support
9228
9229      - AT45DB321D
9230      - AT45DB161D
9231      - AT45DB081D
9232      - AT45DB041D
9233      - AT45DB021D
9234      - AT45DB011D
9235
9236     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9237     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9238
9239 commit 6805e4bf83e6f444f7411101228766c8a7aec5f7
9240 Author: Mingkai Hu <Mingkai.hu@freescale.com>
9241 Date:   Tue Mar 31 14:09:41 2009 +0800
9242
9243     mtd: SPI Flash: Support the Spansion Flash
9244
9245     Add MTD SPI Flash support for S25FL008A, S25FL016A,
9246     S25FL032A, S25FL064A, S25FL128P.
9247
9248     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
9249     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9250
9251 commit 40587701924aa0afc86b3840421b4cc6de42c748
9252 Author: Mike Frysinger <vapier@gentoo.org>
9253 Date:   Mon Mar 30 20:56:45 2009 -0400
9254
9255     Blackfin: force all boards to HZ of 1000
9256
9257     Since the Blackfin timer code requires HZ to be 1000, barf on any board
9258     that tries to use a different value.
9259
9260     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9261
9262 commit f4032d2eec9d71a59c6c724671e577f67a76839b
9263 Author: Mike Frysinger <vapier@gentoo.org>
9264 Date:   Fri Mar 27 21:07:45 2009 -0400
9265
9266     Blackfin: bf533-stamp: drop old spi flash driver
9267
9268     Now that the common SPI flash code supports all the flashes, we can stop
9269     using the old driver.
9270
9271     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9272
9273 commit bc72f50a659d0d1b551817e1910b9b2be1c7e496
9274 Author: Mike Frysinger <vapier@gentoo.org>
9275 Date:   Thu Mar 26 15:42:12 2009 -0400
9276
9277     Blackfin: add BF538/BF539 SPI portmux handling
9278
9279     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9280
9281 commit 46ac352f0f9406a5f9aa157ac62867fb4650dfd3
9282 Author: Mike Frysinger <vapier@gentoo.org>
9283 Date:   Mon Mar 23 22:36:10 2009 -0400
9284
9285     Blackfin: do not delay on output bytes
9286
9287     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9288
9289 commit dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382
9290 Author: Mike Frysinger <vapier@gentoo.org>
9291 Date:   Mon Mar 23 22:17:27 2009 -0400
9292
9293     Blackfin: drop newline from OTP help
9294
9295     Looks like I accidentally added a newline to the OTP help when merging and
9296     older change.
9297
9298     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9299
9300 commit d3c38d96b991d641a33f7748130dae008563cdc9
9301 Author: Mike Frysinger <vapier@gentoo.org>
9302 Date:   Sun Mar 22 23:43:31 2009 -0400
9303
9304     Blackfin: convert bfin_sdh to legacy mmc
9305
9306     The Blackfin SDH controller is still using the legacy framework, so update
9307     the driver to use the renamed functions.
9308
9309     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9310
9311 commit d248cfb2d940b742f6bfdba9b832a3df96da3101
9312 Author: Mike Frysinger <vapier@gentoo.org>
9313 Date:   Sun Feb 22 16:30:38 2009 -0500
9314
9315     Blackfin: bf537-stamp: split CF/IDE code out into dedicated cf-ide.c
9316
9317     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9318
9319 commit ad9073211ca9e62162a39851e082b8d07a662fb6
9320 Author: Mike Frysinger <vapier@gentoo.org>
9321 Date:   Fri Feb 13 17:10:58 2009 -0500
9322
9323     Blackfin: fix crash when booting from external memory
9324
9325     When testing a u-boot binary that hasn't been booted from the bootrom, we
9326     have to make sure the bootstruct structure has sane storage space.  If we
9327     don't, the initcode will crash when it tries to dereference an invalid
9328     pointer.
9329
9330     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9331
9332 commit 84a9dda324c3faa56be14449d7519b993d9397a9
9333 Author: Mike Frysinger <vapier@gentoo.org>
9334 Date:   Sun Oct 12 21:32:52 2008 -0400
9335
9336     Blackfin: bf518f-ezbrd: new board port
9337
9338     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9339
9340 commit 0c31ddf7b70f77dede42dc82ecab7753a819acaa
9341 Author: Mike Frysinger <vapier@gentoo.org>
9342 Date:   Sun Oct 12 21:30:48 2008 -0400
9343
9344     Blackfin: bf526-ezbrd: new board port
9345
9346     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9347
9348 commit 5c45f7cac2f74e2c14aa6b028cd969651cc9ac8e
9349 Author: Mike Frysinger <vapier@gentoo.org>
9350 Date:   Sun Oct 12 21:25:33 2008 -0400
9351
9352     Blackfin: bf538f-ezkit: new board port
9353
9354     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9355
9356 commit d9a5d113b93583c984711127ab8503e136ed1e4a
9357 Author: Mike Frysinger <vapier@gentoo.org>
9358 Date:   Sun Oct 12 20:59:12 2008 -0400
9359
9360     Blackfin: bf527-ezkit: new board port
9361
9362     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9363
9364 commit 76d21803ddd7dc4bcb81739ea2d3cd679e052f46
9365 Author: Mike Frysinger <vapier@gentoo.org>
9366 Date:   Sun Oct 12 05:05:42 2008 -0400
9367
9368     Blackfin: bf548-ezkit: new board port
9369
9370     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9371
9372 commit 67b89c79e72fe86b0ea0199425d880630beb95d8
9373 Author: Laurent Gregoire <laurent.gregoire@tomtom.com>
9374 Date:   Tue Mar 3 14:23:59 2009 +0100
9375
9376     libfdt: Fix C++ compile-time cast error on gnu 4.2.1
9377
9378     Allow the inclusion of libfdt.h in C++ source.
9379
9380     Signed-off-by: Laurent Gregoire <laurent.gregoire@tomtom.com>
9381     Acked-by: David Gibson <david@gibson.dropbear.id.au>
9382
9383 commit 13d93f38e86818739317b0206d597265cf9e675e
9384 Author: Emil Medve <Emilian.Medve@Freescale.com>
9385 Date:   Mon Feb 23 10:43:36 2009 -0600
9386
9387     Fix a possible overflow case detected by gcc 4.3.2
9388
9389     .../dtc/libfdt/fdt_sw.c: In function 'fdt_end_node':
9390     .../dtc/libfdt/fdt_sw.c:81: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false
9391
9392     Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
9393
9394 commit a22d9cfbb5bcfb3dc6ffd64d391b568e8a0ce383
9395 Author: David Gibson <david@gibson.dropbear.id.au>
9396 Date:   Fri Feb 6 14:03:24 2009 +1100
9397
9398     libfdt: Rework/cleanup fdt_next_tag()
9399
9400     Currently, callers of fdt_next_tag() must usually follow the call with
9401     some sort of call to fdt_offset_ptr() to verify that the blob isn't
9402     truncated in the middle of the tag data they're going to process.
9403     This is a bit silly, since fdt_next_tag() generally has to call
9404     fdt_offset_ptr() on at least some of the data following the tag for
9405     its own operation.
9406
9407     This patch alters fdt_next_tag() to always use fdt_offset_ptr() to
9408     verify the data between its starting offset and the offset it returns
9409     in nextoffset.  This simplifies fdt_get_property() which no longer has
9410     to verify itself that the property data is all present.
9411
9412     At the same time, I neaten and clarify the error handling for
9413     fdt_next_tag().  Previously, fdt_next_tag() could return -1 instead of
9414     a tag value in some circumstances - which almost none of the callers
9415     checked for.  Also, fdt_next_tag() could return FDT_END either because
9416     it encountered an FDT_END tag, or because it reached the end of the
9417     structure block - no way was provided to tell between these cases.
9418
9419     With this patch, fdt_next_tag() always returns FDT_END with a negative
9420     value in nextoffset for an error.  This means the several places which
9421     loop looking for FDT_END will still work correctly - they only need to
9422     check for errors at the end.  The errors which fdt_next_tag() can
9423     report are:
9424         - -FDT_ERR_TRUNCATED if it reached the end of the structure
9425            block instead of finding a tag.
9426
9427         - -FDT_BADSTRUCTURE if a bad tag was encountered, or if the
9428                tag data couldn't be verified with fdt_offset_ptr().
9429
9430     This patch also updates the callers of fdt_next_tag(), where
9431     appropriate, to make use of the new error reporting.
9432
9433     Finally, the prototype for the long gone _fdt_next_tag() is removed
9434     from libfdt_internal.h.
9435
9436     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
9437
9438 commit 2c0b843e710aa1e2da25c2592e6dbe5d0b0ab7da
9439 Author: David Gibson <david@gibson.dropbear.id.au>
9440 Date:   Fri Feb 6 14:01:56 2009 +1100
9441
9442     libfdt: Rework fdt_next_node()
9443
9444     Currently fdt_next_node() will find the next node in the blob
9445     regardless of whether it is above, below or at the same level in the
9446     tree as the starting node - the depth parameter is updated to indicate
9447     which is the case.  When a depth parameter is supplied, this patch
9448     makes it instead terminate immediately when it finds the END_NODE tag
9449     for a node at depth 0.  In this case it returns the offset immediately
9450     past the END_NODE tag.
9451
9452     This has a couple of advantages.  First, this slightly simplifies
9453     fdt_subnode_offset(), which no longer needs to explicitly check that
9454     fdt_next_node()'s iteration hasn't left the starting node.  Second,
9455     this allows fdt_next_node() to be used to implement
9456     _fdt_node_end_offset() considerably simplifying the latter function.
9457
9458     The other users of fdt_next_node() either don't need to iterate out of
9459     the starting node, or don't pass a depth parameter at all.  Any
9460     callers that really need to iterate out of the starting node, but keep
9461     tracking depth can do so by biasing the initial depth value.
9462
9463     This is a semantic change, but I think it's very unlikely to break any
9464     existing library users.
9465
9466     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
9467
9468 commit c123098035be8bae3859bbfbd06861f197c07631
9469 Author: Scott Wood <scottwood@freescale.com>
9470 Date:   Tue Mar 31 17:49:36 2009 -0500
9471
9472     mpc83xx: Set guarded bit on BAT that covers the end of the address space
9473
9474     The mpc8313erdb board currently sets DBAT6 to cover all of the final 256MiB of
9475     address space; however, not all of this space is covered by a device.  In
9476     particular, flash sits at 0xfe000000-0xfe7fffff, and nothing is mapped
9477     at the far end of the address space.
9478
9479     In zlib, there is a loop that references p[-1] if p is non-NULL.  Under
9480     some circumstances, this leads to the CPU speculatively loading from
9481     0xfffffff8 if p is NULL.  This leads to a machine check.
9482
9483     Signed-off-by: Scott Wood <scottwood@freescale.com>
9484
9485     continuation to the remaining mpc83xx boards that suffer from the same problem.
9486
9487     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9488
9489 commit c2eb8be7f760a2efe30a495bfb10857838dcf3fa
9490 Author: Kim Phillips <kim.phillips@freescale.com>
9491 Date:   Mon Mar 30 14:28:05 2009 -0500
9492
9493     rtc: remove broken rtc_read and rtc_write declarations
9494
9495     commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g.
9496     EPSON)" introduces the following build error on boards configuring e.g,
9497     the ds1374 rtc:
9498
9499     Configuring for MPC837XEMDS board...
9500     ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration
9501     /home/r1aaha/git/u-boot/include/rtc.h:64: error: previous declaration of 'rtc_read' was here
9502     ds1374.c:104: error: conflicting types for 'rtc_write'
9503     /home/r1aaha/git/u-boot/include/rtc.h:65: error: previous declaration of 'rtc_write' was here
9504
9505     this reverts the erroneous chunk.
9506
9507     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9508     Acked-by: Detlev Zundel <dzu@denx.de>
9509     CC: Detlev Zundel <dzu@denx.de>
9510     CC: Andreas Pfefferle <ap@denx.de>
9511
9512 commit fc39c2fd51e64707de4d61ed49479ebea2847e1b
9513 Author: Kumar Gala <galak@kernel.crashing.org>
9514 Date:   Tue Mar 31 17:58:13 2009 -0500
9515
9516     85xx/86xx: Ensure MP boot page is not used
9517
9518     We had a bug on 86xx in which the boot page used to bring up secondary
9519     cores was being overwritten and used for the malloc region in u-boot.
9520
9521     We need to reserve the region of memory that the boot page is going to
9522     be put at so nothing uses it.
9523
9524     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9525     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
9526
9527 commit c840d26c752141b94bbc24ac748ddd45752a955a
9528 Author: Kumar Gala <galak@kernel.crashing.org>
9529 Date:   Tue Mar 31 23:11:05 2009 -0500
9530
9531     85xx: Introduce determine_mp_bootpg() helper.
9532
9533     Match determine_mp_bootpg() that was added for 86xx.  We need this to
9534     address a bug introduced in v2009.03 with 86xx MP booting.  We have to
9535     make sure to reserve the region of memory used for the MP bootpg() so
9536     other u-boot code doesn't use it.
9537
9538     Also added a comment about how cpu_reset() is dealing w/an errata on
9539     early 85xx MP HW.
9540
9541     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9542
9543 commit 7649a590b53ee548f41428bf20780f74ce9fc099
9544 Author: Kumar Gala <galak@kernel.crashing.org>
9545 Date:   Tue Mar 31 23:02:38 2009 -0500
9546
9547     86xx: Cleanup MP support
9548
9549     * Use CONFIG_MP instead of CONFIG_NUM_CPUS to match 85xx
9550     * Introduce determine_mp_bootpg() helper.  We'll need this to address a
9551       bug introduced in v2009.03 with 86xx MP booting.  We have to make sure
9552       to reserve the region of memory used for the MP bootpg() so other
9553       u-boot code doesn't use it.
9554     * Added dummy versions of cpu_reset(), cpu_status() & cpu_release() to
9555       allow cmd_mp.c to build and work. In the future we should look at
9556       implementing all these functions. This could be common w/85xx if we
9557       use spin tables on 86xx.
9558
9559     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9560
9561 commit f6ef8b7a43ed7f68a4bb524faad5e4f75ea3e3e2
9562 Author: Becky Bruce <beckyb@kernel.crashing.org>
9563 Date:   Tue Mar 31 18:38:37 2009 -0500
9564
9565     mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves
9566
9567     We're missing the board_lmb_reserve definitions that allow
9568     cpu_mp_lmb_reserve to be called; this means that Linux
9569     is free to reallocate reserved pages.  Linux currently boots
9570     because we're getting lucky - the page we've reserved is
9571     high enough in memory that it isn't allocated by Linux
9572     while we still need it to be in existence.
9573
9574     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
9575     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9576
9577 commit 0fc4f64c59873a47d555dd66bad25797d4ecb0ed
9578 Author: Ladislav Michl <ladis@linux-mips.org>
9579 Date:   Tue Mar 31 13:43:10 2009 +0200
9580
9581     NetStar: fix NAND
9582
9583     Fix NAND support broken during new NAND code merge. Move those few lines of
9584     code to board/netstar/netstar.c
9585
9586     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
9587
9588 commit d144f94d590b5190a9963bd0f2026b2a7ce67eda
9589 Author: Jens Scharsig <esw@bus-elektronik.de>
9590 Date:   Tue Mar 31 08:18:29 2009 +0200
9591
9592     soft_i2c.c compiler/linker error
9593
9594     This patch fix the compiler/linker errors
9595
9596     common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed'
9597     common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed'
9598
9599     if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not
9600     uesd/undef (wrong define order)
9601
9602     and
9603
9604     removes additional empty lines
9605
9606     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
9607
9608 commit 765547dc5e0e8cbe6b8f4ea8a5d6ff237935c352
9609 Author: Haiying Wang <Haiying.Wang@freescale.com>
9610 Date:   Fri Mar 27 17:02:45 2009 -0400
9611
9612     MPC85xx: Add MPC8569MDS board support
9613
9614     This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD
9615     EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch.
9616
9617     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
9618     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
9619     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9620
9621 commit 22b6dbc1696d927d938dd4e16f65d83c0d4fb3f4
9622 Author: Haiying Wang <Haiying.Wang@freescale.com>
9623 Date:   Fri Mar 27 17:02:44 2009 -0400
9624
9625     MPC85xx: Add MPC8569 CPU support
9626
9627     There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of
9628     LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage,
9629     then invalidate it after LBCR bit 13 is set.
9630
9631     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
9632     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9633
9634 commit 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f
9635 Author: Haiying Wang <Haiying.Wang@freescale.com>
9636 Date:   Thu Mar 26 17:01:49 2009 -0400
9637
9638     MPC85xx: Load and enable QE microcode patch in IRAM
9639
9640     For the silicon which doesn't have ROM support in QE, it always needs to load
9641     a pre-built ucode binary to IRAM so that QE can work.
9642
9643     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
9644     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
9645
9646 commit 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b
9647 Author: Kumar Gala <galak@kernel.crashing.org>
9648 Date:   Thu Mar 19 09:16:10 2009 -0500
9649
9650     85xx: Add support for additional e500mc features
9651
9652     * Enable backside L2
9653     * e500mc no longer has timebase enable in HID (moved to CCSR register)
9654
9655     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9656
9657 commit c360ceac0286159f94d9d1a9496fc9858c8d9bec
9658 Author: Dave Liu <daveliu@freescale.com>
9659 Date:   Sat Mar 14 12:48:30 2009 +0800
9660
9661     fsl-ddr: add the DDR3 SPD infrastructure
9662
9663     - support mirrored DIMMs, not support register DIMMs
9664     - test passed on P2020DS board with MT9JSF12872AY-1G1D1
9665     - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1
9666
9667     Signed-off-by: Dave Liu <daveliu@freescale.com>
9668     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
9669
9670 commit 6a8197836702991468cead5ead073f589e2623ad
9671 Author: Dave Liu <daveliu@freescale.com>
9672 Date:   Sat Mar 14 12:48:19 2009 +0800
9673
9674     fsl-ddr: Fix two bugs in the ddr infrastructure
9675
9676     1. wr_lat
9677        UM said the total write latency for DDR2 is equal to
9678        WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1.
9679        so, the WR_LAT = CL - 1;
9680     2. rd_to_pre
9681        we missed to add the ADD_LAT for DDR2 case.
9682
9683     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9684     Signed-off-by: Dave Liu <daveliu@freescale.com>
9685
9686 commit 540dcf1cb86961e11aa92c47671f27762c581d8c
9687 Author: Kumar Gala <galak@kernel.crashing.org>
9688 Date:   Thu Mar 26 01:34:39 2009 -0500
9689
9690     83xx: Use common LSDMR defines from asm/fsl_lbc.h
9691
9692     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9693     Acked-by: Kim Phillips <kim.phillips@freescale.com>
9694
9695 commit b0fe93eda69721aef1fdef576164b668fad83bbd
9696 Author: Kumar Gala <galak@kernel.crashing.org>
9697 Date:   Thu Mar 26 01:34:38 2009 -0500
9698
9699     85xx: Use common LSDMR defines from asm/fsl_lbc.h
9700
9701     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9702
9703 commit 0088c298f0eeb90ec001f744e9959dea83dd563a
9704 Author: Kumar Gala <galak@kernel.crashing.org>
9705 Date:   Thu Mar 26 01:34:37 2009 -0500
9706
9707     Add LSDMR (SDRAM Mode Register) definition on localbus
9708
9709     The masks for various bit defines of LSDMR are common and thus we can
9710     define them in one place rather than replicating them in each config.h
9711
9712     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9713
9714 commit 89c00fb15859213788f0ad089934c376fb356099
9715 Author: Ladislav Michl <ladis@linux-mips.org>
9716 Date:   Mon Mar 30 18:58:41 2009 +0200
9717
9718     OMAP: use {read,write}l to access timer registers
9719
9720     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
9721
9722 commit 81472d893fa565c9d300928a40e504a689bde131
9723 Author: Ladislav Michl <ladis@linux-mips.org>
9724 Date:   Mon Mar 30 18:58:41 2009 +0200
9725
9726     OMAP: rename timer divisor
9727
9728     Divisor field is called PTV not PVT.
9729
9730     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
9731     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9732
9733 commit fe672d60b2a8c9e803596ba4533fa1776015551d
9734 Author: Ladislav Michl <ladis@linux-mips.org>
9735 Date:   Mon Mar 30 18:58:40 2009 +0200
9736
9737     OMAP: reindent timer code
9738
9739     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
9740
9741 commit b3f66b0ba09949e0796ce7fad6367f75f15ed890
9742 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9743 Date:   Mon Mar 30 18:58:40 2009 +0200
9744
9745     s3c2410: move nand driver to drivers/mtd/nand
9746
9747     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9748
9749 commit d3b635774194404bcd424f6b376419bce22076ad
9750 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9751 Date:   Mon Mar 30 18:58:40 2009 +0200
9752
9753     s3c24x0: move i2c driver to drivers/i2c
9754
9755     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9756
9757 commit 300f99f4539dd5caf7e19af5e4ea5eb259445913
9758 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9759 Date:   Mon Mar 30 18:58:39 2009 +0200
9760
9761     s3c24x0: move serial driver to drivers/serial
9762
9763     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9764
9765 commit 942ba9969b9efa25f816c238861ecb339c54ed73
9766 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9767 Date:   Mon Mar 30 18:58:39 2009 +0200
9768
9769     davinci: move i2c driver to drivers/i2c
9770
9771     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9772
9773 commit ee4f3e2765a1c65c9861c5d2cf2e6feb84b90bd8
9774 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9775 Date:   Mon Mar 30 18:58:39 2009 +0200
9776
9777     davinci: move nand driver to drivers/mtd/nand
9778
9779     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9780
9781 commit d3e55d0774a180c1837bd7ddec464015e883bd86
9782 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9783 Date:   Mon Mar 30 18:58:38 2009 +0200
9784
9785     imx: move serial driver to drivers/serial
9786
9787     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9788
9789 commit 2344bb8de2354101a8264c2123303c9d8d2aed3c
9790 Author: Detlev Zundel <dzu@denx.de>
9791 Date:   Mon Mar 30 00:31:36 2009 +0200
9792
9793     inka4x0: Use proper accessor macros for memory mapped registers.
9794
9795     Signed-off-by: Detlev Zundel <dzu@denx.de>
9796
9797 commit e979e85fd39b06436922bb4d6bb5fafcbc775182
9798 Author: Detlev Zundel <dzu@denx.de>
9799 Date:   Mon Mar 30 00:31:35 2009 +0200
9800
9801     inka4x0: Add hardware diagnosis and RTC in configuration.
9802
9803     This patch adds the board specific communication routines needed by
9804     the external 4543 RTC.
9805
9806     Signed-off-by: Detlev Zundel <dzu@denx.de>
9807     Signed-off-by: Andreas Pfefferle <ap@denx.de>
9808
9809 commit 7b5611cdd12ca0cc33f994f0d4a4454788fc3124
9810 Author: Detlev Zundel <dzu@denx.de>
9811 Date:   Mon Mar 30 00:31:34 2009 +0200
9812
9813     inka4x0: Add hardware diagnosis functions for inka4x0
9814
9815     This patch adds advanced diagnosis functions for the inka4x0 board.
9816
9817     Signed-off-by: Andreas Pfefferle <ap@denx.de>
9818     Signed-off-by: Detlev Zundel <dzu@denx.de>
9819
9820 commit 04e11cf383ff6231535fd981023bb1306b2133d4
9821 Author: Detlev Zundel <dzu@denx.de>
9822 Date:   Mon Mar 30 00:31:33 2009 +0200
9823
9824     rtc: add support for 4543 RTC (manufactured by e.g. EPSON)
9825
9826     Signed-off-by: Detlev Zundel <dzu@denx.de>
9827     Signed-off-by: Andreas Pfefferle <ap@denx.de>
9828
9829 commit 572e6179adb5447ff42ec2aa5cf3a26decf97583
9830 Author: Detlev Zundel <dzu@denx.de>
9831 Date:   Mon Mar 30 00:31:32 2009 +0200
9832
9833     drivers/twserial: Add protocol driver for "three wire serial" interface.
9834
9835     This pretty unintelligent interface is used on some RTC chips.
9836
9837     Signed-off-by: Detlev Zundel <dzu@denx.de>
9838
9839 commit a6ef3ddeafbe8007af3662cc4509b897c53ab395
9840 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9841 Date:   Sun Mar 29 23:01:42 2009 +0200
9842
9843     arm720t/clps7111: move serial driver to drivers/serial
9844
9845     add CONFIG_CLPS7111_SERIAL to activate the driver
9846
9847     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9848
9849 commit 6790c55704531eb98f76b51d50e0f73d19fa2988
9850 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9851 Date:   Sun Mar 29 23:01:42 2009 +0200
9852
9853     lpc2292: move serial driver to drivers/serial
9854
9855     add CONFIG_LPC2292_SERIAL to activate the driver
9856
9857     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9858
9859 commit 176a600d0ecdaccbac483d2ba992d0119f853119
9860 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9861 Date:   Sun Mar 29 23:01:42 2009 +0200
9862
9863     ks8695: move serial driver to drivers/serial
9864
9865     add CONFIG_KS8695_SERIAL to activate the driver
9866
9867     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9868
9869 commit 6d27bca15d445fcf07d6e7e30ced95c945c875ea
9870 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9871 Date:   Sun Mar 29 23:01:42 2009 +0200
9872
9873     s3c64xx: move usb driver to drivers/usb
9874
9875     add CONFIG_USB_S3C64XX to activate the driver
9876
9877     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9878
9879 commit ecfa8dda2f55e1fbe12dee0b5cc16e7d484674c9
9880 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9881 Date:   Sun Mar 29 23:01:41 2009 +0200
9882
9883     imx31: move serial driver to drivers/serial
9884
9885     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9886
9887 commit 9ea91c9fefb3920d735533a7798c1a44a3ed3ffc
9888 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9889 Date:   Sun Mar 29 23:01:41 2009 +0200
9890
9891     netarm: move serial driver to drivers/serial
9892
9893     add CONFIG_NETARM_SERIAL to activate the driver
9894
9895     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9896
9897 commit 412ab705888742add435dd6ffc2e8bda14962235
9898 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9899 Date:   Sun Mar 29 23:01:41 2009 +0200
9900
9901     sa1100: move serial driver to drivers/serial
9902
9903     add CONFIG_SA1100_SERIAL to activate the driver
9904
9905     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9906
9907 commit b2368754a9202225fd072e159fb78da7d2cdb623
9908 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9909 Date:   Sun Mar 29 23:01:41 2009 +0200
9910
9911     s3c44b0: extract cache from cpu.c
9912
9913     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9914
9915 commit 40fd626223eae5363719bcb9a6896f08ceeee90a
9916 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9917 Date:   Sun Mar 29 23:01:41 2009 +0200
9918
9919     s3c44b0: move serial driver to drivers/serial
9920
9921     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9922
9923 commit 5fe1377cc46199fe71c47be4b1aa81440ae96f9f
9924 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9925 Date:   Sun Mar 29 23:01:40 2009 +0200
9926
9927     s3c44b0: move rtc driver to drivers/rtc
9928
9929     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9930
9931 commit 50f601cca8985615f9e3de4c34887448ade8a64b
9932 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9933 Date:   Sun Mar 29 23:01:40 2009 +0200
9934
9935     s3c44b0: move i2c driver to drivers/i2c
9936
9937     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9938
9939 commit 281dfb0c0c531194f99e60d6285cca4e2a9fb1b6
9940 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9941 Date:   Sun Mar 29 23:01:36 2009 +0200
9942
9943     s3c4510b: move specific code to soc directory
9944
9945     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9946
9947 commit 04531f3c11c693dc54924f82c41979d960309c9d
9948 Author: Ladislav Michl <ladis@linux-mips.org>
9949 Date:   Wed Mar 25 23:43:58 2009 +0100
9950
9951     NetStar: add RTC support
9952
9953     Add RTC support.
9954
9955     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
9956
9957 commit 71f7bd305d9768bcb7ddbe4b5823cbf3b3597b11
9958 Author: Ladislav Michl <ladis@linux-mips.org>
9959 Date:   Wed Mar 25 23:43:50 2009 +0100
9960
9961     NetStar: use generic flash driver
9962
9963     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
9964
9965 commit 3f464b0fc009d41d2734c08e472eb6d445f73a5c
9966 Author: Ladislav Michl <ladis@linux-mips.org>
9967 Date:   Mon Mar 16 23:31:20 2009 +0100
9968
9969     NetStar: update crcit utility
9970
9971     Make crc32 function to match its prototype. Use more meaningful identifiers.
9972
9973     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
9974
9975 commit 488f5d8790c451fc527fe5d2ef218f2a5e40ea17
9976 Author: Ladislav Michl <ladis@linux-mips.org>
9977 Date:   Mon Mar 23 17:46:27 2009 +0100
9978
9979     Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ
9980
9981     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
9982
9983 commit 88685b5f62274167ad2ba8a58e108d89ff71955b
9984 Author: Wolfgang Denk <wd@denx.de>
9985 Date:   Sun Mar 29 00:58:16 2009 +0100
9986
9987     VCMA9: fix compile errors
9988
9989     Fix these:
9990     cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr'
9991     cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function)
9992
9993     Signed-off-by: Wolfgang Denk <wd@denx.de>
9994
9995 commit 26e42cbd786241fec370a0b92ad591f4e9cc423b
9996 Author: Wolfgang Denk <wd@denx.de>
9997 Date:   Sun Mar 29 00:54:21 2009 +0100
9998
9999     ARM: fix warning: 'print_eth' defined but not used
10000
10001     This warning got issued for all ARM systems that don't have
10002     CONFIG_CMD_NET enabled.
10003
10004     Signed-off-by: Wolfgang Denk <wd@denx.de>
10005
10006 commit fd88d91a639ce41b825c8d50dc2182050e98fe53
10007 Author: Ladislav Michl <ladis@linux-mips.org>
10008 Date:   Mon Mar 23 18:16:34 2009 +0100
10009
10010     cs8900 compile fix
10011
10012     cs8900.c: In function 'eth_init':
10013     cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type
10014     cs8900.c:165: error: invalid operands to binary <<
10015     cs8900.c:166: error: invalid operands to binary <<
10016     cs8900.c:167: error: invalid operands to binary <<
10017
10018     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10019     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10020
10021 commit d2567be915036720693f3ddd00c39b5b4d86fb8d
10022 Author: Wolfgang Denk <wd@denx.de>
10023 Date:   Sat Mar 28 20:16:16 2009 +0100
10024
10025     Fix implicit declaration of function 'eth_[gs]etenv_enetaddr'
10026
10027     ...and some other compile warnings.
10028
10029     Signed-off-by: Wolfgang Denk <wd@denx.de>
10030
10031 commit 97b05d7d524a6b4f195f07b8f90e98561a85596c
10032 Author: Wolfgang Denk <wd@denx.de>
10033 Date:   Sat Mar 28 16:17:29 2009 +0100
10034
10035     mpc8xx/ether.c: fix warning: unused variable 'bd'
10036
10037     Also minor coding style cleanup.
10038
10039     Signed-off-by: Wolfgang Denk <wd@denx.de>
10040
10041 commit 2dce551e10728f9e5655279f761f1d3cc0a8fe90
10042 Author: Detlev Zundel <dzu@denx.de>
10043 Date:   Wed Mar 25 17:27:52 2009 +0100
10044
10045     command.c: Expose the core of do_help as _do_help to the rest of u-boot.
10046
10047     Other commands implementing subcommands can reuse this code nicely.
10048
10049     Signed-off-by: Detlev Zundel <dzu@denx.de>
10050     Signed-off-by: Andreas Pfefferle <ap@denx.de>
10051
10052 commit 4e325fbfa4dea04eceb6392e00807c40d214dc6f
10053 Author: Detlev Zundel <dzu@denx.de>
10054 Date:   Tue Mar 24 18:02:33 2009 +0100
10055
10056     mpc5xxx: Add structure definition for several more register blocks.
10057
10058     Signed-off-by: Detlev Zundel <dzu@denx.de>
10059
10060 commit 739b0e594677a0676577bc95db4495a5563fc7f8
10061 Author: Detlev Zundel <dzu@denx.de>
10062 Date:   Fri Mar 27 15:03:55 2009 +0100
10063
10064     MAINTAINERS: Add entry for 'inka4x0' board.
10065
10066     Signed-off-by: Detlev Zundel <dzu@denx.de>
10067
10068 commit e55ecec45340755ef47cbbb13fb35ceed60eb115
10069 Author: Detlev Zundel <dzu@denx.de>
10070 Date:   Fri Mar 27 15:03:54 2009 +0100
10071
10072     MAINTAINERS: Keep list sorted.
10073
10074     Signed-off-by: Detlev Zundel <dzu@denx.de>
10075
10076 commit 0baeca4b09b703728f8e66b52418039fd8f8ce35
10077 Author: Mike Frysinger <vapier@gentoo.org>
10078 Date:   Thu Mar 26 11:17:41 2009 -0400
10079
10080     karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos
10081
10082     The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr".
10083
10084     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10085     CC: Ben Warren <biggerbadderben@gmail.com>
10086
10087 commit 76756e41cde0a617e781a604cc47dfaef63697cd
10088 Author: Heiko Schocher <hs@denx.de>
10089 Date:   Thu Mar 26 07:33:59 2009 +0100
10090
10091     ppc: cleanup compiler errors/warnings
10092
10093     Current u-boot top of tree builds with warnings/errors for
10094     the following boards:
10095
10096     ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823
10097     RPXClassic debris PN62
10098
10099     following patch solves this.
10100
10101     Signed-off-by: Heiko Schocher <hs@denx.de>
10102     Acked-by: Mike Frysinger <vapier@gentoo.org>
10103
10104 commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1
10105 Author: Stefan Roese <sr@denx.de>
10106 Date:   Thu Mar 26 16:14:13 2009 +0100
10107
10108     ppc4xx: Sequoia: Fix TLB reassignment in NAND booting code
10109
10110     This patch fixes a bug in the Sequoia TLB init code to reconfigure
10111     the correct TLB (boot space) after running from RAM. This bug was
10112     introduced with patch 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
10113     [ppc4xx: Make Sequoia boot vxWorks] which changed the order of the
10114     TLB in the Sequoia init.S file.
10115
10116     Signed-off-by: Stefan Roese <sr@denx.de>
10117
10118 commit e2b66fe453a3679f807b37fc5923d89214302764
10119 Author: Wolfgang Denk <wd@denx.de>
10120 Date:   Thu Mar 26 10:00:57 2009 +0100
10121
10122     ads5121: enable instruction cache
10123
10124     Enabling the instruction cache significantly accelerates U-Boot
10125     operations like CRC checking, image uncompression, etc.
10126
10127     Kudos to Andrea Scian for pointing out.
10128
10129     Signed-off-by: Wolfgang Denk <wd@denx.de>
10130
10131 commit 33e88c557b29c84c52039ba05993fa70fe62afe3
10132 Author: Jon Smirl <jonsmirl@gmail.com>
10133 Date:   Sun Mar 22 22:55:45 2009 -0400
10134
10135     mpc5200: suppress printf until console initialized
10136
10137     On boards which have the environment in eeprom, i2c_init() is called
10138     before the console and RAM are initialized.
10139     Suppress printfs until the console is initialized.
10140
10141     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
10142     Acked-by: Heiko Schocher <hs@denx.de>
10143
10144 commit 0c6926736effbb9a19047949b7e9b3e8feab7c46
10145 Author: Guennadi Liakhovetski <lg@denx.de>
10146 Date:   Wed Mar 25 11:36:50 2009 +0100
10147
10148     ARM: Add the imx31_phycore_eet board to MAKEALL
10149
10150     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10151
10152 commit 917cfc70c18b74fa8a80189bdce8395199fa8360
10153 Author: Nishanth Menon <nm@ti.com>
10154 Date:   Wed Mar 25 22:13:56 2009 +0100
10155
10156     OMAP3:Beagle: Enable mtdparts
10157
10158     http://www.denx.de/wiki/DULG/UBootCmdGroupFlash#UBootCmdFlMtdparts
10159     provides a flexible way to create and maintain u-boot mtd
10160     partitions. This allows commands such as "nand erase fs"
10161     to work and the user no longer needs to decode the absolute
10162     nand offsets. This patch enables this function for beagleboard
10163
10164     Signed-off-by: Nishanth Menon <nm@ti.com>
10165     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10166
10167 commit 4de1a5daab079ddc8ce1274144700203d692105c
10168 Author: Mike Frysinger <vapier@gentoo.org>
10169 Date:   Sun Feb 22 16:26:35 2009 -0500
10170
10171     Blackfin: bf537-stamp: split post code out into dedicated post.c
10172
10173     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10174
10175 commit 5e8f245743ed14c89e495ba2c027703db9813160
10176 Author: Mike Frysinger <vapier@gentoo.org>
10177 Date:   Sat Oct 11 22:51:56 2008 -0400
10178
10179     Blackfin: add support for S25FL128 parts
10180
10181     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10182
10183 commit bf1e028bf3eab1d702fa0627cade4460688f3913
10184 Author: Mike Frysinger <vapier@gentoo.org>
10185 Date:   Sat Oct 11 22:51:23 2008 -0400
10186
10187     Blackfin: overhaul SPI flash handling to speed things up
10188
10189     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10190
10191 commit efcc08cededa2168b96f12a22a5872340880d334
10192 Author: Mike Frysinger <vapier@gentoo.org>
10193 Date:   Sat Oct 11 22:51:05 2008 -0400
10194
10195     Blackfin: add support for SST SPI flashes
10196
10197     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10198
10199 commit 5b8cfbe63f7242ebb1008f30bbbc85a9d54b38cf
10200 Author: Mike Frysinger <vapier@gentoo.org>
10201 Date:   Sat Oct 11 22:50:10 2008 -0400
10202
10203     Blackfin: add hack for crappy m25p80
10204
10205     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10206
10207 commit 6f5fd56f0832ea5c254e2e4be84ea21fc8ecd5c5
10208 Author: Mike Frysinger <vapier@gentoo.org>
10209 Date:   Wed Jan 21 20:47:12 2009 -0500
10210
10211     Blackfin: bf537-stamp: increase monitor size
10212
10213     The new jffs2 code pushed the code size just over the limit, so increase
10214     the limit a bit more.
10215
10216     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10217
10218 commit f82caaccc87e1f76448ff42a6b930e59797e4f65
10219 Author: Mike Frysinger <vapier@gentoo.org>
10220 Date:   Mon Dec 8 16:16:11 2008 -0500
10221
10222     Blackfin: bf537-stamp: bump default SCLK up to 125MHz
10223
10224     Since all of the bf537-stamp and bf537-ezkit boards out there can handle it,
10225     increase the speed of SCLK to 125MHz rather than 100MHz.
10226
10227     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10228
10229 commit 751e54c3b77311b720b794813cce20546f288ada
10230 Author: Mike Frysinger <vapier@gentoo.org>
10231 Date:   Sat Oct 11 22:44:14 2008 -0400
10232
10233     Blackfin: bf537-stamp: rewrite MAC-in-flash handling
10234
10235     Use the common net eth functions to setup the env/global data with the MAC
10236     address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined.
10237
10238     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10239
10240 commit 88f9faffb383bbc6f23b8cc8519c5ffecfa2c8ad
10241 Author: Mike Frysinger <vapier@gentoo.org>
10242 Date:   Tue Dec 9 13:47:39 2008 -0500
10243
10244     Blackfin: add clkin_hz= to default kernel command line for ADI boards
10245
10246     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10247
10248 commit 9f64ba2412d3cede9eb1f290987e5c3a28df3232
10249 Author: Mike Frysinger <vapier@gentoo.org>
10250 Date:   Sun Oct 12 23:49:13 2008 -0400
10251
10252     Blackfin: bf533-stamp: bump up default clocks
10253
10254     Since the hardware can handle it, bump the default clocks from 80mhz SCLK
10255     and 398mhz CCLK to 100mhz SCLK and 498mhz CCLK.
10256
10257     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10258
10259 commit 23fd959eeaaa0434ac7f9c1191de66c76d97d699
10260 Author: Mike Frysinger <vapier@gentoo.org>
10261 Date:   Sat Oct 11 22:40:22 2008 -0400
10262
10263     Blackfin: bf533-stamp: rewrite startup LED notifications
10264
10265     Again, don't clobber pins that we aren't actually using, and use the common
10266     LED framework rather than our own hob-job-but-not-really-working.
10267
10268     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10269
10270 commit cf6f469e2730fc8ab3523808b828be000d6eee77
10271 Author: Mike Frysinger <vapier@gentoo.org>
10272 Date:   Sun Jun 1 09:09:48 2008 -0400
10273
10274     Blackfin: unify common ADI board settings
10275
10276     Rather than duplicate the same ADI settings in every ADI board, create a
10277     common ADI config header and have all ADI boards start using that.  This
10278     will also make merging the ~10 boards I have to forward port a lot easier.
10279
10280     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10281
10282 commit 196c74311f394c6eb08bd9ab07a35671299b9851
10283 Author: Kyungmin Park <kmpark@infradead.org>
10284 Date:   Tue Mar 3 09:05:53 2009 +0900
10285
10286     Reduce OneNAND IPL common code
10287
10288     OneNAND IPL has common codes for RAM init, load data, and jump to 2nd
10289     bootloader, but it's common code used about 300~400 bytes. So board
10290     specific codes, such as lowlevel_init, can't has enough code. It make
10291     a difficult to implement OneNAND IPL.
10292
10293     his patch make this common code as small as possible. and give
10294     lowlevel_init can have more codes.
10295
10296     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
10297     Signed-off-by: Scott Wood <scottwood@freescale.com>
10298
10299 commit 16f2f5a351004129e79e79816697a367fd9e5446
10300 Author: Wolfgang Grandegger <wg@grandegger.com>
10301 Date:   Wed Feb 11 18:38:24 2009 +0100
10302
10303     Add multi-chip NAND support for the TQM8548 modules
10304
10305     This patches configures the NAND UPM-FSL driver with multi-chip
10306     support for the Micron MT29F8G08FAB NAND flash memory on the
10307     TQM8548 modules.
10308
10309     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10310     Signed-off-by: Scott Wood <scottwood@freescale.com>
10311
10312 commit 33846df28fa1f4cf96a96c18142d48d813caa892
10313 Author: Wolfgang Grandegger <wg@grandegger.com>
10314 Date:   Wed Feb 11 18:38:23 2009 +0100
10315
10316     Add wait flags to support board/chip specific delays
10317
10318     The NAND flash on the TQM8548_BE modules requires a short delay after
10319     running the UPM pattern like the MPC8360ERDK board does. The TQM8548_BE
10320     requires a further short delay after writing out a buffer. Normally the
10321     R/B pin should be checked, but it's not connected on the TQM8548_BE.
10322     The corresponding Linux FSL UPM driver uses similar delay points at the
10323     same locations. To manage these extra delays in a more general way, I
10324     introduced the "wait_flags" field allowing the board-specific driver to
10325     specify various types of extra delay.
10326
10327     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10328     Signed-off-by: Scott Wood <scottwood@freescale.com>
10329
10330 commit 06e9f7df054d26d7f49c56bf9a6844b193ad6313
10331 Author: Wolfgang Grandegger <wg@grandegger.com>
10332 Date:   Wed Feb 11 18:38:22 2009 +0100
10333
10334     Add support for TQM-specific chip select logic to FSL-UPM
10335
10336     For the NAND chips on the TQM8548 modules, a special chip-select logic is
10337     used. It uses dedicated address lines to be set via UPM machine address
10338     register (mar). This patch adds such support to the FSL-UPM driver.
10339
10340     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10341     Signed-off-by: Scott Wood <scottwood@freescale.com>
10342
10343 commit e93c1c169d49eda7babad9c781f541e2e34f0ff0
10344 Author: Wolfgang Grandegger <wg@grandegger.com>
10345 Date:   Wed Feb 11 18:38:21 2009 +0100
10346
10347     Add multi chip support to the FSL-UPM driver
10348
10349     This patch adds support for multi-chip NAND devices to the FSL-UPM
10350     driver. The "dev_ready" callback of the "struct fsl_upm_nand" is now
10351     called with the argument "chip_nr" to allow testing the proper chip
10352     select line. The NAND support of the MPC8360ERDK is updated as well.
10353     No other boards are currently using the FSL UPM driver.
10354
10355     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10356     Signed-off-by: Scott Wood <scottwood@freescale.com>
10357
10358 commit 672ed2aee91b4856f6671fc72cd34168d8f1b624
10359 Author: Wolfgang Grandegger <wg@grandegger.com>
10360 Date:   Wed Feb 11 18:38:20 2009 +0100
10361
10362     Enable multi chip support in the NAND layer
10363
10364     This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer.
10365     Multi-chips devices are displayed as shown:
10366
10367       Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB
10368
10369     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10370     Signed-off-by: Scott Wood <scottwood@freescale.com>
10371
10372 commit 74398b23f9c2ffdc137fd92910a46e3333fb93f9
10373 Author: Mike Frysinger <vapier@gentoo.org>
10374 Date:   Sat Oct 11 21:58:33 2008 -0400
10375
10376     Blackfin: put memory into self-refresh before/after programming clocks
10377
10378     When initializing the core clocks, stick external memory into self-refresh.
10379     This gains us a few cool things:
10380      - support suspend-to-RAM with Linux
10381      - reprogram clocks automatically when doing "go" on u-boot.bin in RAM
10382      - make sure settings are stable before flashing new version
10383      - finally fully unify initialize startup code path between LDR/non-LDR
10384
10385     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10386
10387 commit d347d572ab1f2d47bf257c9f7ca2e602038a136b
10388 Author: Mike Frysinger <vapier@gentoo.org>
10389 Date:   Sat Oct 11 21:56:08 2008 -0400
10390
10391     Blackfin: do not program voltage regulator on parts that do not have one
10392
10393     Some newer Blackfins (like the BF51x) do not have an on-chip voltage
10394     regulator, so do not attempt to program the memory as if it does.
10395
10396     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10397
10398 commit 0d4f24b70f7a979f58174f3eb271874950b551b6
10399 Author: Mike Frysinger <vapier@gentoo.org>
10400 Date:   Sun Jun 1 01:28:24 2008 -0400
10401
10402     Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers
10403
10404     If the board config does not specify an explicit EBIU_SDBCTL value, set it
10405     up with sane values based on other configuration options.
10406
10407     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10408
10409 commit 3986e981f565c08f10c7e526af8cb518d741c349
10410 Author: Mike Frysinger <vapier@gentoo.org>
10411 Date:   Sat Dec 6 18:06:58 2008 -0500
10412
10413     Blackfin: handle reboot anomaly 432
10414
10415     Workaround anomaly 432:
10416     The bfrom_SysControl() firmware function does not clear the SIC_IWR1
10417     register before executing the PLL programming sequence.  Therefore, any
10418     interrupt enabled in the SIC_IWR1 register prior to the call to
10419     bfrom_SysControl() can prematurely terminate the idle sequence required
10420     for the PLL to relock properly. SIC_IWR0 is properly handled.
10421
10422     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10423
10424 commit 7e1d212b6da492c6ea32c62af92e185284f41291
10425 Author: Mike Frysinger <vapier@gentoo.org>
10426 Date:   Sat Oct 18 04:04:49 2008 -0400
10427
10428     Blackfin: kill off LDR jump block
10429
10430     The Boot ROM uses EVT1 as the entry point so set that rather than having
10431     to use a tiny jump block in the default EVT1 location.
10432
10433     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10434
10435 commit a75fa148d60b1975403441e45565621bba50d2d9
10436 Author: Mike Frysinger <vapier@gentoo.org>
10437 Date:   Tue Jan 6 10:00:48 2009 -0500
10438
10439     Blackfin: simplify symbol_lookup() a bit
10440
10441     No need to skip a byte as the symbol table handles this.
10442
10443     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10444
10445 commit 59f0978a7e78d20277ddbde7caf0ea877f3cfd98
10446 Author: Mike Frysinger <vapier@gentoo.org>
10447 Date:   Sat Feb 7 05:43:21 2009 -0500
10448
10449     Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits
10450
10451     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10452
10453 commit 58130f8920151d9e8942bbdf3388f2defb47e415
10454 Author: Mike Frysinger <vapier@gentoo.org>
10455 Date:   Sat Feb 7 05:41:17 2009 -0500
10456
10457     Blackfin: drop SPORT_TX read helper macros
10458
10459     The SPORT_TX registers cannot be read (the hardware will trigger an error),
10460     so drop the read helper macros.
10461
10462     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10463
10464 commit 820b076c449688bcd4af6db5a33ae424d1a60d0e
10465 Author: Mike Frysinger <vapier@gentoo.org>
10466 Date:   Sat Feb 7 05:25:35 2009 -0500
10467
10468     Blackfin: unify duplicate CPU port definitions
10469
10470     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10471
10472 commit 744fd240d181b0b05b1436e1b655c9a62526c752
10473 Author: Mike Frysinger <vapier@gentoo.org>
10474 Date:   Fri Feb 6 00:59:50 2009 -0500
10475
10476     Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX
10477
10478     With the new CONFIG_XXX system and CONFIG_CMD_XXX handling, these defines
10479     are no longer used/needed.
10480
10481     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10482
10483 commit 45c48953e8a4038bd49c46813fcff5a207867ae4
10484 Author: Mike Frysinger <vapier@gentoo.org>
10485 Date:   Mon Oct 6 04:01:26 2008 -0400
10486
10487     Blackfin: print out Flash: before checking it
10488
10489     If there is some problem in the flash init/checking code, it's nicer to see
10490     the message "Flash:" before crashing.  This way the source of the problem
10491     is a bit more straightforward.
10492
10493     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10494
10495 commit 1c7a79a04eb916f685f7275520b5eea6968a1559
10496 Author: Mike Frysinger <vapier@gentoo.org>
10497 Date:   Thu Aug 7 15:33:09 2008 -0400
10498
10499     Blackfin: safely flush data caches when in writeback mode
10500
10501     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10502
10503 commit c06f2b13022703611bc3e512bd34f9014a46f448
10504 Author: Mike Frysinger <vapier@gentoo.org>
10505 Date:   Thu Aug 7 13:21:48 2008 -0400
10506
10507     Blackfin: update lockbox api according to latest documentation
10508
10509     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10510
10511 commit 2decc2a8d17a5397cb5956e46c8466c736e305a2
10512 Author: Mike Frysinger <vapier@gentoo.org>
10513 Date:   Sat Oct 11 21:49:06 2008 -0400
10514
10515     Blackfin: mark bfin_reset static
10516
10517     The function is only used locally, so mark it static.
10518
10519     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10520
10521 commit 974473caa732f63312687ef2bd2d22dad8e99b9a
10522 Author: Sonic Zhang <Sonic.Zhang@analog.com>
10523 Date:   Fri Mar 20 19:28:20 2009 -0400
10524
10525     Blackfin: spi: there is no PORTJ_FER MMR on BF537
10526
10527     Since the PORTJ on the BF537 is peripheral-only (no GPIO functionality),
10528     then there is no PORTJ_FER register for us to worry about.
10529
10530     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
10531     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10532
10533 commit e82b762f293debc53c5afa90f37264f6b07520f9
10534 Author: Mike Frysinger <vapier@gentoo.org>
10535 Date:   Tue Mar 17 13:58:23 2009 -0400
10536
10537     Blackfin: fix jtag console tstc
10538
10539     The jtag tstc operation was checking the hardware to see if data is
10540     available from it (which is fine for the jtag getc operation), but the
10541     higher layers need to know whether any data is available.  Since we have
10542     to read up to 4 bytes at a time from the hardware, the higher layers need
10543     to know they can consume the cached bytes as well.
10544
10545     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10546
10547 commit bc683f58b1f1d8d20546fe019483967a51a49df1
10548 Author: Mike Frysinger <vapier@gentoo.org>
10549 Date:   Sun Feb 22 16:23:41 2009 -0500
10550
10551     Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...)
10552
10553     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10554
10555 commit 8996d1608acb8f59fcb186dc7ed7d87f8fee1297
10556 Author: Mike Frysinger <vapier@gentoo.org>
10557 Date:   Sun Feb 22 16:02:27 2009 -0500
10558
10559     Blackfin: unify net-related init code
10560
10561     Unify all of the net-related init code in the common Blackfin board init
10562     code to clean up the ifdef mess a bit.
10563
10564     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10565
10566 commit c6ea30e52ea82af4858d2b6f99e0fd2ea276d657
10567 Author: Mike Frysinger <vapier@gentoo.org>
10568 Date:   Wed Feb 18 12:51:48 2009 -0500
10569
10570     Blackfin: fix SWRST/SYSCR register sizes
10571
10572     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10573
10574 commit a9d6777d39154978b9ef9c682b2627a3480b194c
10575 Author: Mike Frysinger <vapier@gentoo.org>
10576 Date:   Wed Feb 18 12:51:31 2009 -0500
10577
10578     Blackfin: update anomaly lists
10579
10580     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10581
10582 commit 4d7c32dad2e787f890ebcd51bfb723a126913c90
10583 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10584 Date:   Thu Mar 19 18:31:38 2009 +0100
10585
10586     avr32: fix cacheflush.h location introducted by d8f2aa3298610b
10587
10588     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10589     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10590
10591 commit 3a3baf3ee61e6b28af3b49ebabc9ab4f6015aa48
10592 Author: Eric Schumann <E.Schumann@phytec.de>
10593 Date:   Sat Mar 21 09:59:34 2009 -0400
10594
10595     Make flash protection work, when the environment is in EEPROM
10596
10597     On the pcm030 the environment is located in the onboard EEPROM. But we want
10598     to handle flash sector protection in a safe manner. So we must read the
10599     unlock environment variable from EEPROM instead from flash.
10600
10601     This patch is required as long the evironment is saved into the EEPROM.
10602
10603     Stefan: Additional change as suggested by Wolfgang, use bigger char array
10604     (instead of 4).
10605
10606     Signed-off-by: Eric Schumann <E.Schumann@phytec.de>
10607     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
10608     Acked-by: Wolfgang Denk <wd@denx.de>
10609     Signed-off-by: Stefan Roese <sr@denx.de>
10610
10611 commit de3ce8c59f48f99779d7d7379a5432ded12ec06c
10612 Author: Jon Smirl <jonsmirl@gmail.com>
10613 Date:   Sat Mar 21 11:17:56 2009 -0400
10614
10615     Add define for mpc5200 CDM_CLK_ENA
10616
10617     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
10618
10619 commit df486b1fa3f750b153eac7daa0b3bf1f594e5098
10620 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
10621 Date:   Sun Mar 22 14:48:16 2009 +0100
10622
10623     at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.
10624
10625     AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed.
10626
10627     The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board.
10628     It is essentially the same, with a few minor differences.
10629
10630     Here is the chip page on Atmel website:
10631     http://www.atmel.com/dyn/products/product_card.asp?part_id=4337
10632
10633     Signed-off-by: Justin Waters <justin.waters@timesys.com>
10634     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
10635     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10636
10637 commit 118d168035cc93f586da4812c89cb153eb9f4243
10638 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10639 Date:   Sun Mar 22 14:28:14 2009 +0100
10640
10641     cmc_pu2: fix implicit declaration of function 'eth_setenv_enetaddr'
10642
10643     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10644
10645 commit 176c4a982c6531f96426afaa1126cf9a5e2d5e03
10646 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10647 Date:   Sun Mar 22 14:28:13 2009 +0100
10648
10649     cmc_pu2: fix misc_init_r prototype
10650
10651     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10652
10653 commit 53158aea995221706b42c7bad9f717b31ae20414
10654 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10655 Date:   Sun Jan 11 03:32:01 2009 +0100
10656
10657     at91sam9xeek: fix soc name
10658
10659     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10660
10661 commit 74c076d6c33d6d42ab065541a38383587879e7b7
10662 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10663 Date:   Sun Mar 22 10:22:34 2009 +0100
10664
10665     at91sam9/at91cap: move nand drivers to drivers/mtd/nand
10666
10667     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10668
10669 commit 163966087d62680547f188a93c61d01c8155254e
10670 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10671 Date:   Sat Mar 21 21:08:01 2009 +0100
10672
10673     atmel/at91/boards: compile dataflash partition only when dataflash is
10674
10675     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10676
10677 commit e2c0476f958f8e0b269a1118f4ba4a5cd475aa56
10678 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10679 Date:   Sat Mar 21 21:08:00 2009 +0100
10680
10681     at91sam9/at91cap: move common macb initialisation to cpu
10682
10683     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10684
10685 commit f3f91f886bc8927fd692ac411b7423a87ffec532
10686 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10687 Date:   Sat Mar 21 21:08:00 2009 +0100
10688
10689     at91sam9/at91cap: move common usb host initialisation to cpu
10690
10691     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10692
10693 commit a484b00b86e72ac6da6ee4fce13dbc6b256672fe
10694 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10695 Date:   Sat Mar 21 21:08:00 2009 +0100
10696
10697     at91sam9/at91cap: move common led management to cpu
10698
10699     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10700
10701 commit 7ebafb7ec1a0285af8380623c009576f92583b98
10702 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10703 Date:   Sat Mar 21 21:07:59 2009 +0100
10704
10705     at91sam9/at91cap: move common spi initialisation to cpu
10706
10707     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10708
10709 commit 1332a2a0694c8e10a5bade397cf83645b2c3fd7e
10710 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10711 Date:   Sat Mar 21 21:07:59 2009 +0100
10712
10713     at91sam9/at91cap: move common serial initialisation to cpu
10714
10715     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10716
10717 commit e60beb13cf0135dc71c541021487b5ccc4d269cb
10718 Author: Wolfgang Denk <wd@denx.de>
10719 Date:   Sat Mar 21 22:04:41 2009 +0100
10720
10721     Prepare 2009.03
10722
10723     Update CHANGELOG
10724
10725     Signed-off-by: Wolfgang Denk <wd@denx.de>
10726
10727 commit 9e78dae2b276c5bf9ab92cd85173f6cb92b1b7d5
10728 Author: Vivek Kutal <vivek.kutal@azingo.com>
10729 Date:   Mon Feb 23 21:35:11 2009 +0530
10730
10731     Replaced endpoint numbers with appropriate macros in usbtty.c.
10732
10733     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
10734     Signed-off-by: Remy Bohmer <linux@bohmer.net>
10735
10736 commit faac4fd852e39cb1d7a740801b060e41aeacef1f
10737 Author: Michael Lawnick <ml.lawnick@gmx.de>
10738 Date:   Thu Mar 19 10:06:41 2009 +0100
10739
10740     UBIFS: Missing offset relocation for compressor 'none'
10741
10742     On systems where U-Boot is linked to another address than it really lays
10743     (e.g. backup image), calls via function pointers must be fixed with a
10744     '+= gd->reloc_off'.
10745     This was not done for none_compr in ubifs_compressors_init() what leads
10746     to system crash on ubifsmount command.
10747
10748     Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de>
10749     Acked-by: Stefan Roese <sr@denx.de>
10750
10751 commit ce6d0c8de031f345bde745f3b855082adf1c4e45
10752 Author: Stefan Roese <sr@denx.de>
10753 Date:   Thu Mar 19 15:35:50 2009 +0100
10754
10755     UBIFS: Add UBIFS commands
10756
10757     This patchset adds these UBIFS related commands:
10758
10759     - ubifsmount
10760       Mount an UBIFS volume
10761
10762     - ubifsls
10763       List a directory of the mounted UBIFS volume
10764
10765     - ubifsload
10766       Load a file from the mounted UBIFS volume to memory
10767
10768     Signed-off-by: Stefan Roese <sr@denx.de>
10769
10770 commit 9eefe2a2b37a838558e3d213a9f5519503d0c180
10771 Author: Stefan Roese <sr@denx.de>
10772 Date:   Thu Mar 19 15:35:05 2009 +0100
10773
10774     UBIFS: Implement read-only UBIFS support in U-Boot
10775
10776     The U-Boot UBIFS implementation is largely a direct copy from the current
10777     Linux version (2.6.29-rc6). As already done in the UBI version we have an
10778     "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock()
10779     ...). This makes it possible to use the original Linux code with very
10780     little changes. And by this we can better update to later Linux versions.
10781
10782     I removed some of the Linux features that are not used in the U-Boot
10783     version (e.g. garbage-collection, write support).
10784
10785     Signed-off-by: Stefan Roese <sr@denx.de>
10786     CC: Artem Bityutskiy <dedekind@infradead.org>
10787     CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
10788
10789 commit b1b4e89a0f3b75854c39a62cae41bad56d210adf
10790 Author: Stefan Roese <sr@denx.de>
10791 Date:   Thu Mar 19 15:34:56 2009 +0100
10792
10793     Add LZO decompressor support
10794
10795     This patch adds LZO decompression support to U-Boot. It is needed for
10796     the upcoming UBIFS support, since UBIFS uses LZO as default compressor/
10797     decompressor. Since we only support read-only in UBIFS, only the
10798     decompressor is needed.
10799
10800     All this is copied with minor changes from the current Linux kernel
10801     version (2.6.28-rc8).
10802
10803     This patch only implements this LZO decompressor support for PPC.
10804     Other platforms using UBIFS will have to add the required
10805     "include/asm/unaligned.h" as well. It should be fairly easy to copy this
10806     from the Linux source tree as I have done it for PPC in this patch.
10807
10808     Signed-off-by: Stefan Roese <sr@denx.de>
10809
10810 commit 68d7d65100e84df00bca971c114092731b441090
10811 Author: Stefan Roese <sr@denx.de>
10812 Date:   Thu Mar 19 13:30:36 2009 +0100
10813
10814     Separate mtdparts command from jffs2
10815
10816     Currently the mtdparts commands are included in the jffs2 command support.
10817     This doesn't make sense anymore since other commands (e.g. UBI) use this
10818     infrastructure as well now. This patch separates the mtdparts commands from
10819     the jffs2 commands making it possible to only select mtdparts when no JFFS2
10820     support is needed.
10821
10822     Signed-off-by: Stefan Roese <sr@denx.de>
10823     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
10824
10825 commit 02a301cd5087eaffdf456e0a5cec1100c4d9a398
10826 Author: Stefan Roese <sr@denx.de>
10827 Date:   Wed Feb 25 12:11:15 2009 +0100
10828
10829     powerpc: Only use eth_getenv_enetaddr() if networking is enabled
10830
10831     Signed-off-by: Stefan Roese <sr@denx.de>
10832
10833 commit 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5
10834 Author: Grzegorz Bernacki <gjb@semihalf.com>
10835 Date:   Tue Mar 17 10:06:40 2009 +0100
10836
10837     Add support for the digsy MTC board.
10838
10839     This is the InterControl custom device based on the MPC5200B chip.
10840
10841     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
10842
10843 commit ff7dc067369e30066744f096995aef7d97574d15
10844 Author: Stefan Roese <sr@denx.de>
10845 Date:   Mon Feb 23 16:52:36 2009 +0100
10846
10847     powerpc: Fix compilation warning in board.c
10848
10849     Fix this warning:
10850
10851     board.c: In function 'board_init_r':
10852     board.c:653: warning: unused variable 'i'
10853     board.c:651: warning: unused variable 'e'
10854
10855     Signed-off-by: Stefan Roese <sr@denx.de>
10856
10857 commit 9cd690160d3ce1a7fb4ceeee6c99cedb1ac1d49c
10858 Author: Stefan Roese <sr@denx.de>
10859 Date:   Mon Feb 23 16:42:51 2009 +0100
10860
10861     ppc4xx: Don't write the MAC address into the internal SoC registers
10862
10863     Remove this code. It's not needed. The 4xx EMAC driver stores the MAC
10864     addresses into the SoC registers instead.
10865
10866     Signed-off-by: Stefan Roese <sr@denx.de>
10867
10868 commit bb57ad4be76d0e2e7f9ec56678235cc9872ff40f
10869 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10870 Date:   Fri Feb 20 10:19:19 2009 +0100
10871
10872     ppc4xx: Use correct io accessors for esd 405/440 boards
10873
10874     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
10875     macros. Also volatile pointer references are replaced by the
10876     new accessors.
10877
10878     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
10879     Signed-off-by: Stefan Roese <sr@denx.de>
10880
10881 commit 049216f045fd8e0f45bcef121c2bb1c7d3de6988
10882 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10883 Date:   Fri Feb 20 10:19:18 2009 +0100
10884
10885     ppc4xx: Use correct io accessors for esd 405 boards
10886
10887     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
10888     macros. Also volatile pointer references are replaced by the
10889     new accessors.
10890
10891     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
10892     Signed-off-by: Stefan Roese <sr@denx.de>
10893
10894 commit a59205d1519375d027f97a545ad642ab20fce6f8
10895 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10896 Date:   Fri Feb 20 10:19:17 2009 +0100
10897
10898     ppc4xx: Cleanup linker scripts of esd 4xx boards
10899
10900     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
10901     Signed-off-by: Stefan Roese <sr@denx.de>
10902
10903 commit 2f103ee284e68934a648732db5e0b6ceb4a1ed8f
10904 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10905 Date:   Fri Feb 20 10:19:16 2009 +0100
10906
10907     ppc4xx: Update TEXT_BASE for DASA_SIM boards
10908
10909     Fix building DASA_SIM boards by increasing U-Boot's size in flash.
10910
10911     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
10912     Signed-off-by: Stefan Roese <sr@denx.de>
10913
10914 commit 09db8f4de6805f1dde510c167f20e56a5405d29e
10915 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10916 Date:   Fri Feb 20 10:19:15 2009 +0100
10917
10918     ppc4xx: DU405 maintenance fix
10919
10920     -strip unused features
10921     -fix resetting phy
10922
10923     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
10924     Signed-off-by: Stefan Roese <sr@denx.de>
10925
10926 commit 75511b47ac2647be48218dbb93af05b21f404f67
10927 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10928 Date:   Fri Feb 20 10:19:14 2009 +0100
10929
10930     ppc4xx: Abort autoboot only by space key on CPCI405 boards
10931
10932     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10933     Signed-off-by: Stefan Roese <sr@denx.de>
10934
10935 commit e17ee157ca9ff0d4cc5841d06c4b70c1603df29c
10936 Author: Graeme Russ <graeme.russ@gmail.com>
10937 Date:   Tue Feb 24 21:14:56 2009 +1100
10938
10939     Add basic relocation to i386 port
10940
10941     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
10942
10943 commit 8c63d47651f77d9fb887cad433370b866eb0a193
10944 Author: Graeme Russ <graeme.russ@gmail.com>
10945 Date:   Tue Feb 24 21:14:45 2009 +1100
10946
10947     Implement SC520 timers
10948
10949     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
10950
10951 commit 6d7f610b09f813b1239eedcbfe921cfd439aea25
10952 Author: Graeme Russ <graeme.russ@gmail.com>
10953 Date:   Tue Feb 24 21:14:32 2009 +1100
10954
10955     Factor out SC520 sub-features
10956
10957     Moved sub-features of the SC520 code which is currently selectively compiled
10958     using #ifdef out of sc520.c into individual files selectively compiled via
10959     the makefile
10960
10961     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
10962
10963 commit abf0cd3dff227cfb6e82ad13be62e28e6e89d5df
10964 Author: Graeme Russ <graeme.russ@gmail.com>
10965 Date:   Tue Feb 24 21:13:40 2009 +1100
10966
10967     Rewrite i386 interrupt handling
10968
10969     Rewrite interrupt handling functionality for the i386 port. Separated
10970     functionality into separate CPU and Architecture components.
10971
10972     It appears as if the i386 interrupt handler functionality was intended
10973     to allow multiple handlers to be installed for a given interrupt.
10974     Unfortunately, this functionality was not fully implemented and also
10975     had the problem that irq_free_handler() does not allow the passing
10976     of the handler function pointer and therefore could never be used to
10977     free specific handlers that had been installed for a given IRQ.
10978
10979     There were also various issues with array bounds not being fully
10980     tested.
10981
10982     I had two objectives in mind for the new implementation:
10983
10984     1) Keep the implementation as similar as possible to existing
10985        implementations. To that end, I have used the leon2/3
10986        implementations as the reference
10987
10988     2) Seperate CPU and Architecture specific elements. All specific i386
10989        interrupt functionality is now in cpu/i386/ with the high level
10990        API and architecture specific code in lib_i386. Functionality
10991        specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has
10992        been further split out into an individual file to allow for the
10993        implementation of the PIC architecture of the SC520 CPU (supports
10994        more IRQs)
10995
10996     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
10997
10998 commit ece444b42b71eb5bce34a24ec584573b3c8c4a98
10999 Author: Graeme Russ <graeme.russ@gmail.com>
11000 Date:   Tue Feb 24 21:12:35 2009 +1100
11001
11002     Move ali512x.h
11003
11004     Moved ali512x.h from include/asm-i386/ic/ to /include
11005
11006     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
11007
11008 commit 6d83e3ac61dcdbcb7f04664309a9689fe01c5704
11009 Author: Graeme Russ <graeme.russ@gmail.com>
11010 Date:   Tue Feb 24 21:12:20 2009 +1100
11011
11012     Rename SC520 Configuration Options
11013
11014     Options are now all uniformly CONFIG_SYS_SC520_<option>
11015
11016     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
11017
11018 commit f62fb99941c625605aa16a0097b396a5c16d2c88
11019 Author: Trent Piepho <xyzzy@speakeasy.org>
11020 Date:   Wed Feb 18 15:22:05 2009 -0800
11021
11022     Fix all linker script to handle all rodata sections
11023
11024     A recent gcc added a new unaligned rodata section called '.rodata.str1.1',
11025     which needs to be added the the linker script.  Instead of just adding this
11026     one section, we use a wildcard ".rodata*" to get all rodata linker section
11027     gcc has now and might add in the future.
11028
11029     However, '*(.rodata*)' by itself will result in sub-optimal section
11030     ordering.  The sections will be sorted by object file, which causes extra
11031     padding between the unaligned rodata.str.1.1 of one object file and the
11032     aligned rodata of the next object file.  This is easy to fix by using the
11033     SORT_BY_ALIGNMENT command.
11034
11035     This patch has not be tested one most of the boards modified.  Some boards
11036     have a linker script that looks something like this:
11037
11038     *(.text)
11039     . = ALIGN(16);
11040     *(.rodata)
11041     *(.rodata.str1.4)
11042     *(.eh_frame)
11043
11044     I change this to:
11045
11046     *(.text)
11047     . = ALIGN(16);
11048     *(.eh_frame)
11049     *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
11050
11051     This means the start of rodata will no longer be 16 bytes aligned.
11052     However, the boundary between text and rodata/eh_frame is still aligned to
11053     16 bytes, which is what I think the real purpose of the ALIGN call is.
11054
11055     Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
11056
11057 commit 566b652c7cdb0e5e0529bb3d1eaffbd2bf45a032
11058 Author: Mike Frysinger <vapier@gentoo.org>
11059 Date:   Wed Feb 11 18:26:08 2009 -0500
11060
11061     remove bi_enet*addr from global data for all arches
11062
11063     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11064     CC: Ben Warren <biggerbadderben@gmail.com>
11065     CC: Daniel Hellstrom <daniel@gaisler.com>
11066     CC: Michal Simek <monstr@seznam.cz>
11067     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11068     CC: Scott McNutt <smcnutt@psyent.com>
11069     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11070
11071 commit eb85aa594c1b57a1e3be9689b65171a137a36432
11072 Author: Mike Frysinger <vapier@gentoo.org>
11073 Date:   Wed Feb 11 20:07:19 2009 -0500
11074
11075     ppc: mark global bi_enet*addr as legacy
11076
11077     The environment is the canonical storage location of the mac address, so
11078     we're killing off the global data location and moving everything to
11079     querying the env directly.
11080
11081     In the ppc case, these things are part of the legacy ABI, so keep them
11082     around but mark them as legacy so no new code will touch them.
11083
11084     Also stop calling load_sernum_ethaddr() since all boards now implement
11085     this as a stub.
11086
11087     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11088     CC: Ben Warren <biggerbadderben@gmail.com>
11089
11090 commit 9c150102bc1de375d36d97a1cc2dd0e9639b15df
11091 Author: Mike Frysinger <vapier@gentoo.org>
11092 Date:   Wed Feb 11 20:09:52 2009 -0500
11093
11094     boards: get mac address from env and move load_sernum_ethaddr() to board init
11095
11096     The environment is the canonical storage location of the mac address, so
11097     we're killing off the global data location and moving everything to
11098     querying the env directly.
11099
11100     Rather than have common ppc code call a board-specific function like
11101     load_sernum_ethaddr(), have each board call it in its own board-specific
11102     misc_init_r() function.
11103
11104     The boards that get converted here are:
11105         - kup4k/kup4x
11106         - pcs440ep
11107         - tqm8xx
11108
11109     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11110     CC: Ben Warren <biggerbadderben@gmail.com>
11111     CC: Stefan Roese <sr@denx.de>
11112
11113 commit 92b50ffef978f05858a0ff4cbe88430bc51a28a2
11114 Author: Mike Frysinger <vapier@gentoo.org>
11115 Date:   Wed Feb 11 19:55:01 2009 -0500
11116
11117     cmc_pu2: get mac address from environment
11118
11119     The environment is the canonical storage location of the mac address, so
11120     we're killing off the global data location and moving everything to
11121     querying the env directly.
11122
11123     Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to
11124     handle this board specially in common ARM code.
11125
11126     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11127     CC: Ben Warren <biggerbadderben@gmail.com>
11128
11129 commit d8d21e699d7fcfb6ab11635110266dd09b7edc62
11130 Author: Mike Frysinger <vapier@gentoo.org>
11131 Date:   Mon Feb 16 18:03:14 2009 -0500
11132
11133     boards: move board_get_enetaddr() into board-specific init
11134
11135     The environment is the canonical storage location of the mac address, so
11136     we're killing off the global data location and moving everything to
11137     querying the env directly.
11138
11139     Rather than have the common ppc code have board-specific hooks, move the
11140     board_get_enetaddr() function into the board-specific init functions.
11141
11142     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11143     CC: Ben Warren <biggerbadderben@gmail.com>
11144
11145 commit f11e6ff5b1859d9213f0d501b3309e065f487543
11146 Author: Mike Frysinger <vapier@gentoo.org>
11147 Date:   Wed Feb 11 19:39:55 2009 -0500
11148
11149     arm: get mac address from environment
11150
11151     The environment is the canonical storage location of the mac address, so
11152     we're killing off the global data location and moving everything to
11153     querying the env directly.
11154
11155     Some warts are remaining and should be killed off (by moving the func to
11156     the appropriate board init code):
11157         - davinci_eth_set_mac_addr
11158         - cs8900_get_enetaddr
11159         - smc_set_mac_addr
11160
11161     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11162     CC: Ben Warren <biggerbadderben@gmail.com>
11163
11164 commit 0107cf66f7346e8c7d6cf0fe99d2f265134afd59
11165 Author: Mike Frysinger <vapier@gentoo.org>
11166 Date:   Wed Feb 11 19:36:20 2009 -0500
11167
11168     nx823: get mac address from environment
11169
11170     The environment is the canonical storage location of the mac address, so
11171     we're killing off the global data location and moving everything to
11172     querying the env directly.
11173
11174     For the nx823, the serial number is moved out of load_sernum_ethaddr() and
11175     into misc_init_r() as is the env setup.  This lets us kill off the former
11176     function in the process.
11177
11178     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11179     CC: Ben Warren <biggerbadderben@gmail.com>
11180
11181 commit 19b5b533ccd522abeb501d510750693c35e20456
11182 Author: Mike Frysinger <vapier@gentoo.org>
11183 Date:   Wed Feb 11 18:27:18 2009 -0500
11184
11185     lib_*/board.c: do not initialize bi_enet*addr in global data
11186
11187     Since everyone is using the environment for mac address storage, there is
11188     no point in seeding the global data.
11189
11190     The arches that are converted here:
11191         i386
11192         m68k
11193         microblaze
11194         mips
11195         nios
11196         nios2
11197         sh
11198         sparc
11199
11200     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11201     CC: Ben Warren <biggerbadderben@gmail.com>
11202     CC: Daniel Hellstrom <daniel@gaisler.com>
11203     CC: Michal Simek <monstr@seznam.cz>
11204     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11205     CC: Scott McNutt <smcnutt@psyent.com>
11206     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11207
11208 commit 740e8ba7d475c49c1b76058e1bf354e376b5c4e0
11209 Author: Mike Frysinger <vapier@gentoo.org>
11210 Date:   Wed Feb 11 19:19:54 2009 -0500
11211
11212     npe: get mac address from environment
11213
11214     The environment is the canonical storage location of the mac address, so
11215     we're killing off the global data location and moving everything to
11216     querying the env directly.
11217
11218     The resulting code can also be simplified even further.
11219
11220     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11221     CC: Stefan Roese <sr@denx.de>
11222     CC: Ben Warren <biggerbadderben@gmail.com>
11223
11224 commit 6bacfa6a8e9b264d37c1262fc1f3e948d1feab81
11225 Author: Mike Frysinger <vapier@gentoo.org>
11226 Date:   Wed Feb 11 19:18:41 2009 -0500
11227
11228     cpu/: get mac address from environment
11229
11230     The environment is the canonical storage location of the mac address, so
11231     we're killing off the global data location and moving everything to
11232     querying the env directly.
11233
11234     The cpus that get converted here:
11235         at91rm9200
11236         mpc512x
11237         mpc5xxx
11238         mpc8260
11239         mpc8xx
11240         ppc4xx
11241
11242     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11243     CC: Ben Warren <biggerbadderben@gmail.com>
11244     CC: John Rigby <jrigby@freescale.com>
11245     CC: Stefan Roese <sr@denx.de>
11246
11247 commit 03f3d8d3b39cf85c0ce7ca903b436701e8aa610b
11248 Author: Mike Frysinger <vapier@gentoo.org>
11249 Date:   Wed Feb 11 19:09:54 2009 -0500
11250
11251     lan91c96/smc91111/smc911x: get mac address from environment
11252
11253     The environment is the canonical storage location of the mac address, so
11254     we're killing off the global data location and moving everything to
11255     querying the env directly.
11256
11257     Also, do not bother checking the EEPROM if the env is setup.  This
11258     simplifies the code greatly.
11259
11260     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11261     Signed-off-by: Wolfgang Dnek <wd@denx.de>
11262     CC: Ben Warren <biggerbadderben@gmail.com>
11263     CC: Rolf Offermanns <rof@sysgo.de>
11264     CC: Erik Stahlman <erik@vt.edu>
11265     CC: Daris A Nevil <dnevil@snmc.com>
11266     CC: Sascha Hauer <s.hauer@pengutronix.de>
11267
11268 commit c527ce92511cbf723c2ca77bee1cf9ecf83dac81
11269 Author: Mike Frysinger <vapier@gentoo.org>
11270 Date:   Wed Feb 11 19:14:09 2009 -0500
11271
11272     sh_eth: get mac address from environment
11273
11274     The environment is the canonical storage location of the mac address, so
11275     we're killing off the global data location and moving everything to
11276     querying the env directly.
11277
11278     The sh_eth driver can also be simplified a bit by using enetaddr member of
11279     the eth_device structure.
11280
11281     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11282     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11283     CC: Carlos Munoz <carlos@kenati.com>
11284     CC: Ben Warren <biggerbadderben@gmail.com>
11285
11286 commit 0a5238cea90665c230297a8fd77bb0b3b61ca177
11287 Author: Mike Frysinger <vapier@gentoo.org>
11288 Date:   Wed Feb 11 19:06:09 2009 -0500
11289
11290     cs8900: get mac address from environment
11291
11292     The environment is the canonical storage location of the mac address, so
11293     we're killing off the global data location and moving everything to
11294     querying the env directly.
11295
11296     The cs8900 driver also changes slightly in that the hardware is not
11297     consulted if the mac address in the env is sane.
11298
11299     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11300     CC: Marius Groeger <mgroeger@sysgo.de>
11301     CC: Ben Warren <biggerbadderben@gmail.com>
11302
11303 commit c4b8762f11d337e6a9d90c227b2871d65d372469
11304 Author: Mike Frysinger <vapier@gentoo.org>
11305 Date:   Wed Feb 11 19:04:25 2009 -0500
11306
11307     bcm570x: get mac address from environment
11308
11309     The environment is the canonical storage location of the mac address, so
11310     we're killing off the global data location and moving everything to
11311     querying the env directly.
11312
11313     Since the address is in the PLM_DEVICE_BLOCK structure already, there is
11314     no need to pass the NodeAddress as a second parameter.  So drop the second
11315     argument to the LM_SetMacAddress() function (and update the tigon3 driver
11316     accordingly).
11317
11318     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11319     CC: Ben Warren <biggerbadderben@gmail.com>
11320
11321 commit d3f871482f06f6a4eaf4a3fafde84846bad87b4f
11322 Author: Mike Frysinger <vapier@gentoo.org>
11323 Date:   Wed Feb 11 19:01:26 2009 -0500
11324
11325     drivers/net/: get mac address from environment
11326
11327     The environment is the canonical storage location of the mac address, so
11328     we're killing off the global data location and moving everything to
11329     querying the env directly.
11330
11331     The drivers that get converted here:
11332         3c589
11333         4xx_enet
11334         dc2114x
11335         dm9000x
11336         enc28j60
11337         fsl_mcdmafec
11338         ks8695eth
11339         mcffec
11340         rtl8019
11341         rtl8169
11342         s3c4510b_eth
11343         xilinx_emac
11344         xilinx_emaclite
11345
11346     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11347     CC: Ben Warren <biggerbadderben@gmail.com>
11348     CC: Rolf Offermanns <rof@sysgo.de>
11349     CC: Stefan Roese <sr@denx.de>
11350     CC: Sascha Hauer <saschahauer@web.de>
11351     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11352     CC: Greg Ungerer <greg.ungerer@opengear.com>
11353     CC: Xue Ligong <lgxue@hotmail.com>
11354     CC: Masami Komiya <mkomiya@sonare.it>
11355     CC: Curt Brune <curt@cucy.com>
11356     CC: Michal SIMEK <monstr@monstr.eu>
11357
11358 commit b6b4625d175019e387e5b0f65a17322a78f6bb90
11359 Author: Mike Frysinger <vapier@gentoo.org>
11360 Date:   Wed Feb 11 18:38:38 2009 -0500
11361
11362     boards: get mac address from environment
11363
11364     The boards that get converted here to use the environment for the mac
11365     address rather than global data:
11366         debris
11367         mgcoge
11368         mgsuvd
11369         muas3001
11370         netstal
11371         pn62
11372         sixnet
11373         vcma9
11374         xilinx (the ones that use xilinx_enet)
11375
11376     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11377     CC: Ben Warren <biggerbadderben@gmail.com>
11378     CC: Sangmoon Kim <dogoil@etinsys.com>
11379     CC: Heiko Schocher <hs@denx.de>
11380     CC: David Mueller <d.mueller@elsoft.ch>
11381     CC: Niklaus Giger <niklaus.giger@netstal.com>
11382     CC: Wolfgang Grandegger <wg@denx.de>
11383     CC: Dave Ellis <DGE@sixnetio.com>
11384     CC: Ricardo Ribalda <ricardo.ribalda@uam.es>
11385
11386 commit 06a0c4381a65ed500c816a05b9ae7b207c3b1d4b
11387 Author: Mike Frysinger <vapier@gentoo.org>
11388 Date:   Wed Feb 11 18:36:45 2009 -0500
11389
11390     AmigaOneG3SE/enet: get mac address from environment
11391
11392     Always use the MAC address that is stored in the environment first before
11393     falling back to the ROM.  This also cuts out any comparison steps: if the
11394     mac in the env is sane, the ROM is never consulted.
11395
11396     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11397     CC: Thomas Frieden <ThomasF@hyperion-entertainment.com>
11398     CC: Ben Warren <biggerbadderben@gmail.com>
11399
11400 commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5
11401 Author: Mike Frysinger <vapier@gentoo.org>
11402 Date:   Wed Feb 11 18:52:38 2009 -0500
11403
11404     nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr()
11405
11406     Since the ethernet layer handles updating of device addresses itself from
11407     the environment, there is no point in calling eth_set_enetaddr().
11408
11409     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11410     CC: Ben Warren <biggerbadderben@gmail.com>
11411
11412 commit 5013533467c1de731c2f0c9beb4b41ce3f07cbeb
11413 Author: Mike Frysinger <vapier@gentoo.org>
11414 Date:   Wed Feb 11 18:54:07 2009 -0500
11415
11416     lynxkdi: get mac address from environment
11417
11418     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11419     CC: Ben Warren <biggerbadderben@gmail.com>
11420
11421 commit 62c93d92f1b6266b2f33c5f403931b51cbd2a246
11422 Author: Mike Frysinger <vapier@gentoo.org>
11423 Date:   Wed Feb 11 18:51:43 2009 -0500
11424
11425     bootvx: get mac address from environment
11426
11427     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11428     CC: Niklaus Giger <niklaus.giger@member.fsf.org>
11429     CC: Ben Warren <biggerbadderben@gmail.com>
11430
11431 commit de2dff6ff89f98c6062f4d224fd434a3ede035d1
11432 Author: Mike Frysinger <vapier@gentoo.org>
11433 Date:   Wed Feb 11 18:50:10 2009 -0500
11434
11435     bdinfo: get mac address from environment
11436
11437     Add a new print_eth() function to automate the eth*addr env var acquisition
11438     and display.  Affects all arches.
11439
11440     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11441     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11442     CC: Scott McNutt <smcnutt@psyent.com>
11443     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11444     CC: Michal Simek <monstr@seznam.cz>
11445     CC: Daniel Hellstrom <daniel@gaisler.com>
11446     CC: Ben Warren <biggerbadderben@gmail.com>
11447
11448 commit 95823ca0773356860e622ee3304a4b7cafcbf19a
11449 Author: Mike Frysinger <vapier@gentoo.org>
11450 Date:   Wed Feb 11 18:23:48 2009 -0500
11451
11452     net: get mac address from environment and use eth util funcs
11453
11454     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11455     CC: Ben Warren <biggerbadderben@gmail.com>
11456
11457 commit 500b6c51e4c41f4562cb48344af98deb7e342731
11458 Author: Mike Frysinger <vapier@gentoo.org>
11459 Date:   Mon Oct 13 15:06:25 2008 -0400
11460
11461     Blackfin: bfin_mac: force boards to setup the MAC themselves
11462
11463     Since the on-chip MAC does not have an eeprom or similar interface, force
11464     all Blackfin boards that use this driver to setup the board data with a
11465     proper MAC.
11466
11467     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11468     CC: Ben Warren <biggerbadderben@gmail.com>
11469
11470 commit 6ff4137f2ad640e4fc8ea1b0455161ddff1f6730
11471 Author: Mike Frysinger <vapier@gentoo.org>
11472 Date:   Wed Feb 11 14:12:34 2009 -0500
11473
11474     doc/README.enetaddr: document proper MAC usage
11475
11476     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11477     CC: Ben Warren <biggerbadderben@gmail.com>
11478
11479 commit 3f6e6993e92fd0658da1746d1c84644612ee520b
11480 Author: Mike Frysinger <vapier@gentoo.org>
11481 Date:   Thu Jan 29 19:43:44 2009 -0500
11482
11483     net: new utility functions for working with enetaddr's
11484
11485     Declare new utility functions for converting between the environment
11486     variables (eth*addr) and the binary MAC address representation.  This way
11487     we can unify all the random places that already do this kind of thing.
11488
11489     The functions in question:
11490         eth_parse_enetaddr - "..." -> {...}
11491         eth_getenv_enetaddr - env -> {...}
11492         eth_setenv_enetaddr - {...} -> env
11493
11494     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11495     CC: Ben Warren <biggerbadderben@gmail.com>
11496
11497 commit b6446b67758ea1e41223f0782924bb73fd0a89d0
11498 Author: Mike Frysinger <vapier@gentoo.org>
11499 Date:   Tue Feb 17 00:00:53 2009 -0500
11500
11501     convert print_IPaddr() to %pI4
11502
11503     Now that our printf functions support the %pI4 modifier like the kernel,
11504     let's drop the inflexible print_IPaddr() function and covert over to the
11505     %pI4 modifier.
11506
11507     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11508     CC: Ben Warren <biggerbadderben@gmail.com>
11509
11510 commit 6c6166f52983dac775e3852f9d0f49d033f27108
11511 Author: Mike Frysinger <vapier@gentoo.org>
11512 Date:   Mon Feb 16 23:21:36 2009 -0500
11513
11514     vsprintf: pull updates from Linux kernel
11515
11516     This brings in support for the %p modifier which allows us to easily print
11517     out things like ip addresses, mac addresses, and pointers.
11518
11519     It also converts the rarely used 'q' length modifier to the common 'L'
11520     modifier when dealing with quad types.
11521
11522     While this new code is a bit larger (~1k .text), most of it should be made
11523     up by converting the existing ip/mac address code to use format modifiers.
11524
11525     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11526
11527 commit a43ea5cc6d612471fbc74f0a26b2bea5864aa1d6
11528 Author: Jon Smirl <jonsmirl@gmail.com>
11529 Date:   Thu Mar 19 23:04:18 2009 -0400
11530
11531     .gitignore for generated files in api_examples directory
11532
11533     Add .gitignore for generated files in api_examples directory
11534
11535     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
11536     Signed-off-by: Wolfgang Denk <wd@denx.de>
11537
11538 commit 40281a9ca21a6b6d7b996b4d4eeaa19026337231
11539 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11540 Date:   Wed Mar 18 12:27:04 2009 +0900
11541
11542     net: sh_eth: Remove sh_eth_reset() from halt function
11543
11544     sh_eth_reset is function to reset Ether IP.
11545     The MAC address is stored in IP, but it is initialized by this function.
11546     OS (e.g. Linux Kernel) can not use this device when initialized.
11547     This revises this problem.
11548
11549     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11550
11551 commit f8853d105da7d69bc92a5b4578f9b85234e558ec
11552 Author: Anatolij Gustschin <agust@denx.de>
11553 Date:   Fri Mar 20 12:45:50 2009 +0100
11554
11555     ppc4xx: Fix bug in PCI outbound map configuration for canyonlands
11556
11557     PCI outbound address map configuration doesn't match the
11558     PCI memory address range covered by appropriate TLB entry
11559     configuration for canyonlands causing machine check
11560     exceptions while accessing PCI memory regions. This patch
11561     provides a fix for this issue.
11562
11563     Kazuaki Ichinohe observed and reported this issue while
11564     testing display output with PCI ATI video card on canyonlands.
11565
11566     Signed-off-by: Anatolij Gustschin <agust@denx.de>
11567     Signed-off-by: Stefan Roese <sr@denx.de>
11568
11569 commit 7a88601a34132548c3c591ea87ab3468b51121b0
11570 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
11571 Date:   Fri Mar 6 10:09:37 2009 -0500
11572
11573     CFI: geometry reversal for STMicro M29W320DT
11574
11575     Follow up to the flash_fixup_stm to fix geometry reversal
11576     on STMicro M29W320ET flash chip. The M29W320DT has 4 erase region.
11577
11578     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
11579     Signed-off-by: Stefan Roese <sr@denx.de>
11580
11581 commit 069f4364d807d7fdea3de7385ad2f8d83c587aec
11582 Author: Mike Frysinger <vapier@gentoo.org>
11583 Date:   Wed Feb 25 17:29:40 2009 -0500
11584
11585     smc911x_eeprom: update register API
11586
11587     The smc911x driver changed the naming convention for its register funcs,
11588     so update the eeprom code accordingly.
11589
11590     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11591     CC: Ben Warren <biggerbadderben@gmail.com>
11592
11593 commit 6a397ef0e6c58caab8bf427d447714bc9b3bb9d4
11594 Author: Grzegorz Bernacki <gjb@semihalf.com>
11595 Date:   Tue Mar 17 10:06:39 2009 +0100
11596
11597     mpc52xx: Get rid of board-specific #ifdef's in cpu/mpc5xxx/ide.c
11598
11599     Total5200 and digsy MTC use I2C port 2 pins as a ATA chip select.
11600     To avoid adding board-specific ifdefs to cpu/mpc5xxx/ide.c new
11601     define CONFIG_SYS_ATA_CS_ON_I2C2 was introduced. It is used by
11602     Total5200 and will be used by digsy MTC and other boards with
11603     ATA CS on I2C pins.
11604
11605     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
11606
11607 commit 1b6275dfb173bd2edb8f208dd050d6f47ae39654
11608 Author: Heiko Schocher <hs@denx.de>
11609 Date:   Thu Mar 12 07:37:34 2009 +0100
11610
11611     8xx: add support for new keymile kmsupx4 board.
11612
11613     This patch adds support for the kmsupx4 board from Keymile,
11614     based on a Freescale MPC852T CPU
11615
11616     - serial console on SMC1
11617     - 32 MB SDRAM
11618     - 32 MB NOR Flash
11619     - Ethernet over SCC3
11620     - I2C Bitbang
11621
11622     Signed-off-by: Heiko Schocher <hs@denx.de>
11623
11624 commit d044954fe2a7e7a3dd104eb9c9d2104e38da2911
11625 Author: Heiko Schocher <hs@denx.de>
11626 Date:   Thu Mar 12 07:37:28 2009 +0100
11627
11628     8xx, mgsuvd: rename board to a more generic name
11629
11630     renaming the "mgsuvd" board port into "km8xx", because
11631     there come more similar boards from keymile.
11632     Compiling the mgsuvd board with "make mgsuvd_config"
11633     remains.
11634
11635     Signed-off-by: Heiko Schocher <hs@denx.de>
11636
11637 commit 18b2f35bde1672e074a3d5048383cb56fda745cb
11638 Author: Heiko Schocher <hs@denx.de>
11639 Date:   Thu Mar 12 07:37:23 2009 +0100
11640
11641     8xx, mgsuvd: Coding Style cleanup config file
11642
11643     Signed-off-by: Heiko Schocher <hs@denx.de>
11644
11645 commit 364123db6730d32330f818b65360d2cd27396667
11646 Author: Heiko Schocher <hs@denx.de>
11647 Date:   Thu Mar 12 07:37:18 2009 +0100
11648
11649     powerpc: common updates for keymile boards
11650
11651     - added to keymile-common.h:
11652       - bootcount support
11653       - COMMAND HISTORY
11654       - CONFIG_AUTO_COMPLETE
11655       - CONFIG_SYS_FLASH_PROTECTION
11656       - JFFS2 support
11657       - CONFIG_VERSION_VARIABLE
11658     - extracted common I2C settings for all boards
11659     - common default environment settings summarized
11660
11661     Signed-off-by: Heiko Schocher <hs@denx.de>
11662
11663 commit 506f391888b82d1b83bdd749c3cea9eb2fd64df8
11664 Author: Heiko Schocher <hs@denx.de>
11665 Date:   Thu Mar 12 07:37:15 2009 +0100
11666
11667     8xx, icache: enabling ICache not before running from RAM
11668
11669     with the new CONFIG_SYS_DELAYED_ICACHE config option, ICache
11670     is not enabled before code runs from RAM.
11671
11672     Signed-off-by: Heiko Schocher <hs@denx.de>
11673
11674 commit cabf7b9c83bd780a5805ddbb4c0ce431d5b9f9f3
11675 Author: Heiko Schocher <hs@denx.de>
11676 Date:   Thu Mar 12 07:37:11 2009 +0100
11677
11678     82xx, mgcoge: fix environment sector size
11679
11680     Size of one environment sector is 0x20000.
11681
11682     Signed-off-by: Heiko Schocher <hs@denx.de>
11683
11684 commit 27057d416c7cc9eb1860953da8836352c07f13e9
11685 Author: Ladislav Michl <ladis@linux-mips.org>
11686 Date:   Mon Mar 16 23:27:31 2009 +0100
11687
11688     NetStar: config reindentation
11689
11690     Fix indentation broken by symbol renames. "Sort" driver related definitons.
11691
11692     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
11693
11694 commit 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a
11695 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11696 Date:   Tue Mar 17 11:21:43 2009 +0000
11697
11698     ColdFire: Fix incorrect definition
11699
11700     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11701
11702 commit 9017d9325a5067b2ab0d70a2d3c907620c9ab7f8
11703 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11704 Date:   Mon Mar 2 19:16:45 2009 +0000
11705
11706     ColdFire: Fix M5329EVB and M5373EVB nand issue
11707
11708     The Nand flash was unable to read and write properly
11709     due to Nand Chip Select (nCE) setup was in reverse
11710     order. Also, increase the Nand time out value to 60.
11711
11712     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11713
11714 commit 42b68af1062f75bb4a91cf47e329a7e8100cd815
11715 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11716 Date:   Tue Jan 27 15:19:35 2009 +0000
11717
11718     ColdFire: PLATFORM_CPPFLAGS updates for new compiler
11719
11720     Update PLATFORM_CPPFLAGS to accept 4.3.x version of
11721     ColdFire compiler.
11722
11723     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11724
11725 commit d6e4baf49987fc6f75e8574c0c27301a828b3132
11726 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11727 Date:   Tue Jan 27 12:57:47 2009 +0000
11728
11729     ColdFire: Provide gzip image size V2 & V3 platforms
11730
11731     Default gzip bootm size is 8MB. Some platforms require
11732     more than 8MB
11733
11734     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11735
11736 commit c3a9e6374210679a81f611c1bcf968988bc20e41
11737 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11738 Date:   Wed Feb 18 11:49:31 2009 +0000
11739
11740     ColdFire: Fix M54451 serial boot dram setup
11741
11742     The serial boot dram extended/standard mode register was not
11743     setup and was using default DRAM setup causing the U-boot was
11744     unstable to boot up in serial mode.
11745
11746     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11747
11748 commit 32d11d58159a575f08a982cad8a5a941ffe5cc3d
11749 Author: arun c <arun.edarath@gmail.com>
11750 Date:   Thu Dec 4 15:57:15 2008 +0530
11751
11752     Coldfire: XL Bus minor fixes
11753
11754     According to coldfire manual data timeout > address time out
11755     also use correct macro to program XARB_CFG
11756
11757     Signed-off-by: Arun C <arunedarath@mistralsolutions.com>
11758
11759 commit 65d8bc94d8214812ccdf3372d3fef845cf4ec2e5
11760 Author: Scott Wood <scottwood@freescale.com>
11761 Date:   Tue Mar 17 12:06:04 2009 -0500
11762
11763     NAND: Have nboot accept .e and .i as legacy no-ops.
11764
11765     This was intended to happen before, but a trivial bug prevented it.
11766
11767     Signed-off-by: Scott Wood <scottwood@freescale.com>
11768
11769 commit 0987505540918b2464b73069af3a5b766dbd3ceb
11770 Author: Ladislav Michl <ladis@linux-mips.org>
11771 Date:   Fri Mar 13 14:38:19 2009 +0100
11772
11773     NAND: Make nboot skip bad blocks
11774
11775     nboot command currently does not skip bad blocks and gives read error when
11776     loading image stored over bad block. With patch applied, nboot works as
11777     expected:
11778
11779     Device 0 bad blocks:
11780       00780000
11781       014a0000
11782       02000000
11783       02cc0000
11784       04aa0000
11785
11786     Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000
11787        Image Name:   Linux-2.6.22-omap1
11788        Created:      2008-11-20  23:44:32 UTC
11789        Image Type:   ARM Linux Kernel Image (uncompressed)
11790        Data Size:    1052520 Bytes =  1 MB
11791        Load Address: 10008000
11792        Entry Point:  10008000
11793     Skipping bad block 0x02cc0000
11794     Automatic boot of image at addr 0x10400000 ...
11795     ...
11796
11797     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
11798     Signed-off-by: Scott Wood <scottwood@freescale.com>
11799
11800 commit 0b2f38fe3c4555dd2b81c69880403c13ad723153
11801 Author: Stefan Roese <sr@denx.de>
11802 Date:   Thu Mar 12 07:27:25 2009 +0100
11803
11804     ppc4xx: lwmon5: Only use one CS (rank) in DDR2 configuration
11805
11806     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
11807     the DDR2 configuration to only use one CS (rank). As this code is most
11808     likely copied from the original Sequoia version, this error was copied
11809     as well.
11810
11811     This patch also removes some dead code.
11812
11813     Signed-off-by: Stefan Roese <sr@denx.de>
11814
11815 commit 9199b9cc8f56aca26504b48cf702176208f46e54
11816 Author: Stefan Roese <sr@denx.de>
11817 Date:   Thu Mar 12 07:24:40 2009 +0100
11818
11819     ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration
11820
11821     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
11822     the DDR2 configuration to only use one CS (rank). As this code is most
11823     likely copied from the original Sequoia version, this error was copied
11824     as well.
11825
11826     Signed-off-by: Stefan Roese <sr@denx.de>
11827
11828 commit ee86fd15e1ccda4be41f1dba82b8c9efea9a3145
11829 Author: Mikhail Zolotaryov <lebon@lebon.org.ua>
11830 Date:   Wed Mar 11 10:54:46 2009 +0200
11831
11832     Fix AMCC Sequoia board DDR memory configuration
11833
11834     Sequoia board schematics (DES0211_11_SCH_11.pdf, page 5, unit U1D)
11835     specifies that BankSel#1 is not connected, while bootloader memory
11836     configuration is (board/amcc/sequoia/sdram.c):
11837            mtsdram(DDR0_10, 0x00000300);
11838     i.e. both Chip Selects used - not correct.
11839
11840     If we change to correct value here:
11841            mtsdram(DDR0_10, 0x00000100);
11842     memory is accessible OK also.
11843
11844     Signed-off-by: Mikhail Zolotaryov <lebon@lebon.org.ua>
11845     Signed-off-by: Stefan Roese <sr@denx.de>
11846
11847 commit b3dd629e78870ba2dc9f8032978721c0fa02a856
11848 Author: Wolfgang Denk <wd@denx.de>
11849 Date:   Sun Mar 15 22:40:09 2009 +0100
11850
11851     Prepare 2009.03-rc2
11852
11853     Update CHANEGLOG, fix minor coding style issue.
11854
11855     Signed-off-by: Wolfgang Denk <wd@denx.de>
11856
11857 commit 394d30dd1ee23b80fd5e59e17ebe0feca927ab31
11858 Author: Jerry Van Baren <gvb.uboot@gmail.com>
11859 Date:   Fri Mar 13 11:40:10 2009 -0400
11860
11861     mpc83xx: Add bank configuration to FSL spd_sdram.c
11862
11863     The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8
11864     bank SDRAMs.
11865
11866     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
11867     Acked-by: Dave Liu <daveliu@freescale.com>
11868     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11869
11870 commit b581626c1e2474a3dadf69d4f0e0582eccbc4235
11871 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
11872 Date:   Fri Mar 13 08:58:14 2009 +0100
11873
11874     mpc83xx: correctly set encryption and I2C bus 0 clock
11875
11876     This patch makes sure the correct mask is applied when setting
11877     the encryption and I2C bus 0 clock in SCCR.
11878     Failing to do so may lead to ENCCM being 0 in which case I2C bus 0
11879     won't function.
11880
11881     Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
11882     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11883
11884 commit e6a6a704151c2d7e4a7b485545b48a6020ccca17
11885 Author: Dirk Behme <dirk.behme@googlemail.com>
11886 Date:   Thu Mar 12 19:30:50 2009 +0100
11887
11888     OMAP3: Add support for OMAP3 die ID
11889
11890     Read and store OMAP3 die ID in U-Boot environment.
11891
11892     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
11893
11894 commit f949bd8d089ec3059c460ac829c0d919e1d7af0e
11895 Author: Jon Smirl <jonsmirl@gmail.com>
11896 Date:   Wed Mar 11 15:08:56 2009 -0400
11897
11898     MPC5200 FEC MII speed register
11899
11900     Set a non-zero speed in the MII register so that MII commands will work.
11901
11902     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
11903
11904 commit 94a353611b93ac4cb4434a5f7e98aa0902da919e
11905 Author: Yusuke.Goda <goda.yusuke@renesas.com>
11906 Date:   Fri Mar 13 16:08:18 2009 +0900
11907
11908     sh: ap325rxa: Change the wait cycle in the area 5
11909
11910     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
11911     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11912
11913 commit 2db0e1278b9f11263e0a13326b57d4f99781f7ac
11914 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11915 Date:   Wed Feb 25 16:04:26 2009 +0900
11916
11917     sh: Fix cannot work rtl8139 on r2dplus
11918
11919     The rtl8139 driver use pci_mem_to_phys. So it need PCI system memory
11920     registration.
11921
11922     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11923     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11924
11925 commit 64f3c0b8ba99d6651db59273e497ab5e857c8d4f
11926 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11927 Date:   Fri Feb 27 18:35:41 2009 +0900
11928
11929     sh: Add netdev header fixing of warning/build
11930
11931     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11932     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11933
11934 commit ada9318252f51c2626e9837c623f9812b0308dea
11935 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11936 Date:   Tue Mar 3 15:11:17 2009 +0900
11937
11938     sh: Add support 32-Bit Extended Address Mode to sh7785lcr
11939
11940     We can built 'make sh7785lcr_32bit_config'. And add new command "pmb"
11941     for this mode. This command changes PMB for using 512MB system memory.
11942
11943     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11944     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11945
11946 commit 06b18163b57e6b0349b0c299222d50e7b1e41e50
11947 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11948 Date:   Wed Feb 25 14:26:42 2009 +0900
11949
11950     sh: Add some register value configurable to PCI of SH7780
11951
11952     Some register value was hardcoded for System memory size 128MB and
11953     memory offset 0x08000000. This patch fixed the problem.
11954
11955     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11956     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11957
11958 commit 06e2735eb85cbea7cecb3c308d6d078b3651b22c
11959 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11960 Date:   Wed Feb 25 14:26:52 2009 +0900
11961
11962     sh: Add system memory registration to PCI for SH4
11963
11964     It is necessary for some pci device driver.
11965
11966     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11967     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11968
11969 commit b3061b40db691245a7bb9a55354b4edacbf3902d
11970 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11971 Date:   Wed Feb 25 14:26:55 2009 +0900
11972
11973     sh: Add value for PCI system memory registration of sh7785lcr
11974
11975     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11976     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11977
11978 commit 6d84ae3956a6cd7aebd86f661130752594e60124
11979 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11980 Date:   Tue Mar 3 15:11:08 2009 +0900
11981
11982     sh: Add macros for SH-4A 32-Bit Address Extended Mode
11983
11984     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11985     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11986
11987 commit 3e3eec39de8fe0ae62e6e4d4e3fa4442ee9ed6b1
11988 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11989 Date:   Tue Feb 3 13:35:05 2009 +0900
11990
11991     sh: use write{8,16,32} in ms7720se lowlevel_init
11992
11993     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11994     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11995
11996 commit 0452352df118bc9dd684a056aaaa5fb4aed1178a
11997 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
11998 Date:   Mon Mar 9 18:07:53 2009 -0500
11999
12000     tsec: report when there is no vendor specific PHY support
12001
12002     Commit af1c2b84 added a generic phy support, with an ID of zero
12003     and a 32 bit mask; meaning that it will match on any PHY ID.
12004
12005     The problem is that there is a test that checked if a matching
12006     PHY was found, and if not, it printed the non-matching ID.
12007     But since there will always be a match (on the generic PHY,
12008     worst case), this test will never trip.
12009
12010     In the case of a misconfigured PHY address, or of a PHY that
12011     isn't explicitly supported outside of the generic support,
12012     you will never see the ID of 0xffffffff, or the ID of the
12013     real (but unsupported) chip.  It will silently fall through
12014     onto the generic support.
12015
12016     This change makes that test useful again, and ensures that
12017     the selection of generic PHY support doesn't happen without
12018     some sort of notice.  It also makes it explicitly clear that
12019     the generic PHY must be last in the PHY table.
12020
12021     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
12022     Acked-by: Andy Fleming <afleming@freescale.com>
12023
12024 commit c279dfc10186ceba78d3862036f158750e86599a
12025 Author: Wolfgang Denk <wd@denx.de>
12026 Date:   Mon Mar 9 10:53:05 2009 +0100
12027
12028     SIMPC8313 board: fix out of tree building.
12029
12030     Fix typo in makefile which broke out of tree builds.
12031
12032     Also use expolicit "rm" instead of "ln -sf" which is known to be
12033     unreliable.
12034
12035     Signed-off-by: Wolfgang Denk <wd@denx.de>
12036     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12037
12038 commit 49b5aff491bd574935ecaf8545152066a25eff3d
12039 Author: ksi@koi8.net <ksi@koi8.net>
12040 Date:   Mon Feb 23 10:53:13 2009 -0800
12041
12042     Add eTSEC 1/2 IO override control (corrected)
12043
12044     This adds tsec12ioovcr to include/asm-ppc/immap_85xx.h (was reserved.)
12045
12046     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
12047
12048 commit 48c2b7bb432da84fcce05b4db6efad0be73a93dc
12049 Author: Andy Fleming <afleming@freescale.com>
12050 Date:   Fri Mar 6 19:05:52 2009 -0600
12051
12052     fsl: Remove unnecessary debug printfs
12053
12054     These were left in accidentally, and are not really useful unless the
12055     code is as broken as it was when it was being developed.
12056
12057     Signed-off-by: Andy Fleming <afleming@freescale.com>
12058
12059 commit 0ee84b88b78bce425190d8cd7adf4c30cba0c2f0
12060 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
12061 Date:   Tue Feb 24 02:37:59 2009 -0600
12062
12063     Fix mpc85xx ddr-gen3 ddr_sdram_cfg.
12064
12065     Commit e1be0d25, "32bit BUg fix for DDR2 on 8572" prevented other
12066     sdram_cfg bits (such as ecc and self_refresh_in_sleep) from being set.
12067
12068     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
12069
12070 commit a922fdb87af25c25c032424908dcf60fbf3250ea
12071 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12072 Date:   Tue Feb 24 06:13:10 2009 +0100
12073
12074     PXA: timer use do_div and simplify it
12075
12076     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12077
12078 commit 4b00d1aa82b6af9b4e628a5729a12086e44558b3
12079 Author: Wolfgang Denk <wd@denx.de>
12080 Date:   Mon Mar 9 10:51:39 2009 +0100
12081
12082     SIMPC8313 board: fix out of tree building.
12083
12084     Fix typo in makefile which broke out of tree builds.
12085
12086     Also use expolicit "rm" instead of "ln -sf" which is known to be
12087     unreliable.
12088
12089     Signed-off-by: Wolfgang Denk <wd@denx.de>
12090
12091 commit f70fd13e2fe4cf58e251271c27f9c06e141d7f9a
12092 Author: Heiko Schocher <hs@denx.de>
12093 Date:   Tue Feb 24 11:30:51 2009 +0100
12094
12095     8360, kmeter1: added bootcount feature.
12096
12097     add CONFIG_BOOTCOUNT_LIMIT feature for 8360 CPU.
12098
12099     The bootcounter uses 8 bytes from the muram,
12100     because no other memory was found on this
12101     CPU for the bootcount feature. So we must
12102     correct the muram size in DTS before booting
12103     Linux.
12104
12105     This feature is actual only implemented for
12106     MPC8360, because not all 83xx CPU have qe,
12107     and therefore no muram, which this feature
12108     uses.
12109
12110     Signed-off-by: Heiko Schocher <hs@denx.de>
12111     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12112
12113 commit 1e7ed2565031e01abc18c713030a0a9829c07684
12114 Author: Heiko Schocher <hs@denx.de>
12115 Date:   Tue Feb 24 11:30:48 2009 +0100
12116
12117     83xx, kmeter: QE_ENET10 errata for Silicon Revision 2.1
12118
12119     old code implemented the QE_ENET10 errata only for Silicon
12120     Revision 2.0. New code reads now the Silicon Revision
12121     register and sets dependend on the Silicon Revision the
12122     values as advised in the QE_ENET10 errata.
12123
12124     Signed-off-by: Heiko Schocher <hs@denx.de>
12125     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12126
12127 commit 605f78e34a3f0103693b891f2573edd352e7d495
12128 Author: Heiko Schocher <hs@denx.de>
12129 Date:   Tue Feb 24 11:30:44 2009 +0100
12130
12131     83xx, kmeter1: updates for 2009.03
12132
12133     - HRCW update
12134       HRCWH_BOOTSEQ_DISABLE not HRCWH_BOOTSEQ_NORMAL
12135       HRCWH_LALE_EARLY added
12136     - DDR-SDRAM settings modified. This solves sporadically
12137       problems with this memory.
12138     - CS1 now 128 MB window size
12139     - CS3 now 512 MB window size
12140     - PRAM activated
12141     - MTDPARTS_DEFAULT defined
12142     - CONFIG_HOSTNAME added
12143     - MONITOR_LEN now 384 KB
12144
12145     Signed-off-by: Heiko Schocher <hs@denx.de>
12146     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12147
12148 commit 118cbe3c35c898f8d020b29d6dc180307cacf147
12149 Author: Heiko Schocher <hs@denx.de>
12150 Date:   Tue Feb 24 11:30:40 2009 +0100
12151
12152     83xx, kmeter1: autodetect size of DDR II RAM
12153
12154     it is possible that some board variants have different DDR II
12155     RAM sizes. So we autodetect the size of the assembled RAM.
12156
12157     Signed-off-by: Heiko Schocher <hs@denx.de>
12158     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12159
12160 commit c1bce4fff750d734b1fa7467eb08f93902c97ca6
12161 Author: Heiko Schocher <hs@denx.de>
12162 Date:   Tue Feb 24 11:30:37 2009 +0100
12163
12164     83xx, i2c: add mux support for fsl_i2c
12165
12166     This patch adds I2C mux support for the fsl_i2c driver. This
12167     allows you to add "new" i2c busses, which are reached over
12168     i2c muxes. For more infos, please look in the README and
12169     search for CONFIG_I2C_MUX.
12170
12171     Signed-off-by: Heiko Schocher <hs@denx.de>
12172     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12173
12174 commit 19f0e93041dbfe22f8d39b98e4f7f9ea87b77803
12175 Author: Heiko Schocher <hs@denx.de>
12176 Date:   Tue Feb 24 11:30:34 2009 +0100
12177
12178     83xx, kmeter1: add I2C, dtt, eeprom support
12179
12180     This patch adds I2C support for the Keymile kmeter1 board.
12181     It uses the First I2C Controller from the CPU, for
12182     accessing 4 temperature sensors, an eeprom with IVM data
12183     and the booteeprom over a pca9547 mux.
12184
12185     Signed-off-by: Heiko Schocher <hs@denx.de>
12186     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12187
12188 commit db1d72afd77287bc8577210f3f71ab249dcf146f
12189 Author: Heiko Schocher <hs@denx.de>
12190 Date:   Tue Feb 24 11:30:30 2009 +0100
12191
12192     i2c, dtt: move dtt_init () to board_init_r ()
12193
12194     In case where a board not uses CONFIG_POST, it is not
12195     necessary to init the DTTs when running from flash.
12196
12197     Signed-off-by: Heiko Schocher <hs@denx.de>
12198     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12199
12200 commit 5b0055547f0246908b79cc300170d87380b69e18
12201 Author: Dave Liu <daveliu@freescale.com>
12202 Date:   Wed Feb 25 12:31:32 2009 +0800
12203
12204     83xx: Fix some bugs in spd sdram code
12205
12206     1. RD_TO_PRE missed to add the AL, and need min 2 clocks for
12207       tRTP according to DDR2 JEDEC spec.
12208     2. WRTORD - tWTR need min 2 clocks according to DDR2 JEDEC spec.
12209     3. add the support of DDR2-533,667,800 DIMMs
12210     4. cpo
12211     5. make the AL to min to gain better performance.
12212
12213     The Micron MT9HTF6472CHY-667D1 DIMMs test passed on
12214     MPC837xEMDS platform at 266MHz/333MHz/400MHz data rate.
12215
12216     items 1, 2 and 5:
12217     Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
12218
12219     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
12220     Signed-off-by: Dave Liu <daveliu@freescale.com>
12221     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12222
12223 commit b7be63abec45858c044f0fbd6aeef524c4663f9b
12224 Author: Valeriy Glushkov <gvv@lstec.com>
12225 Date:   Wed Feb 4 18:27:49 2009 +0200
12226
12227     MPC8349ITX: several config issues fixed
12228
12229     The previous version rebooted forever with DDR bigger than 256MB.
12230     Access the DS1339 RTC chip is on I2C1 bus.
12231     Allow DHCP.
12232
12233     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
12234     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12235
12236 commit 7e2ec1de1d2d723b59d7dd2fb85ff71b952d63af
12237 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12238 Date:   Thu Feb 19 18:20:39 2009 +0300
12239
12240     mpc83xx: MPC837XEMDS: Initialize SerDes before negating PCIE reset signal
12241
12242     The SerDes initialization should be finished before negating the reset
12243     signal according to the reference manual. This isn't an issue on real
12244     hardware, but we'd better stick to the specifications anyway.
12245
12246     Suggested-by: Liu Dave <DaveLiu@freescale.com>
12247     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12248     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12249
12250 commit 9c2d63ec0e9520948b6d598ea32e9aa4e0de847f
12251 Author: Heiko Schocher <hs@denx.de>
12252 Date:   Wed Feb 25 12:28:32 2009 +0100
12253
12254     i2c, dtt: move dtt_init () to board_init_r ()
12255
12256     it is not necessary to init the DTTs so early,
12257     so move this init to board_init_r ().
12258
12259     Signed-off-by: Heiko Schocher <hs@denx.de>
12260
12261 commit 00cc5595a7caac8066b408774383a956c2e26797
12262 Author: Anatolij Gustschin <agust@denx.de>
12263 Date:   Wed Feb 25 20:28:13 2009 +0100
12264
12265     lcd: Fix compilation warning in common/lcd.c
12266
12267     Fix following warning while compilation for mcc200 board:
12268
12269     lcd.c: In function 'lcd_display_bitmap':
12270     lcd.c:625: warning: unused variable 'cmap'
12271
12272     Signed-off-by: Anatolij Gustschin <agust@denx.de>
12273
12274 commit f5a77a09c93fe7f04c0c56f64ea436f7d318d674
12275 Author: Graeme Russ <graeme.russ@gmail.com>
12276 Date:   Tue Feb 24 21:11:24 2009 +1100
12277
12278     Moved SC520 Files (fix commit 407976185e0dda2c90e89027121a1071b9c77bfb)
12279
12280     Fixes commit 407976185e0dda2c90e89027121a1071b9c77bfb
12281
12282     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
12283
12284 commit 75ba6d693b8f6247aa4b81323a2ee2fa28222215
12285 Author: Mike Frysinger <vapier@gentoo.org>
12286 Date:   Mon Feb 23 10:29:47 2009 -0500
12287
12288     smc911x: split out useful defines/functions into local header
12289
12290     The smc911x driver has a lot of useful defines/functions which can be used
12291     by pieces of code (such as example eeprom programmers).  Rather than
12292     forcing each place to duplicate these defines/functions, split them out
12293     of the smdc911x driver into a local header.
12294
12295     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12296     Acked-by: Ben Warren <biggerbadderben@gmail.com>
12297     CC: Sascha Hauer <s.hauer@pengutronix.de>
12298     CC: Guennadi Liakhovetski <lg@denx.de>
12299     CC: Magnus Lilja <lilja.magnus@gmail.com>
12300     CC: Ben Warren <biggerbadderben@gmail.com>
12301
12302 commit a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1
12303 Author: Guennadi Liakhovetski <lg@denx.de>
12304 Date:   Tue Feb 24 10:44:02 2009 +0100
12305
12306     ARM: add an "eet" variant of the imx31_phycore board
12307
12308     The "eet" variant of the imx31_phycore board has an OLED display, using a
12309     s6e63d6 display controller on the first SPI interface, using GPIO57 as a
12310     chip-select for it. With this configuration you can display 256 colour BMP
12311     images in 16-bit RGB (RGB565) LCD mode.
12312
12313     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12314     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12315
12316 commit 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f
12317 Author: Guennadi Liakhovetski <lg@denx.de>
12318 Date:   Fri Feb 6 10:37:57 2009 +0100
12319
12320     video: add an i.MX31 framebuffer driver
12321
12322     Add a driver for the Synchronous Display Controller and the Display
12323     Interface on i.MX31, using IPU for DMA channel setup. So far only
12324     displaying of bitmaps is supported, no text output.
12325
12326     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12327     Acked-by: Anatolij Gustschin <agust@denx.de>
12328
12329 commit b245e65ee3c4cce3ccf008a21f4528239655876c
12330 Author: Guennadi Liakhovetski <lg@denx.de>
12331 Date:   Fri Feb 6 10:37:53 2009 +0100
12332
12333     LCD: support 8bpp BMPs on 16bpp displays
12334
12335     This patch also simplifies some ifdefs in lcd.c, introduces a generic
12336     vidinfo_t, which new drivers are encouraged to use and old drivers to switch
12337     over to.
12338
12339     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12340     Acked-by: Anatolij Gustschin <agust@denx.de>
12341
12342 commit a303dfb0e9a93e516ea9427b5c09543d5f74ade1
12343 Author: Mark Jackson <mpfj@mimc.co.uk>
12344 Date:   Fri Feb 6 10:37:49 2009 +0100
12345
12346     Add 16bpp BMP support
12347
12348     This patch adds 16bpp BMP support to the common lcd code.
12349
12350     Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code.
12351
12352     At the moment it's only been tested on the MIMC200 AVR32 board, but extending
12353     this to other platforms should be a simple task !!
12354
12355     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
12356     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12357     Acked-by: Anatolij Gustschin <agust@denx.de>
12358
12359 commit 689551c5ff1b394b88412f3df22144e79468d3a9
12360 Author: Guennadi Liakhovetski <lg@denx.de>
12361 Date:   Fri Feb 6 10:37:41 2009 +0100
12362
12363     A driver for the S6E63D6 SPI display controller from Samsung
12364
12365     This is a driver for the S6E63D6 SPI OLED display controller from Samsung.
12366     It only provides access to controller's registers so the client can freely
12367     configure it.
12368
12369     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12370     Acked-by: Anatolij Gustschin <agust@denx.de>
12371
12372 commit fc7a93c84f3f134484811a0d9ad751fbc1a7da6d
12373 Author: Guennadi Liakhovetski <lg@denx.de>
12374 Date:   Fri Feb 13 09:26:40 2009 +0100
12375
12376     i.MX31: support GPIO as a chip-select in the mxc_spi driver
12377
12378     Some SPI devices have special requirements on chip-select handling.
12379     With this patch we can use a GPIO as a chip-select and strictly follow
12380     the SPI_XFER_BEGIN and SPI_XFER_END flags.
12381
12382     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12383     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12384
12385 commit b30de3cccf8867566cd314e7c7033904afa5dc9d
12386 Author: Guennadi Liakhovetski <lg@denx.de>
12387 Date:   Sat Feb 7 01:18:07 2009 +0100
12388
12389     i.MX31: add a simple gpio driver
12390
12391     This is a minimal driver, so far only managing output. It will
12392     be used by the mxc_spi.c driver.
12393
12394     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12395     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12396
12397 commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f
12398 Author: Guennadi Liakhovetski <lg@denx.de>
12399 Date:   Sat Feb 7 00:09:12 2009 +0100
12400
12401     i.MX31: fix SPI driver for shorter than 32 bit
12402
12403     Fix setting the SPI Control register, 8 and 16-bit transfers
12404     and a wrong pointer in the free routine in the mxc_spi driver.
12405
12406     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12407     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12408
12409 commit 7e91558032a0c1932dd7f4f562f9c7cc55efc496
12410 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12411 Date:   Thu Feb 19 18:20:52 2009 +0300
12412
12413     mpc83xx: MPC837XERDB: Add PCIe support
12414
12415     On MPC8377E-RDB and MPC8378E-RDB boards we have PCIe and mini-PCIe
12416     slots. Let's support them.
12417
12418     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12419     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12420
12421 commit 50a4d08e8f31debbd4ea12caf1265f3643c38d5b
12422 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12423 Date:   Thu Feb 19 18:20:50 2009 +0300
12424
12425     mpc83xx: PCI: Fix hard-coded first_busno value
12426
12427     We should use pci_last_busno() in pci_init_bus(), otherwise we'll
12428     erroneously re-use PCI0's first_busno for PCI1 hoses.
12429
12430     NOTE: The patch is untested. All MPC83xx FSL boards I have have
12431     PCI1 in miniPCI form, for which I don't have any cards handy.
12432
12433     But looking in cpu/mpc85xx/pci.c:
12434     ...
12435     #ifdef CONFIG_MPC85XX_PCI2
12436             hose = &pci_hose[1];
12437
12438             hose->first_busno = pci_hose[0].last_busno + 1;
12439
12440     And considering that we do the same for MPC83xx PCI-E support,
12441     I think this patch is correct.
12442
12443     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12444     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12445
12446 commit a5878d427128c1a9226045ebe05fbadaa02eb9dd
12447 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12448 Date:   Thu Feb 19 18:20:46 2009 +0300
12449
12450     mpc83xx: PCI: Fix bus-range fdt fixups for PCI1 controllers
12451
12452     This patch fixes copy-paste issue: pci_hose[0]'s first and last
12453     busnos were used to fixup pci1's nodes.
12454
12455     We don't see this bug triggering only because Linux reenumerate
12456     buses anyway.
12457
12458     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12459     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12460
12461 commit b24a99f6666ac278ec9f9c1334518af828833d19
12462 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12463 Date:   Thu Feb 19 18:20:44 2009 +0300
12464
12465     mpc83xx: PCIe: Fix CONFIG_PCI_SCAN_SHOW reporting bogus values
12466
12467     This patch fixes an issue in config space read accessors: we should
12468     fill-in the value even if we fail (e.g. skipping devices), otherwise
12469     CONFIG_PCI_SCAN_SHOW reports bogus values during boot up.
12470
12471     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12472     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12473
12474 commit e2d72ba543c7b6924b5b5d393dcd80b2b9c3a022
12475 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12476 Date:   Thu Feb 19 18:20:42 2009 +0300
12477
12478     mpc83xx: PCIe: Don't start bus enumeration at 0
12479
12480     Currently we assign first_busno = 0 for the first PCIe hose, but this
12481     scheme won't work if we have ordinary PCI hose already registered (its
12482     first_busno value is 0 too).
12483
12484     The old code worked fine only because we have PCI disabled on
12485     MPC837XEMDS boards in stand-alone mode (see commit 00f7bbae92e3b13f2b3
12486     "mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards").
12487     But on MPC837XERDB boards we have PCI and PCIe, so the bug actually
12488     triggers.
12489
12490     So, to fix the issue, we should use pci_last_busno() + 1 for the
12491     first_busno (i.e. last available busno).
12492
12493     Reported-by: Huang Changming <Chang-Ming.Huang@freescale.com>
12494     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12495     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12496
12497 commit cc2a8c7751ddbae3116660064f446888538b93e9
12498 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12499 Date:   Thu Feb 19 18:20:41 2009 +0300
12500
12501     PCI: Add pci_last_busno() helper
12502
12503     This is just a handy routine that reports last PCI busno: we walk
12504     down all the hoses and return last hose's last_busno.
12505
12506     Will be used by PCI/PCIe initialization code.
12507
12508     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12509     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12510
12511 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
12512 Author: Becky Bruce <beckyb@kernel.crashing.org>
12513 Date:   Mon Feb 23 13:56:51 2009 -0600
12514
12515     MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
12516
12517     Currently, we get 256MB as the default, but since all the 86xx
12518     board configs define a 2G BAT mapping for RAM, raise default
12519     to 2G.
12520
12521     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
12522     Acked-by: Jon Loeliger <jdl@freescale.com>
12523
12524 commit 2331e18b9df0ab98ebf3ab44c0efea1311949aaa
12525 Author: Becky Bruce <beckyb@kernel.crashing.org>
12526 Date:   Thu Feb 12 10:43:32 2009 -0600
12527
12528     mpc8641hpcn: Indicate 36-bit addr map in boot messages
12529
12530     If 36-bit addressing is enabled, print a message on the console
12531     when we boot.
12532
12533     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
12534
12535 commit 58a518c3d8a2c7de11d414e8b903495daee7dc7e
12536 Author: Mark Jackson <mpfj-list@mimc.co.uk>
12537 Date:   Fri Feb 13 15:48:18 2009 +0000
12538
12539     Setup extra MIMC200 chip selects
12540
12541     Added code to setup the extra Flash and FRAM chip selects as used on the
12542     MIMC200 board.
12543
12544     V2 moves the init code from the common "cpu.c" file into the board specific
12545     setup file.
12546
12547     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
12548     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12549
12550 commit 80534886a72a0088eef9e781a8e0b7d04ea41f36
12551 Author: Mark Jackson <mpfj@mimc.co.uk>
12552 Date:   Mon Nov 24 12:10:56 2008 +0000
12553
12554     MIMC200: tidy GCLK init code
12555
12556     Change the MIMC200 startup code to use the built-in (rather than
12557     hard-coded) funtions for setting up gclk outputs.
12558
12559     We'll also move the code to the new, more-appropriate
12560     board_postclk_init() routine.
12561
12562     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
12563     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12564
12565 commit b423f94063bf04e92047ff85c7e53441eb3b712b
12566 Author: Olav Morken <olavmrk@gmail.com>
12567 Date:   Fri Jan 23 12:56:32 2009 +0100
12568
12569     AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES
12570
12571     The AT32UC3A0512ES chip has a bug when disabling interrupts. As a
12572     workaround, two NOPs can be inserted.
12573
12574     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
12575     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
12576     Signed-off-by: Olav Morken <olavmrk@gmail.com>
12577     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12578
12579 commit f5f652fa91aa69db8117d211af1b4fe09f2edd3b
12580 Author: Gunnar Rangoy <gunnar@rangoy.com>
12581 Date:   Fri Jan 23 12:56:29 2009 +0100
12582
12583     AVR32: Make GPIO implmentation cpu dependent
12584
12585     There are some differences in the implementation of GPIO in the
12586     at32uc chip compared to the ap700x series.
12587
12588     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
12589     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
12590     Signed-off-by: Olav Morken <olavmrk@gmail.com>
12591     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12592
12593 commit a38de083d2979db3680f0d0978c509a172c8fa00
12594 Author: Olav Morken <olavmrk@gmail.com>
12595 Date:   Fri Jan 23 12:56:28 2009 +0100
12596
12597     AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h
12598
12599     The AVR32A architecture (which AT32UC3A-series is based on) has a
12600     different memory layout than the AVR32B-architecture. This patch moves
12601     addrspace.h to an arch-dependent directory in preparation for
12602     AT32UC3A-support. It also moves some address-space manipulation
12603     functions from io.h to addrspace.h.
12604
12605     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
12606     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
12607     Signed-off-by: Olav Morken <olavmrk@gmail.com>
12608     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12609
12610 commit d8f2aa3298610b44127dbc4796d8038aa5847e0b
12611 Author: Olav Morken <olavmrk@gmail.com>
12612 Date:   Fri Jan 23 12:56:27 2009 +0100
12613
12614     AVR32: Make cacheflush cpu-dependent
12615
12616     The AT32UC3A series of processors doesn't contain any cache, and issuing
12617     cache control instructions on those will cause an exception. This commit
12618     makes cacheflush.h arch-dependent in preparation for the AT32UC3A-support.
12619
12620     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
12621     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
12622     Signed-off-by: Olav Morken <olavmrk@gmail.com>
12623     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12624
12625 commit 2f70c49e5b9813635ad73666aa30f304c7fdeda9
12626 Author: Heiko Schocher <hs@denx.de>
12627 Date:   Tue Feb 10 09:38:52 2009 +0100
12628
12629     netloop: speed up NetLoop
12630
12631     NetLoop polls every cycle with getenv some environment variables.
12632     This is horribly slow, especially when the environment is big.
12633
12634     This patch reads only the environment variables in NetLoop,
12635     when they were changed.
12636
12637     Also moved the init part of the NetLoop function in a seperate
12638     function.
12639
12640     Signed-off-by: Heiko Schocher <hs@denx.de>
12641     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12642
12643 commit ad2d16393e9f684e4a9255f42e8bfdd819b67a87
12644 Author: Mike Frysinger <vapier@gentoo.org>
12645 Date:   Mon Dec 22 02:56:07 2008 -0500
12646
12647     smc911x_eeprom: new example app for managing newer SMC parts
12648
12649     A forward port of the last version to work with the newer smc911x driver.
12650     I only have a board with a LAN9218 part on it, so that is the only one
12651     I've tested.  But there isn't anything in this that would make it terribly
12652     chip specific afaik.
12653
12654     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12655     CC: Sascha Hauer <s.hauer@pengutronix.de>
12656     CC: Guennadi Liakhovetski <lg@denx.de>
12657     CC: Magnus Lilja <lilja.magnus@gmail.com>
12658     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12659
12660 commit 736323a490b664ec0edc3ddb2c1c4a6824db45c6
12661 Author: Pieter Henning <phenning@vastech.co.za>
12662 Date:   Sun Feb 22 23:17:15 2009 -0800
12663
12664     Added Vitesse VSC8211 definitions to TSEC driver
12665
12666     Added the struct containing PHY settings for the Vitesse VSC8211 phy to
12667     the phy_info list in tsec.c
12668
12669     Signed-off-by: Pieter Henning <phenning@vastech.co.za>
12670     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12671
12672 commit 32688e572ff96715b41420e9a7f280db6c399b65
12673 Author: Wolfgang Denk <wd@denx.de>
12674 Date:   Mon Feb 23 00:22:21 2009 +0100
12675
12676     Update CHANGELOG;  Prepare 2009.03-rc1
12677
12678     Signed-off-by: Wolfgang Denk <wd@denx.de>
12679
12680 commit 80b827c2b78329c6503b271e43d9eb693d644710
12681 Author: Wolfgang Denk <wd@denx.de>
12682 Date:   Sun Feb 22 23:45:40 2009 +0100
12683
12684     ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5
12685
12686     The file was generated from building versatile_defconfig.
12687
12688     Signed-off-by: Wolfgang Denk <wd@denx.de>
12689
12690 commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00
12691 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
12692 Date:   Sun Feb 22 14:24:11 2009 +0900
12693
12694     MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings
12695
12696     Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings
12697     like this:
12698
12699     skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000
12700     Configuring for dbau1x00 board...
12701     au1x00_eth.c: In function 'au1x00_send':
12702     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
12703     au1x00_eth.c: In function 'au1x00_recv':
12704     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
12705     au1x00_eth.c: In function 'au1x00_init':
12706     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
12707     au1x00_eth.c: In function 'au1x00_recv':
12708     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
12709     au1x00_eth.c: In function 'au1x00_init':
12710     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
12711     au1x00_eth.c: In function 'au1x00_send':
12712     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
12713
12714     We're passing a volatile pointer to a function which is expecting a non-
12715     volatile pointer.  That's potentially dangerous, so gcc warns about it.
12716     Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3).
12717
12718     To fix this, we add a volatile attribute to the argument in question.
12719     The virt_to_phys function in Linux kernel also does the same thing.
12720
12721     Signed-off-by: Stefan Roese <sr@denx.de>
12722     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
12723
12724 commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3
12725 Author: Dirk Behme <dirk.behme@googlemail.com>
12726 Date:   Fri Feb 20 17:51:28 2009 +0100
12727
12728     OMAP3: Clean up MMC code
12729
12730     Clean up OMAP3 MMC code:
12731
12732     * Convert register access to struct & readx/writex style
12733     * Replace hardcode values by macros
12734     * Remove macro defined twice
12735
12736     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
12737
12738 commit cfcdf4a9b361d015c0debac73fbf7c511df4a934
12739 Author: Dirk Behme <dirk.behme@googlemail.com>
12740 Date:   Thu Feb 12 18:55:43 2009 +0100
12741
12742     OMAP3: Pandora: Update pin mux
12743
12744     Clock pin must have input enabled for MMC3 to work.
12745     Also enable pull-ups for cmd/data lines to be consistent
12746     with remaining MMC host pin setup.
12747
12748     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
12749
12750 commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f
12751 Author: Dirk Behme <dirk.behme@googlemail.com>
12752 Date:   Thu Feb 12 18:55:42 2009 +0100
12753
12754     OMAP3: Add OMAP3 auto detection
12755
12756     This patch adds OMAP3 cpu type auto detection based on OMAP3 register
12757     and removes hardcoded values.
12758
12759     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
12760     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
12761
12762 commit f956fd0338f4990793a10f767929ba4963665261
12763 Author: Dirk Behme <dirk.behme@googlemail.com>
12764 Date:   Thu Feb 12 18:55:41 2009 +0100
12765
12766     OMAP3: Beagle: Add board revision detection
12767
12768     With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
12769     which might need different software handling. For this, GPIO pin 171 (GPIO
12770     module 6, offset 11) can be used to check for board revision. If this pin
12771     is low, we have a rev C board. Else it must be a revision Ax or Bx board.
12772
12773     To handle board differences you can call function beagle_get_revision().
12774     E.g.:
12775
12776     if (beagle_get_revision()) {
12777
12778     /* do special revision C stuff here */
12779
12780     }
12781
12782     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
12783
12784 commit 288f3cd912918b97919d13b6f7fb13fbddf74d68
12785 Author: Dirk Behme <dirk.behme@googlemail.com>
12786 Date:   Thu Feb 12 18:55:40 2009 +0100
12787
12788     OMAP3: Overo: Clean up pin mux and GPIO configuration
12789
12790     * Make Overo GPIO114 an input for touchscreen PENDOWN
12791     * Make Overo GPIO144-147 readable
12792     * Make Overo EHCI pinmux match beagle rev c setup
12793     * Adjust pinmux for SMSC911X network chip support
12794     * Remove unnecessary GPIO setup
12795     * Fix merge error in Makefile
12796
12797     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
12798     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
12799
12800 commit 2579019b8248e5f166e60e37065766efc8a49dbc
12801 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12802 Date:   Sun Feb 22 17:08:41 2009 +0100
12803
12804     nmdk8815: fix onenand support
12805
12806     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12807
12808 commit 0176c03a2469676df5bf19cf93a1a6f582f6a120
12809 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12810 Date:   Sun Feb 22 17:56:50 2009 +0100
12811
12812     nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type
12813
12814     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12815
12816 commit 9751a456f702ba2fcdfd1bdbc0138927ef007858
12817 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12818 Date:   Sun Feb 22 17:49:43 2009 +0100
12819
12820     davinci: fix implicit declaration of function 'davinci_errata_workarounds'
12821
12822     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12823
12824 commit 4f5728987f4f9f7845688482aa2b7f2127768165
12825 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12826 Date:   Sun Feb 22 15:49:28 2009 +0100
12827
12828     arm: add uart dcc support
12829
12830     Serial driver via the EmbeddedICE macrocell's DCC channel using
12831     co-processor 14.
12832
12833     It does include a timeout to ensure that the system does not
12834     totally freeze when there is nothing connected to read.
12835
12836     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12837
12838 commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48
12839 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12840 Date:   Fri Nov 21 14:35:56 2008 -0500
12841
12842     ARM DaVinci: Add common peripherals and modules enable functions.
12843
12844     Taken all the duplicated code for enabling common modules and apply
12845     software workarounds from the board specific code into common
12846     functions. Also added comments explaining the workarounds
12847     (from TI errata documents) and replaced some numerical bit numbers
12848     with more meaningful defines.
12849
12850     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12851
12852 commit d3be1bcae7a8207e0a79ffd035d0e90f80378295
12853 Author: Alessandro Rubini <rubini@unipv.it>
12854 Date:   Mon Feb 9 15:53:33 2009 +0100
12855
12856     Enable Ethernet for Nomadik 8815 Evaluation Kit
12857
12858     This trivially enables Ethernet support in the debug board
12859     by setting up the proper chip select.
12860
12861     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
12862     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
12863
12864 commit 0d8c6eab2481046e9446264bfe9402bb98ddf433
12865 Author: Alessandro Rubini <rubini@unipv.it>
12866 Date:   Mon Feb 9 15:53:31 2009 +0100
12867
12868     Nand driver for Nomadik SoC
12869
12870     This driver implements the ECC algorithm described in
12871     the CPU data sheet and uses the OOB layout chosen in
12872     already-released development systems (shipped with a custom-made
12873     u-boot 1.3.1).
12874
12875     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
12876     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
12877
12878 commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d
12879 Author: Alessandro Rubini <rubini@unipv.it>
12880 Date:   Mon Feb 9 15:53:31 2009 +0100
12881
12882     Added nomadik.h header
12883
12884     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
12885     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
12886
12887 commit 60ece6d8043d1dd80f5dd32c541213716d624b19
12888 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12889 Date:   Wed Oct 29 20:05:18 2008 +0900
12890
12891     r8a66597-hcd: fix cannot use external hub
12892
12893     Fix the problem that cannot use external hub, because this driver
12894     did not control correctly a DEVADDx register.
12895
12896     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12897     Signed-off-by: Remy Bohmer <linux@bohmer.net>
12898
12899 commit e1ffaee728190e76a4596a3579d94e730143585f
12900 Author: Mike Frysinger <vapier@gentoo.org>
12901 Date:   Thu Feb 19 01:20:27 2009 -0500
12902
12903     Blackfin: disable syscontrol code for now
12904
12905     Looks like the initcode updates fell out of order during my merges.  The
12906     patch that really fixes up this code is part of power-on overhaul and so
12907     is too large for merging at this point.  Instead, we can disable the code
12908     as no currently in-tree board depends on it.  The next merge window will
12909     fix things up properly.
12910
12911     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12912
12913 commit 1b228d68f54832edd867ef98520f760f68192ab7
12914 Author: Mike Frysinger <vapier@gentoo.org>
12915 Date:   Thu Feb 19 01:19:49 2009 -0500
12916
12917     Blackfin: bf537-stamp: fix I2C board defines
12918
12919     The previous merge for cleaning up the I2C driver incorrectly reverted the
12920     CFG_xxx rename for some of the I2C defines.
12921
12922     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12923     Signed-off-by: Heiko Schocher <hs@denx.de>
12924
12925 commit 09fee8e8677a6265e89144ccc163bf00e321769e
12926 Author: Wolfgang Denk <wd@denx.de>
12927 Date:   Sun Feb 22 01:19:52 2009 +0100
12928
12929     Coding Style cleanup; update CHANGELOG
12930
12931     Signed-off-by: Wolfgang Denk <wd@denx.de>
12932
12933 commit 1dcb50afbb63a439320a985380a0af2dca079d1e
12934 Author: Wolfgang Denk <wd@denx.de>
12935 Date:   Sun Feb 22 01:17:47 2009 +0100
12936
12937     Makefile: fix cleanup
12938
12939     Commit e4943ec5 moved the ARM boards to a vendor directory but forgot
12940     to adapt the cleanup rules in the Makefile
12941
12942     Signed-off-by: Wolfgang Denk <wd@denx.de>
12943
12944 commit edff7bcc4d5540df8b416274652ff02e94c38b9e
12945 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
12946 Date:   Fri Feb 20 13:01:56 2009 -0500
12947
12948     Cleanup the comment for m68k linux boot argument passing.
12949
12950     This patch clarifies the way m68k passes linux boot argument.
12951     The one gotcha here is that the assembly instruction that
12952     the compiler uses to jump to the kernel is 'jsr' which pushes the
12953     program counter for the instruction after the jsr into the stack pointer.
12954
12955     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
12956     Signed-off-by: Wolfgang Denk <wd@denx.de>
12957
12958 commit 4d41650eec959668280a612467bd95c7b8398513
12959 Author: Peter Griffin <pgriffin@mpc-data.co.uk>
12960 Date:   Tue Feb 10 16:44:45 2009 +0000
12961
12962     sh: Fix rsk7203 in tree build
12963
12964     Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
12965
12966 commit fca0cecff73db99d99ad094cca7980472b8a11b5
12967 Author: Minkyu Kang <mk7.kang@samsung.com>
12968 Date:   Wed Feb 18 09:05:52 2009 +0900
12969
12970     bootm: Reduce the unnecessary memmove
12971
12972     Although load address and image start address are same address,
12973     bootm command always does memmove.
12974     That is unnecessary memmove and can be taken few milliseconds
12975     (about 500 msec to 1000 msec).
12976     If skip this memmove, we can reduce the boot time.
12977
12978     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
12979
12980 commit 670cbde8da83690fed1064c3358f54ae1d693ed2
12981 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12982 Date:   Sun Feb 15 22:29:15 2009 +0100
12983
12984     fpga: Fix Spartan III FPGA booting
12985
12986     This patch does some minor fixing of the Xilinx Spartan III
12987     FPGA boot code:
12988
12989     - Fixed call order of post configuration callback and
12990       success message printing (result of copy-paste?)
12991     - remove obsolete comment
12992     - minor coding style cleanup
12993
12994     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
12995
12996 commit 3818b677641038d27b2663fbd6771ad38c932f86
12997 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12998 Date:   Sun Feb 15 22:28:36 2009 +0100
12999
13000     fpga: Fix Spartan II FPGA booting
13001
13002     This patch does some minor fixing of the Xilinx Spartan II
13003     FPGA boot code:
13004
13005     - Fixed call order of post configuration callback and
13006       success message printing (result of copy-paste?)
13007     - relocate post configuration callback only when it
13008       is implemented
13009     - remove obsolete comment
13010     - minor coding style cleanup
13011
13012     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13013
13014 commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b
13015 Author: Mike Frysinger <vapier@gentoo.org>
13016 Date:   Wed Feb 11 20:26:52 2009 -0500
13017
13018     drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...)
13019
13020     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13021
13022 commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e
13023 Author: Derek Ou <dou@siconix.com>
13024 Date:   Tue Feb 3 16:00:07 2009 -0700
13025
13026     lcd_putc bug fix for tab.
13027
13028     Signed-off-by: Derek Ou <dou@siconix.com>
13029
13030 commit 35c9e14d8096e519fe76c953a43d52a09617345c
13031 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
13032 Date:   Mon Feb 2 09:46:21 2009 +0900
13033
13034     MIPS: cpu/mips/Makefile: Add a missing START line
13035
13036     In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
13037     Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
13038     line.  This patch puts it back.
13039
13040     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
13041
13042 commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a
13043 Author: Wolfgang Denk <wd@denx.de>
13044 Date:   Sat Feb 21 21:51:21 2009 +0100
13045
13046     Enable ext2 support for TQM8xxL/M based boards
13047
13048     Signed-off-by: Wolfgang Denk <wd@denx.de>
13049
13050 commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f
13051 Author: Tom Rix <Tom.Rix@windriver.com>
13052 Date:   Fri Feb 20 03:47:50 2009 +0100
13053
13054     ARM:PXA Use new definitions in mmc.h
13055
13056     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
13057     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13058
13059 commit 682beeac34dc9ab18fab58b26973d2e29d113717
13060 Author: Andy Fleming <afleming@freescale.com>
13061 Date:   Fri Feb 20 03:47:50 2009 +0100
13062
13063     Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions
13064
13065     These names are being taken over by the new MMC framework.  Hopefuly
13066     the PXA can be easily ported, and these functions will go away entirely.
13067
13068     Signed-off-by: Andy Fleming <afleming@freescale.com>
13069     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13070
13071 commit b03d92e5584935886ff91d5aa0755dc8888b7187
13072 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13073 Date:   Fri Feb 20 03:47:50 2009 +0100
13074
13075     pxa: move mmc drivers to drivers/mmc
13076
13077     introduce new macro CONFIG_PXA_MMC to activate it
13078
13079     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13080
13081 commit 9490f465642c80c054854689a2ef1a77d65cf1f3
13082 Author: Tom Rix <Tom.Rix@windriver.com>
13083 Date:   Thu Feb 19 19:27:22 2009 -0600
13084
13085     ARM:PXA Remove redefinition of mmc_cid and mmc_csd.
13086
13087     These structures are defined in the common mmc.h
13088
13089     This was compile checked on cerf250.
13090
13091 commit 94a3312920b6f9b5da27309549fb73650718c10a
13092 Author: Micha Kalfon <smichak.uv@gmail.com>
13093 Date:   Wed Feb 11 19:50:11 2009 +0200
13094
13095     pxa: fixing get_timer to return time in miliseconds.
13096
13097     Fixing the get_timer function to return time in miliseconds instead of
13098     ticks. Also fixed PXA boards to use the conventional value of 1000 for
13099     CONFIG_SYS_HZ.
13100
13101     Signed-off-by: Micha Kalfon <smichak.uv@gmail.com>
13102
13103 commit e5e88c3614b79b54719905f66aefb51f9494bc1f
13104 Author: Tom Rix <Tom.Rix@windriver.com>
13105 Date:   Thu Feb 19 16:45:43 2009 -0600
13106
13107     ARM:OMAP3 Change mmc_init to mmc_legacy_init
13108
13109     omap3_mmc.c was changed to define mmc_legacy_init.
13110     Remove unused functions.
13111
13112     Compile tested on all arm
13113     Runtime tested on Zoom1.
13114
13115     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
13116
13117 commit 9e80bb21629988063574f88ca0d28baadff4d963
13118 Author: Heiko Schocher <hs@denx.de>
13119 Date:   Thu Feb 19 17:23:58 2009 +0100
13120
13121     82xx, mgcoge: updates for 2009.03
13122
13123     - activate CS4 for accessing the FPGA
13124     - activate Rx buf len > 1 on SMC
13125     - pram activated
13126     - MTDPARTS_DEFAULT defined
13127     - update the size of the flashes in the DTS
13128       before booting Linux
13129     - MONITOR_LEN updated to 384k
13130     - added CONFIG_HOSTNAME
13131     - added CONFIG_ENV_BUFFER_PRINT
13132     - Environment size reduced to 16k
13133
13134     Signed-off-by: Heiko Schocher <hs@denx.de>
13135
13136 commit df909554e2401f307925e1bd45d576e4176d9de9
13137 Author: Heiko Schocher <hs@denx.de>
13138 Date:   Thu Feb 19 17:24:01 2009 +0100
13139
13140     8xx, mgsuvd: updates for 2009.03
13141
13142     - activate Rx buf len > 1 on SMC
13143     - pram activated
13144     - MTDPARTS_DEFAULT defined
13145     - update the size of the flash in the DTS
13146       before booting Linux
13147     - MONITOR_LEN updated to 384k
13148     - added CONFIG_HOSTNAME
13149     - added CONFIG_ENV_BUFFER_PRINT
13150     - Environment size reduced to 16k
13151
13152     Signed-off-by: Heiko Schocher <hs@denx.de>
13153
13154 commit 3511b4e208e12be85b532866f1c660aa2e021557
13155 Author: Dirk Behme <dirk.behme@googlemail.com>
13156 Date:   Wed Feb 18 19:59:39 2009 +0100
13157
13158     MMC: Don't use new framework code if not enabled
13159
13160     Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC
13161     isn't enabled.
13162
13163     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
13164
13165 commit 32482be67775e00b4cbc49fba62347c1ecc6229c
13166 Author: Wolfgang Denk <wd@denx.de>
13167 Date:   Thu Feb 19 13:53:29 2009 +0100
13168
13169     TQM8xxL: make some room in low memory for future needs
13170
13171     THe TQM8xxL use a ahnd-optimized linker script to efficiently use the
13172     small boot sectors in the flash. This patch makes some room in the
13173     first sector to prepare for a size increase of lib_generic/vsprintf.o
13174     by a future patch.
13175
13176     Signed-off-by: Wolfgang Denk <wd@denx.de>
13177
13178 commit c157cec3c3f6dfc194532b3a3ca87f85b642962a
13179 Author: Kim Phillips <kim.phillips@freescale.com>
13180 Date:   Wed Feb 18 18:06:18 2009 -0600
13181
13182     README: remove duplicate entry
13183
13184     it's been around since the original commit (2ad6b513) that added two
13185     identical entries.
13186
13187     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13188
13189 commit 1bba30efe1717bea13026e15c7c7d906419fac69
13190 Author: Wolfgang Denk <wd@denx.de>
13191 Date:   Thu Feb 19 00:41:08 2009 +0100
13192
13193     Coding style cleanup, update CHANGELOG
13194
13195     Signed-off-by: Wolfgang Denk <wd@denx.de>
13196
13197 commit 369d0aa9674b65c83f8553b9bcf9d207dc369223
13198 Author: Kim Phillips <kim.phillips@freescale.com>
13199 Date:   Wed Feb 18 17:43:59 2009 -0600
13200
13201     sata_sil3114: fix compiler warning
13202
13203     judging from other printfs in the same file, it seems ata should be
13204     postpended with the interface number, not the address of the global
13205     port variable.  Fixes this for current u-boot-mpc83xx tree:
13206
13207     Configuring for MPC8349ITX board...
13208     sata_sil3114.c: In function 'sata_bus_softreset':
13209     sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
13210     sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
13211
13212     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13213
13214 commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd
13215 Author: Ron Madrid <ron_madrid@sbcglobal.net>
13216 Date:   Wed Feb 18 14:30:44 2009 -0800
13217
13218     Create configuration option for restricted ns16550 functions
13219
13220     This patch will create a configuration option for a minimum configuration for
13221     the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new
13222     configuration option to the SIMPC8313.h config file in order to fix the NAND
13223     bootstrap build error.  This option will exclude all functions with exception of
13224     NS16550_putc and NS16550_init.  This will be used primarily to save space and
13225     remove unused code from builds in which space is limited.
13226
13227     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
13228
13229 commit 7b0bc0219db8981613259473cf19699ac259b4fb
13230 Author: Kim Phillips <kim.phillips@freescale.com>
13231 Date:   Wed Feb 18 16:14:29 2009 -0600
13232
13233     mkconfig: include board config.h before asm/config.h
13234
13235     swapping the include order suppresses warnings for board configs
13236     that define their own CONFIG_MAX_MEM_MAPPED:
13237
13238     In file included from /home/r1aaha/git/u-boot/include/config.h:5,
13239                     from /home/r1aaha/git/u-boot/include/common.h:35,
13240                     from simpc8313.c:26:
13241     /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning:
13242     "CONFIG_MAX_MEM_MAPPED" redefined
13243     In file included from /home/r1aaha/git/u-boot/include/config.h:4,
13244                     from /home/r1aaha/git/u-boot/include/common.h:35,
13245                     from simpc8313.c:26:
13246     /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is
13247     the location of the previous definition
13248
13249     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13250
13251 commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c
13252 Author: Wolfgang Denk <wd@denx.de>
13253 Date:   Wed Feb 18 21:35:38 2009 +0100
13254
13255     Fix build errors after making flash_get_info() non-static
13256
13257     Fix for these build problems:
13258     error: static declaration of 'flash_get_info' follows non-static declaration
13259
13260     Signed-off-by: Wolfgang Denk <wd@denx.de>
13261
13262 commit b4996d6b2140e5da7f1c346f37a67b19907b307a
13263 Author: Stefan Roese <sr@denx.de>
13264 Date:   Wed Feb 18 13:18:00 2009 +0100
13265
13266     ppc4xx: PCIe: Change 16GB inbound memory to 4GB
13267
13268     This patch fixes a problem recently seen on some 4xx platforms. For
13269     example on Kilauea PCIe slot #0.
13270
13271     Signed-off-by: Stefan Roese <sr@denx.de>
13272
13273 commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5
13274 Author: Stefan Roese <sr@denx.de>
13275 Date:   Wed Feb 18 14:05:37 2009 +0100
13276
13277     ppc4xx: Some more PMC405 coding-style cleanup
13278
13279     Signed-off-by: Stefan Roese <sr@denx.de>
13280
13281 commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5
13282 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
13283 Date:   Sun Feb 15 22:27:47 2009 +0100
13284
13285     ppc4xx: Update PMC405 board support
13286
13287     This patch prepares the good old PMC405 board support for
13288     upcoming PMC405V2 patches.
13289
13290     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13291     Signed-off-by: Stefan Roese <sr@denx.de>
13292
13293 commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f
13294 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
13295 Date:   Sun Feb 15 22:26:54 2009 +0100
13296
13297     ppc4xx: Cleanup PMC405 board support
13298
13299     This patch fixes coding style for PMC405 board support.
13300     Also some unneeded features/code is removed.
13301
13302     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13303     Signed-off-by: Stefan Roese <sr@denx.de>
13304
13305 commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667
13306 Author: Ilya Yanok <yanok@emcraft.com>
13307 Date:   Thu Feb 5 04:08:20 2009 +0100
13308
13309     qong: changes to Dave/DENX Qong configuration
13310
13311     1. Changes to the default environment:
13312       - "bootcmd" defined as "run flash_self"
13313       - "saveenv" command removed from "update"
13314       - "uboot" changed to "u-boot" (also in "load")
13315       - "addmtd" variable defined (and added to all boot commands)
13316     2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command
13317     3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined
13318     4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem
13319     with truncated "bootargs" environment variable.
13320
13321     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
13322
13323 commit 5f0320108870e5d62983d1d5c13a2a087dddf686
13324 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13325 Date:   Sun Feb 1 17:07:52 2009 +0100
13326
13327     common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible
13328
13329     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13330
13331 commit ec6f14994602276660f7264c6ab3b91ef1f7614d
13332 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13333 Date:   Sun Feb 1 17:07:51 2009 +0100
13334
13335     common/console: coding style cleanup
13336
13337     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13338
13339 commit daaf74f176b548dfd34a9990231f4189201d57ba
13340 Author: Mike Frysinger <vapier@gentoo.org>
13341 Date:   Thu Jan 29 20:02:23 2009 -0500
13342
13343     mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile
13344
13345     Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and
13346     into the Makefile so we avoid pointless compiling of the file.
13347
13348     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13349
13350 commit 7bd2722e890bc877a3c057d7ccddc80451c99939
13351 Author: Mike Frysinger <vapier@gentoo.org>
13352 Date:   Thu Jan 29 20:02:07 2009 -0500
13353
13354     disk: convert part_* files to COBJ-$(CONFIG_XXX) style
13355
13356     Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to
13357     avoid pointless compiles.
13358
13359     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13360
13361 commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338
13362 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
13363 Date:   Thu Jan 29 10:35:40 2009 +0200
13364
13365     include/image.h: Ease grepping of image_* functions
13366
13367     Because the functions have been defined using macros, grepping for
13368     their definitions is not possible. This patch adds the real function
13369     names in comments.
13370
13371     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
13372     Acked-by: Mike Frysinger <vapier@gentoo.org>
13373
13374 commit bdab39d358e63aa47f400a8a76b8d5f283842df3
13375 Author: Mike Frysinger <vapier@gentoo.org>
13376 Date:   Wed Jan 28 19:08:14 2009 -0500
13377
13378     rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
13379
13380     The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
13381     rather than a generic "env" command, or anything else related to the
13382     environment.  So, let's make sure the define is named accordingly.
13383
13384     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13385
13386 commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101
13387 Author: Valeriy Glushkov <gvv@lstec.com>
13388 Date:   Fri Jan 23 20:02:17 2009 +0200
13389
13390     disable imls command if no flash is defined
13391
13392     Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined
13393
13394     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
13395
13396 commit 923aa48126259c13de95131203f1d28bfa5cb889
13397 Author: Rafal Jaworowski <raj@semihalf.com>
13398 Date:   Fri Jan 23 13:27:18 2009 +0100
13399
13400     API: Improve glue mid-layer of the API demo application.
13401
13402     - Extend ub_dev_read() and ub_dev_recv() so they return the length actually
13403     read, which allows for better control and error handling (this introduces
13404     additional error code API_ESYSC returned by the glue mid-layer).
13405
13406     - Clean up definitions naming and usage.
13407
13408     - Other minor cosmetics.
13409
13410     Note these changes do not touch the API proper, so the interface between
13411     U-Boot and standalone applications remains unchanged.
13412
13413     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
13414
13415 commit 44a94e596ba0f6d0951b165403c520bf55b1c56f
13416 Author: Rafal Jaworowski <raj@semihalf.com>
13417 Date:   Fri Jan 23 13:27:17 2009 +0100
13418
13419     API: Only output test data when reading was successful.
13420
13421     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
13422
13423 commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d
13424 Author: Rafal Jaworowski <raj@semihalf.com>
13425 Date:   Fri Jan 23 13:27:16 2009 +0100
13426
13427     API: Provide syscall entry point for the ARM architecture.
13428
13429     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
13430     Acked-by: Rafal Jaworowski <raj@semihalf.com>
13431
13432 commit b84d7d8f1e1066f810866304a16a3583f88e7c98
13433 Author: Rafal Jaworowski <raj@semihalf.com>
13434 Date:   Fri Jan 23 13:27:15 2009 +0100
13435
13436     API: Use stack pointer as API signature search hint in the glue layer.
13437
13438     De-hardcode range in RAM we search for the API signature. Instead use the stack
13439     pointer as a hint to narrow down the range in which the signature could reside
13440     (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity
13441     from stack area). Adjust PowerPC code in API demo to the new scheme.
13442
13443     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
13444     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
13445
13446 commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5
13447 Author: Wolfgang Denk <wd@denx.de>
13448 Date:   Tue Feb 17 10:26:38 2009 +0100
13449
13450     TQM8260: fix locations of kernel and ramdisk images in flash
13451
13452     After introducing redundant environment the kernel images was
13453     overlapping with environment.
13454
13455     Signed-off-by: Wolfgang Denk <wd@denx.de>
13456
13457 commit 2b68b23373f96199a0cafbfd7a9f79ed62381ebb
13458 Author: Heiko Schocher <hs@denx.de>
13459 Date:   Wed Feb 11 19:26:15 2009 +0100
13460
13461     83xx: add missing TIMING_CFG1_CASLAT_* defines
13462
13463     Signed-off-by: Heiko Schocher <hs@denx.de>
13464     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13465
13466 commit c9e34fe2e86f7b6cc8260f4b24cbdc7dd81e04c5
13467 Author: Valeriy Glushkov <gvv@lstec.com>
13468 Date:   Thu Feb 5 14:35:21 2009 +0200
13469
13470     mpc8349itx: allow SATA boot from the onboard SIL1334
13471
13472     This patch allows using of SATA devices connected
13473     to the onboard PCI SIL1334 SATA controller.
13474
13475     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
13476     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13477
13478 commit e1ac387f4645499746856adc1aeaa9787da2eca6
13479 Author: Andy Fleming <afleming@freescale.com>
13480 Date:   Thu Oct 30 16:50:14 2008 -0500
13481
13482     83xx: Add eSDHC support on 8379 EMDS board
13483
13484     Signed-off-by: Andy Fleming <afleming@freescale.com>
13485
13486 commit 80522dc8369a89938369fbcee572e662373bc9a3
13487 Author: Andy Fleming <afleming@freescale.com>
13488 Date:   Thu Oct 30 16:51:33 2008 -0500
13489
13490     85xx: Add eSDHC support for 8536 DS
13491
13492     Signed-off-by: Andy Fleming <afleming@freescale.com>
13493
13494 commit 50586ef24ed5caf6ce5591df76f355009da2cd79
13495 Author: Andy Fleming <afleming@freescale.com>
13496 Date:   Thu Oct 30 16:47:16 2008 -0500
13497
13498     Add support for the Freescale eSDHC found on 8379 and 8536 SoCs
13499
13500     This uses the new MMC framework
13501
13502     Some contributions by Dave Liu <daveliu@freescale.com>
13503
13504     Signed-off-by: Andy Fleming <afleming@freescale.com>
13505
13506 commit 272cc70b211e945e4413122aa73868f6ada732a5
13507 Author: Andy Fleming <afleming@freescale.com>
13508 Date:   Thu Oct 30 16:41:01 2008 -0500
13509
13510     Add MMC Framework
13511
13512     Here's a new framework (based roughly off the linux one) for managing
13513     MMC controllers.  It handles all of the standard SD/MMC transactions,
13514     leaving the host drivers to implement only what is necessary to
13515     deal with their specific hardware.
13516
13517     This also hooks the infrastructure into the PowerPC board code
13518     (similar to how the ethernet infrastructure now hooks in)
13519
13520     Some of this code was contributed by Dave Liu <daveliu@freescale.com>
13521
13522     Signed-off-by: Andy Fleming <afleming@freescale.com>
13523
13524 commit 1de97f9856f697380cc504126ab92561ed238803
13525 Author: Andy Fleming <afleming@freescale.com>
13526 Date:   Thu Oct 30 16:31:39 2008 -0500
13527
13528     Eliminated arch-specific mmc header requirement
13529
13530     The current MMC infrastructure relies on the existence of an
13531     arch-specific header file.  This isn't necessary, and a couple
13532     drivers were forced to implement dummy files to meet this requirement.
13533     Instead, we move the stuff in those header files into a more appropriate
13534     place, and eliminate the stubs and the #include of asm/arch/mmc.h
13535
13536     Signed-off-by: Andy Fleming <afleming@freescale.com>
13537
13538 commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3
13539 Author: Andy Fleming <afleming@freescale.com>
13540 Date:   Thu Oct 30 16:21:00 2008 -0500
13541
13542     Convert mmc_init to mmc_legacy_init
13543
13544     This is to get it out of the way of incoming MMC framework
13545
13546     Signed-off-by: Andy Fleming <afleming@freescale.com>
13547
13548 commit b2e2ed0233a5ef299361abec4fbdaefb63456eff
13549 Author: Andy Fleming <afleming@freescale.com>
13550 Date:   Thu Oct 30 16:19:25 2008 -0500
13551
13552     Eliminate support for using MMC as memory
13553
13554     MMC cards are not memory, so we stop treating them that way.
13555
13556     Signed-off-by: Andy Fleming <afleming@freescale.com>
13557
13558 commit e1be0d25ecf494ae81245ca438738ba839d6329b
13559 Author: Poonam_Aggrwal-b10812 <b10812@freescale.com>
13560 Date:   Sun Jan 4 08:46:38 2009 +0530
13561
13562     32bit BUg fix for DDR2 on 8572
13563
13564     This errata fix is required for 32 bit DDR2 controller on 8572.
13565     May  also be required for P10XX20XX platforms
13566
13567     Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net>
13568
13569 commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad
13570 Author: Andy Fleming <afleming@freescale.com>
13571 Date:   Mon Feb 16 09:40:20 2009 -0600
13572
13573     TQM85xx: Fix a couple warnings in TQM8548 build
13574
13575     The ecm variable in sdram.c was being declared for all 8548, but only
13576     used by specific 8548 boards, so we make that variable require those
13577     specific boards, too
13578
13579     The nand code was using an index "i" into a table, and then re-using "i"
13580     to set addresses for each upm.  However, then it relied on the old value
13581     of i still being there to enable things.  Changed the second "i" to "j"
13582
13583     Signed-off-by: Andy Fleming <afleming@freescale.com>
13584
13585 commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8
13586 Author: Wolfgang Grandegger <wg@grandegger.com>
13587 Date:   Wed Feb 11 18:38:26 2009 +0100
13588
13589     MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
13590
13591     This patch adds the workaround for erratum DDR20 according to MPC8548
13592     Device Errata document, Rev. 1: "CKE signal may not function correctly
13593     after assertion of HRESET". Furthermore, the bug DDR19 is fixed in
13594     processor version 2.1 and the work-around must be removed.
13595
13596     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
13597
13598 commit 080408fdc71706adcb883d22125637c54f6010b1
13599 Author: Wolfgang Grandegger <wg@grandegger.com>
13600 Date:   Wed Feb 11 18:38:25 2009 +0100
13601
13602     MPC85xx: TQM8548: use cache for AG and BE variants
13603
13604     This patch makes accesses to the system memory cachable by removing the
13605     caching-inhibited and guarded flags from the relevant TLB entries for
13606     the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards
13607     are configured similarly.
13608
13609     This results in a big averall performace improvement. TFTP downloads,
13610     NAND Flash accesses, kernel boots, etc. are much faster.
13611
13612     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
13613
13614 commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2
13615 Author: Wolfgang Grandegger <wg@grandegger.com>
13616 Date:   Wed Feb 11 18:38:24 2009 +0100
13617
13618     MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
13619
13620     This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG
13621     module.
13622
13623     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
13624     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
13625
13626 commit 88b0e88d186479349e5a2b771e82775109e10fb4
13627 Author: Wolfgang Grandegger <wg@grandegger.com>
13628 Date:   Wed Feb 11 18:38:23 2009 +0100
13629
13630     MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
13631
13632     According to new TQM8548 timing specification:
13633     Refresh Recovery: 34 -> 53 clocks
13634     CKE pulse width:  1 -> 3 cycles
13635     Window for four activities: 13 -> 14 cycles
13636
13637     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
13638     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
13639
13640 commit a865bcdac89278cac4dfc07dec8299403110499d
13641 Author: Wolfgang Grandegger <wg@grandegger.com>
13642 Date:   Wed Feb 11 18:38:22 2009 +0100
13643
13644     MPC85xx: TQM8548: add support for the TQM8548_AG module
13645
13646     The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory,
13647     CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module
13648     with "$ make TQM8548_AG_config".
13649
13650     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
13651
13652 commit ad7ee5d43b0db94079d56521dabca25674f28747
13653 Author: Wolfgang Grandegger <wg@grandegger.com>
13654 Date:   Wed Feb 11 18:38:21 2009 +0100
13655
13656     MPC85xx: TQM8548: add support for the TQM8548_BE module
13657
13658     The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
13659     interface. With NAND support, the image is significantly larger and
13660     TEXT_BASE is adjusted accordingly. U-Boot can be built for this
13661     module with "$ make TQM8548_BE_config".
13662
13663     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
13664
13665 commit a318234878c346e673b2ef8dc4b14b338fe7fc2b
13666 Author: Wolfgang Grandegger <wg@grandegger.com>
13667 Date:   Wed Feb 11 18:38:20 2009 +0100
13668
13669     MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
13670
13671     The TQM8548_AG module does not have the standard PCI/PCI-X interface
13672     connected but just the PCI Express interface . So far it was not
13673     possible to disable it without disabling the complete PCI interface
13674     (CONFIG_PCI) including PCI Express.
13675
13676     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
13677
13678 commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf
13679 Author: Wolfgang Grandegger <wg@grandegger.com>
13680 Date:   Wed Feb 11 18:38:19 2009 +0100
13681
13682     MPC85xx: TQM85xx: fix flash protection for boot loader
13683
13684     As the reset vector is located at 0xfffffffc, all flash sectors from the
13685     beginning of the U-Boot binary to 0xffffffff must be protected. On the
13686     TQM8548-AG having small sectors at the end of the flash it happened that
13687     the last two sector were not protected and an "erase all" left an
13688     un-bootable system behind:
13689
13690     Bank # 2: CFI conformant FLASH (32 x 16)  Size: 32 MB in 270 Sectors
13691       AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E
13692       Erase timeout: 8192 ms, write timeout: 1 ms
13693
13694       FFFA0000 E RO   FFFC0000   RO   FFFE0000   RO   FFFE4000   RO   FFFE8000   RO
13695       FFFEC000   RO   FFFF0000   RO   FFFF4000   RO   FFFF8000 E      FFFFC000
13696
13697     The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many
13698     board BSPs as well.
13699
13700     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
13701
13702 commit a1c8a719262151f97119e76166043ee3da3f97b2
13703 Author: Peter Tyser <ptyser@xes-inc.com>
13704 Date:   Fri Feb 6 14:30:40 2009 -0600
13705
13706     86xx: Update CPU info output on bootup
13707
13708     - Update style of 86xx CPU information on boot to more closely
13709       match 85xx boards
13710     - Fix detection of 8641/8641D
13711     - Use strmhz() to display frequencies
13712     - Display L1 information
13713     - Display L2 cache size
13714     - Fixed CPU/SVR version output
13715
13716     == Before ==
13717     Freescale PowerPC
13718     CPU:
13719         Core: E600 Core 0, Version: 0.2, (0x80040202)
13720         System: Unknown, Version: 2.1, (0x80900121)
13721         Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz
13722         L2: Enabled
13723     Board: X-ES XPedite5170 3U VPX SBC
13724
13725     == After ==
13726     CPU:   8641D, Version: 2.1, (0x80900121)
13727     Core:  E600 Core 0, Version: 2.2, (0x80040202)
13728     Clock Configuration:
13729            CPU:1066.667 MHz, MPX:533.333 MHz
13730            DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz
13731     L1:    D-cache 32 KB enabled
13732            I-cache 32 KB enabled
13733     L2:    512 KB enabled
13734     Board: X-ES XPedite5170 3U VPX SBC
13735
13736     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13737
13738 commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c
13739 Author: Peter Tyser <ptyser@xes-inc.com>
13740 Date:   Thu Feb 5 11:25:24 2009 -0600
13741
13742     86xx: Update Global Utilities structure
13743
13744     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13745
13746 commit 4ef630df773e45806d701bf5d25c328778bb4cde
13747 Author: Peter Tyser <ptyser@xes-inc.com>
13748 Date:   Thu Feb 5 11:25:25 2009 -0600
13749
13750     86xx: Reset update
13751
13752     Update the 86xx reset sequence to try executing a board-specific reset
13753     function.  If the board-specific reset is not implemented or does not
13754     succeed, then assert #HRESET_REQ.  Using #HRESET_REQ is a more standard
13755     reset procedure than the previous method and allows all board
13756     peripherals to be reset if needed.
13757
13758     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13759
13760 commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab
13761 Author: Kumar Gala <galak@kernel.crashing.org>
13762 Date:   Tue Feb 10 23:53:40 2009 -0600
13763
13764     fsl-ddr: Allow system to boot if we have more than 4G of memory
13765
13766     Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report
13767     an error and hang.  Instead of doing that since DDR is mapped in the
13768     lowest priority LAWs we setup the DDR controller and the max amount
13769     of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED)
13770
13771     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13772     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
13773
13774 commit 8d949aff38cfb4388cbd73876e77bcd06d601f20
13775 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
13776 Date:   Wed Jan 21 17:17:33 2009 -0600
13777
13778     mpc85xx: Add support for the P2020
13779
13780     Added various p2020 processor specific details:
13781     * SVR for p2020, p2020E
13782     * immap updates for LAWs and DDR on p2020
13783     * LAW defines related to p2020
13784
13785     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
13786     Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
13787     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13788
13789 commit cb69e4de8702e108324e1c40363f30ef6f2e2918
13790 Author: Kumar Gala <galak@kernel.crashing.org>
13791 Date:   Tue Feb 10 17:36:15 2009 -0600
13792
13793     85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
13794
13795     Added some info that is printed out when we boot to distiquish if we
13796     built MPC8572DS_config vs MPC8572DS_36BIT_config since they have
13797     different address maps.
13798
13799     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13800
13801 commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a
13802 Author: Andy Fleming <afleming@freescale.com>
13803 Date:   Fri Dec 5 20:10:22 2008 -0600
13804
13805     Fixup SGMII PHY ids in the device tree
13806
13807     The device tree's PHY addresses need to be fixed up if we're using the
13808     SGMII Riser Card.
13809
13810     The 8572, 8536, and 8544 DS boards were modified to call this function.
13811
13812     Code idea taken from Liu Yu <yu.liu@freescale.com>
13813
13814     Signed-off-by: Andy Fleming <afleming@freescale.com>
13815
13816 commit 5dc0cf68f8f101042997d75188081d8526d705ea
13817 Author: Andy Fleming <afleming@freescale.com>
13818 Date:   Wed Feb 11 15:10:31 2009 -0600
13819
13820     Make some minor whitespace changes to eliminate line-wrapping
13821
13822     Signed-off-by: Andy Fleming <afleming@freescale.com>
13823
13824 commit 9e56986a2b74d197f51eca70fad7b836b1900c4d
13825 Author: Andy Fleming <afleming@freescale.com>
13826 Date:   Wed Feb 11 15:07:24 2009 -0600
13827
13828     Add eth_get_dev_by_index
13829
13830     This allows code to iterate through the ethernet devices
13831
13832     Signed-off-by: Andy Fleming <afleming@freescale.com>
13833
13834 commit b67305120aaf268a6140125346678166d14f1f47
13835 Author: Kumar Gala <galak@kernel.crashing.org>
13836 Date:   Mon Feb 9 22:03:04 2009 -0600
13837
13838     85xx: Fix bug in device tree setup in 36-bit physical confg
13839
13840     In the 36-bit physical config for MPC8572DS when need the start address
13841     of memory and it size to be kept in phys_*_t instead of a ulong since
13842     we support >4G of memory in the config and ulong cant represent that.
13843     Otherwise we end up seeing the memory node in the device tree reporting
13844     back we have memory starting @ 0 and of size 0.
13845
13846     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13847
13848 commit ad97dce18445ff05bf326094e691a01aa95aa8dc
13849 Author: Kumar Gala <galak@kernel.crashing.org>
13850 Date:   Mon Feb 9 22:03:05 2009 -0600
13851
13852     85xx: Fix address map for 36-bit config of MPC8572DS
13853
13854     When we introduced the 36-bit config of the MPC8572DS board we had the
13855     wrong PCI MEM bus address map.  Additionally, the change to the address
13856     map exposes a small issue in our dummy read on the ULI bus.  We need
13857     to use the new mapping functions to handle that read properly in the
13858     36-bit config.
13859
13860     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13861
13862 commit f8523cb0815b2d3d2d780b7d49ca614105555f58
13863 Author: Kumar Gala <galak@kernel.crashing.org>
13864 Date:   Fri Feb 6 09:56:35 2009 -0600
13865
13866     85xx: Fix how we map DDR memory
13867
13868     Previously we only allowed power-of-two memory sizes and didnt
13869     handle >2G of memory.  Now we will map up to CONFIG_MAX_MEM_MAPPED
13870     and should properly handle any size that we can make in the TLBs
13871     we have available to us
13872
13873     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13874
13875 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
13876 Author: Kumar Gala <galak@kernel.crashing.org>
13877 Date:   Fri Feb 6 09:56:34 2009 -0600
13878
13879     fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
13880
13881     If we only have one controller we can completely ignore how
13882     memctl_intlv_ctl is set.  Otherwise other levels of code get confused
13883     and think we have twice as much memory.
13884
13885     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13886
13887 commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8
13888 Author: Kumar Gala <galak@kernel.crashing.org>
13889 Date:   Wed Feb 4 09:35:57 2009 -0600
13890
13891     85xx: Format cpu freq printing to handle 8 cores
13892
13893     Only print 4 cpu freq per line.  This way when we have 8 cores its a
13894     bit more readable.
13895
13896     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13897
13898 commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f
13899 Author: Abraham, Thomas <t-abraham@ti.com>
13900 Date:   Tue Oct 28 16:51:31 2008 +0530
13901
13902     USB: Remove LUN number from CDB
13903
13904     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.
13905
13906     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
13907     Signed-off-by: Remy Bohmer <linux@bohmer.net>
13908
13909 commit f3c0de636252f3a18654c8f9c6370a9574a7e755
13910 Author: Atin Malaviya <atin.malaviya@gmail.com>
13911 Date:   Tue Feb 3 15:17:10 2009 -0500
13912
13913     Added usbtty_configured() check. Fixed attribute(packed) warnings.
13914
13915     V3: Fixed line-wrap problem due to user error in mail!
13916
13917     Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang
13918     when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc).
13919     Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc.
13920
13921     Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com>
13922     Signed-off-by: Remy Bohmer <linux@bohmer.net>
13923
13924 commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7
13925 Author: Guennadi Liakhovetski <lg@denx.de>
13926 Date:   Fri Feb 13 09:23:36 2009 +0100
13927
13928     i.MX31: Start the I2C clock on driver initialisation
13929
13930     i.MX31 powers on with most clocks running, so, after a power on this explicit
13931     clock start up is not required. However, as Linux boots it disables most clocks
13932     to save power. This includes the I2C clock. If we then soft reboot from Linux
13933     the I2C clock stays off. This breaks the phycore, which has its environment in
13934     I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver
13935     initialisation routine.
13936
13937     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13938     Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13939
13940 commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba
13941 Author: Mike Frysinger <vapier@gentoo.org>
13942 Date:   Wed Feb 11 20:36:14 2009 -0500
13943
13944     i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts
13945
13946     The Blackfin i2c driver has been rewritten thus the special ifdefs in the
13947     common code are no longer needed.
13948
13949     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13950
13951 commit c2d9befa0b4695b89476fb5d259742c09afe243f
13952 Author: Heiko Schocher <hs@denx.de>
13953 Date:   Thu Feb 12 08:08:54 2009 +0100
13954
13955     82xx, mgcoge: fix compile error
13956
13957     With actual u-boot compiling the mgcoge port fails, because
13958     since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
13959     necessary to define CONFIG_NET_MULTI.
13960
13961     Seems to me the mgcoge port is the only actual existing 8260
13962     port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
13963     to be fixed.
13964
13965     Signed-off-by: Heiko Schocher <hs@denx.de>
13966
13967 commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e
13968 Author: Dirk Eibach <eibach@gdsys.de>
13969 Date:   Mon Feb 9 08:18:34 2009 +0100
13970
13971     ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE
13972
13973     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
13974     Signed-off-by: Stefan Roese <sr@denx.de>
13975
13976 commit 7369f0e384e2a831be13a7773a58242c9173fa9c
13977 Author: Carolyn Smith <carolyn.smith@tektronix.com>
13978 Date:   Thu Feb 12 06:13:44 2009 +0100
13979
13980     ppc4xx: Fix initialization of the SDRAM_CODT register
13981
13982     This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2
13983     initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END
13984     and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits.
13985
13986     Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com>
13987     Signed-off-by: Stefan Roese <sr@denx.de>
13988
13989 commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31
13990 Author: Stefan Roese <sr@denx.de>
13991 Date:   Wed Feb 11 09:29:33 2009 +0100
13992
13993     ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
13994
13995     Some AMCC eval boards do have a board_eth_init() function calling
13996     pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
13997     with the new eth_init rework.
13998
13999     Signed-off-by: Stefan Roese <sr@denx.de>
14000
14001 commit c645012aefebb301e6907d148c6c8efacac049d4
14002 Author: Adam Graham <agraham@amcc.com>
14003 Date:   Mon Feb 9 13:18:12 2009 -0800
14004
14005     ppc4xx: Autocalibration can set RDCC to over aggressive value.
14006
14007     The criteria of the AMCC SDRAM Controller DDR autocalibration
14008     U-Boot code is to pick the largest passing write/read/compare
14009     window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample
14010     Cycle Select value.
14011
14012     On some Kilauea boards the DDR autocalibration algorithm can
14013     find a large passing write/read/compare window with a small
14014     SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select
14015     value "T1 Sample".
14016
14017     This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of
14018     "T1 Sample" proves to be to aggressive when later on U-Boot
14019     relocates into DDR memory and executes.
14020
14021     The memory traces on the Kilauea board are short so on some
14022     Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select
14023     value of "T1 Sample" shows up as a potentially valid value for
14024     the DDR autocalibratiion algorithm.
14025
14026     The fix is to define a weak default function which provides
14027     the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value
14028     to accept for DDR autocalibration.  The default will be the
14029     "T2 Sample" value.  A board developer who has a well defined
14030     board and chooses to be more aggressive can always provide
14031     their own board specific string function with the more
14032     aggressive "T1 Sample" value or stick with the default
14033     minimum SDRAM_RDCC.[RDSS] value of "T2".
14034
14035     Also put in a autocalibration loop fix for case where current
14036     write/read/compare passing window size is the same as a prior
14037     window size, then in this case choose the write/read/compare
14038     result that has the associated smallest RDCC T-Sample value.
14039
14040     Signed-off-by: Adam Graham <agraham@amcc.com>
14041     Signed-off-by: Stefan Roese <sr@denx.de>
14042
14043 commit 2ede879fcb67470524847bb4fc8972651bb46184
14044 Author: Stefan Roese <sr@denx.de>
14045 Date:   Wed Feb 11 09:37:12 2009 +0100
14046
14047     ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h
14048
14049     CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is
14050     included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB.
14051
14052     It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx
14053     boards right now.
14054
14055     Signed-off-by: Stefan Roese <sr@denx.de>
14056
14057 commit f15c6515fc23f83c51f3de272ca23d86b80e81b1
14058 Author: Wolfgang Denk <wd@denx.de>
14059 Date:   Thu Feb 12 00:08:39 2009 +0100
14060
14061     Coding style cleanup; update CHANGELOG
14062
14063     Signed-off-by: Wolfgang Denk <wd@denx.de>
14064
14065 commit 5fc56b907d993260b9ebdb137af66fe69635ae9e
14066 Author: Peter Tyser <ptyser@xes-inc.com>
14067 Date:   Fri Jan 30 16:36:40 2009 -0600
14068
14069     Add feature-removal-schedule.txt
14070
14071     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14072
14073 commit 255d28e1642e8fc32a6753226be1a96b481ce111
14074 Author: Heiko Schocher <hs@denx.de>
14075 Date:   Tue Feb 10 09:32:38 2009 +0100
14076
14077     8xx serial, smc: Coding-Style cleanup serial SMC driver
14078
14079     Signed-off-by: Heiko Schocher <hs@denx.de>
14080
14081 commit 2b3f12c214346508cae3f1245808c1ca54c81fdd
14082 Author: Heiko Schocher <hs@denx.de>
14083 Date:   Tue Feb 10 09:31:47 2009 +0100
14084
14085     8xx serial, smc: add configurable SMC Rx buffer len
14086
14087     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
14088     With this option it is possible to allow the receive
14089     buffer for the SMC on 8xx to be greater then 1. In case
14090     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
14091     old version.
14092
14093     When defining CONFIG_SYS_SMC_RXBUFLEN also
14094     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
14095     idle timeout for the SMC.
14096
14097     Signed-off-by: Heiko Schocher <hs@denx.de>
14098
14099 commit e915f8bb73d74178bc21d3a457959883b1afd1c0
14100 Author: Mike Frysinger <vapier@gentoo.org>
14101 Date:   Thu Feb 5 21:04:36 2009 -0500
14102
14103     common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile
14104
14105     Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into
14106     the COBJS-$(CONFIG_xxx) in the Makefile.  Also delete unused var in kgdb
14107     code in the process.
14108
14109     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14110
14111 commit ab76e9848a1f4db64d14233741d739a3b3360c93
14112 Author: Mike Frysinger <vapier@gentoo.org>
14113 Date:   Thu Feb 5 21:04:50 2009 -0500
14114
14115     bzip2: move ifdef handling to Makefile COBJS-$(...)
14116
14117     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14118
14119 commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316
14120 Author: Jerry Van Baren <gvb.uboot@gmail.com>
14121 Date:   Thu Feb 5 22:18:02 2009 -0500
14122
14123     Fix whitespace damage: double space changed to a tab
14124
14125     At some point an intentional double space at the end of the sentence
14126     got changed into a tab in the GPL header line:
14127      * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14128
14129     This patch fixes the damage.
14130
14131     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
14132
14133 commit 4f975678de995b55749d5e84590c268972a7c835
14134 Author: Heiko Schocher <hs@denx.de>
14135 Date:   Tue Feb 10 09:53:29 2009 +0100
14136
14137     cfi: make flash_get_info() non static
14138
14139     If on your board is more than one flash, you must know
14140     the size of every single flash, for example, for updating
14141     the DTS before booting Linux. So make this function
14142     flash_get_info() extern, and you can have all info
14143     about your flashes.
14144
14145     Signed-off-by: Heiko Schocher <hs@denx.de>
14146     Signed-off-by: Stefan Roese <sr@denx.de>
14147
14148 commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e
14149 Author: Ben Warren <biggerbadderben@gmail.com>
14150 Date:   Thu Feb 5 23:58:25 2009 -0800
14151
14152     net: removed board-specific CONFIGs from MPC5xxx FEC driver
14153
14154     Added new CONFIG options for the three type of MAC-PHY interconnect and
14155     applied them all relevant board config files
14156
14157     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14158
14159 commit 638ed3e296e70fab286d157b7adedaaa4a09a474
14160 Author: Mike Frysinger <vapier@gentoo.org>
14161 Date:   Thu Feb 5 21:04:47 2009 -0500
14162
14163     net/sntp.c: move ifdef into Makefile COBJS-$(...)
14164
14165     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14166     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14167
14168 commit 9e5be8214ba751436e57c3be044bf6dccb9a6687
14169 Author: Andy Fleming <afleming@freescale.com>
14170 Date:   Tue Feb 3 18:26:41 2009 -0600
14171
14172     tsec: Fix a bug in soft-resetting
14173
14174     SOFT_RESET must be asserted for at least 3 TX clocks.  Usually, that's about 30
14175     clock cycles, so it's been mostly working.  But we had no guarantee, and at
14176     slower bitrates, it's just over a microsecond (over 1000 clock cycles).  This
14177     enforces a 2 microsecond gap between assertion and deassertion.
14178
14179     Signed-off-by: Andy Fleming <afleming@freescale.com>
14180     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14181
14182 commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b
14183 Author: Simon Munton <simon@nidoran.m5data.com>
14184 Date:   Mon Feb 2 09:44:08 2009 +0000
14185
14186     Fix 100Mbs ethernet operation on sh7763 based boards
14187
14188     100Mbs ethernet does not work on sh7763 chips due to the wrong value being
14189     used in the GECMR register. Following diff fixes the problem
14190
14191     Signed-off-by: Simon Munton <simon@nidoran.m5data.com>
14192     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14193
14194 commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2
14195 Author: ksi@koi8.net <ksi@koi8.net>
14196 Date:   Fri Feb 6 16:27:55 2009 -0800
14197
14198     Fix MPC8260 with ethernet on SCC
14199
14200     This fixes MPC8260 compilation with ethernet on SCC. Probably was a
14201     typo or something...
14202
14203     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
14204     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14205
14206 commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023
14207 Author: Heiko Schocher <hs@denx.de>
14208 Date:   Fri Jan 30 12:56:15 2009 +0100
14209
14210     82xx serial, smc: Coding-Style cleanup serial SMC driver
14211
14212     Signed-off-by: Heiko Schocher <hs@denx.de>
14213
14214 commit c92fac91a06c60f874c605e3ca80dd407c1caaa7
14215 Author: Heiko Schocher <hs@denx.de>
14216 Date:   Fri Jan 30 12:55:38 2009 +0100
14217
14218     82xx serial, smc: add configurable SMC Rx buffer len
14219
14220     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
14221     With this option it is possible to allow the receive
14222     buffer for the SMC on 82xx to be greater then 1. In case
14223     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
14224     old version.
14225
14226     When defining CONFIG_SYS_SMC_RXBUFLEN also
14227     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
14228     idle timeout for the SMC.
14229
14230     Signed-off-by: Heiko Schocher <hs@denx.de>
14231
14232 commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe
14233 Author: Kumar Gala <galak@kernel.crashing.org>
14234 Date:   Fri Feb 6 08:08:06 2009 -0600
14235
14236     ppc: Fix roll over bug in flush_cache()
14237
14238     If we call flush_cache(0xfffff000, 0x1000) it would never
14239     terminate the loop since end = 0xffffffff and we'd roll over
14240     our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line)
14241
14242     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14243
14244 commit 87c9063963561d3d01064be34d0c30855a56587b
14245 Author: Kumar Gala <galak@kernel.crashing.org>
14246 Date:   Thu Feb 5 20:40:58 2009 -0600
14247
14248     ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h
14249
14250     Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent
14251     between the two current users (lib_ppc/board.c, 44x SPD DDR2).
14252
14253     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14254     Acked-by: Stefan Roese <sr@denx.de>
14255
14256 commit 47d41cc3a11a03c6d56146d056145df73f47eb50
14257 Author: Kumar Gala <galak@kernel.crashing.org>
14258 Date:   Thu Feb 5 20:40:57 2009 -0600
14259
14260     Add an architecture specific config.h for common defines
14261
14262     We have common defines that we duplicate in various ways.  Having an
14263     arch specific config.h gives us a common location for those defines.
14264
14265     Eventually we should be able to replace this when we have proper
14266     Kconfig support.
14267
14268     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14269
14270 commit 4c78d4a6c01621721b732418e1c6da684a56bbb1
14271 Author: Becky Bruce <beckyb@kernel.crashing.org>
14272 Date:   Tue Feb 3 18:10:56 2009 -0600
14273
14274     mpc8641hpcn: Change PCI MEM pci bus address
14275
14276     Now that the rest of u-boot can support it, change the PCI bus
14277     address of the PCI MEM regions from 0x80000000 to 0xc0000000,
14278     and use the same bus address for both PCI1 and PCI2.  This will
14279     maximize the amount of PCI address space left over to map RAM
14280     on systems with large amounts of memory.
14281
14282     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14283
14284 commit 1785dbeed43599eed1d8875673c96912cd770141
14285 Author: Becky Bruce <beckyb@kernel.crashing.org>
14286 Date:   Tue Feb 3 18:10:55 2009 -0600
14287
14288     drivers/block/ahci: Fix pci mapping bug
14289
14290     The code assumes that the pci bus address and the virtual
14291     address used to access a region are the same, but they might
14292     not be.  Fix this assumption.
14293
14294     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14295
14296 commit d591a80e74091e7a0658d165721e6c7de2ef0bcd
14297 Author: Becky Bruce <beckyb@kernel.crashing.org>
14298 Date:   Tue Feb 3 18:10:54 2009 -0600
14299
14300     MPC8641HPCN: Enable CONFIG_ADDR_MAP
14301
14302     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14303
14304 commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b
14305 Author: Becky Bruce <beckyb@kernel.crashing.org>
14306 Date:   Tue Feb 3 18:10:53 2009 -0600
14307
14308     mpc8641hpcn: Clean up PCI mapping concepts
14309
14310     Clean up PCI mapping concepts in the 8641 config - rename _BASE
14311     to _BUS, as it's actually a PCI bus address, separate virtual
14312     and physical addresses into _VIRT and _PHYS, and use each
14313     appopriately.
14314
14315     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14316
14317 commit c9315e6b4f244981de0b2eaaa29a7838a165b494
14318 Author: Becky Bruce <beckyb@kernel.crashing.org>
14319 Date:   Tue Feb 3 18:10:52 2009 -0600
14320
14321     mpc86xx: Add support to populate addr map based on BATs
14322
14323     If CONFIG_ADDR_MAP is enabled, update the address map
14324     whenever we write a bat.
14325
14326     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14327
14328 commit d35ae5a938679bd7e18167faf79d0fb3c6639b51
14329 Author: Becky Bruce <beckyb@kernel.crashing.org>
14330 Date:   Tue Feb 3 18:10:51 2009 -0600
14331
14332     powerpc: Move duplicated BAT defines to mmu.h
14333
14334     The BAT fields are architected; there's no need for these to be in
14335     cpu-specific files.  Drop the duplication and move these to
14336     include/asm-ppc/mmu.h.  Also, remove the BL_xxx defines that were only
14337     used by the alaska board, and switch to using the BATU_BL_xxx defines
14338     used by all the other boards.  The BL_ defines previously in use
14339     had to be shifted into the proper position for use, which was inefficient.
14340
14341     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14342
14343 commit 6e61fae4d360a1380b63e7d007b31477e366bcce
14344 Author: Becky Bruce <beckyb@kernel.crashing.org>
14345 Date:   Tue Feb 3 18:10:50 2009 -0600
14346
14347     drivers/pci: Create pci_map_bar function
14348
14349     It is no longer always true that the pci bus address can be
14350     used as the virtual address for pci accesses.  pci_map_bar()
14351     is created to return the virtual address for a pci region.
14352
14353     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14354
14355 commit 2ecca3401775b125c3b9ff65766befb23989414b
14356 Author: Becky Bruce <beckyb@kernel.crashing.org>
14357 Date:   Tue Feb 3 18:10:49 2009 -0600
14358
14359     mpc8641hpcn: Set up outbound pci windows before inbound
14360
14361     Because the inbound pci windows are mapped generously, set up
14362     the more specific outbound windows first.  This way, when we
14363     search the pci regions for something, we will hit on the more
14364     specific region.  This can actually be a problem on systems
14365     with large amounts of RAM.
14366
14367     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14368
14369 commit b81b773ead0687114dc8a800f99ea6e504447739
14370 Author: Becky Bruce <beckyb@kernel.crashing.org>
14371 Date:   Mon Feb 2 16:34:52 2009 -0600
14372
14373     mpc8641hpcn: Use physical address in flash banks defintion
14374
14375     If the VA and PA of the flash aren't the same, the banks list
14376     should be initialized to hold the physical address.  Correct this.
14377
14378     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14379
14380 commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870
14381 Author: Ilya Yanok <yanok@emcraft.com>
14382 Date:   Tue Feb 10 00:22:31 2009 +0100
14383
14384     qong: support for Dave/DENX QongEVB-LITE board
14385
14386     This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board.
14387
14388     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14389     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14390
14391 commit 62cbc408f52fc9a5eb849e0b882c504780c9d183
14392 Author: Ilya Yanok <yanok@emcraft.com>
14393 Date:   Mon Feb 9 18:45:28 2009 +0100
14394
14395     dnet: driver for Dave DNET ethernet controller
14396
14397     Driver for Dave DNET ethernet controller (used on Dave/DENX
14398     QongEVB-LITE board).
14399
14400     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14401     Acked-by: Ben Warren <biggerbadderben@gmail.com>
14402
14403 commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf
14404 Author: Kumar Gala <galak@kernel.crashing.org>
14405 Date:   Fri Feb 6 09:49:32 2009 -0600
14406
14407     pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching
14408
14409     When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys}
14410     we should give preference to memory regions that aren't system memory.
14411
14412     Its possible that we have over mapped system memory in the regions and
14413     we want to avoid depending on the order of the regions.
14414
14415     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14416
14417 commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612
14418 Author: Kumar Gala <galak@kernel.crashing.org>
14419 Date:   Fri Feb 6 09:49:31 2009 -0600
14420
14421     pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
14422
14423     The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and
14424     can be confusing when reading the code.
14425
14426     Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used
14427     for system memory mapping purposes.
14428
14429     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14430
14431 commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec
14432 Author: Ilya Yanok <yanok@emcraft.com>
14433 Date:   Sun Feb 8 00:59:43 2009 +0300
14434
14435     mx31: add GPIO registers definitions
14436
14437     Added definitions for i.MX31 processor GPIO registers.
14438
14439     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14440
14441 commit 8da601280a8acbc3385784780ed35130e53812f1
14442 Author: Peter Tyser <ptyser@xes-inc.com>
14443 Date:   Wed Feb 4 13:47:22 2009 -0600
14444
14445     NAND: Add timeout for reset command
14446
14447     Without the timeout present an infinite loop can occur if the
14448     NAND device is broken or not present.
14449
14450     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14451     Signed-off-by: Scott Wood <scottwood@freescale.com>
14452
14453 commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126
14454 Author: Peter Tyser <ptyser@xes-inc.com>
14455 Date:   Wed Feb 4 13:39:40 2009 -0600
14456
14457     NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST
14458
14459     Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support
14460     for disabling the "No NAND device found!!!" warning when
14461     CONFIG_SYS_NAND_QUIET_TEST was defined.  This re-adds support
14462     for silencing the warning.
14463
14464     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14465     Signed-off-by: Scott Wood <scottwood@freescale.com>
14466
14467 commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13
14468 Author: Valeriy Glushkov <gvv@lstec.com>
14469 Date:   Mon Jan 19 16:32:59 2009 +0200
14470
14471     NAND: Fixed invalid pointers to static relocated chip names
14472
14473     Dear Wolfgang,
14474
14475     You are right, the patch was ugly.
14476     The new one seems to be better.
14477
14478     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
14479     Signed-off-by: Scott Wood <scottwood@freescale.com>
14480
14481 commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8
14482 Author: Nishanth Menon <nm@ti.com>
14483 Date:   Mon Feb 2 18:20:12 2009 -0600
14484
14485     ARM:OMAP3:Zoom1: Add nand unlock option
14486
14487     Enable NAND_UNLOCK option for unlocking nand for
14488     erase/write operations
14489
14490     Signed-off-by: Nishanth Menon <nm@ti.com>
14491
14492 commit 5a9427dc9b8438759db3f67a1e547062f76eb18d
14493 Author: derek@siconix.com <derek@siconix.com>
14494 Date:   Mon Jan 26 14:08:17 2009 -0700
14495
14496     env_nand: fix env memory release
14497
14498     This fixes a bug that tmp environment memory not being released.
14499
14500     Signed-off-by: Derek Ou <dou@siconix.com>
14501     Signed-off-by: Scott Wood <scottwood@freescale.com>
14502
14503 commit 05fd88776419df59e7f37bac063a209409dd801d
14504 Author: Guennadi Liakhovetski <lg@denx.de>
14505 Date:   Fri Feb 6 10:37:45 2009 +0100
14506
14507     ARM: remove unused variable
14508
14509     The "size" variable in start_armboot() in lib_arm/board.c is only really
14510     used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be
14511     eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.)
14512
14513     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14514
14515 commit 6989e4f546d960a407dd5425f800dff9751c8132
14516 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14517 Date:   Thu Feb 5 09:33:50 2009 -0500
14518
14519     Coldfire: M527x: Add missing GPIO register address defines
14520
14521     Add missing GPIO registers address definition for Coldfire M5271.
14522
14523     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14524
14525 commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95
14526 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14527 Date:   Fri Jan 23 14:42:58 2009 -0500
14528
14529     Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command
14530
14531     Modified mii_init to support boards with PHYs that are not set to
14532     autonegotiate, but still want to use u-boot's mii commands to probe
14533     the smi bus. Such PHYs will not set the Autonegotiate-done bit.
14534
14535     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14536
14537 commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f
14538 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14539 Date:   Fri Jan 23 11:44:30 2009 -0500
14540
14541     Coldfire: Applied baudrate formula of serial_init to serial_setbrg
14542
14543     Applied the patch for baudrate divider value truncation for
14544     serial_init to serial_setbrg as well.
14545
14546     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14547
14548 commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148
14549 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14550 Date:   Fri Jan 23 14:07:05 2009 -0500
14551
14552     Coldfire: M5271EVB: Board header update (dependencies)
14553
14554     Cleanup for M5271EVB:
14555     Added clarification on the use of CONFIG_SYS_CLOCK.
14556     Modified to use u-boot's HUSH parser.
14557     Cleanup on environment settings.
14558     Removed compiler warning by defining CONFIG_SYS_CS0_*
14559
14560     Dependencies:
14561     Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier.
14562     This depends on a patch to include/asm-m68k/m5271.h
14563     that defines the multiplier and divider ratios.
14564
14565     Removed the definition of CONFIG_SYS_FECI2C.
14566     This depends on a patch that removes the use of it in
14567     cpu/mcf52x2/cpu_init.c
14568
14569     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14570
14571 commit e0db344fabfeb4f9649846f94838f51172f6a1f6
14572 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14573 Date:   Thu Jan 29 14:36:06 2009 -0500
14574
14575     Coldfire: M5271: Allow board header file to specify clock multiplier
14576
14577     M5271 dynamic clock multiplier. It is currently fixed at 100MHz.
14578
14579     Allow the board header file to set their own multiplier and divider.
14580     Added the #define for the multiplier and divider to the cpu header file.
14581
14582     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14583
14584 commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3
14585 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14586 Date:   Fri Jan 23 10:47:13 2009 -0500
14587
14588     Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C
14589
14590     Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB).
14591     Use read-modify-write to activate the FEC pins without disabling I2C.
14592
14593     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14594
14595 commit ee73cc59ab904976af3c33b454fc84f78618b2d1
14596 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14597 Date:   Fri Jan 23 09:45:34 2009 -0500
14598
14599     Coldfire: cmd_bdinfo cleanup
14600
14601     CONFIG_M68K bdinfo cleanup:
14602
14603     Fixed compiler warning about baudrate printing.
14604     format '%d' expects type 'int', but argument 2 has type 'long unsigned int'.
14605
14606     Added printing of "cpufreq"
14607
14608     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14609
14610 commit 4ffc39050aa46ed8a3d29732293dff769e54fffa
14611 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14612 Date:   Fri Jan 23 09:27:00 2009 -0500
14613
14614     Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list
14615
14616     Added the CONFIG_M5271 to the list of Coldfire V2 processor. This
14617     was causing the bus clock (not CPU clock) to be declared twice as
14618     fast as it actually is. This causes UARTS to operate at half the
14619     specified baudrate.
14620
14621     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14622
14623 commit 59d1bda7f92c8a28c3aba94e48063749d425949f
14624 Author: Dirk Eibach <eibach@gdsys.de>
14625 Date:   Tue Feb 3 15:15:21 2009 +0100
14626
14627     ppc4xx: Make PCIE support selectable
14628
14629     On some platforms PCIE support is not required, but would be included
14630     because the cpu supports it. To reduce fooprint it is now configurable
14631     via CONFIG_PCI_DISABLE_PCIE.
14632
14633     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
14634     Signed-off-by: Stefan Roese <sr@denx.de>
14635
14636 commit b129eff5ede394cc1faeb6dbf6a987e91abce552
14637 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14638 Date:   Tue Feb 3 22:13:16 2009 +0100
14639
14640     ppc4xx: Only fixup opb attached UARTs
14641
14642     This patch updates the fdt UART clock fixup code to
14643     only touch CPU internal UARTs on 4xx systems.
14644     Only these UARTs are definitely clocked by gd->uart_clk.
14645
14646     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14647     Signed-off-by: Stefan Roese <sr@denx.de>
14648
14649 commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c
14650 Author: Mike Frysinger <vapier@gentoo.org>
14651 Date:   Tue Jan 13 11:00:29 2009 -0500
14652
14653     Blackfin: move default boot SPI CS to common code
14654
14655     Move the default SPI CS that we boot from into common code so that it can
14656     be used in other SPI drivers and environment settings.
14657
14658     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14659
14660 commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6
14661 Author: Mike Frysinger <vapier@gentoo.org>
14662 Date:   Wed Dec 10 12:33:54 2008 -0500
14663
14664     Blackfin: dynamically update UART speed when initializing
14665
14666     Previously, booting over the UART required the baud rate to be known ahead
14667     of time.  Using a bit of tricky simple math, we can calculate the new board
14668     rate based on the old divisors.
14669
14670     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14671     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
14672
14673 commit 97f265f14f23050f3cb997f617f3a6917b843ea2
14674 Author: Mike Frysinger <vapier@gentoo.org>
14675 Date:   Tue Dec 9 17:21:08 2008 -0500
14676
14677     Blackfin: add support for fast SPI reads with Boot ROM
14678
14679     Newer Blackfin boot roms support using the fast SPI read command rather than
14680     just the slow one.  If the functionality is available, then use it.
14681
14682     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14683
14684 commit 67619982bfc5cd62710a48e3cbffc304cb78c341
14685 Author: Mike Frysinger <vapier@gentoo.org>
14686 Date:   Sat Oct 11 21:46:52 2008 -0400
14687
14688     Blackfin: check for reserved settings in DDR MMRs
14689
14690     Some bits of the DDR MMRs should not be set.  If they do, bad things may
14691     happen (like random failures or hardware destruction).
14692
14693     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14694
14695 commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6
14696 Author: Mike Frysinger <vapier@gentoo.org>
14697 Date:   Sat Oct 11 21:54:00 2008 -0400
14698
14699     Blackfin: set default voltage levels for BF538/BF539 parts
14700
14701     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14702
14703 commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f
14704 Author: Mike Frysinger <vapier@gentoo.org>
14705 Date:   Sun Jun 1 01:29:57 2008 -0400
14706
14707     Blackfin: use on-chip syscontrol() rom function when available
14708
14709     Newer Blackfin's have an on-chip rom with a syscontrol() function that needs
14710     to be used to properly program the memory and voltage settings as it will
14711     include (possibly critical) factory tested bias values.
14712
14713     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14714
14715 commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63
14716 Author: Stefan Roese <sr@denx.de>
14717 Date:   Thu Feb 5 11:44:52 2009 +0100
14718
14719     cfi_flash: Fix typo in cfi_flash.c
14720
14721     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
14722     introduced a small typo and compilation warning for systems with CFI
14723     legacy support (e.g. hcu4). This patch fixes it.
14724
14725     Signed-off-by: Stefan Roese <sr@denx.de>
14726
14727 commit 28745db969b72693754991c838f68a7fb4a8b1ab
14728 Author: Stefan Roese <sr@denx.de>
14729 Date:   Thu Jan 29 11:21:38 2009 +0100
14730
14731     jedec_flash: Only use manufacturer defines from common flash.h
14732
14733     This patch removes the double defined manufacturer defines from
14734     jedec_flash.c. Since the common defines in flash.h are 32bit
14735     we now need the (16) cast. This patch also removes the compilation
14736     warning (e.g. seen on hcu5):
14737
14738     ./MAKEALL hcu5
14739     Configuring for hcu5 board...
14740     jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type
14741
14742     Signed-off-by: Stefan Roese <sr@denx.de>
14743
14744 commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2
14745 Author: Stefan Roese <sr@denx.de>
14746 Date:   Thu Feb 5 11:25:57 2009 +0100
14747
14748     cfi_flash: Silence compilation warning
14749
14750     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
14751     introduced a small compilation warning. This patch fixes it.
14752
14753     Signed-off-by: Stefan Roese <sr@denx.de>
14754
14755 commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38
14756 Author: Becky Bruce <beckyb@kernel.crashing.org>
14757 Date:   Mon Feb 2 16:34:51 2009 -0600
14758
14759     flash/cfi_flash: Use virtual sector start address, not phys
14760
14761     include/flash.h was commented to say that the address in
14762     flash_info->start was a physical address.  However, from u-boot's
14763     point of view, and looking at most flash code, it makes more
14764     sense for this to be a virtual address.  So I corrected the
14765     comment to indicate that this was a virtual address.
14766
14767     The only flash driver that was actually treating the address
14768     as physical was the mtd/cfi_flash driver.  However, this code
14769     was using it inconsistently as it actually directly dereferenced
14770     the "start" element, while it used map_physmem to get a
14771     virtual address in other places.  I changed this driver so
14772     that the code which initializes the info->start field calls
14773     map_physmem to get a virtual address, eliminating the need for
14774     further map_physmem calls.  The code is now consistent.
14775
14776     The *only* place a physical address should be used is when defining the
14777     flash banks list that is used to initialize the flash_info struct,
14778     usually found in the board config file.
14779
14780     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14781     Signed-off-by: Stefan Roese <sr@denx.de>
14782
14783 commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779
14784 Author: Wolfgang Denk <wd@denx.de>
14785 Date:   Wed Feb 4 09:42:20 2009 +0100
14786
14787     Fix compiler warning
14788
14789     (shows up only when DEBUG is enabled)
14790
14791     Signed-off-by: Wolfgang Denk <wd@denx.de>
14792
14793 commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb
14794 Author: Mike Frysinger <vapier@gentoo.org>
14795 Date:   Mon Oct 6 03:45:55 2008 -0400
14796
14797     Blackfin: update anomaly lists
14798
14799     Update the anomaly lists to match latest anomaly sheets.
14800
14801     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14802
14803 commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d
14804 Author: Ralph Kondziella <rk@argos-messtechnik.de>
14805 Date:   Mon Jan 26 12:34:36 2009 -0700
14806
14807     ADS5121 Add PATA support
14808
14809     Original patch from Ralph Kondziella
14810     plus clean up by Wolfgang Denk
14811     plus changes by John Rigby
14812         use ips clock not lpc
14813         port forward to current u-boot release
14814
14815     Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de>
14816     Signed-off-by: Wolfgang Denk <wd@denx.de>
14817     Signed-off-by: John Rigby <jrigby@freescale.com>
14818
14819 commit abfbd0ae4967df18102345db4f4b529a13da107b
14820 Author: Martha Marx <mmarx@silicontkx.com>
14821 Date:   Mon Jan 26 10:45:07 2009 -0700
14822
14823     ADS5121 Add IC Ident Module (IIM) support
14824
14825     IIM (IC Identification Module) is the fusebox for the mpc5121.
14826     Use #define CONFIG_IIM to turn on the clock for this module
14827     use #define CONFIG_CMD_FUSE to add fusebox commands.
14828     Fusebox commands include the ability to read
14829     the status, read the register cache, override the register cache,
14830     program the fuses and sense them.
14831
14832     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
14833     Signed-off-by: John Rigby <jrigby@freescale.com>
14834
14835 commit 14d19cd1bce9a24b1335598f1568140f4950e4d9
14836 Author: John Rigby <jrigby@freescale.com>
14837 Date:   Fri Jan 23 10:33:15 2009 -0700
14838
14839     ADS5121 Fix rev2 silicon pci iopad config
14840
14841     Reset config is not correct
14842
14843     Signed-off-by: John Rigby <jrigby@freescale.com>
14844
14845 commit 4c154252c480b13f69ce1b71a9530b0515da76a6
14846 Author: John Rigby <jrigby@freescale.com>
14847 Date:   Wed Nov 19 13:57:34 2008 -0700
14848
14849     ADS5121 DIU Add diu_bmp_addr env
14850
14851     Add support for using a bmp other than
14852     FSL_Logo_BMP for the DIU splash screen.
14853
14854     Can now set the env var "diu_bmp_addr" to
14855     the address of a BMP in flash to use instead
14856     of the default FSL_Logo_BMP.
14857
14858     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
14859     Signed-off-by: John Rigby <jrigby@freescale.com>
14860
14861 commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a
14862 Author: John Rigby <jrigby@freescale.com>
14863 Date:   Thu Oct 30 16:39:35 2008 -0600
14864
14865     ADS5121 DIU Make inclusion of FSL logo optional
14866
14867     Make inclusion of FSL logo optional and
14868     turn it off by default.
14869
14870     Signed-off-by: John Rigby <jrigby@freescale.com>
14871
14872 commit bd99ec149abe94e7f6b2bda4766d701b4005053f
14873 Author: Remy Bohmer <linux@bohmer.net>
14874 Date:   Sun Feb 1 12:27:53 2009 +0100
14875
14876     Compile warning fix in onenand_uboot.h
14877
14878     Regression since merge window after 2009.01
14879
14880     Signed-off-by: Remy Bohmer <linux@bohmer.net>
14881
14882 commit a270d1e7295c3d829f42c0480117941dfc1c6477
14883 Author: Stefan Roese <sr@denx.de>
14884 Date:   Thu Jan 29 06:33:55 2009 +0100
14885
14886     USB: Add EHCI support for VCT EHCI controller (really with driver now)
14887
14888     Somehow I missed the real driver part in my last patch version. This patch
14889     now adds the driver.
14890
14891     Signed-off-by: Stefan Roese <sr@denx.de>
14892     Signed-off-by: Remy Bohmer <linux@bohmer.net>
14893
14894 commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e
14895 Author: Cliff Cai <cliff.cai@analog.com>
14896 Date:   Sat Nov 29 18:22:38 2008 -0500
14897
14898     Blackfin: add driver for on-chip MMC/SD controller
14899
14900     This is a port of the Linux Blackfin on-chip SDH driver to U-Boot.
14901
14902     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
14903     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14904
14905 commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2
14906 Author: Mike Frysinger <vapier@gentoo.org>
14907 Date:   Sat Oct 11 22:47:34 2008 -0400
14908
14909     Blackfin: add port muxing for BF51x SPI
14910
14911     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14912
14913 commit fc68f9f85959664d528daea2aef5ef54974331ce
14914 Author: Mike Frysinger <vapier@gentoo.org>
14915 Date:   Tue Jan 6 06:16:19 2009 -0500
14916
14917     Blackfin: output booting source when booting
14918
14919     Knowing the booting source of the part is useful, especially when the part
14920     can switch dynamically between sources.
14921
14922     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14923
14924 commit 8df3ce0f49c37947800ac7c84e751499882619fc
14925 Author: Mike Frysinger <vapier@gentoo.org>
14926 Date:   Thu Dec 11 06:30:46 2008 -0500
14927
14928     Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom
14929
14930     Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by
14931     the Blackfin on-chip bootrom to boot out of SPI flash.
14932
14933     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14934
14935 commit 2b4a486e6fac502d8b883e344cc4012283945b3d
14936 Author: Mike Frysinger <vapier@gentoo.org>
14937 Date:   Thu Dec 11 04:06:26 2008 -0500
14938
14939     Blackfin: update asm-blackfin/posix_types.h to latest Linux version
14940
14941     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14942
14943 commit e5eb93e77391bcc308697116c544ea1340aaae8a
14944 Author: Mike Frysinger <vapier@gentoo.org>
14945 Date:   Sat Dec 6 02:54:52 2008 -0500
14946
14947     Blackfin: add port I bits
14948
14949     Some people need to access port I, so make sure the pins are defined.
14950
14951     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14952
14953 commit 8a6b272596d43de0db4943eac7af58c3534c4026
14954 Author: Sonic Zhang <Sonic.Zhang@analog.com>
14955 Date:   Wed Nov 26 22:16:45 2008 -0500
14956
14957     Blackfin: add driver for on-chip ATAPI controller
14958
14959     This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot.
14960
14961     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
14962     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14963
14964 commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b
14965 Author: Mike Frysinger <vapier@gentoo.org>
14966 Date:   Wed Nov 26 21:43:06 2008 -0500
14967
14968     Blackfin: add driver for on-chip NAND controller
14969
14970     This is a port of the Linux Blackfin on-chip NFC driver to U-Boot.
14971
14972     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14973
14974 commit 4148e02abae9a099f4444b5e168ebc2b911d2295
14975 Author: Mike Frysinger <vapier@gentoo.org>
14976 Date:   Wed Nov 12 07:18:15 2008 -0500
14977
14978     Blackfin: build with -mno-fdpic
14979
14980     Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build
14981     up u-boot, including ones that output FDPIC ELF by default.
14982
14983     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14984
14985 commit 70e95589a24a2d83ad00317e4a9611d0211ecb58
14986 Author: Mike Frysinger <vapier@gentoo.org>
14987 Date:   Tue Nov 11 05:43:57 2008 -0500
14988
14989     Blackfin: fix up EBIU defines
14990
14991     The EBIU defines for EBSZ 256/512 were incorrect.
14992
14993     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14994
14995 commit 961954ea0ec8dc4341034c1a1ff3107ec0527809
14996 Author: Mike Frysinger <vapier@gentoo.org>
14997 Date:   Wed Nov 5 12:45:24 2008 -0500
14998
14999     Blackfin: use 8/16/32 bit transfer widths in dma_memcpy()
15000
15001     Rather than using 8bit transfers for everything, use 8/16/32 bit transfers
15002     as usable with the source/destination addresses and the count size.
15003
15004     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15005
15006 commit b93c68648426f906d63b98117496b6415f505f39
15007 Author: Mike Frysinger <vapier@gentoo.org>
15008 Date:   Wed Nov 5 08:50:23 2008 -0500
15009
15010     Blackfin: only flag L1 instruction for DMA memcpy
15011
15012     The performance difference from doing an 8 bit DMA memcpy vs an optimized
15013     core memcpy can be pretty big when you add in the overhead of setting up the
15014     MDMA registers, cache flushes, etc...  So only use dma_memcpy() when we
15015     actually require it.
15016
15017     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15018
15019 commit e347c092a3b3a2ce1e72f25f4829163634d09fbe
15020 Author: Mike Frysinger <vapier@gentoo.org>
15021 Date:   Wed Nov 5 07:20:37 2008 -0500
15022
15023     Blackfin: dma_memcpy(): fix random failures
15024
15025     We have to make sure the DMA channel is actually disabled in hardware before
15026     attempting to reprogram it.  Otherwise the new settings are ignored and we
15027     end up with random hangs/failures.
15028
15029     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15030
15031 commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3
15032 Author: Mike Frysinger <vapier@gentoo.org>
15033 Date:   Tue Nov 4 00:04:03 2008 -0500
15034
15035     Blackfin: rewrite cache handling functions
15036
15037     Take the cache flush functions from the kernel as they use hardware loops in
15038     order to get optimal performance.
15039
15040     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15041
15042 commit 84c5f0dc47d17593fd81206614891bdc94f6d51c
15043 Author: Mike Frysinger <vapier@gentoo.org>
15044 Date:   Mon Nov 3 22:30:05 2008 -0500
15045
15046     Blackfin: setup bi_enetaddr for single nets
15047
15048     For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup
15049     based on $ethaddr, so set it up.
15050
15051     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15052
15053 commit 40599239e7875b39e2a5c12e6545992041c72c52
15054 Author: Mike Frysinger <vapier@gentoo.org>
15055 Date:   Fri Oct 24 22:48:47 2008 -0400
15056
15057     Blackfin: cache core/system clock values
15058
15059     Calculating the clocks requires a bit of calls to gcc math functions, so
15060     cache the values after the first run since they'll most likely never
15061     change once U-Boot is up and running.
15062
15063     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15064
15065 commit 6957a6209b02f6b69607fc47425f13731cc477f1
15066 Author: Mike Frysinger <vapier@gentoo.org>
15067 Date:   Fri Oct 24 18:18:16 2008 -0400
15068
15069     Blackfin: enable --gc-sections
15070
15071     Start building all Blackfin boards with -ffunction-sections/-fdata-sections
15072     and linking with --gc-sections.
15073
15074     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15075
15076 commit ee1d2001ea7fbabb2b9256026dc5468f057337f8
15077 Author: Mike Frysinger <vapier@gentoo.org>
15078 Date:   Mon Oct 20 21:08:54 2008 -0400
15079
15080     Blackfin: dont check baud if it wont actually get used
15081
15082     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15083
15084 commit 400f5778f375bc99c73c8488c555def261ccfab7
15085 Author: Mike Frysinger <vapier@gentoo.org>
15086 Date:   Tue Oct 14 07:54:09 2008 -0400
15087
15088     Blackfin: add driver for on-chip SPI controller
15089
15090     This fills out the SPI backend for the Blackfin on-chip SPI peripheral.
15091
15092     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15093
15094 commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd
15095 Author: Mike Frysinger <vapier@gentoo.org>
15096 Date:   Sat Oct 18 05:33:51 2008 -0400
15097
15098     Blackfin: only build post code when CONFIG_POST
15099
15100     Save some time by using CONFIG_POST in the Makefile rather than C files.
15101
15102     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15103
15104 commit 6d7d4803c74bb86e1b401b1199e63381a62b9382
15105 Author: Mike Frysinger <vapier@gentoo.org>
15106 Date:   Thu Jan 8 11:57:57 2009 -0500
15107
15108     Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues
15109
15110     Redo how pointers are managed to get rid of ugly casts and strict pointer
15111     aliasing issues that are highlighted by gcc 4.3.
15112
15113     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15114     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15115
15116 commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b
15117 Author: Mike Frysinger <vapier@gentoo.org>
15118 Date:   Tue Dec 9 17:46:21 2008 -0500
15119
15120     Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
15121
15122     No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
15123     does exactly the same thing as common "CONFIG_RMII".
15124
15125     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15126     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15127
15128 commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5
15129 Author: Mike Frysinger <vapier@gentoo.org>
15130 Date:   Wed Nov 5 06:36:15 2008 -0500
15131
15132     Blackfin: bfin_mac: use common debug()
15133
15134     Rather then defining our own DEBUGF(), just use the common debug().
15135
15136     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15137     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15138
15139 commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04
15140 Author: Mike Frysinger <vapier@gentoo.org>
15141 Date:   Mon Oct 20 13:59:51 2008 -0400
15142
15143     Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ}
15144
15145     Rather than having the on-chip MAC hardcoded to phy address 1 and a speed
15146     of 2.5mhz, use these as defaults if the board doesn't specify otherwise.
15147
15148     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15149     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15150
15151 commit ac45af4e63ea925f4accc98453aab1a1166c196d
15152 Author: Mike Frysinger <vapier@gentoo.org>
15153 Date:   Tue Oct 14 04:52:00 2008 -0400
15154
15155     Blackfin: bfin_mac: cleanup MII/PHY functions
15156
15157     Cleanup and rewrite the MII/PHY related functions so that we can reuse the
15158     existing common linux/miiphy.h code and hook into the `mii` command.
15159
15160     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15161     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15162
15163 commit 6b310a05f0d10c751f22468040932139f71c71d3
15164 Author: Mike Frysinger <vapier@gentoo.org>
15165 Date:   Tue Oct 14 00:31:30 2008 -0400
15166
15167     Blackfin: bfin_mac: set MDCDIV based on SCLK
15168
15169     Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK),
15170     use the real algorithm so it gets set correctly regardless of SCLK.
15171
15172     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15173     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15174
15175 commit 930590f3e49c8f32256edf2e5861e1535a329c6c
15176 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15177 Date:   Sat Jan 31 09:10:48 2009 +0100
15178
15179     ixp: move serial to drivers/serial
15180
15181     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15182
15183 commit f90c8022f448bc5e93090e4b714368e52e912f0f
15184 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15185 Date:   Sat Jan 31 09:04:58 2009 +0100
15186
15187     ixp: move pci init in arm/board instead of cpu
15188
15189     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15190
15191 commit 8cb79b5f275f1888ccb278a2d2197140444a84b7
15192 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15193 Date:   Sat Jan 31 08:56:49 2009 +0100
15194
15195     ixp: move pci drivers to drivers/pci
15196
15197     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15198
15199 commit 012d5bab09a534e4800b02f50cf508e6837202ea
15200 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15201 Date:   Sat Jan 31 08:53:44 2009 +0100
15202
15203     ixp: Move conditional compilation to Makefile
15204
15205     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15206
15207 commit f693f501d67434df1f815fd1824a71973ae08207
15208 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15209 Date:   Sat Jan 31 08:53:44 2009 +0100
15210
15211     ixp: add missing os define
15212
15213     need by arm-elf toolchains and no impact on the arm-linux one
15214
15215     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15216
15217 commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f
15218 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15219 Date:   Sat Jan 31 09:53:39 2009 +0100
15220
15221     ixp: remove the option to include the Microcode
15222
15223     instead the board will have to load it from flash or ram
15224     which will be specified by npe_ucode env var
15225
15226     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15227
15228 commit 1b017baf2071d8daf643bce87250db898c606c66
15229 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15230 Date:   Fri Jan 30 09:45:23 2009 +0100
15231
15232     ixp/npe: Move conditional compilation to Makefile
15233
15234     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15235
15236 commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0
15237 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15238 Date:   Wed Jan 28 21:58:04 2009 +0100
15239
15240     SX1: add hardware V2 support
15241
15242     In the V2 the 2 flash has been replace by one 32MB flash
15243
15244     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15245
15246 commit f877f2233dbcd7417c2f0babe6a849099b167f3c
15247 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15248 Date:   Wed Jan 28 21:58:03 2009 +0100
15249
15250     SX1: Fix second flash mapping
15251
15252     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15253
15254 commit 47fd3bffed6430c91eb2660f859574ed98be5bd8
15255 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15256 Date:   Wed Jan 28 21:58:03 2009 +0100
15257
15258     SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty
15259
15260     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15261
15262 commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6
15263 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15264 Date:   Wed Jan 28 21:57:59 2009 +0100
15265
15266     move Samsung's board to board/samsung
15267
15268     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15269
15270 commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e
15271 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15272 Date:   Thu Jan 29 12:07:21 2009 +0100
15273
15274     move ARM Ltd. to vendor dir
15275
15276     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15277
15278 commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf
15279 Author: Larry Johnson <lrj@acm.org>
15280 Date:   Wed Jan 28 15:30:37 2009 -0500
15281
15282     ppc4xx: Clean up configuration file for Korat board
15283
15284     This patch updates the default environmental variables for the
15285     Korat PPC 440EPx board, and makes additional minor fixes.
15286
15287     Signed-off-by: Larry Johnson <lrj@acm.org>
15288     Signed-off-by: Stefan Roese <sr@denx.de>
15289
15290 commit f20405e31680efc36293c59b4963db57c9d93df4
15291 Author: Larry Johnson <lrj@acm.org>
15292 Date:   Wed Jan 28 15:30:02 2009 -0500
15293
15294     ppc4xx: Add variable "korat_usbcf" for Korat board
15295
15296     The new environment variable "korat_usbcf" selects the USB
15297     port used by the Korat board's CompactFlash controller.
15298
15299     Signed-off-by: Larry Johnson <lrj@acm.org>
15300     Signed-off-by: Stefan Roese <sr@denx.de>
15301
15302 commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe
15303 Author: Gunnar Rangoy <gunnar@rangoy.com>
15304 Date:   Fri Jan 23 12:56:31 2009 +0100
15305
15306     AVR32: macb - Search for PHY id
15307
15308     This patch adds support for searching through available PHY-addresses in
15309     the macb-driver. This is needed for the ATEVK1100 evaluation board,
15310     where the PHY-address will be initialized to either 1 or 7.
15311
15312     This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when
15313     enabled tells the driver to search for the PHY address.
15314
15315     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
15316     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
15317     Signed-off-by: Olav Morken <olavmrk@gmail.com>
15318     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15319
15320 commit af8626e0c08a780d9ded1d9c4883a89355f60e75
15321 Author: Olav Morken <olavmrk@gmail.com>
15322 Date:   Fri Jan 23 12:56:26 2009 +0100
15323
15324     Fix IP alignment problem
15325
15326     This patch removes volatile from:
15327     volatile IP_t *ip = (IP_t *)xip;
15328
15329     Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
15330     using volatile, which causes an exception since xip isn't aligned on a word
15331     boundary.
15332
15333     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
15334     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
15335     Signed-off-by: Olav Morken <olavmrk@gmail.com>
15336     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15337
15338 commit 12a8b9db12f82a189ff143a58731007f5469da61
15339 Author: Ron Madrid <ron_madrid@sbcglobal.net>
15340 Date:   Wed Jan 28 16:17:21 2009 -0800
15341
15342     Marvell 88E1118 interrupt fix
15343
15344     This patch adjusts the LED control so that interrupt lines are not reading LEDs
15345     and effectively causing indefinite interrupts to the controller.
15346
15347     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
15348     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15349
15350 commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9
15351 Author: Stefan Roese <sr@denx.de>
15352 Date:   Wed Jan 21 17:14:26 2009 +0100
15353
15354     net: smc911x.c: Add LAN9211 to chip_ids[] array
15355
15356     Signed-off-by: Stefan Roese <sr@denx.de>
15357     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15358
15359 commit 75edebe3011c963a7cd84be0f4a987477f2aaf89
15360 Author: Mike Frysinger <vapier@gentoo.org>
15361 Date:   Tue Jan 27 16:53:39 2009 -0500
15362
15363     Move is_valid_ether_addr() to include/net.h
15364
15365     Import the is_valid_ether_addr() function from the Linux kernel.
15366
15367     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15368     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15369
15370 commit 268859338c0188eab1d0d3b867b7dad3c5cc734a
15371 Author: Michal Simek <monstr@monstr.eu>
15372 Date:   Mon Jan 5 12:25:13 2009 +0100
15373
15374     net: Sort Makefile labels
15375
15376     Signed-off-by: Michal Simek <monstr@monstr.eu>
15377     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15378
15379 commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2
15380 Author: Wolfgang Denk <wd@denx.de>
15381 Date:   Wed Jan 28 23:06:42 2009 +0100
15382
15383     85xx: Fix compile breakage with sbc8540 and sbc8560
15384
15385     This fixes an error which raises just a warning:
15386     sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast
15387
15388     Signed-off-by: Wolfgang Denk <wd@denx.de>
15389
15390 commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58
15391 Author: Mike Frysinger <vapier@gentoo.org>
15392 Date:   Wed Jan 28 13:48:55 2009 -0500
15393
15394     SPD823TS: do not define CONFIG_CMD_ENV
15395
15396     Since the SPD823TS board does not actually have any writable flash to save
15397     its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is
15398     disabled.
15399
15400     This fixes the build error:
15401     common/libcommon.a(cmd_nvedit.o): In function `do_saveenv':
15402     common/cmd_nvedit.c:557: undefined reference to `saveenv'
15403     make: *** [u-boot] Error 1
15404
15405     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15406
15407 commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315
15408 Author: Dirk Behme <dirk.behme@googlemail.com>
15409 Date:   Wed Jan 28 21:40:16 2009 +0100
15410
15411     OMAP3: Add Zoom1 board support
15412
15413     Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here:
15414     http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
15415
15416     Signed-off-by: Nishanth Menon <nm@ti.com>
15417     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
15418
15419 commit 2be2c6cc674e26237962f5cf4c0d311e139e4241
15420 Author: Dirk Behme <dirk.behme@googlemail.com>
15421 Date:   Wed Jan 28 21:39:58 2009 +0100
15422
15423     OMAP3: Add Pandora support
15424
15425     Add Pandora support.
15426
15427     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
15428     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15429     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
15430
15431 commit ad9bc8e52d174d699d1367be0b90089e4fdeb933
15432 Author: Dirk Behme <dirk.behme@googlemail.com>
15433 Date:   Wed Jan 28 21:39:58 2009 +0100
15434
15435     OMAP3: Add EVM board
15436
15437     Add EVM board support.
15438
15439     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
15440     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15441     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
15442
15443 commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec
15444 Author: Dirk Behme <dirk.behme@googlemail.com>
15445 Date:   Wed Jan 28 21:39:57 2009 +0100
15446
15447     OMAP3: Add Overo board
15448
15449     Add Overo board support.
15450
15451     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
15452     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15453     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
15454
15455 commit f904cdbb68167c647887f19929ad295dbaac8862
15456 Author: Dirk Behme <dirk.behme@googlemail.com>
15457 Date:   Tue Jan 27 18:19:12 2009 +0100
15458
15459     OMAP3: Add common power code, README, and BeagleBoard
15460
15461     Add BeagleBoard support, common power code and README.
15462
15463     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
15464     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15465
15466 commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60
15467 Author: Kumar Gala <galak@kernel.crashing.org>
15468 Date:   Wed Jan 28 08:31:10 2009 -0600
15469
15470     85xx: Fix compile breakage with MPC8540EVAL
15471
15472     Configuring for MPC8540EVAL board...
15473     mpc8540eval.c: In function 'checkboard':
15474     mpc8540eval.c:53: error: invalid operands to binary /
15475     make[1]: *** [mpc8540eval.o] Error 1
15476
15477     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15478
15479 commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6
15480 Author: Bryan Wu <bryan.wu@analog.com>
15481 Date:   Sun Jan 18 23:04:27 2009 -0500
15482
15483     usb_scan_devices: fix output with no devices
15484
15485     We should check the return of usb_new_device() so that if no USB device is
15486     found, we print out the right message rather than always saying "new usb
15487     device found".
15488
15489     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
15490     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15491     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15492
15493 commit f1c1f540243438246aefb703fdcf16957e3a72e1
15494 Author: Stefan Roese <sr@denx.de>
15495 Date:   Thu Jan 22 10:11:21 2009 +0100
15496
15497     USB: Add high-speed (480Mb/s) to all USB related outputs
15498
15499     With this patch the USB related connection speed output ("usb tree" command and
15500     debug output) is now high-speed enabled.
15501
15502     This patch also fixes a compilation warning when debugging is enabled.
15503
15504     Signed-off-by: Stefan Roese <sr@denx.de>
15505     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15506
15507 commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb
15508 Author: Stefan Roese <sr@denx.de>
15509 Date:   Wed Jan 21 17:12:19 2009 +0100
15510
15511     USB: Add dcache support to the EHCI driver
15512
15513     This patch adds routines to handle (flush/invalidate) the dcache for the
15514     QH and qTD structures and data buffers. This is needed on platforms using
15515     this EHCI support with dcache enabled (like the MIPS VCT board port).
15516
15517     Signed-off-by: Stefan Roese <sr@denx.de>
15518     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15519
15520 commit 4e0ea0efc1e501186aca8577a4042fc6fa641602
15521 Author: Stefan Roese <sr@denx.de>
15522 Date:   Wed Jan 21 17:12:28 2009 +0100
15523
15524     USB: Add EHCI support for VCT EHCI controller
15525
15526     Signed-off-by: Stefan Roese <sr@denx.de>
15527     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15528
15529 commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d
15530 Author: Stefan Roese <sr@denx.de>
15531 Date:   Wed Jan 21 17:12:10 2009 +0100
15532
15533     USB: Add config option to call ehci_hcd_init() again after EHCI reset
15534
15535     This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET
15536     to call ehci_hcd_init() again after ehci_reset() is executed. This
15537     is needed for the upcoming VCT EHCI support which needs to re-init
15538     the hcd part again after the EHCI CMD_RESET is executed.
15539
15540     Signed-off-by: Stefan Roese <sr@denx.de>
15541     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15542
15543 commit 597eb28bd9691266b7b804364cda577cdb51d106
15544 Author: Stefan Roese <sr@denx.de>
15545 Date:   Wed Jan 21 17:12:01 2009 +0100
15546
15547     USB: Fix speed detection on EHCI cntr with root hub transaction translators
15548
15549     This patch fixes an issue that the speed of USB devices was not detected
15550     correctly on some EHCI controllers. This will be used on the upcoming VCT
15551     EHCI support.
15552
15553     Signed-off-by: Stefan Roese <sr@denx.de>
15554     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15555
15556 commit 20cc06611ea33fc0a67a5e56e6476379d2de3091
15557 Author: Thomas Abraham <t-abraham@ti.com>
15558 Date:   Sun Jan 4 09:41:20 2009 +0530
15559
15560     usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform
15561
15562     Enabling USB MSC support for DM6446 (TI DaVinci) platform in the
15563     configuration file.
15564
15565     Signed-off-by: Ravi Babu <ravibabu@ti.com>
15566     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
15567     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
15568     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
15569     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15570
15571 commit 538ef967715322f64ee08efa2296d9682111b014
15572 Author: Thomas Abraham <t-abraham@ti.com>
15573 Date:   Sun Jan 4 09:41:16 2009 +0530
15574
15575     usb : musb : Enabling DM6446 (TI DaVinci) USB module power
15576
15577     Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level
15578     controller hook up to USB core layer.
15579
15580     Signed-off-by: Ravi Babu <ravibabu@ti.com>
15581     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
15582     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
15583     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
15584     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15585
15586 commit e142e9f35f8ec61e74bf8019428b003f5070c33b
15587 Author: Thomas Abraham <t-abraham@ti.com>
15588 Date:   Sun Jan 4 09:41:13 2009 +0530
15589
15590     usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support
15591
15592     Adding DM6446 (TI DaVinci) platform specific USB functionality for
15593     USB Phy and VBUS initialization.
15594
15595     Signed-off-by: Ravi Babu <ravibabu@ti.com>
15596     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
15597     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
15598     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
15599     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15600
15601 commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da
15602 Author: Thomas Abraham <t-abraham@ti.com>
15603 Date:   Sun Jan 4 09:41:09 2009 +0530
15604
15605     usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM
15606
15607     Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci)
15608     platform.
15609
15610     Signed-off-by: Ravi Babu <ravibabu@ti.com>
15611     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
15612     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
15613     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
15614     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15615
15616 commit a142896934c755e679ba87e227a8e449f39b0012
15617 Author: Thomas Abraham <t-abraham@ti.com>
15618 Date:   Sun Jan 4 09:41:03 2009 +0530
15619
15620     usb : musb : Adding host controller driver for Mentor USB controller
15621
15622     Adding Mentor USB core functionality and Mentor USB Host controller
15623     functionality for Mentor USB OTG controller (musbhdrc).
15624
15625     Signed-off-by: Ravi Babu <ravibabu@ti.com>
15626     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
15627     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
15628     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
15629     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15630
15631 commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a
15632 Author: Mike Frysinger <vapier@gentoo.org>
15633 Date:   Thu Jan 1 18:27:27 2009 -0500
15634
15635     usb.h: use standard __LITTLE_ENDIAN from Linux headers
15636
15637     Rather than forcing people to define a custom "LITTLEENDIAN", just use the
15638     __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is
15639     already setting up.
15640
15641     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15642     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15643
15644 commit 7b6e31eb17e3ff76238a60803fc531517d516223
15645 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
15646 Date:   Wed Dec 31 10:33:56 2008 +0100
15647
15648     USB ehci ixp4xx support
15649
15650     Add USB ehci ixp4xx host controller. Test on ixdp465 board.
15651
15652     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
15653     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15654
15655 commit 1ed9f9adc88218841dfeb60b9094a5a548bff009
15656 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
15657 Date:   Wed Dec 31 10:33:22 2008 +0100
15658
15659     USB ehci remove infinite loop and use handshake function
15660
15661     USB ehci code cleanup. Use handshake instead of infinite while loop
15662     to check the STD_ASS status
15663
15664     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
15665     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15666
15667 commit 8fea2914ac974029b65926ef8247d908f84d202d
15668 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
15669 Date:   Wed Dec 31 10:32:41 2008 +0100
15670
15671     Add initial support for USB ehci pci
15672
15673     Add USB ehci pci support. This patch doesn't include any
15674     pci_ids and it is not tested on real hardware.
15675
15676     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
15677     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15678
15679 commit 14e4111cdab7e7738ff6a203d445e4d8377f058f
15680 Author: Bryan Wu <Bryan.Wu@analog.com>
15681 Date:   Thu Jan 1 19:48:07 2009 -0500
15682
15683     usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
15684
15685     The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4
15686     does not like to be reset, so check for it.
15687
15688     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
15689     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15690     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15691
15692 commit 1eb734fed3b79a5e6106dad16e88041894fdab30
15693 Author: Thomas Abraham <t-abraham@ti.com>
15694 Date:   Sun Jan 4 12:15:35 2009 +0530
15695
15696     usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure
15697
15698     This patch populates the 'priv' field of the USB keyboard device_t
15699     structure. The 'priv' field is populated with the address of the
15700     'struct usb_device' structure that represents the USB device.
15701
15702     The 'priv' field can then be used in the 'usb_event_poll' function to
15703     determine the USB device that requires to be polled. An
15704     example of its usage in 'usb_event_poll' function is as below.
15705
15706         device_t *dev;
15707         struct usb_device *usb_kbd_dev;
15708
15709         <snip>
15710
15711         dev = device_get_by_name("usbkbd");
15712         usb_kbd_dev = (struct usb_device *)dev->priv;
15713         iface = &usb_kbd_dev->config.if_desc[0];
15714
15715     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
15716     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15717
15718 commit 366523c26b6320af171459b19e6e0e9e3baa83ca
15719 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
15720 Date:   Thu Dec 18 10:05:37 2008 +0100
15721
15722     USB change speed
15723
15724     USB changes the speed according to the port status
15725
15726     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
15727     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15728
15729 commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df
15730 Author: Remy Böhmer <linux@bohmer.net>
15731 Date:   Sat Dec 13 22:51:58 2008 +0100
15732
15733     EHCI fix code and ixp4xx test.
15734     USB ehci configuration parameter:
15735
15736     #define CONFIG_CMD_USB          1
15737     #define CONFIG_USB_STORAGE      1
15738     #define CONFIG_USB_EHCI
15739     #define CONFIG_USB_EHCI_IXP4XX      1
15740     #define CONFIG_EHCI_IS_TDI  1
15741     #define CONFIG_EHCI_DESC_BIG_ENDIAN     1
15742     #define CONFIG_EHCI_MMIO_BIG_ENDIAN     1
15743     #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
15744     #define CONFIG_LEGACY_USB_INIT_SEQ      1
15745
15746     2 USB Device(s) found
15747            scanning bus for storage devices... 0 Storage Device(s) found
15748     => usb tree
15749
15750     Device Tree:
15751       1  Hub (1.5MBit/s, 0mA)
15752       |  u-boot EHCI Host Controller
15753       |
15754       |+-2  Mass Storage (12MBit/s, 100mA)
15755            Sony Storage Media 0C07040930296
15756
15757     =>
15758
15759     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
15760     Signed-off-by: Remy Böhmer <linux@bohmer.net>
15761
15762 commit 51ab142b8b546d5e627b2c8c36d0adae222565f7
15763 Author: michael <michael@panicking.retis>
15764 Date:   Thu Dec 11 13:43:55 2008 +0100
15765
15766     [PATCH] This patch add varius fix to the ehci.
15767     - fix ehci_readl, ehci_writel
15768     - introduce new define in ehci.h
15769     - introduce the handshake function for waiting on a register
15770     - fix usb_ehci_fsl with the new HC_LENGTH macro
15771
15772     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
15773     Signed-off-by: Remy Böhmer <linux@bohmer.net>
15774
15775 commit db63299b1dd2894ade542278210bccd046de6435
15776 Author: michael <michael@panicking.retis>
15777 Date:   Wed Dec 10 17:55:19 2008 +0100
15778
15779     [PATCH] Fix EHCI usb. I start to test on a
15780     IXP465 board and I find some errors in the code. This
15781     patch fix:
15782     - descriptor initizialization (config, interface and endpoint
15783       must be one next-to the other when the USB_DT_CONFIG message
15784       is send.
15785     - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN
15786       and the CONFIG_EHCI_MMIO_BIG_ENDIAN)
15787     - Introduce the linux version of the usb_config_descriptor and
15788       usb_interface descriptor. This descriptor does't contains
15789       u-boot extension.
15790
15791     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
15792     Signed-off-by: Remy Böhmer <linux@bohmer.net>
15793
15794 commit 6b92487dcf9afe83a3570153d66940fdb293be76
15795 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
15796 Date:   Fri Nov 28 13:22:09 2008 +0100
15797
15798     USB ehci freescale support
15799
15800     Add USB ehci freescale support
15801
15802     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
15803     Signed-off-by: Remy Böhmer <linux@bohmer.net>
15804
15805 commit aaf098cfeed04595d4c5100ffd39095d79edbf90
15806 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
15807 Date:   Fri Nov 28 13:20:46 2008 +0100
15808
15809     USB ehci core support
15810
15811     Add USB ehci core support
15812
15813     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
15814     Signed-off-by: Remy Böhmer <linux@bohmer.net>
15815
15816 commit 3e126484df7868e341545cce740b24b62b0cd3b7
15817 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
15818 Date:   Fri Nov 28 13:19:19 2008 +0100
15819
15820     Prepare USB layer for ehci
15821
15822     Prepare USB layer for ehci support
15823
15824     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
15825     Signed-off-by: Remy Böhmer <linux@bohmer.net>
15826
15827 commit a0cb3fc31e58996a1c5732715ac04159d4d284fd
15828 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
15829 Date:   Wed Dec 10 15:52:06 2008 +0100
15830
15831     USB storage cleanup patch
15832
15833     Cleanup usb storage
15834
15835     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
15836     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15837
15838 commit fe033ad6d0883063fe857237abb9436fab03208c
15839 Author: Mike Frysinger <vapier@gentoo.org>
15840 Date:   Sun Oct 12 06:02:55 2008 -0400
15841
15842     Blackfin: fixup misc warnings such as printf's and missing casts
15843
15844     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15845
15846 commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c
15847 Author: Mike Frysinger <vapier@gentoo.org>
15848 Date:   Sun Oct 12 22:09:26 2008 -0400
15849
15850     Blackfin: convert old boards to use COBJS-y Makefile style
15851
15852     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15853
15854 commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5
15855 Author: Mike Frysinger <vapier@gentoo.org>
15856 Date:   Sat Oct 11 22:38:37 2008 -0400
15857
15858     Blackfin: bf533-stamp: rewrite resource swap logic
15859
15860     The old swap function tended to clobber unrelated pins and screw up masks.
15861     Rewrite the thing from scratch so it only uses the resources it needs.
15862
15863     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15864
15865 commit 29d4ea0a9073c82469184331010136f52edf8db6
15866 Author: Mike Frysinger <vapier@gentoo.org>
15867 Date:   Sat Oct 11 22:08:42 2008 -0400
15868
15869     Blackfin: bootldr: implement BF53x/BF56x LDR loader
15870
15871     The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of
15872     arbitrary memory locations, so implement a basic one in software.
15873
15874     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15875
15876 commit 8b35e3aeff6c2d747c37697997b3f8a808432329
15877 Author: Mike Frysinger <vapier@gentoo.org>
15878 Date:   Sat Oct 11 22:05:42 2008 -0400
15879
15880     Blackfin: implement real write support for OTP
15881
15882     Now that real documentation has been released for the OTP interface and
15883     the on-chip ROM wrt writing/timings, implement support for reading/writing
15884     as well as dumping/locking.
15885
15886     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15887
15888 commit 9372c3214808fab545227d8d0f76b3bfcc6760ec
15889 Author: Mike Frysinger <vapier@gentoo.org>
15890 Date:   Sat Oct 11 22:04:05 2008 -0400
15891
15892     Blackfin: update on-chip ROM API
15893
15894     This brings the API for the on-chip ROM in line with the toolchain and
15895     hardware documentation.
15896
15897     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15898
15899 commit 7633903bff432ec7b27905dce7396958553f2be6
15900 Author: Mike Frysinger <vapier@gentoo.org>
15901 Date:   Sat Oct 11 21:52:17 2008 -0400
15902
15903     Blackfin: allow serial console to be disabled
15904
15905     Some devices have no UART device pulled out, so allow people to disable the
15906     driver completely in favor of other methods (like JTAG-console).
15907
15908     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15909
15910 commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45
15911 Author: Mike Frysinger <vapier@gentoo.org>
15912 Date:   Sat Oct 11 21:51:20 2008 -0400
15913
15914     Blackfin: support console-over-JTAG
15915
15916     The Blackfin JTAG has the ability to pass data via a back-channel without
15917     halting the processor.  Utilize that channel to emulate a console.
15918
15919     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15920
15921 commit cf8f2efb5f39c5225da92391c14a07eecbeca881
15922 Author: Mike Frysinger <vapier@gentoo.org>
15923 Date:   Sat Oct 11 21:49:06 2008 -0400
15924
15925     Blackfin: handle new anomalies with reset
15926
15927     Workaround fun new anomalies related to software reset of the processor.
15928
15929     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15930
15931 commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e
15932 Author: Mike Frysinger <vapier@gentoo.org>
15933 Date:   Sat Oct 11 21:44:00 2008 -0400
15934
15935     Blackfin: pass RETX to Linux
15936
15937     Make sure we save the value of RETX at power on and then pass it on to the
15938     kernel so that it can nicely debug a "double-fault-caused-a-reset" crash.
15939
15940     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15941
15942 commit b5eba3fafcccd1979380f12a256bd0e19be3d61e
15943 Author: Mike Frysinger <vapier@gentoo.org>
15944 Date:   Sat Oct 11 21:40:26 2008 -0400
15945
15946     Blackfin: clarify relocation comment during init
15947
15948     People often ask questions about the init process and when things go
15949     from flash to relocated base, so clarify the comments a bit.
15950
15951     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15952
15953 commit 95433f6d43ede6b40c1d900f3f704c839aa074f1
15954 Author: Mike Frysinger <vapier@gentoo.org>
15955 Date:   Sat Oct 11 21:23:41 2008 -0400
15956
15957     Blackfin: just set SP register directly during init
15958
15959     No need to set the SP register indirectly to the configured value when it
15960     can be set directly.
15961
15962     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15963
15964 commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c
15965 Author: Mike Frysinger <vapier@gentoo.org>
15966 Date:   Sat Oct 11 21:15:53 2008 -0400
15967
15968     Blackfin: add portmuxing for UARTs on the BF51x
15969
15970     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15971
15972 commit 4f6a313240c531042f16909a3a170ab047b95779
15973 Author: Mike Frysinger <vapier@gentoo.org>
15974 Date:   Sun Jun 1 01:26:29 2008 -0400
15975
15976     Blackfin: respect CONFIG_CLKIN_HALF
15977
15978     As pointed out by Ivan Koryakovskiy, the initialization code was not
15979     actually respecting the CONFIG_CLKIN_HALF option when configuring the
15980     PLL_CTL register.
15981
15982     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15983
15984 commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33
15985 Author: Mike Frysinger <vapier@gentoo.org>
15986 Date:   Sun Jun 1 01:21:34 2008 -0400
15987
15988     Blackfin: use common memcpy routine during init
15989
15990     Rather than using a local custom memcpy function, just call the existing
15991     optimized Blackfin version.
15992
15993     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15994
15995 commit 362c943347364e9373af4c5530778491ab56ec2e
15996 Author: Mike Frysinger <vapier@gentoo.org>
15997 Date:   Wed Apr 9 02:27:06 2008 -0400
15998
15999     Blackfin: set default boot SPI CS for BF538/BF539
16000
16001     The BF538/BF539 use CS2 for booting off of rather than CS1 like newer
16002     Blackfin parts.
16003
16004     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16005
16006 commit 74dde80bd5d55bc146630853ca191aaeea7c30f4
16007 Author: Mike Frysinger <vapier@gentoo.org>
16008 Date:   Wed Apr 9 02:20:59 2008 -0400
16009
16010     Blackfin: punt unused BF533-STAMP definitions
16011
16012     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16013
16014 commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26
16015 Author: Mike Frysinger <vapier@gentoo.org>
16016 Date:   Fri Apr 18 20:44:11 2008 -0400
16017
16018     Blackfin: resurrect BF533-STAMP video splash driver
16019
16020     This video driver used to live in the Blackfin cpu directory, but it was
16021     lost during the unification process.  This brings it back.
16022
16023     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16024
16025 commit a750d038f2548d846ea1e046d873dc932d041319
16026 Author: Mike Frysinger <vapier@gentoo.org>
16027 Date:   Wed Apr 9 02:31:29 2008 -0400
16028
16029     Blackfin: tighten up post memory coding style
16030
16031     No functional changes here; just cleanup code style a bit.
16032
16033     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16034
16035 commit 0649908f92c9bd214dd139aa3d4698c1654a45c6
16036 Author: Mike Frysinger <vapier@gentoo.org>
16037 Date:   Wed Apr 9 02:29:18 2008 -0400
16038
16039     Blackfin: bf537-stamp nand: fix more style errors in previous commit
16040
16041     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16042
16043 commit 41f3325ae9add641036d7cb362e884b698e53f07
16044 Author: Mike Frysinger <vapier@gentoo.org>
16045 Date:   Sat Oct 11 20:31:17 2008 -0400
16046
16047     Blackfin: drop dead/wrong debug code in initdram()
16048
16049     The DEBUG code in initdram() is quite old and was never really useful, so
16050     just drop it altogether.  Common Blackfin debug code does a better job.
16051
16052     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16053
16054 commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb
16055 Author: Mike Frysinger <vapier@gentoo.org>
16056 Date:   Sat Oct 11 20:30:28 2008 -0400
16057
16058     Blackfin: bf533-ezkit: shuffle flash defines a little
16059
16060     Some of the flash defines weren't in the correct location and caused build
16061     problems in some configurations, so let's move types and defines to better
16062     local locations.
16063
16064     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16065
16066 commit be853bf86b41e91f4c422f0f56fdf87ea3191266
16067 Author: Mike Frysinger <vapier@gentoo.org>
16068 Date:   Mon Oct 6 04:16:47 2008 -0400
16069
16070     Blackfin: overhaul i2c driver
16071
16072     The current Blackfin i2c driver does not work properly with certain devices
16073     due to it breaking up transfers incorrectly.  This is a rewrite of the
16074     driver and relocates it to the newer place in the source tree.
16075
16076     Also remove duplicated I2C speed defines in Blackfin board configs and
16077     disable I2C slave address usage since it isn't implemented.
16078
16079     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16080
16081 commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45
16082 Author: Mike Frysinger <vapier@gentoo.org>
16083 Date:   Mon Oct 6 04:00:07 2008 -0400
16084
16085     Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection
16086
16087     Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of
16088     128kB when setting up the default flash protection region for U-Boot
16089     itself.
16090
16091     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16092
16093 commit 78a0ba7dc24c9682371f6ee8549b569fb573a329
16094 Author: Mike Frysinger <vapier@gentoo.org>
16095 Date:   Mon Oct 6 03:57:39 2008 -0400
16096
16097     Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE
16098
16099     When setting up the global data, rather than relying on sizeof(), use the
16100     common CONFIG_SYS_GBL_DATA_SIZE define.
16101
16102     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16103
16104 commit 01815c2d06c5b838f2cd536703e47bd2c9148194
16105 Author: Mike Frysinger <vapier@gentoo.org>
16106 Date:   Mon Oct 6 03:52:24 2008 -0400
16107
16108     Blackfin: implement general support for CONFIG_STATUS_LED
16109
16110     Here are the Blackfin-specific and board-independent pieces for status leds.
16111
16112     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16113
16114 commit 6882b5a79a3247494b62c05015fa672557f1bfaa
16115 Author: Mike Frysinger <vapier@gentoo.org>
16116 Date:   Mon Oct 6 03:49:32 2008 -0400
16117
16118     Blackfin: do not init i2c in Blackfin board init
16119
16120     The common code takes care of calling i2c_init() when needed, so no point
16121     in us doing it as well.
16122
16123     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16124
16125 commit 1118ea73698eee6e72ef5cbfc00e41746040304f
16126 Author: Mike Frysinger <vapier@gentoo.org>
16127 Date:   Mon Oct 6 03:42:20 2008 -0400
16128
16129     Blackfin: bfin_mac: update port muxing
16130
16131     Adds support more Blackfin parts and fixes broken muxing for older ones.
16132
16133     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16134
16135 commit 05b75e48832fc4afeecf8e76d704349557dffa35
16136 Author: Mike Frysinger <vapier@gentoo.org>
16137 Date:   Mon Oct 6 03:35:44 2008 -0400
16138
16139     Blackfin: fix dcache handling when doing dma memcpy's
16140
16141     Our dcache invalidate function doesn't just invalidate, it also flushes.
16142     So rename the function accordingly and fix the dma_memcpy() function so it
16143     doesn't inadvertently corrupt the data destination.
16144
16145     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16146
16147 commit 68e5632494168095d75f120af70043b68afd2476
16148 Author: Mike Frysinger <vapier@gentoo.org>
16149 Date:   Thu Aug 7 18:56:56 2008 -0400
16150
16151     Blackfin: dont generate ldrs with --force
16152
16153     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16154
16155 commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8
16156 Author: Mike Frysinger <vapier@gentoo.org>
16157 Date:   Thu Aug 7 18:55:30 2008 -0400
16158
16159     Blackfin: pass --bmode/--initcode when creating ldr
16160
16161     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16162
16163 commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a
16164 Author: Mike Frysinger <vapier@gentoo.org>
16165 Date:   Thu Aug 7 18:39:27 2008 -0400
16166
16167     Blackfin: minimize time cache is turned off when replacing cplb entries
16168
16169     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16170
16171 commit 21d631360430cf0ae9099612273cd4de28911ba9
16172 Author: Mike Frysinger <vapier@gentoo.org>
16173 Date:   Thu Aug 7 15:31:13 2008 -0400
16174
16175     Blackfin: split cache handling out of dma_memcpy()
16176
16177     Creating a new dma_memcpy() function that skips all cache checks allows us
16178     to use the function in very early init where the cache is not yet setup.
16179
16180     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16181
16182 commit d31eb38512bed377d5d4b3c696662e52120a2e4c
16183 Author: Mike Frysinger <vapier@gentoo.org>
16184 Date:   Thu Aug 7 15:30:49 2008 -0400
16185
16186     Blackfin: abort dma_memcpy() for L1 scratchpad
16187
16188     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16189
16190 commit 81b799add709177e838466461f7b9989488b0fd5
16191 Author: Mike Frysinger <vapier@gentoo.org>
16192 Date:   Thu Aug 7 15:27:52 2008 -0400
16193
16194     Blackfin: rename bootm.c to boot.c
16195
16196     The boot file contains functions for more than just "bootm", so rename it
16197     accordingly.
16198
16199     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16200
16201 commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091
16202 Author: Mike Frysinger <vapier@gentoo.org>
16203 Date:   Thu Aug 7 13:22:37 2008 -0400
16204
16205     Blackfin: set more sane default board config values
16206
16207     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16208
16209 commit 36cd52a00794fb15ffab05d640acca92d7482993
16210 Author: Mike Frysinger <vapier@gentoo.org>
16211 Date:   Thu Aug 7 15:24:59 2008 -0400
16212
16213     Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
16214
16215     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16216
16217 commit c8054bc12e00669bd7588f2b30fef48aa94babac
16218 Author: Mike Frysinger <vapier@gentoo.org>
16219 Date:   Thu Aug 7 13:21:27 2008 -0400
16220
16221     Blackfin: add bit defines for DDR parts
16222
16223     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16224
16225 commit 154502fe0796f3b7a4698378c5d2080ae28a9782
16226 Author: Mike Frysinger <vapier@gentoo.org>
16227 Date:   Thu Aug 7 13:21:11 2008 -0400
16228
16229     Blackfin: add defines to describe active bootrom behavior
16230
16231     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16232
16233 commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2
16234 Author: Kim Phillips <kim.phillips@freescale.com>
16235 Date:   Tue Jan 27 16:03:53 2009 -0600
16236
16237     mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build
16238
16239     extend commit c70564e6b1bd08f3230182392238907f3531a87e
16240     "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency
16241     to the simpc8313 build and fix this:
16242
16243     ...Large Page NAND...Configuring for SIMPC8313 board...
16244     nand_boot_fsl_elbc.o: In function `nand_boot':
16245     nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache'
16246     make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1
16247     make: *** [nand_spl] Error 2
16248
16249     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16250
16251 commit 54a7cc4912feefa45be961cc47cc159563725d2f
16252 Author: Wolfgang Denk <wd@denx.de>
16253 Date:   Wed Jan 28 09:25:31 2009 +0100
16254
16255     mpc8536ds.c: include sata.h to for needed function prototypes
16256
16257     Signed-off-by: Wolfgang Denk <wd@denx.de>
16258
16259 commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8
16260 Author: Peter Tyser <ptyser@xes-inc.com>
16261 Date:   Tue Jan 27 18:03:12 2009 -0600
16262
16263     Command usage cleanup
16264
16265     Remove command name from all command "usage" fields and update
16266     common/command.c to display "name - usage" instead of
16267     just "usage". Also remove newlines from command usage fields.
16268
16269     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16270
16271 commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b
16272 Author: Peter Tyser <ptyser@xes-inc.com>
16273 Date:   Tue Jan 27 18:03:11 2009 -0600
16274
16275     amcc: Clean up command usage output
16276
16277     Update taihu and taishan commands to use cmd_usage() function
16278     to display usage messages.
16279
16280     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16281
16282 commit 62c3ae7c6ef215b1afa614abdf61acf077752207
16283 Author: Peter Tyser <ptyser@xes-inc.com>
16284 Date:   Tue Jan 27 18:03:10 2009 -0600
16285
16286     Standardize command usage messages with cmd_usage()
16287
16288     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16289
16290 commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70
16291 Author: Peter Tyser <ptyser@xes-inc.com>
16292 Date:   Tue Jan 27 18:03:09 2009 -0600
16293
16294     pcs440ep: Clean up led command definition
16295
16296     The pcs440ep's led command usage formatting is non-standard.  It
16297     was made standard in preparation for larger command usage updates.
16298
16299     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16300
16301 commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62
16302 Author: Peter Tyser <ptyser@xes-inc.com>
16303 Date:   Tue Jan 27 18:03:08 2009 -0600
16304
16305     Clean up diufb command definitions
16306
16307     The diufb command usage formatting is non-standard.  It was
16308     made standard in preparation for larger command usage updates.
16309
16310     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16311
16312 commit 6450a8485836fc80615ae6de6a864c33369b44f5
16313 Author: Wolfgang Denk <wd@denx.de>
16314 Date:   Wed Jan 28 00:29:26 2009 +0100
16315
16316     Update CHANGELOG, tiny coding style cleanup.
16317
16318     Signed-off-by: Wolfgang Denk <wd@denx.de>
16319
16320 commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
16321 Author: Mike Frysinger <vapier@gentoo.org>
16322 Date:   Tue Jan 27 16:12:21 2009 -0500
16323
16324     SATA: do not auto-initialize during boot
16325
16326     Rather than have the board code initialize SATA automatically during boot,
16327     make the user manually run "sata init".  This brings the SATA subsystem in
16328     line with common U-Boot policy.
16329
16330     Rather than having a dedicated weak function "is_sata_supported", people
16331     can override sata_initialize() to do their weird board stuff.  Then they
16332     can call the actual __sata_initialize().
16333
16334     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16335
16336 commit 50970839712dda35399e2fa83fe818df9354d618
16337 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16338 Date:   Mon Jan 26 08:45:14 2009 -0500
16339
16340     part_efi: Fix partition size calculation due to inclusive ending LBA.
16341
16342     The ending LBA is inclusive. Hence, the partition size should be
16343     ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
16344
16345     This is confirmed against the results from the parted tool.
16346     (e.g. use parted /dev/sda -s unit S print) and observe the size.
16347
16348     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16349
16350 commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
16351 Author: Tomasz Figa <tomasz.figa@gmail.com>
16352 Date:   Tue Dec 30 18:35:57 2008 +0100
16353
16354     jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
16355
16356     This patch fixes a bug (?) introduced after inclusion of the new
16357     JFFS2 code.
16358
16359     When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
16360     fill in part->sector_size (keeping it as 0), but a correct value is
16361     needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
16362     to be in the same place of the memory, what obviously means
16363     impossibility to use the JFFS2 partition.
16364
16365     This problem is fixed in this patch by including sector size
16366     calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
16367
16368     Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
16369
16370 commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
16371 Author: Mike Frysinger <vapier@gentoo.org>
16372 Date:   Tue Dec 30 02:59:25 2008 -0500
16373
16374     saveenv: standardize enablement
16375
16376     Rather than special casing each environment type for enabling the saveenv
16377     command, have them all behave the same.  This avoids bitrot as new env
16378     sources are added/removed.
16379
16380     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16381
16382 commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
16383 Author: Andrew Dyer <adyer@righthandtech.com>
16384 Date:   Mon Dec 29 17:36:01 2008 -0600
16385
16386     soft_i2c.c add option for repeated start in i2c_read()
16387
16388     This patch adds a #define to optionally change the behaviour of
16389     i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
16390     stop-start between sending the device address pointer write and
16391     reading back the data.  The current behaviour is retained as the
16392     default.
16393
16394     While most devices will work either way, I have a smart battery(*)
16395     that requires repeated start, and someone at some point found a
16396     device that required a stop-start.
16397
16398     (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
16399
16400     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
16401
16402 commit 3429071700963ca2f944c51d695a7481af0cee33
16403 Author: Wolfgang Denk <wd@denx.de>
16404 Date:   Tue Jan 27 22:07:14 2009 +0100
16405
16406     {delta,zylonite}/lowlevel_init.S: fix typo
16407
16408     Commit 9d803d8c mistakenly changed some constants
16409     from 0x300 into 300 - this patch fixes it.
16410
16411     Pointed out by Tom Evans <tom@ceos.com.au>, see
16412     http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
16413     details.
16414
16415     Signed-off-by: Wolfgang Denk <wd@denx.de>
16416
16417 commit 1bc434373013af241835c14011ac3f291dccbf53
16418 Author: Stefan Althoefer <stefan.althoefer@web.de>
16419 Date:   Sat Dec 20 19:40:41 2008 +0100
16420
16421     drivers/net/e1000.c: missing terminator for supported devices
16422
16423     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
16424
16425 commit 65f7d41031a70b1649b35020995c505edca91533
16426 Author: Wolfgang Denk <wd@denx.de>
16427 Date:   Tue Jan 27 21:36:28 2009 +0100
16428
16429     fat.c: fix warning: array subscript is above array bounds
16430
16431     Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
16432
16433     Signed-off-by: Wolfgang Denk <wd@denx.de>
16434
16435 commit 107b801cf3fe39612d69d70581ebc3bf5e215554
16436 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16437 Date:   Fri Jan 2 15:11:41 2009 +0100
16438
16439     Fix gunzip in case of insufficient output buffer
16440
16441     U-Boot's gunzip() function does not handle the return code
16442     of zlib's inflate() function correctly. gunzip() is implemented
16443     to uncompress all input data in one run. So the correct return
16444     code for the good case is Z_STREAM_END. In case of insufficient
16445     output buffer memory inflate returns Z_OK. For gunzip() this
16446     is an error.
16447
16448     It also makes sense to me to call inflateEnd() also in case
16449     of an error.
16450
16451     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16452
16453 commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
16454 Author: Stefan Roese <sr@denx.de>
16455 Date:   Wed Jan 21 17:25:01 2009 +0100
16456
16457     MIPS: Add VCT board series support (Part 3/3)
16458
16459     Signed-off-by: Stefan Roese <sr@denx.de>
16460
16461 commit ae691e5719c48f1d2826cb72722497d1d162765b
16462 Author: Stefan Roese <sr@denx.de>
16463 Date:   Wed Jan 21 17:24:49 2009 +0100
16464
16465     MIPS: Add VCT board series support (Part 2/3)
16466
16467     Signed-off-by: Stefan Roese <sr@denx.de>
16468
16469 commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
16470 Author: Stefan Roese <sr@denx.de>
16471 Date:   Wed Jan 21 17:24:39 2009 +0100
16472
16473     MIPS: Add VCT board series support (Part 1/3)
16474
16475     Signed-off-by: Stefan Roese <sr@denx.de>
16476
16477 commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
16478 Author: Stefan Roese <sr@denx.de>
16479 Date:   Wed Jan 21 17:20:20 2009 +0100
16480
16481     MIPS: Add flush_dcache_range() and invalidate_dcache_range()
16482
16483     This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
16484     Those functions are needed for the upcoming dcache support for the USB
16485     EHCI driver. I chose this API because those cache handling functions are
16486     already present in the PPC architecture.
16487
16488     Signed-off-by: Stefan Roese <sr@denx.de>
16489     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16490
16491 commit de832a99414ff06a4b2cdc9f5280b387da039834
16492 Author: Stefan Roese <sr@denx.de>
16493 Date:   Mon Jan 26 10:05:20 2009 +0100
16494
16495     nand_spl: Fix compile problem with board_nand_init() prototype
16496
16497     This patch removes the now obsolete and additionally wrongly defined
16498     board_nand_init() prototype from nand_spl/nand_boot.c.
16499
16500     Signed-off-by: Stefan Roese <sr@denx.de>
16501     Signed-off-by: Scott Wood <scottwood@freescale.com>
16502
16503 commit e8eac437189430d8e04a5d254ed92c58bc534a79
16504 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16505 Date:   Wed Jan 14 08:44:26 2009 -0500
16506
16507     CFI: Add geometry reversal for STMicro M29W320ET
16508
16509     Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
16510
16511     Modeled after flash_fixup_amd, this patch handles the geometry reversal
16512     or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
16513     Since I cannot test all STM's chips, the detection is implemented as
16514     narrow as possible for now.
16515
16516     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16517     Signed-off-by: Stefan Roese <sr@denx.de>
16518
16519 commit 0f8e851e897b535959a0781171910cd97f33c30c
16520 Author: Jens Gehrlein <sew_s@tqs.de>
16521 Date:   Tue Dec 16 17:25:55 2008 +0100
16522
16523     CFI: increase performance of function find_sector()
16524
16525     Tested on TQM5200S-BD with Samsung K8P2815UQB
16526
16527     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
16528     Signed-off-by: Stefan Roese <sr@denx.de>
16529
16530 commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
16531 Author: Jens Gehrlein <sew_s@tqs.de>
16532 Date:   Tue Dec 16 17:25:54 2008 +0100
16533
16534     CFI: avoid redundant function call in single word programming mode
16535
16536     The function find_sector() doesn't need to be called twice in
16537     the case of AMD command set.
16538     Tested on TQM5200S-BD with Samsung K8P2815UQB.
16539
16540     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
16541     Signed-off-by: Stefan Roese <sr@denx.de>
16542
16543 commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
16544 Author: Stefan Roese <sr@denx.de>
16545 Date:   Mon Jan 26 10:15:23 2009 +0100
16546
16547     ppc4xx: Remove compilation warning in gdppc440etc.c
16548
16549     Signed-off-by: Stefan Roese <sr@denx.de>
16550
16551 commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
16552 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16553 Date:   Fri Jan 2 12:19:47 2009 +0100
16554
16555     ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
16556
16557     Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
16558     Either they define or undef it. Because it's not used in any source
16559     files this patch removes any references to it.
16560
16561     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16562     Signed-off-by: Stefan Roese <sr@denx.de>
16563
16564 commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
16565 Author: Dirk Eibach <eibach@gdsys.de>
16566 Date:   Tue Dec 9 13:12:40 2008 +0100
16567
16568     ppc4xx: Add GDsys PowerPC 440 ETX board support.
16569
16570     Board support for the Guntermann & Drunck PowerPC 440 ETX module.
16571     Based on the AMCC Yosemite board support by Stefan Roese.
16572
16573     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
16574     Signed-off-by: Stefan Roese <sr@denx.de>
16575
16576 commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
16577 Author: Dirk Eibach <eibach@gdsys.de>
16578 Date:   Tue Dec 9 11:00:07 2008 +0100
16579
16580     ppc4xx: Improve DDR autodetect
16581
16582     Added support for a second memory bank to DDR autodetection for 440
16583     platforms.
16584     Made hardcoded values configurable.
16585
16586     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
16587     Signed-off-by: Stefan Roese <sr@denx.de>
16588
16589 commit 71a040f4f556cca4d30f06805d82e717b3ef1020
16590 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16591 Date:   Fri Nov 21 12:06:26 2008 +0900
16592
16593     sh: sh7763rdp: Update sh7763rdp config
16594
16595     Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API.
16596
16597     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16598     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16599
16600 commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56
16601 Author: Gary Jennejohn <garyj@denx.de>
16602 Date:   Thu Nov 20 12:28:38 2008 +0100
16603
16604     mgcoge make ether_scc.c work with CONFIG_NET_MULTI
16605
16606     This change is needed for mgcoge because it uses two ethernet drivers.
16607
16608     Add a check for the presence of the PIGGY board on mgcoge.  Without this
16609     board networking cannot work and the initialization must be aborted.
16610
16611     Only allocate rtx once to prevent DPRAM exhaustion.
16612
16613     Initialize ether_scc.c and the keymile-specific HDLC driver (to be added
16614     soon) in eth.c.
16615
16616     Signed-off-by: Gary Jennejohn <garyj@denx.de>
16617     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16618
16619 commit bd3980cc095af1728b994cdd8bf1ac430b6289e6
16620 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16621 Date:   Fri Nov 21 12:04:18 2008 +0900
16622
16623     sh: sh_eth: Change new network API
16624
16625     sh_eth used old network API. This patch changed new API.
16626
16627     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16628     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16629
16630 commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6
16631 Author: Stefan Roese <sr@denx.de>
16632 Date:   Wed Nov 12 13:31:02 2008 +0100
16633
16634     net: smc911x: Make register read/write functions weak
16635
16636     This patch changes the reg_read/_write to smc911x_reg_read/_write
16637     and defines then as weak so that they can be overridden by board
16638     specific version.
16639
16640     This will be used by the upcoming VCTH board support.
16641
16642     Signed-off-by: Stefan Roese <sr@denx.de>
16643     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16644
16645 commit 8b69b563039989885969d24465c56f8ac4c07c4c
16646 Author: Heiko Schocher <hs@denx.de>
16647 Date:   Thu Nov 20 09:57:14 2008 +0100
16648
16649     powerpc: net: support for the SMSC LAN8700 PHY
16650
16651     Signed-off-by: Heiko Schocher <hs@denx.de>
16652     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16653
16654 commit d5254f149da9e6cd649d887b042ce577ef3ba78d
16655 Author: Alessandro Rubini <rubini@unipv.it>
16656 Date:   Sat Jan 24 18:10:37 2009 +0100
16657
16658     Initial support for Nomadik 8815 development board
16659
16660     The NMDK8815 board is distributed by ST Microelectornics.
16661     Other (proprietary) code must be run to unlock the CPU before
16662     U-Boot runs. doc/README.nmdk8815 outlines the boot sequence.
16663
16664     This is the initial port, with basic infrastructure and
16665     a working serial port.
16666
16667     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
16668     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
16669     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16670
16671 commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47
16672 Author: Dirk Behme <dirk.behme@googlemail.com>
16673 Date:   Sun Dec 14 09:47:18 2008 +0100
16674
16675     OMAP3: Add I2C support
16676
16677     Add I2C support.
16678
16679     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16680
16681 commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b
16682 Author: Dirk Behme <dirk.behme@googlemail.com>
16683 Date:   Sun Dec 14 09:47:17 2008 +0100
16684
16685     OMAP3: Add MMC support
16686
16687     Add MMC support.
16688
16689     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16690
16691 commit 12201a13547ec22ddcdae278e74465e54a3be60c
16692 Author: Dirk Behme <dirk.behme@googlemail.com>
16693 Date:   Sun Dec 14 09:47:16 2008 +0100
16694
16695     OMAP3: Add NAND support
16696
16697     Add NAND support.
16698
16699     Signed-off-by: Nishanth Menon <nm@ti.com>
16700     Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
16701     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16702
16703 commit 91eee546737ae21d930af479530997174c342b13
16704 Author: Dirk Behme <dirk.behme@googlemail.com>
16705 Date:   Sun Dec 14 09:47:15 2008 +0100
16706
16707     OMAP3: Add common board, interrupt and system info
16708
16709     Add common board, interrupt and system info code.
16710
16711     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16712
16713 commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8
16714 Author: Dirk Behme <dirk.behme@googlemail.com>
16715 Date:   Sun Dec 14 09:47:14 2008 +0100
16716
16717     OMAP3: Add common clock, memory and low level code
16718
16719     Add common clock, memory and low level code
16720
16721     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16722
16723 commit 0b02b184003e6a5023e05d5f31de54db279b1431
16724 Author: Dirk Behme <dirk.behme@googlemail.com>
16725 Date:   Sun Dec 14 09:47:13 2008 +0100
16726
16727     OMAP3: Add common cpu and start code
16728
16729     Add common cpu and start code.
16730
16731     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16732
16733 commit a8b6450546cd507d331b8fde384791d84bde5651
16734 Author: Dirk Behme <dirk.behme@googlemail.com>
16735 Date:   Sun Dec 14 09:47:12 2008 +0100
16736
16737     OMAP3: Add OMAP3, memory and function prototype headers
16738
16739     Add OMAP3, memory and function prototype header files for OMAP3.
16740
16741     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16742
16743 commit 2c803210a464abbac35752ca1c737514360b4c32
16744 Author: Dirk Behme <dirk.behme@googlemail.com>
16745 Date:   Sun Dec 14 09:47:11 2008 +0100
16746
16747     OMAP3: Add pin mux, clock and cpu headers
16748
16749     Add pin mux, clock and cpu header files for OMAP3.
16750
16751     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16752
16753 commit 685533646f4ff17a84ec9265cabb60af325b6e1f
16754 Author: Maxim Artamonov <scn1874@yandex.ru>
16755 Date:   Wed Dec 3 05:38:17 2008 +0300
16756
16757     bugfix for i.mx31 CCM_UPCTL reg
16758
16759     Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru>
16760
16761 commit 24113a44ed5cd3257a0237c3961e121812fca6db
16762 Author: Mike Frysinger <vapier@gentoo.org>
16763 Date:   Tue Dec 30 03:15:38 2008 -0500
16764
16765     easylogo: add optional gzip support
16766
16767     Some images can be quite large, so add an option to compress the
16768     image data with gzip in the U-Boot image. Then at runtime, the
16769     board can decompress it with the normal zlib functions.
16770
16771     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16772
16773 commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
16774 Author: Bryan Wu <bryan.wu@analog.com>
16775 Date:   Fri Jan 2 20:47:45 2009 -0500
16776
16777     fat: fix unaligned errors
16778
16779     A couple of buffers in the fat code are declared as an array of bytes.
16780     But it is then cast up to a structure with 16bit and 32bit members.
16781     Since GCC assumes structure alignment here, we have to force the
16782     buffers to be aligned according to the structure usage.
16783
16784     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
16785     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16786
16787 commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
16788 Author: Brad Bozarth <bflinux@yumbrad.com>
16789 Date:   Thu Jan 1 22:45:47 2009 -0500
16790
16791     spi flash: fix crash due to spi flash miscommunication
16792
16793     Higher spi flash layers expect to be given back a pointer that was
16794     malloced so that it can free the result, but the lower layers return
16795     a pointer that is in the middle of the malloced memory. Reorder the
16796     members of the lower spi structures so that things work out.
16797
16798     Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
16799     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16800     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16801
16802 commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
16803 Author: Yuri Tikhonov <yur@emcraft.com>
16804 Date:   Sat Dec 20 14:54:21 2008 +0300
16805
16806     FPU POST: fix warnings when building with 2.18 binutils
16807
16808     When compile u-boot with the 2.18 binutils the following
16809     warning messages for each object file in post/lib_ppc/fpu/ is
16810     produced at the linking stage:
16811
16812     post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
16813     ...
16814
16815     This is because of the fact that, in general, the soft-float and
16816     hard-float ABIs are incompatible; the 2.18 binutils do checking
16817     of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
16818     produce the worning like above if these are not compatible.
16819
16820     The incompatibility of ABIs is concerned only the float values:
16821     e.g. the soft-float ABI assumes the float argument passing in the
16822     pair of rX registers, and the hard-float ABI assumes passing of
16823     the float argument in the fX register. When we don't pass the float
16824     arguments between the functions compiled with different floatness,
16825     then such an application will work correctly.
16826     This is the case for the FPU POST: u-boot (compiled with soft-float)
16827     doesn't pass to (and doesn't get from) the FPU POST functions any
16828     floats; there are no functions exported from the post/lib_ppc/fpu/
16829     objects which would work with float parameters/returns too. So, we
16830     can reassure the linker not to worry about the difference in ABI
16831     attributes of linking files just by setting the 'soft-float'
16832     attribute for the objects in post/lib_ppc/fpu. And this patch does
16833     this.
16834
16835     Also, to avoid passing both soft- and hard-float options in CFLAGS
16836     when compiling the files from post/lib_ppc/fpu (which is OK, but
16837     looks rather dirty) this patch removes the soft-float string from
16838     CFLAGS in post/lib_ppc/fpu/Makefile.
16839
16840     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
16841
16842 commit a7c9310457e85b4598abe5b304108edf11332e2f
16843 Author: Peter Tyser <ptyser@xes-inc.com>
16844 Date:   Wed Dec 17 16:36:22 2008 -0600
16845
16846     Add support for Maxim's DS4510 I2C device
16847
16848     Initial support for the DS4510, a CPU supervisor with
16849     integrated EEPROM, SRAM, and 4 programmable non-volatile
16850     GPIO pins. The CONFIG_DS4510 define enables support
16851     for the device while the CONFIG_CMD_DS4510 define
16852     enables the ds4510 command. The additional
16853     CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
16854     CONFIG_DS4510_RST defines add additional sub-commands
16855     to the ds4510 command when defined.
16856
16857     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16858
16859 commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
16860 Author: Dirk Eibach <eibach@gdsys.de>
16861 Date:   Tue Dec 16 14:51:56 2008 +0100
16862
16863     common: Iteration limit for memory test.
16864
16865     The iteration limit is passed to mtest as a fourth parameter:
16866     [start [end [pattern [iterations]]]]
16867     If no fourth parameter is supplied, there is no iteration limit and the
16868     test will loop forever.
16869
16870     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
16871
16872 commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
16873 Author: Stefan Roese <sr@denx.de>
16874 Date:   Mon Dec 15 15:40:12 2008 +0100
16875
16876     serial: Rename driver vcth to vct to support other board variants
16877
16878     Moved driver vcth.c to vct.c to better reflect the VCT board series.
16879     This driver is now used by the VCT platforms:
16880
16881     vct_premium
16882     vct_platinum
16883     vct_platinumsvc
16884
16885     Signed-off-by: Stefan Roese <sr@denx.de>
16886
16887 commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
16888 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16889 Date:   Fri Dec 12 00:45:27 2008 +0900
16890
16891     nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
16892
16893     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16894
16895 commit c3284b030b1cd492b4f46c576aea01bef258599d
16896 Author: Peter Korsgaard <jacmet@sunsite.dk>
16897 Date:   Wed Dec 10 16:24:16 2008 +0100
16898
16899     common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
16900
16901     Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
16902     similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
16903     !CONFIG_AUTOBOOT_KEYED case.
16904
16905     Do this by reversing the loop so we do at least one iteration before
16906     checking for timeout.
16907
16908     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
16909
16910 commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
16911 Author: Niklaus Giger <niklaus.giger@netstal.com>
16912 Date:   Mon Dec 8 17:24:08 2008 +0100
16913
16914     Added legacy flash ST Micro M29W040B
16915
16916 commit 626d07348e5f9f302f4ea182161a89f7362a0488
16917 Author: Graeme Russ <graeme.russ@gmail.com>
16918 Date:   Mon Dec 8 20:04:51 2008 +1100
16919
16920     Fixed off-by-one errors in lib_m68k/interrupts.c
16921
16922     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
16923
16924 commit a5989c42ae5e295f274a795c426c47819bbdbfda
16925 Author: Graeme Russ <graeme.russ@gmail.com>
16926 Date:   Sun Dec 7 10:29:05 2008 +1100
16927
16928     Removed all references to CONFIG_SYS_RESET_GENERIC
16929
16930     Generic i386 reset - #define made redundant by weak function
16931
16932     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
16933
16934 commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
16935 Author: Graeme Russ <graeme.russ@gmail.com>
16936 Date:   Sun Dec 7 10:29:04 2008 +1100
16937
16938     Remove #ifdef CONFIG_SC520 in source code
16939
16940     CONFIG_SC520 is now used for conditional compile
16941
16942     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
16943
16944 commit ead056bc206f6b7ee6dc98766678b64635ea20b8
16945 Author: Graeme Russ <graeme.russ@gmail.com>
16946 Date:   Sun Dec 7 10:29:03 2008 +1100
16947
16948     Added MMCR reset functionality
16949
16950     Reset function specific to AMD SC520 microcontroller - Is more of a
16951     'hard reset' that the triple fault.
16952
16953     Requires CONFIG_SYS_RESET_SC520 to be defined in config
16954
16955     I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
16956     but ld requires that a object file in a library arhive MUST contain
16957     at least one function which does not override a weak function (and is
16958     called from outside the object file) in order for that object file to
16959     be extracted from the archive. This would be the only function on the
16960     new file, and hence, will never get linked in.
16961
16962     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
16963
16964 commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
16965 Author: Graeme Russ <graeme.russ@gmail.com>
16966 Date:   Sun Dec 7 10:29:02 2008 +1100
16967
16968     Moved generic (triple fault) reset code
16969
16970     Moved from interrupts.c to cpu.c and made into a weak function to
16971     allow vendor specific override
16972
16973     Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
16974     added to the vendor specific code without the need to remember to
16975     #undef usage of the generic method and if you forget to include your
16976     custom reset method, you will always get the default.
16977
16978     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
16979
16980 commit 9933d609020c297788f53f334c8465fa7a99b10c
16981 Author: Graeme Russ <graeme.russ@gmail.com>
16982 Date:   Sun Dec 7 10:29:01 2008 +1100
16983
16984     Moved definition of set_vector() to new header file
16985
16986     This allows for future tidy ups and functionality that will require
16987     set_vector ()
16988
16989     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
16990
16991 commit 407976185e0dda2c90e89027121a1071b9c77bfb
16992 Author: Graeme Russ <graeme.russ@gmail.com>
16993 Date:   Sun Dec 7 10:29:00 2008 +1100
16994
16995     Moved sc520 specific code into new cpu/i386/sc520 folder
16996
16997     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
16998     Signed-off-by: Wolfgang Denk <wd@denx.de>
16999
17000 commit 85ffbbd51914925a542d8528be7f072e5ab02157
17001 Author: Graeme Russ <graeme.russ@gmail.com>
17002 Date:   Sun Dec 7 10:28:58 2008 +1100
17003
17004     Renamed cpu/i386/reset.S to resetvec.S
17005
17006     Brings i386 in line with other CPUs with a reset vector and frees up reset.c
17007     for CPU reset functions
17008
17009     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17010
17011 commit a3f4c123f569474e80ea012b8db0de46afdb6443
17012 Author: Wolfgang Denk <wd@denx.de>
17013 Date:   Sat Jan 24 01:01:49 2009 +0100
17014
17015     Makefile: keep lists sorted.
17016
17017     Signed-off-by: Wolfgang Denk <wd@denx.de>
17018
17019 commit c620c01e96814558470698ed5cab1bf2f504d1b5
17020 Author: Graeme Russ <graeme.russ@gmail.com>
17021 Date:   Sun Dec 7 10:28:57 2008 +1100
17022
17023     Added initial eNET board support
17024
17025     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17026
17027 commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
17028 Author: Gary Jennejohn <garyj@denx.de>
17029 Date:   Thu Nov 20 11:37:26 2008 +0100
17030
17031     POWERPC 82xx: add the SCC as an HDLC controller
17032
17033     Right now this is only used by keymile.
17034
17035     Signed-off-by: Gary Jennejohn <garyj@denx.de>
17036
17037 commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
17038 Author: Heiko Schocher <hs@denx.de>
17039 Date:   Thu Nov 20 09:59:09 2008 +0100
17040
17041     powerpc, keymile boards: extract identical config options
17042
17043     This patch extracts the identical config options for the
17044     keymile boards mgcoge, mgsuvd and kmeter1 in a new
17045     common config file keymile-common.h.
17046
17047     Signed-off-by: Heiko Schocher <hs@denx.de>
17048
17049 commit 210c8c00aad3328145204adab434bb7d70b06b75
17050 Author: Heiko Schocher <hs@denx.de>
17051 Date:   Fri Nov 21 08:29:40 2008 +0100
17052
17053     powerpc: keymile: Add a check for the PIGGY debug board
17054
17055     Check the presence of the PIGGY on the keymile boards mgcoge,
17056     mgsuvd and kmeter1. If the PIGGY is not present, dont register
17057     this Ethernet device.
17058
17059     Signed-off-by: Heiko Schocher <hs@denx.de>
17060     Acked-by: Ben Warren <biggerbadderben@gmail.com>
17061
17062 commit de0443614af4d16675ab436665aeb11ddc9f7214
17063 Author: Heiko Schocher <hs@denx.de>
17064 Date:   Thu Nov 20 09:57:47 2008 +0100
17065
17066     powerpc: 83xx: add support for the kmeter1 board
17067
17068     This patch adds support for the kmeter1 board from Keymile,
17069     based on a Freescale MPC8360 CPU.
17070
17071     - serial console on UART 1
17072     - 256 MB DDR2 RAM
17073     - 64 MB NOR Flash
17074     - Ethernet RMII Mode over UCC4
17075     - PHY SMSC LAN8700
17076
17077     Signed-off-by: Heiko Schocher <hs@denx.de>
17078
17079 commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
17080 Author: Sergei Poselenov <sposelenov@emcraft.com>
17081 Date:   Tue Nov 4 13:51:18 2008 +0100
17082
17083     Add a do_div() wrapper macro, lldiv().
17084
17085     Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
17086     the dividend and returns the result of division, so it is useful
17087     in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
17088
17089     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17090
17091 commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
17092 Author: Kumar Gala <galak@kernel.crashing.org>
17093 Date:   Fri Jan 23 14:22:14 2009 -0600
17094
17095     85xx: Add a 36-bit physical configuration for MPC8572DS
17096
17097     We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
17098     to allow for larger memory sizes.
17099
17100     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17101
17102 commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
17103 Author: Kumar Gala <galak@kernel.crashing.org>
17104 Date:   Fri Jan 23 14:22:13 2009 -0600
17105
17106     85xx: Handle eLBC difference w/36-bit physical
17107
17108     The eLBC only handles 32-bit physical address in systems with 36-bit
17109     physical.  The previos generation of LBC handled 34-bit physical
17110     address in 36-bit systems.  Added a new CONFIG option to convey
17111     the difference between the LBC and eLBC.
17112
17113     Also added defines for XAM bits used in LBC for the extended 34-bit
17114     support.
17115
17116     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17117
17118 commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
17119 Author: Kumar Gala <galak@kernel.crashing.org>
17120 Date:   Fri Jan 23 14:22:12 2009 -0600
17121
17122     85xx: Use BR_ADDR macro for NAND chipselects
17123
17124     Use the new BR_ADDR macro to properly setup the address field of the
17125     localbus chipselects used by NAND.
17126
17127     This allows us to deal with 36-bit phys on these boards in the future.
17128
17129     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17130
17131 commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
17132 Author: Haiying Wang <Haiying.Wang@freescale.com>
17133 Date:   Thu Jan 15 11:58:35 2009 -0500
17134
17135     Add secondary CPUs processor frequency for e500 core
17136
17137     This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
17138     and prints each CPU's frequency separately. It also fixes up each CPU's
17139     frequency in "clock-frequency" of fdt blob.
17140
17141     Signed-off-by: James Yang <James.Yang@freescale.com>
17142     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
17143
17144 commit bf5b1f0c0d28ce062e1d368680632dfb099de692
17145 Author: Dave Liu <daveliu@freescale.com>
17146 Date:   Fri Nov 21 16:31:53 2008 +0800
17147
17148     85xx: enable the auto self refresh for wake up ARP
17149
17150     The wake up ARP feature need use the memory to process
17151     wake up packet, we enable auto self refresh to support it.
17152
17153     Signed-off-by: Dave Liu <daveliu@freescale.com>
17154     Acked-by: Andy Fleming <afleming@freescale.com>
17155
17156 commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
17157 Author: Dave Liu <daveliu@freescale.com>
17158 Date:   Fri Nov 21 16:31:43 2008 +0800
17159
17160     fsl-ddr: use the 1T timing as default configuration
17161
17162     For light loaded system, we use the 1T timing to gain better
17163     memory performance, but for some heavily loaded system,
17164     you have to add the 2T timing options to board files.
17165
17166     Signed-off-by: Dave Liu <daveliu@freescale.com>
17167     Acked-by: Andy Fleming <afleming@freescale.com>
17168
17169 commit 22cca7e1cd54590e967c73558b07ffbdccd39504
17170 Author: Dave Liu <daveliu@freescale.com>
17171 Date:   Fri Nov 21 16:31:35 2008 +0800
17172
17173     fsl-ddr: make the self refresh idle threshold configurable
17174
17175     Some 85xx processors have the advanced power management feature,
17176     such as wake up ARP, that needs enable the automatic self refresh.
17177
17178     If the DDR controller pass the SR_IT (self refresh idle threshold)
17179     idle cycles, it will automatically enter self refresh. However,
17180     anytime one transaction is issued to the DDR controller, it will
17181     reset the counter and exit self refresh state.
17182
17183     Signed-off-by: Dave Liu <daveliu@freescale.com>
17184     Acked-by: Andy Fleming <afleming@freescale.com>
17185
17186 commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
17187 Author: Dave Liu <daveliu@freescale.com>
17188 Date:   Fri Nov 21 16:31:29 2008 +0800
17189
17190     fsl-ddr: clean up the ddr code for DDR3 controller
17191
17192     - The DDR3 controller is expanding the bits for timing config
17193     - Add the DDR3 32-bit bus mode support
17194
17195     Signed-off-by: Dave Liu <daveliu@freescale.com>
17196     Acked-by: Andy Fleming <afleming@freescale.com>
17197
17198 commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
17199 Author: Dave Liu <daveliu@freescale.com>
17200 Date:   Fri Nov 21 16:31:22 2008 +0800
17201
17202     fsl-ddr: update the bit mask for DDR3 controller
17203
17204     According to the latest 8572 UM, the DDR3 controller
17205     is expanding the bit mask, and we use the extend ACTTOPRE
17206     mode when tRAS more than 19 MCLK.
17207
17208     Signed-off-by: Dave Liu <daveliu@freescale.com>
17209
17210 commit aca5f018a8386b85469482ed9867e3e29a2437d0
17211 Author: Kumar Gala <galak@kernel.crashing.org>
17212 Date:   Tue Dec 2 16:08:40 2008 -0600
17213
17214     85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
17215
17216     Introduce a new define to seperate out the virtual address that PCI
17217     IO space is at from the physical address.  In most situations these are
17218     mapped 1:1.  However any code accessing the bus should use VIRT.
17219
17220     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17221     Acked-by: Andy Fleming <afleming@freescale.com>
17222
17223 commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
17224 Author: Kumar Gala <galak@kernel.crashing.org>
17225 Date:   Tue Dec 2 16:08:39 2008 -0600
17226
17227     85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
17228
17229     Introduce a new define to seperate out the virtual address that PCI
17230     memory is at from the physical address.  In most situations these are
17231     mapped 1:1.  However any code accessing the bus should use VIRT.
17232
17233     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17234     Acked-by: Andy Fleming <afleming@freescale.com>
17235
17236 commit a6e04c344ad1eefd47a75484441b385da815b8df
17237 Author: Kumar Gala <galak@kernel.crashing.org>
17238 Date:   Tue Dec 2 16:08:38 2008 -0600
17239
17240     85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
17241
17242     Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
17243     of TLBs.  This is what we should have always been using from the start.
17244
17245     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17246     Acked-by: Andy Fleming <afleming@freescale.com>
17247
17248 commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
17249 Author: Kumar Gala <galak@kernel.crashing.org>
17250 Date:   Tue Dec 2 16:08:37 2008 -0600
17251
17252     85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
17253
17254     Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
17255     of _IO_BASE so we are more explicit.
17256
17257     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17258
17259 commit 10795f42cb94e71bcb262b615084f69dd886399a
17260 Author: Kumar Gala <galak@kernel.crashing.org>
17261 Date:   Tue Dec 2 16:08:36 2008 -0600
17262
17263     85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
17264
17265     Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
17266     of _MEM_BASE so we are more explicit.
17267
17268     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17269     Acked-by: Andy Fleming <afleming@freescale.com>
17270
17271 commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
17272 Author: Kumar Gala <galak@kernel.crashing.org>
17273 Date:   Tue Dec 2 14:19:34 2008 -0600
17274
17275     85xx: separate FLASH BASE virtual from physical address
17276
17277     Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
17278     maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
17279
17280     This allows us to deal with 36-bit phys on these boards in the future.
17281
17282     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17283     Acked-by: Andy Fleming <afleming@freescale.com>
17284
17285 commit 52b565f5ad23b682489055b187767d8bf1c2e444
17286 Author: Kumar Gala <galak@kernel.crashing.org>
17287 Date:   Tue Dec 2 14:19:33 2008 -0600
17288
17289     85xx: separate PIXIS virtual from physical address
17290
17291     Added a PIXIS_BASE_PHYS for use as the physical address and maintain
17292     PIXIS_BASE as the virtual address of the PIXIS fpga registers.
17293
17294     This allows us to deal with 36-bit phys on these boards in the future.
17295
17296     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17297     Acked-by: Andy Fleming <afleming@freescale.com>
17298
17299 commit 30837e5b21d5a742983581ab9ee3fac085311d19
17300 Author: Haiying Wang <Haiying.Wang@freescale.com>
17301 Date:   Tue Nov 11 08:52:09 2008 -0500
17302
17303     Add README file for MPC8572DS board
17304
17305     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
17306     Acked-by: Andy Fleming <afleming@freescale.com>
17307
17308 commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
17309 Author: Mike Frysinger <vapier@gentoo.org>
17310 Date:   Mon Oct 20 16:15:04 2008 -0400
17311
17312     Blackfin: use common strmhz() in system output
17313
17314     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17315
17316 commit 5bb907a4925397789c90d074f4f7e92ce6b39402
17317 Author: Ron Madrid <ron_madrid@sbcglobal.net>
17318 Date:   Thu Jan 22 15:05:24 2009 -0800
17319
17320     mpc83xx: New board support for SIMPC8313
17321
17322     This patch will create a new board, SIMPC8313, from Sheldon Instruments.  This
17323     board boots from NAND devices and is configureable for either large or small
17324     page devices.  The board supports non-soldered DDR2, one ethernet port, a
17325     Marvell 88E1118 PHY, and PCI host support.  The board also has a FPGA connected
17326     to the eLBC providing glue logic to a TMS320C67xx DSP.
17327
17328     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
17329     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17330
17331 commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
17332 Author: Mike Frysinger <vapier@gentoo.org>
17333 Date:   Sun Jan 18 19:46:06 2009 -0500
17334
17335     nand: fixup printf modifiers to match types used
17336
17337     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17338     Signed-off-by: Scott Wood <scottwood@freescale.com>
17339
17340 commit 389e6620e2271096df3316917528003627db4021
17341 Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
17342 Date:   Tue Jan 20 16:57:55 2009 +0100
17343
17344     nand read.jffs2 (nand_legacy) in common/cmd_nand.c
17345
17346     Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
17347     With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
17348     "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
17349     tested before ".jffs2s" and only the first two characters are compared.
17350
17351     Correction:
17352     Test for ".jffs2s" first and compare the first 7 characters.
17353
17354     Signed-off-by: Scott Wood <scottwood@freescale.com>
17355
17356 commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
17357 Author: Wolfgang Grandegger <wg@grandegger.com>
17358 Date:   Fri Jan 16 18:55:54 2009 +0100
17359
17360     NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
17361
17362     This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
17363     changes the default from 8 to 1 for the legacy and the new MTD
17364     NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
17365     in the board config files because none of the boards use multi
17366     chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
17367     define
17368
17369      #define NAND_MAX_CHIPS          CONFIG_SYS_MAX_NAND_DEVICE
17370
17371     but that's bogus and did not work anyhow.
17372
17373     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17374     Signed-off-by: Scott Wood <scottwood@freescale.com>
17375
17376 commit c70564e6b1bd08f3230182392238907f3531a87e
17377 Author: Dave Liu <daveliu@freescale.com>
17378 Date:   Tue Dec 2 11:48:51 2008 +0800
17379
17380     NAND: Fix cache and memory inconsistency issue
17381
17382     We load the secondary stage u-boot image from NAND to
17383     system memory by nand_load, but we did not flush d-cache
17384     to memory, nor invalidate i-cache before we jump to RAM.
17385     When the system has cache enabled and the TLB/page attribute
17386     of system memory is cacheable, it will cause issues.
17387
17388     - 83xx family is using the d-cache lock, so all of d-cache
17389       access is cache-inhibited. so you can't see the issue.
17390     - 85xx family is using d-cache, i-cache enable, partial
17391       cache lock. you will see the issue.
17392
17393     This patch fixes the cache issue.
17394
17395     Signed-off-by: Dave Liu <daveliu@freescale.com>
17396     Signed-off-by: Scott Wood <scottwood@freescale.com>
17397
17398 commit 50657c273278f74378e1ac39b41d612b92fdffa0
17399 Author: Nishanth Menon <menon.nishanth@gmail.com>
17400 Date:   Sat Dec 13 09:43:06 2008 -0600
17401
17402     NAND: Enable nand lock, unlock feature
17403
17404     Enable nand lock, unlock and status of lock feature.
17405     Not every device and platform requires this, hence,
17406     it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
17407
17408     Nand unlock and status operate on block boundary instead
17409     of page boundary. Details in:
17410     http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
17411
17412     Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
17413     Includes preliminary suggestions from Scott Wood
17414
17415     Signed-off-by: Nishanth Menon <nm@ti.com>
17416     Signed-off-by: Scott Wood <scottwood@freescale.com>
17417
17418 commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
17419 Author: Mike Frysinger <vapier@gentoo.org>
17420 Date:   Sat Dec 6 02:40:55 2008 -0500
17421
17422     NAND: move board_nand_init to nand.h
17423
17424     Rather than putting the function prototype for board_nand_init() in the one
17425     place where it gets called, put it into nand.h so that every place that also
17426     defines it gets the prototype.  Otherwise, errors can go silently unnoticed
17427     such as using the wrong return value (void rather than int) when defining
17428     the function.
17429
17430     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17431     Signed-off-by: Scott Wood <scottwood@freescale.com>
17432
17433 commit 1ae39862044ebb1e682234b51f94421e3f871d6a
17434 Author: Stefan Roese <sr@denx.de>
17435 Date:   Tue Dec 2 11:06:47 2008 +0100
17436
17437     OneNAND: Additional sync with 2.6.27
17438
17439     - Add subpage write support
17440     - Add onenand_oob_64/32 ecclayout
17441
17442     This has been missing and without it UBI has some incompatibilies issues
17443     with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
17444     placed differently (2048 instead of 512) without this fix.
17445
17446     Signed-off-by: Stefan Roese <sr@denx.de>
17447     Signed-off-by: Scott Wood <scottwood@freescale.com>
17448
17449 commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
17450 Author: Kyungmin Park <kmpark@infradead.org>
17451 Date:   Thu Nov 13 15:14:33 2008 +0900
17452
17453     Add markbad function
17454
17455     Add missing markbad function
17456     If not, it's hang when it entered the mtd->mark_bad().
17457
17458     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
17459
17460 commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
17461 Author: Stefan Roese <sr@denx.de>
17462 Date:   Wed Nov 12 13:47:24 2008 +0100
17463
17464     OneNAND: Bad block aware read/write command support
17465
17466     Update OneNAND command to support bad block awareness.
17467     Also change the OneNAND command style to better match the
17468     NAND version.
17469
17470     Signed-off-by: Stefan Roese <sr@denx.de>
17471     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
17472
17473 commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
17474 Author: Stefan Roese <sr@denx.de>
17475 Date:   Tue Nov 11 10:29:09 2008 +0100
17476
17477     OneNAND: Save version_id in onenand_chip struct
17478
17479     The version (ver_id) was not stored in the onenand_chip structure and
17480     because of this the continuous locking scheme could be enabled on some
17481     chips.
17482
17483     Signed-off-by: Stefan Roese <sr@denx.de>
17484
17485 commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
17486 Author: Stefan Roese <sr@denx.de>
17487 Date:   Tue Nov 11 10:28:53 2008 +0100
17488
17489     OneNAND: Fix compiler warnings
17490
17491     Signed-off-by: Stefan Roese <sr@denx.de>
17492
17493 commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
17494 Author: Dave Liu <daveliu@freescale.com>
17495 Date:   Tue Nov 4 14:55:06 2008 +0800
17496
17497     mpc83xx: enable eLBC NAND support for MPC8315ERDB board
17498
17499     Signed-off-by: Dave Liu <daveliu@freescale.com>
17500
17501 commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
17502 Author: Kyungmin Park <kmpark@infradead.org>
17503 Date:   Tue Nov 4 09:24:07 2008 +0900
17504
17505     Sync with 2.6.27
17506
17507     Sync with OneNAND kernel codes
17508
17509     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
17510
17511 commit e7f325be9edeb84bb457301776bbac1f7257dafc
17512 Author: Michal Simek <monstr@monstr.eu>
17513 Date:   Mon Jan 5 13:35:31 2009 +0100
17514
17515     microblaze: Use cache functions (especially cache status)
17516     in systems which are configured without flash
17517
17518 commit e9b737deb2c30125362d20e24170617476026e94
17519 Author: Michal Simek <monstr@monstr.eu>
17520 Date:   Mon Jan 5 13:29:32 2009 +0100
17521
17522     microblaze: Add cache flush
17523
17524 commit b4f8dda35bfad447b4106828232705b2e878d168
17525 Author: Michal Simek <monstr@monstr.eu>
17526 Date:   Mon Jan 5 13:28:40 2009 +0100
17527
17528     microblaze: Add bootup messages to board.c
17529
17530 commit 330e55459bc9983341da6c1d5c7fe00a664436fe
17531 Author: Michal Simek <monstr@monstr.eu>
17532 Date:   Fri Dec 19 13:25:55 2008 +0100
17533
17534     microblaze: Change microblaze-generic config file
17535
17536     Signed-off-by: Michal Simek <monstr@monstr.eu>
17537
17538 commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
17539 Author: Michal Simek <monstr@monstr.eu>
17540 Date:   Fri Dec 19 13:14:05 2008 +0100
17541
17542     microblaze: Rename ml401 to microblaze-generic
17543
17544     Signed-off-by: Michal Simek <monstr@monstr.eu>
17545
17546 commit 6677876181cc8772bca8a372479a500d160f3993
17547 Author: Scott Wood <scottwood@freescale.com>
17548 Date:   Tue Jan 20 11:56:11 2009 -0600
17549
17550     83xx: Use the proper sequence for updating IMMR.
17551
17552     This ensures that subsequent accesses properly hit the new window.
17553
17554     The dcbi during the NAND loop was accidentally working around this;
17555     it's no longer necessary, as the cache is not enabled.
17556
17557     Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
17558     Signed-off-by: Scott Wood <scottwood@freescale.com>
17559     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17560
17561 commit 8b34557c546e5e9f34ebf83c93413dad973d93df
17562 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17563 Date:   Thu Jan 8 04:26:19 2009 +0300
17564
17565     mpc83xx: Add PCI-E support for MPC837XEMDS boards
17566
17567     MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
17568     provides two PCI-E (x2) ports. Though, only one port can be used in x2
17569     mode. Two ports can function simultaneously in x1 mode.
17570
17571     PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
17572
17573     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17574     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17575
17576 commit 8f11e34b31a7be124a3239653f33af9510502045
17577 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17578 Date:   Thu Jan 8 04:26:17 2009 +0300
17579
17580     mpc83xx: Add PCI-E support for MPC8315ERDB boards
17581
17582     MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
17583     support them.
17584
17585     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17586     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17587
17588 commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
17589 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17590 Date:   Thu Jan 8 04:26:12 2009 +0300
17591
17592     mpc83xx: Add support for MPC83xx PCI-E controllers
17593
17594     This patch adds support for MPC83xx PCI-E controllers in Root Complex
17595     mode.
17596
17597     The patch is based on Tony Li and Dave Liu work[1].
17598
17599     Though unlike the original patch, by default we don't register PCI-E
17600     buses for use in U-Boot, we only configure the controllers for future
17601     use in other OSes (Linux). This is done because we don't have enough
17602     of spare BATs to map all the PCI-E regions.
17603
17604     To actually use PCI-E in U-Boot, users should explicitly define
17605     CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
17606     only then U-Boot will able to access PCI-E, but at the cost of disabled
17607     address translation.
17608
17609     [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
17610
17611     Signed-off-by: Tony Li <tony.li@freescale.com>
17612     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17613     Acked-by: Dave Liu <daveliu@freescale.com>
17614     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17615
17616 commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
17617 Author: Ira Snyder <iws@ovro.caltech.edu>
17618 Date:   Mon Jan 12 13:33:17 2009 -0800
17619
17620     MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
17621
17622     When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
17623     not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
17624     "Clocking in PCI Agent Mode".
17625
17626     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
17627     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17628
17629 commit 75f35209f702bb26826855ed8c8e4d108ab5f412
17630 Author: Ira Snyder <iws@ovro.caltech.edu>
17631 Date:   Mon Jan 12 13:32:26 2009 -0800
17632
17633     83xx: PCI agent mode fixes for multi-board systems
17634
17635     When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
17636     the boards will lock up the PCI bus by scanning against each other.
17637
17638     The boards lock against each other by trying to access the PCI bus before
17639     clearing their configuration lock bit. Both boards end up in a loop,
17640     sending and receiving "Target Not Ready" messages forever.
17641
17642     When running in PCI agent mode, the scanning now takes place after the
17643     boards have cleared their configuration lock bit.
17644
17645     Also, add a missing declaration to the mpc83xx.h header file, fixing a
17646     build warning.
17647
17648     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
17649     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17650
17651 commit 455a46915b82896cc2070eb326d075555c2bc580
17652 Author: Ron Madrid <ron_madrid@sbcglobal.net>
17653 Date:   Fri Dec 12 13:12:45 2008 -0800
17654
17655     mpc83xx: Size optimization of start.S
17656
17657     Currently there are in excess of 100 bytes located at the beginning of the image
17658     built by start.S that are not being utilized.  This patch moves a few functions
17659     into this part of the image.  This will create a greater number of *available*
17660     bytes that can be used by board specific code in NAND builds and will decrease
17661     the size of the assembled code in other builds.
17662
17663     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
17664     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17665
17666 commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
17667 Author: Wolfgang Denk <wd@denx.de>
17668 Date:   Wed Jan 21 23:08:12 2009 +0100
17669
17670     Prepare v2009.01
17671
17672     Signed-off-by: Wolfgang Denk <wd@denx.de>
17673
17674 commit 635e5f8fc82365e6e9734b3132bc95135a6de679
17675 Author: Wolfgang Denk <wd@denx.de>
17676 Date:   Sun Jan 18 21:37:48 2009 +0100
17677
17678     Prepare 2009.01-rc3
17679
17680     Update CHANGELOG
17681
17682     Signed-off-by: Wolfgang Denk <wd@denx.de>
17683
17684 commit 4cda437898f7873752f0201757cd33f12196ce87
17685 Author: Mike Frysinger <vapier@gentoo.org>
17686 Date:   Sat Jan 17 13:32:42 2009 -0500
17687
17688     build system: treat all Darwin's alike
17689
17690     The x86 based version of Darwin behaves the same quirky way as the powerpc
17691     Darwin, so only check HOSTOS when setting up Darwin workarounds.
17692
17693     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17694
17695 commit c088a108c75db565e07292fd668dfa5491e85bc2
17696 Author: Peter Korsgaard <jacmet@sunsite.dk>
17697 Date:   Wed Jan 14 13:52:24 2009 +0100
17698
17699     fdt_resize(): fix actualsize calculations with unaligned blobs
17700
17701     The code in fdt_resize() to extend the fdt size to end on a page boundary
17702     is wrong for fdt's not located at an address aligned on a page boundary.
17703     What's even worse, the code would make actualsize shrink rather than grow
17704     if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
17705     causing fdt_add_mem_rsv to fail.
17706
17707     Fix it by aligning end address (blob + size) to a page boundary instead.
17708     For aligned fdt's this is equivalent to what we had before.
17709
17710     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
17711
17712 commit fadad1573fb16c90025f08a2861d6047d093cba7
17713 Author: Mike Frysinger <vapier@gentoo.org>
17714 Date:   Fri Jan 9 04:38:17 2009 -0500
17715
17716     ncb: use socklen_t
17717
17718     The recvfrom() function takes a socklen_t, not an int.
17719
17720     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17721
17722 commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
17723 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17724 Date:   Sun Jan 11 16:35:16 2009 +0100
17725
17726     sh: serial: use readx/writex accessors
17727
17728     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17729     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17730
17731 commit 9e1fa628bdb64745811cdd26c4f953846c076180
17732 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17733 Date:   Sun Jan 11 16:35:15 2009 +0100
17734
17735     sh: serial: coding style cleanup
17736
17737     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17738     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17739
17740 commit c9935c992575922b7ef13eec0656ed8665d324e3
17741 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17742 Date:   Sun Jan 11 17:48:56 2009 +0900
17743
17744     sh: Fix compile error on lowlevel_init file
17745
17746     lowlevel_init of SH was corrected to use the write/readXX macro.
17747     However, there was a problem that was not able to be compiled partially.
17748     This patch corrected this.
17749
17750     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17751
17752 commit a5b04d00bfeb940c62232972ce644d50b45797f9
17753 Author: Kieran Bingham <kieranbingham@gmail.com>
17754 Date:   Tue Dec 30 01:16:03 2008 +0000
17755
17756     sh: Fix up rsk7203 target for out of tree build
17757
17758     Fix up rsk7203 target to build successfully using out-of-tree build.
17759
17760     Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
17761     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17762
17763 commit f7e78f3b74aae9caca2997bad865a72338326c0a
17764 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17765 Date:   Sat Dec 20 19:29:49 2008 +0100
17766
17767     sh: use write{8,16,32} in all lowlevel_init
17768
17769     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17770     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17771
17772 commit e4430779623af500de1cee7892c379f07ef59813
17773 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17774 Date:   Sat Dec 20 19:29:48 2008 +0100
17775
17776     sh: lowlevel_init coding style cleanup
17777
17778     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17779     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17780
17781 commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
17782 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17783 Date:   Sat Dec 20 15:27:45 2008 +0100
17784
17785     sh: update sh2/sh2a timer coding style
17786
17787     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17788     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17789
17790 commit 1e15ff999322e81af4c0c0c548908f38944ba39c
17791 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17792 Date:   Sat Dec 20 15:25:22 2008 +0100
17793
17794     sh: update sh timer coding style
17795
17796     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17797     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17798
17799 commit 0e3ece33801e377be67ffa29f083421ad820f28b
17800 Author: Wolfgang Denk <wd@denx.de>
17801 Date:   Wed Jan 14 23:26:05 2009 +0100
17802
17803     Prepare 2009.01-rc2
17804
17805     Update CHANGELOG.
17806
17807     Signed-off-by: Wolfgang Denk <wd@denx.de>
17808
17809 commit e92c9a860e44c14513c8909ce4299e253a775eeb
17810 Author: Wolfgang Denk <wd@denx.de>
17811 Date:   Wed Jan 14 22:35:30 2009 +0100
17812
17813     cpu/mpc824x/Makefile: fix warning with parallel builds
17814
17815     Parallel builds would occasionally issue this build warning:
17816
17817         ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists
17818
17819     Use "ln -sf" as quick work around for the issue.
17820
17821     Signed-off-by: Wolfgang Denk <wd@denx.de>
17822
17823 commit 3ba605d4beec649438539e7df97b5fedb26592fb
17824 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17825 Date:   Fri Jan 2 12:18:49 2009 +0100
17826
17827     ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
17828
17829     This patch adds esd's loadpci BSP command to CPCI4052 and
17830     CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
17831
17832     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17833     Signed-off-by: Stefan Roese <sr@denx.de>
17834
17835 commit 600fe46fb3dab7f07604f9009904f31584415114
17836 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17837 Date:   Fri Jan 2 12:18:12 2009 +0100
17838
17839     ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
17840
17841     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17842     Signed-off-by: Stefan Roese <sr@denx.de>
17843
17844 commit f6a1f490d224c600a09137e58d1026d150b8e679
17845 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17846 Date:   Fri Jan 2 12:17:36 2009 +0100
17847
17848     ppc4xx: Cleanup CPCI405 board code
17849
17850     This patch cleans up CPCI405 board support:
17851     - wrap long lines
17852     - unification of spaces in function calls
17853     - remove dead code
17854
17855     Use correct io accessors on peripherals.
17856
17857     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17858     Signed-off-by: Stefan Roese <sr@denx.de>
17859
17860 commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
17861 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17862 Date:   Fri Jan 2 12:16:35 2009 +0100
17863
17864     ppc4xx: Enable auto RS485 mode on PLU405 boards
17865
17866     This patch turns on the auto RS485 mode in the 2nd external
17867     uart on PLU405 boards. This is a special mode of the used
17868     Exar XR16C2850 uart. Because these boards only have a 485 physical
17869     layer connected it's a good idea to turn it on by default.
17870
17871     Signed-off-by: Matthias Fuchs <mf@esd.eu>
17872     Signed-off-by: Stefan Roese <sr@denx.de>
17873
17874 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
17875 Author: Haiying Wang <Haiying.Wang@freescale.com>
17876 Date:   Tue Jan 13 16:29:28 2009 -0500
17877
17878     Some changes of TLB entry setting for MPC8572DS
17879
17880     - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode,
17881     all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0
17882     can not access PIXIS_BASE anymore (any access will cause DataTLBError exception)
17883
17884     - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board.
17885
17886     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
17887
17888 commit 950264317eb9594b2b5ee2fb65206200a1c6007a
17889 Author: Haiying Wang <Haiying.Wang@freescale.com>
17890 Date:   Tue Jan 13 16:29:22 2009 -0500
17891
17892     Change DDR tlb start entry to CONFIG param for 85xx
17893
17894     So that we can locate the DDR tlb start entry to the value other than 8. By
17895     default, it is still 8.
17896
17897     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
17898
17899 commit 6d3a10f73ece7ffb736890c10e023222612a4aa0
17900 Author: Roy Zang <tie-fei.zang@freescale.com>
17901 Date:   Fri Jan 9 16:02:35 2009 +0800
17902
17903     Change PCIE1&2 deciide logic on MPC8544DS board more readable
17904
17905     The IO port selection for MPC8544DS board:
17906      Port                       cfg_io_ports
17907      PCIE1              0x2, 0x3, 0x4, 0x5, 0x6, 0x7
17908      PCIE2              0x4, 0x5, 0x6, 0x7
17909      PCIE3              0x6, 0x7
17910      This patch changes the PCIE12 and PCIE2 logic more readable.
17911     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
17912
17913 commit 028e116811d28a031660f1ad9e20ac1293b3c5c7
17914 Author: Roy Zang <tie-fei.zang@freescale.com>
17915 Date:   Fri Jan 9 16:01:52 2009 +0800
17916
17917     PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
17918
17919     PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of
17920     PCIE1 bit.
17921     On MPC8572DS board, PCIE refers to PCIE1.
17922     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
17923
17924 commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47
17925 Author: Roy Zang <tie-fei.zang@freescale.com>
17926 Date:   Fri Jan 9 16:00:55 2009 +0800
17927
17928     Fix IO port selection issue on MPC8544DS and MPC8572DS boards
17929
17930     The IO port selection is not correct on MPC8572DS and MPC8544DS board.
17931      This patch fixes this issue.
17932      For MPC8572
17933      Port                       cfg_io_ports
17934      PCIE1              0x2, 0x3, 0x7, 0xb, 0xc, 0xf
17935      PCIE2              0x3, 0x7
17936      PCIE3              0x7
17937
17938     For MPC8544
17939     Port                        cfg_io_ports
17940     PCIE1               0x2, 0x3, 0x4, 0x5, 0x6, 0x7
17941     PCIE2               0x4, 0x5, 0x6, 0x7
17942     PCIE3               0x6, 0x7
17943     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
17944
17945 commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946
17946 Author: Becky Bruce <beckyb@kernel.crashing.org>
17947 Date:   Wed Dec 3 22:36:44 2008 -0600
17948
17949     mpc8610hpcd: Fix PCI mapping concepts
17950
17951     Rename _BASE to _BUS, as it's actually a PCI bus address,
17952     separate virtual and physical addresses into _VIRT and _PHYS,
17953     and use each appopriately.  This makes the code easier to read
17954     and understand, and facilitates mapping changes going forward.
17955
17956     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
17957
17958 commit 79e436cad3b4a7db88408c3f05175028f30d700d
17959 Author: Becky Bruce <beckyb@kernel.crashing.org>
17960 Date:   Wed Dec 3 22:36:26 2008 -0600
17961
17962     sbc8641d: Fix PCI mapping concepts
17963
17964     Rename _BASE to _BUS, as it's actually a PCI bus address,
17965     separate virtual and physical addresses into _VIRT and _PHYS,
17966     and use each appopriately.  This makes the code easier to read
17967     and understand, and facilitates mapping changes going forward.
17968
17969     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
17970
17971 commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0
17972 Author: Wolfgang Denk <wd@denx.de>
17973 Date:   Mon Jan 12 14:50:35 2009 +0100
17974
17975     MPC86xx: fix build warnings
17976
17977     Signed-off-by: Wolfgang Denk <wd@denx.de>
17978
17979 commit 032a1c934ef4dc003281f57302b6e693062c1868
17980 Author: Mike Frysinger <vapier@gentoo.org>
17981 Date:   Mon Jan 5 16:09:44 2009 -0500
17982
17983     bf537-stamp/nand: fix board_nand_init prototype
17984
17985     The board_nand_init() function should return an int, not void.
17986
17987     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17988
17989 commit 687f952e4119594ab913be11c90f7f018c2a7a79
17990 Author: Mike Frysinger <vapier@gentoo.org>
17991 Date:   Thu Dec 11 07:04:48 2008 -0500
17992
17993     Blackfin: drop CONFIG_SPI handling in board init
17994
17995     The eeprom SPI init functions are duplicated as the common code already
17996     executes these for us.
17997
17998     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17999
18000 commit e7e684b10d73a303902208594c7c3e7e0d753282
18001 Author: Mike Frysinger <vapier@gentoo.org>
18002 Date:   Fri Oct 24 17:51:57 2008 -0400
18003
18004     Blackfin: fix out-of-tree building with ldscripts
18005
18006     Many of the Blackfin board linker scripts are preprocessed, so make sure we
18007     output the linker script into the build tree rather than the source tree.
18008
18009     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18010
18011 commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb
18012 Author: Mike Frysinger <vapier@gentoo.org>
18013 Date:   Fri Oct 24 17:48:54 2008 -0400
18014
18015     Blackfin: fix linker scripts to work with --gc-sections
18016
18017     Make sure all .text sections get pulled in and the entry point is properly
18018     referenced so they don't get discarded when linking with --gc-sections.
18019
18020     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18021
18022 commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58
18023 Author: Mike Frysinger <vapier@gentoo.org>
18024 Date:   Sat Oct 11 20:45:44 2008 -0400
18025
18026     Blackfin: set proper LDRFLAGS for parallel booting LDRs
18027
18028     In order to boot an LDR out of parallel flash, the ldr utility needs a few
18029     flags to tell it to generate the right header.
18030
18031     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18032
18033 commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3
18034 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18035 Date:   Tue Jan 6 21:41:59 2009 +0100
18036
18037     at91rm9200: move define from lowlevel_init to header
18038
18039     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18040
18041 commit 8a48686fac2030287765f1970ea046bd5734b733
18042 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18043 Date:   Sat Jan 3 17:22:26 2009 +0100
18044
18045     m501sk: move to the common memory setup
18046
18047     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18048
18049 commit d481c80d78f954133c035dae6c7d22de3625795d
18050 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18051 Date:   Sat Jan 3 17:22:25 2009 +0100
18052
18053     at91rm9200: rename lowlevel init value to CONFIG_SYS_
18054
18055     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18056
18057 commit 4e170b16625291aa10d0d9abc3f34e8a5945d157
18058 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
18059 Date:   Tue Jan 6 21:13:14 2009 +0100
18060
18061     at91: add at91sam9xeek board support
18062
18063     At91sam9xe is basically an at91sam9260 with embedded flash. We can manage
18064     it as another entry for at91sam9260 in the Makefile.
18065
18066     Check documentation at :
18067     http://www.atmel.com/dyn/products/product_card.asp?part_id=4263
18068
18069     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
18070     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18071
18072 commit 9ffd53db870a7da134f9a1ae76894a6b31237be5
18073 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18074 Date:   Tue Jan 6 21:15:57 2009 +0100
18075
18076     fix bmp_logo.h make dependencies to allow parallel build
18077
18078     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18079
18080 commit e12d9a8fb48d24176efffccc072b445e60a3afe4
18081 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18082 Date:   Sat Jan 3 17:22:24 2009 +0100
18083
18084     at91: Fix Atmel's at91sam9 boards out of tree build
18085
18086     introduced in commit 89a7a87f084c
18087
18088     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18089
18090 commit 0668236bafaa1c11c521652a2facebc74beecbf0
18091 Author: Wolfgang Denk <wd@denx.de>
18092 Date:   Tue Dec 30 22:56:11 2008 +0100
18093
18094     README: update mailing list name and hits to patch submission.
18095
18096     Signed-off-by: Wolfgang Denk <wd@denx.de>
18097
18098 commit d9011f9b75561a0bd9254934c2bb2bc799d4f645
18099 Author: Peter Tyser <ptyser@xes-inc.com>
18100 Date:   Tue Dec 23 16:32:01 2008 -0600
18101
18102     85xx: Enable inbound PCI config cycles for X-ES boards cleanup
18103
18104     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18105
18106 commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df
18107 Author: Peter Tyser <ptyser@xes-inc.com>
18108 Date:   Tue Dec 23 16:32:00 2008 -0600
18109
18110     XPedite5200 board support cleanup
18111
18112     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18113
18114 commit fea91edee8ae0295e3c30b1ff544df51f4d668e1
18115 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18116 Date:   Tue Dec 2 21:58:04 2008 +0100
18117
18118     usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable
18119
18120     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18121     Signed-off-by: Remy Böhmer <linux@bohmer.net>
18122
18123 commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28
18124 Author: Trent Piepho <tpiepho@freescale.com>
18125 Date:   Wed Dec 3 15:16:37 2008 -0800
18126
18127     mpc8[56]xx: Put localbus clock in sysinfo and gd
18128
18129     Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
18130     and print it out, but don't save it.
18131
18132     This changes where its calculated and stored to be more consistent with the
18133     CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
18134
18135     The localbus frequency is added to sysinfo and calculated when sysinfo is
18136     set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
18137
18138     get_clocks() copies the frequency into the global data, as the other
18139     frequencies are, into a new field that is only enabled for MPC85xx and
18140     MPC86xx.
18141
18142     checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
18143     from sysinfo, like the other frequencies, instead of calculating it on the
18144     spot.
18145
18146     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
18147     Acked-by: Kumar Gala <galak@kernel.crashing.org>
18148     Acked-by: Jon Loeliger <jdl@freescale.com>
18149
18150 commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7
18151 Author: Trent Piepho <tpiepho@freescale.com>
18152 Date:   Wed Dec 3 15:16:36 2008 -0800
18153
18154     mpc86xx: Double local bus clock divider
18155
18156     The local bus clock divider should be doubled for both 8610 and 8641.
18157
18158     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
18159     Acked-by: Kumar Gala <galak@kernel.crashing.org>
18160     Acked-by: Jon Loeliger <jdl@freescale.com>
18161
18162 commit 446c381e3e16f19857b72ea0d06241267b8b9d58
18163 Author: Trent Piepho <tpiepho@freescale.com>
18164 Date:   Wed Dec 3 15:16:35 2008 -0800
18165
18166     mpc8568: Double local bus clock divider
18167
18168     The clock divider for the MPC8568 local bus should be doubled, like the
18169     other newer MPC85xx chips.
18170
18171     Since there are now more chips with a 2x divider than a 1x, and any new
18172     85xx chips will probably be 2x, invert the sense of the #if so that it
18173     lists the 1x chips instead of the 2x ones.
18174
18175     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
18176     Acked-by: Kumar Gala <galak@kernel.crashing.org>
18177     Acked-by: Jon Loeliger <jdl@freescale.com>
18178
18179 commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03
18180 Author: Dave Liu <daveliu@freescale.com>
18181 Date:   Tue Dec 16 12:09:27 2008 +0800
18182
18183     85xx: Fix the boot window issue
18184
18185     If one custom board is using the 8MB flash, it is set
18186     as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000.
18187     The current start.S code will be broken at switch_as.
18188
18189     It is because the TLB1[15] is set as 16MB page size,
18190     EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000.
18191
18192     For the 8MB flash case, the EPN = 0xefxxxxxx,
18193     RPN = 0xffxxxxxx. Assume the virt address of switch_as
18194     is 0xef7ff18c, the real address of the instruction at
18195     switch_as should be 0xff7ff18c. the 0xff7ff18c is out
18196     of the range of the default 8MB boot LAW window
18197     0xff800000 - 0xffffffff.
18198
18199     So when we switch to AS1 address space at switch_as,
18200     the core can't fetch the instruction at switch_as any
18201     more. It will cause broken issue.
18202
18203     Signed-off-by: Dave Liu <daveliu@freescale.com>
18204
18205 commit 58da8890d5fbd074746037722a423de9ac408616
18206 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18207 Date:   Thu Dec 11 15:47:50 2008 -0500
18208
18209     sbc8548: use proper PHY address
18210
18211     The values given for the PHY address were wrong, so the code
18212     read no valid PHY ID, and fell through to the generic PHY
18213     support, which would work on 1000M but would not auto negotiate
18214     down to 100M or 10M.
18215
18216     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18217
18218 commit ad22f9273c6f24fbfa917e867680e9688e0c59c5
18219 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18220 Date:   Thu Dec 11 15:47:51 2008 -0500
18221
18222     sbc8548: enable command line editing by default.
18223
18224     Lets make things a bit more user friendly.  It isn't 1985 anymore.
18225
18226     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18227
18228 commit bd93105fa171184a71ca8b22be03dc2705cfbd3f
18229 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18230 Date:   Thu Dec 11 15:47:49 2008 -0500
18231
18232     sbc8548: don't enable the 3rd and 4th eTSEC
18233
18234     These interfaces don't have usable connectors on the board, so don't
18235     bother enumerating or configuring them.
18236
18237     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18238
18239 commit 181a3650113883728927928b3ac81ad6dade4b2c
18240 Author: Haiying Wang <Haiying.Wang@freescale.com>
18241 Date:   Wed Dec 3 10:08:19 2008 -0500
18242
18243     Set IVPR to kenrel entry point in second core boot page
18244
18245     Assuming the OSes exception vectors start from the base of kernel address, and
18246     the kernel physical starting address can be relocated to an non-zero address.
18247     This patch enables the second core to have a valid IVPR for debugger before
18248     kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid
18249     value for second core which runs kernel at different physical address other
18250     than 0x0.
18251
18252     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
18253
18254 commit a5d212a263c58cc746481bf1fc878510533ce7d6
18255 Author: Trent Piepho <tpiepho@freescale.com>
18256 Date:   Wed Dec 3 15:16:34 2008 -0800
18257
18258     mpc8xxx: LCRR[CLKDIV] is sometimes five bits
18259
18260     On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits
18261     instead of four.
18262
18263     In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems.  It
18264     should be safe as the fifth bit was defined as reserved and set to 0.
18265
18266     Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV.
18267
18268     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
18269     Acked-by: Kumar Gala <galak@kernel.crashing.org>
18270     Acked-by: Jon Loeliger <jdl@freescale.com>
18271
18272 commit 58ec4866ed916c7e422f5107bb27b0822084728e
18273 Author: Trent Piepho <tpiepho@freescale.com>
18274 Date:   Wed Dec 3 15:16:38 2008 -0800
18275
18276     mpc8[56]xx: Put localbus clock in device tree
18277
18278     Export the localbus frequency in the device tree, the same way the CPU, TB,
18279     CCB, and various other frequencies are exported in their respective device
18280     tree nodes.
18281
18282     Some localbus devices need this information to be programed correctly, so
18283     it makes sense to export it along with the other frequencies.
18284
18285     Unfortunately, when someone wrote the localbus dts bindings, they didn't
18286     bother to define what the "compatible" property should be.  So it seems no
18287     one was quite sure what to put in their dts files.
18288
18289     Based on current existing dts files in the kernel source, I've used
18290     "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all
18291     of the 85xx devices, and are looked for by the Linux code.  The eLBC is
18292     apparently not entirely backward compatible with the pq3 LBC and so eLBC
18293     equipped platforms like 8572 won't use pq3-localbus.
18294
18295     For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems
18296     and is also looked for by the Linux code.  On MPC8641, I've also used
18297     "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of
18298     which don't use "fsl,elbc" or any other acceptable name to match on.
18299
18300     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
18301     Acked-by: Kumar Gala <galak@kernel.crashing.org>
18302     Acked-by: Jon Loeliger <jdl@freescale.com>
18303
18304 commit 9d94aff699eed38b286814fcbb335f3eb8516a0e
18305 Author: Kumar Gala <galak@kernel.crashing.org>
18306 Date:   Tue Dec 16 14:59:22 2008 -0600
18307
18308     NAND FSL elbc: Use virt_to_phys to determine which bank is in use
18309
18310     The current code that determines which bank/chipselect is used for a
18311     given NAND instance only worked for 32-bit addresses and assumed
18312     a 1:1 mapping.  This breaks in 36-bit physical configs.
18313
18314     The proper way to handle this is to use the virt_to_phys() and
18315     BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address
18316     with the the virtual address the NAND code uses.
18317
18318     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18319     Acked-by: Scott Wood <scottwood@freescale.com>
18320
18321 commit 77c8115b1f1871811633eae77a5a700fac1f0e50
18322 Author: Kumar Gala <galak@kernel.crashing.org>
18323 Date:   Tue Dec 16 14:59:21 2008 -0600
18324
18325     ppc: Use addrmap in virt_to_phys and map_physmem.
18326
18327     If we have addr map support enabled use the mapping functions to
18328     implement virt_to_phys() and map_physmem().
18329
18330     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18331
18332 commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90
18333 Author: Kumar Gala <galak@kernel.crashing.org>
18334 Date:   Tue Dec 16 14:59:20 2008 -0600
18335
18336     85xx: Add support to populate addr map based on TLB settings
18337
18338     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18339
18340 commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec
18341 Author: Peter Tyser <ptyser@xes-inc.com>
18342 Date:   Mon Dec 1 13:47:13 2008 -0600
18343
18344     XPedite5200 board support
18345
18346     Initial support for Extreme Engineering Solutions XPedite5200 -
18347     a MPC8548-based PMC single board computer.
18348
18349     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18350
18351 commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f
18352 Author: Peter Tyser <ptyser@xes-inc.com>
18353 Date:   Wed Oct 29 12:39:27 2008 -0500
18354
18355     85xx: Enable inbound PCI config cycles for X-ES boards
18356
18357     Update X-ES Freescale boards to allow inbound PCI configuration
18358     cycles when configured as agent/endpoint.
18359
18360     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18361
18362 commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f
18363 Author: Peter Tyser <ptyser@xes-inc.com>
18364 Date:   Wed Dec 17 16:36:23 2008 -0600
18365
18366     XPedite5370 board support
18367
18368     Initial support for Extreme Engineering Solutions XPedite5370 -
18369     a MPC8572-based 3U VPX single board computer with a PMC/XMC
18370     site.
18371
18372     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18373
18374 commit e92739d34e2d6b6aca93b2598248210710897ce8
18375 Author: Peter Tyser <ptyser@xes-inc.com>
18376 Date:   Wed Dec 17 16:36:21 2008 -0600
18377
18378     Add support for PCA953x I2C gpio devices
18379
18380     Initial support for NXP's 4 and 8 bit I2C gpio expanders
18381     (eg pca9537, pca9557, etc). The CONFIG_PCA953X define
18382     enables support for the devices while the CONFIG_CMD_PCA953X
18383     define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO
18384     define enables an 'info' sub-command which provides summary
18385     information for the given pca953x device.
18386
18387     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18388
18389 commit 7a8979591171676417ab36852d8811a8c46accd8
18390 Author: Peter Tyser <ptyser@xes-inc.com>
18391 Date:   Wed Oct 29 12:39:26 2008 -0500
18392
18393     pci/fsl_pci_init: Enable inbound PCI config cycles
18394
18395     Add fsl_pci_config_unlock() function to enable a
18396     PCI/PCIe interface configured in agent/endpoint mode to
18397     respond to inbound PCI configuration cycles.
18398
18399     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18400
18401 commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
18402 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18403 Date:   Wed Dec 17 16:43:18 2008 +0100
18404
18405     avr32: Remove second definition of virt_to_phys()
18406
18407     The second definition introduced by 65e43a1063 conflicts with the
18408     existing one.
18409
18410     Also, convert the existing definition to use phys_addr_t. The volatile
18411     qualifier is still needed due to brain damage elsewhere.
18412
18413     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18414
18415 commit b616f2b545f73757669b37386f0b37bb61fc6797
18416 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18417 Date:   Mon Sep 8 22:27:18 2008 +0200
18418
18419     MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file
18420
18421     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18422     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18423
18424 commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b
18425 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18426 Date:   Tue Dec 16 22:10:31 2008 +0100
18427
18428     MIPS: qemu_mips: update doc to use all disk and boot linux kernel
18429
18430     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18431     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18432
18433 commit 13095b2f07dacb1f863772266c1789d47a523a8a
18434 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18435 Date:   Tue Dec 16 22:10:30 2008 +0100
18436
18437     MIPS: qemu_mips: move env storage just after u-boot
18438
18439     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18440     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18441
18442 commit aced78d852d0b009e8aaa1445af8cb40861ee549
18443 Author: Wolfgang Denk <wd@denx.de>
18444 Date:   Tue Dec 16 23:48:27 2008 +0100
18445
18446     Prepare 2009.01-rc1
18447
18448     Signed-off-by: Wolfgang Denk <wd@denx.de>
18449
18450 commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
18451 Author: Wolfgang Denk <wd@denx.de>
18452 Date:   Tue Dec 16 23:13:46 2008 +0100
18453
18454     include/configs/at91cap9adk.h: fix typo.
18455
18456     Signed-off-by: Wolfgang Denk <wd@denx.de>
18457
18458 commit 45ca04f2377361593151d2d4da51f8ba4832d233
18459 Author: Wolfgang Denk <wd@denx.de>
18460 Date:   Tue Dec 16 22:32:25 2008 +0100
18461
18462     board/trab/memory.c: Fix compile problems.
18463
18464     Apply changes from commit 44b4dbed to board/trab/memory.c, too.
18465
18466     Actually we'd need a major cleanup here - as it turns out,
18467     board/trab/memory.c is more or less a verbatim copy of
18468     post/drivers/memory.c ... but then, trab is EOL anyway,r
18469     so this is not worth the effort.
18470
18471     Signed-off-by: Wolfgang Denk <wd@denx.de>
18472
18473 commit ff49ea8977b56916edd5b1766d9939010e30b181
18474 Author: Scott Wood <scottwood@freescale.com>
18475 Date:   Tue Dec 16 14:24:16 2008 -0600
18476
18477     NAND: Mark the BBT as scanned prior to calling scan_bbt.
18478
18479     Otherwise, recursion can occur if scan_bbt does not find a bad block
18480     table, and tries to write one, and the attempt to erase the BBT area
18481     causes a bad block check.
18482
18483     Signed-off-by: Scott Wood <scottwood@freescale.com>
18484
18485 commit 584eedab66d0828f2d571a24b10526c4e65f547b
18486 Author: Ilya Yanok <yanok@emcraft.com>
18487 Date:   Thu Dec 11 05:51:57 2008 +0300
18488
18489     jffs2: include <linux/mtd/compat.h> instead of defining own min_t
18490
18491     Include <linux/mtd/compat.h> header for min_t definition instead of
18492     providing our own one. Removes warnings in case of OneNAND support
18493     enabled.
18494
18495     Although I thinks it's a bit silly to include <linux/mtd/compat.h>
18496     just for min_t...
18497
18498     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
18499     Acked-by: Stefan Roese <sr@denx.de>
18500
18501 commit b1ffecec37b57a59c139042267faac458e5324e9
18502 Author: Becky Bruce <beckyb@kernel.crashing.org>
18503 Date:   Wed Dec 3 23:04:37 2008 -0600
18504
18505     powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
18506
18507     Casting a pointer to a phys_addr_t when it's an unsigned long long
18508     on a 32-bit system without first casting to a non-pointer type
18509     generates a compiler warning. Fix this.
18510
18511     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
18512
18513 commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
18514 Author: Wolfgang Denk <wd@denx.de>
18515 Date:   Tue Dec 16 16:22:50 2008 +0100
18516
18517     trab: make trab_fkt standalone code independent of libgcc
18518
18519     Use our own local functions in lib_arm/ instead.
18520
18521     Signed-off-by: Wolfgang Denk <wd@denx.de>
18522
18523 commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
18524 Author: Wolfgang Denk <wd@denx.de>
18525 Date:   Tue Dec 16 14:44:06 2008 +0100
18526
18527     post/Makefile: fix dependency problem with parallel builds
18528
18529     Parallel builds (using "make -jN") would occasionally fail with error
18530     messages like
18531         ppc_4xxFP-objdump: string.o: File format not recognized
18532     or
18533         post/libpost.a(cpu.o): In function `cpu_post_test':
18534         /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
18535     or similar. We now make sure to run the 'postdeps" step before
18536     attempting to build the specific POST libraries.
18537
18538     Signed-off-by: Wolfgang Denk <wd@denx.de>
18539
18540 commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
18541 Author: Wolfgang Denk <wd@denx.de>
18542 Date:   Tue Dec 16 14:41:02 2008 +0100
18543
18544     Makefile: fix dependency problem with parallel builds
18545
18546     Parallel builds (using "make -jN") would occasionally fail with error
18547     messages like
18548         include/autoconf.mk:212: *** missing separator.  Stop.
18549     Line numbers and affected boards were changing. Obviously some
18550     Makefiles included autoconf.mk while it was still being written to.
18551     As a fix, we now write to a temporary file first and then rename it,
18552     so that it is really ready to use as soon as it appears.
18553
18554     Signed-off-by: Wolfgang Denk <wd@denx.de>
18555
18556 commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
18557 Author: Wolfgang Denk <wd@denx.de>
18558 Date:   Tue Dec 16 01:02:17 2008 +0100
18559
18560     Coding style cleanup, update CHANGELOG.
18561
18562     Signed-off-by: Wolfgang Denk <wd@denx.de>
18563
18564 commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
18565 Author: Mike Frysinger <vapier@gentoo.org>
18566 Date:   Thu Dec 11 18:39:08 2008 -0500
18567
18568     spi/stmicro: fix debug() display of cmd
18569
18570     The stmicro_wait_ready() func tries to show the actual opcode that was sent
18571     to the device, but instead it displays the array pointer.  Fix it to pull
18572     out the opcode from the start of the array.
18573
18574     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18575
18576 commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
18577 Author: Mike Frysinger <vapier@gentoo.org>
18578 Date:   Thu Dec 11 06:23:37 2008 -0500
18579
18580     env_sf: support embedded environments
18581
18582     If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
18583     size is larger than the env size, then it means the env is embedded in a
18584     block.  So we have to save/restore the part of the sector which is not the
18585     environment.  Previously, saving the environment in SPI flash in this
18586     setup would probably brick the board as the rest of the sector tends to
18587     contain actual U-Boot data/code.
18588
18589     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18590     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18591
18592 commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
18593 Author: Timur Tabi <timur@freescale.com>
18594 Date:   Wed Dec 3 11:28:30 2008 -0600
18595
18596     i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
18597
18598     All implementations of the functions i2c_reg_read() and
18599     i2c_reg_write() are identical. We can save space and simplify the
18600     code by converting these functions into inlines and putting them in
18601     i2c.h.
18602
18603     Signed-off-by: Timur Tabi <timur@freescale.com>
18604     Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18605
18606 commit e39cd81c44740d7355d277ed3d38536cbe1e003d
18607 Author: Dave Liu <daveliu@freescale.com>
18608 Date:   Fri Dec 5 15:36:14 2008 +0800
18609
18610     lib_ppc: rework the flush_cache
18611
18612     - It is possible to miss flush/invalidate the last
18613       cache line, we fix it at here.
18614     - add the volatile and memory clobber.
18615
18616     They are pointed by Scott Wood.
18617
18618     Signed-off-by: Dave Liu <daveliu@freescale.com>
18619
18620 commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
18621 Author: Kumar Gala <galak@kernel.crashing.org>
18622 Date:   Sat Dec 13 17:20:28 2008 -0600
18623
18624     Introduce addr_map library
18625
18626     Add a library that helps in translating between virtual and physical
18627     addresses.  This library can be useful as a simple means to implement
18628     map_physmem() and virt_to_phys() for platforms that need functionality
18629     beyond the simple 1:1 mapping.
18630
18631     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18632
18633 commit 65e43a10631537dcb92c302d36301a12308216c3
18634 Author: Kumar Gala <galak@kernel.crashing.org>
18635 Date:   Sat Dec 13 17:20:27 2008 -0600
18636
18637     Introduce virt_to_phys()
18638
18639     virt_to_phys() returns the physical address given a virtual. In most
18640     cases this will be just the input value as the vast majority of
18641     systems run in a 1:1 mode.
18642
18643     However in systems that are not running this way it should report the
18644     physical address or ~0 if no mapping exists for the given virtual
18645     address.
18646
18647     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18648
18649 commit 45845301af3de8675c1f7bbc815c6de35452605a
18650 Author: Yuri Tikhonov <yur@emcraft.com>
18651 Date:   Sun Dec 7 22:12:50 2008 +0100
18652
18653     POST Make: fix the sub-dir dependencies missing.
18654
18655     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18656
18657 commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
18658 Author: Martin Michlmayr <tbm@cyrius.com>
18659 Date:   Wed Aug 6 14:44:05 2008 +0300
18660
18661     Fix a typo in fw_env.config
18662
18663     Reported-by: Martin Michlmayr <tbm@cyrius.com>
18664     Signed-off-by: Wolfgang Denk <wd@denx.de>
18665
18666 commit ba490b7761c62b549c222a9723e532dc801a3899
18667 Author: Peter Tyser <ptyser@xes-inc.com>
18668 Date:   Mon Dec 1 16:22:45 2008 -0600
18669
18670     Remove unused CONFIG_ADDR_STREAMING defines
18671
18672     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18673
18674 commit d16da93430520d3e46c1ab52eedacf36ab7a2311
18675 Author: Peter Tyser <ptyser@xes-inc.com>
18676 Date:   Mon Nov 24 11:54:47 2008 -0600
18677
18678     cmd_mem: Remove unused variable
18679
18680     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18681
18682 commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
18683 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18684 Date:   Sun Dec 14 10:29:39 2008 +0100
18685
18686     Fix new found CFG_
18687
18688     Also fix some minor typos.
18689
18690     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18691     Signed-off-by: Wolfgang Denk <wd@denx.de>
18692
18693 commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
18694 Author: Sergei Poselenov <sposelenov@emcraft.com>
18695 Date:   Fri Sep 19 12:07:34 2008 +0200
18696
18697     Remove compiler warning: target CPU does not support interworking
18698
18699     This warning is issued by modern ARM-EABI GCC on non-thumb targets.
18700
18701     Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
18702     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18703
18704 commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
18705 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18706 Date:   Mon Nov 24 13:33:51 2008 +0100
18707
18708     Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
18709
18710     FDT support is used for both FIT style images and for architectures
18711     that can pass a fdt blob to an OS (ppc, m68k, sparc).
18712
18713     For other architectures and boards which do not pass a fdt blob to an
18714     OS but want to use the new uImage format, we just need FIT support.
18715
18716     Now we can have the 4 following configurations :
18717
18718     1) FIT only             CONFIG_FIT
18719     2) fdt blob only        CONFIG_OF_LIBFDT
18720     3) both                 CONFIG_OF_LIBFDT & CONFIG_FIT
18721     4) none                 none
18722
18723     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18724
18725 commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
18726 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18727 Date:   Wed Dec 10 15:13:32 2008 +0100
18728
18729     ppc4xx: Disable EEPROM write access on PMC440 boards
18730
18731     This patch disables EEPROM wrtie access by default on PMC440 board.
18732
18733     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18734
18735 commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
18736 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18737 Date:   Wed Dec 10 15:12:56 2008 +0100
18738
18739     ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
18740
18741     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18742
18743 commit 71fa0714fe5134bc8718c38d5261d267e88582ba
18744 Author: Stefan Roese <sr@denx.de>
18745 Date:   Tue Nov 18 16:36:12 2008 +0100
18746
18747     MIPS: Flush data cache upon relocation
18748
18749     This patch now adds a flush to the data cache upon relocation. The
18750     current implementation is missing this. Only a comment states that it
18751     should be done. So let's really do it now.
18752
18753     Signed-off-by: Stefan Roese <sr@denx.de>
18754     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18755
18756 commit 44174343688dba32571a34550dba08971c65fef1
18757 Author: Stefan Roese <sr@denx.de>
18758 Date:   Tue Nov 18 16:36:22 2008 +0100
18759
18760     MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
18761
18762     This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
18763     enables support for boards where the lowlevel initialization is
18764     already done when U-Boot runs (e.g. via OnChip ROM).
18765
18766     This will be used in the upcoming VCTH board support.
18767
18768     Signed-off-by: Stefan Roese <sr@denx.de>
18769     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18770
18771 commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
18772 Author: Stefan Roese <sr@denx.de>
18773 Date:   Wed Nov 12 13:18:02 2008 +0100
18774
18775     MIPS: Add board_early_init_f() to init_sequence
18776
18777     This patch adds the board_early_init_f() call to the MIPS init
18778     sequence. A weak dummy implementation is also added which can be
18779     overridden by a board specific version.
18780
18781     This will be used by the upcoming VCTH board support.
18782
18783     Signed-off-by: Stefan Roese <sr@denx.de>
18784     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18785
18786 commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
18787 Author: Stefan Roese <sr@denx.de>
18788 Date:   Wed Nov 12 13:18:19 2008 +0100
18789
18790     MIPS: Add onenand_init() to board.c and move nand_init()
18791
18792     This patch adds a call to onenand_init() for OneNAND support and moves
18793     the nand_init() call to an earlier place, so that the environment can
18794     be used from NAND and OneNAND.
18795
18796     Signed-off-by: Stefan Roese <sr@denx.de>
18797     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18798
18799 commit d8bbc51c7ba9b737a20984333d19fe28a3526431
18800 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18801 Date:   Tue Dec 9 11:32:46 2008 +0900
18802
18803     sh: Update sh2/sh2a timer
18804
18805     Renesas SH2/SH2A timer broken.
18806     This patch fix timer function.
18807
18808     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18809     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18810
18811 commit a319f1496210117b73198e3d889ffffaf6825d00
18812 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18813 Date:   Fri Dec 5 07:27:37 2008 +0100
18814
18815     sh: r2dplus fix register access
18816
18817     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18818     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18819
18820 commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
18821 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18822 Date:   Tue Dec 2 07:40:03 2008 +0100
18823
18824     sh: r2dplus/lowlevel_init: coding style fix
18825
18826     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18827     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18828
18829 commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
18830 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18831 Date:   Tue Nov 25 11:05:19 2008 +0900
18832
18833     sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
18834
18835     SH4 is different a value of CACHE_OC_NUM_ENTRIES and
18836     CACHE_OC_WAY_SHIFT every CPU.
18837     This patch corrects these values.
18838
18839     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18840     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18841
18842 commit e9d5f35497885b3c65d494d09a525d443dcccd3b
18843 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18844 Date:   Thu Nov 20 16:44:42 2008 +0900
18845
18846     sh: Update sh timer function
18847
18848     Change to write/readX function and fix timer problem.
18849
18850     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18851     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18852
18853 commit b81786cff476c41e332eaeb679158f6527cd67d4
18854 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18855 Date:   Tue Nov 4 11:58:58 2008 +0900
18856
18857     sh: Migo-R: Update BSC value
18858
18859     A value of BSC CS4 was wrong, Fixed it.
18860
18861     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18862     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18863
18864 commit 5783758fd260a02f44566ad8f29f899565cd0403
18865 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18866 Date:   Mon Nov 17 16:52:09 2008 +0900
18867
18868     sh: Update ms7722se board config
18869
18870     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18871     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18872
18873 commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
18874 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18875 Date:   Mon Nov 17 16:53:09 2008 +0900
18876
18877     sh: Update SuperH serial driver
18878
18879     The address of SCFSR register is wrong at SH7720/SH7721.
18880     This patch fix this.
18881
18882     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18883     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18884
18885 commit 9a1d3557dcd47365c12eeab584b822e57d994352
18886 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18887 Date:   Tue Nov 11 22:20:15 2008 +0100
18888
18889     sh: fix rsk7203 and MigoR out of tree build
18890
18891     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18892     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18893
18894 commit 1951f847f0a851853871b613ad7cf21a5242226c
18895 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18896 Date:   Wed Dec 10 14:41:25 2008 +0100
18897
18898     ppc4xx: Update TEXT_BASE for CPCI405 boards
18899
18900     This patch fixes building U-Boot for CPCI405 boards.
18901
18902     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18903     Signed-off-by: Stefan Roese <sr@denx.de>
18904
18905 commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
18906 Author: Stefan Roese <sr@denx.de>
18907 Date:   Tue Dec 9 20:08:01 2008 +0100
18908
18909     ppc4xx: Remove some features from ALPR to fit into 256k again
18910
18911     Signed-off-by: Stefan Roese <sr@denx.de>
18912
18913 commit 3b089e4f889a2902449d55e081c886ae607cae89
18914 Author: Stefan Roese <sr@denx.de>
18915 Date:   Wed Dec 10 10:32:59 2008 +0100
18916
18917     UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
18918
18919     With this patch we set the type back to NONE upon failing UBI partition
18920     initialization. Otherwise further calls to the UBI subsystem would try
18921     to really access the non-existing UBI partition.
18922
18923     Thanks to Michael Lawnick for pointing this out.
18924
18925     Signed-off-by: Stefan Roese <sr@denx.de>
18926
18927 commit 817329351639a8895cd9b87b33aeff043f3d5a44
18928 Author: Stefan Roese <sr@denx.de>
18929 Date:   Wed Dec 10 10:28:33 2008 +0100
18930
18931     UBI: Return -ENOMEM upon failing malloc
18932
18933     Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
18934     failing malloc().
18935
18936     Signed-off-by: Stefan Roese <sr@denx.de>
18937
18938 commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
18939 Author: Ben Warren <biggerbadderben@gmail.com>
18940 Date:   Tue Dec 9 23:34:15 2008 -0800
18941
18942     Fix compile error in building MBX860T.
18943
18944     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18945
18946 commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
18947 Author: Michal Simek <monstr@monstr.eu>
18948 Date:   Tue Nov 25 11:42:20 2008 +0100
18949
18950     microblaze: Remove XUPV2P board
18951
18952     ---
18953
18954     Microblaze platforms use generic settings and to have
18955     many platforms is confusing that's why I decided to remove this
18956     platform from U-BOOT. ml401 tree is sufficient for covering
18957     all Microblaze platforms.
18958
18959     This change will go through microblaze custodian tree.
18960
18961 commit 99ba6f353582720defff6e6e6761dc455a207d31
18962 Author: Michal Simek <monstr@monstr.eu>
18963 Date:   Mon Nov 24 18:25:41 2008 +0100
18964
18965     microblaze: Remove CONFIG_LIBFDT due to error in common files
18966
18967 commit e7d591e823a991513833af7030468409e25a3b13
18968 Author: Michal Simek <monstr@monstr.eu>
18969 Date:   Mon Nov 24 11:43:00 2008 +0100
18970
18971     microblaze: Fix ml401 uart16550 setting
18972
18973     Signed-off-by: Michal Simek <monstr@monstr.eu>
18974
18975 commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
18976 Author: Michal Simek <monstr@monstr.eu>
18977 Date:   Mon Nov 24 11:38:22 2008 +0100
18978
18979     microblaze: Set up relocation is done
18980
18981 commit bcb6dd9187d4b23c748704767bd12d20c829e996
18982 Author: Mike Frysinger <vapier@gentoo.org>
18983 Date:   Tue Dec 9 23:20:31 2008 -0500
18984
18985     tools/netconsole: new script for working with netconsole over UDP
18986
18987     While the doc/README.NetConsole does have a snippet for people to
18988     create their own netcat script, it's a lot easier to make a simple
18989     dedicated script and tell people to use it.
18990
18991     Also spruce it up a bit to make it user friendly.
18992
18993     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18994
18995 commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
18996 Author: Sonic Zhang <Sonic.Zhang@analog.com>
18997 Date:   Tue Dec 9 23:20:18 2008 -0500
18998
18999     fs/fat: handle FAT on SATA
19000
19001     The FAT file system driver should also handle FAT on SATA devices.
19002
19003     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
19004     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19005
19006 commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6
19007 Author: Ben Warren <biggerbadderben@gmail.com>
19008 Date:   Tue Dec 9 23:26:31 2008 -0800
19009
19010     Fix compile error in building MBX860T.
19011     Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd
19012
19013     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19014
19015 commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
19016 Author: Jerry Van Baren <gvb.uboot@gmail.com>
19017 Date:   Mon Nov 24 08:15:02 2008 -0500
19018
19019     libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
19020
19021     Compiling U-Boot in an old OS environment (RedHat-7.3  :-)  gives the
19022     following warnings from FDT:
19023
19024     include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
19025     /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
19026
19027     Fix: Protect the definition of uintptr_t when compiling on the host
19028     system.
19029
19030     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
19031
19032 commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
19033 Author: Graeme Russ <graeme.russ@gmail.com>
19034 Date:   Sat Nov 22 08:43:29 2008 +1100
19035
19036     Moved sc520 PCI definitions to stand-alone file
19037
19038     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
19039
19040 commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
19041 Author: Graeme Russ <graeme.russ@gmail.com>
19042 Date:   Sat Nov 22 08:43:21 2008 +1100
19043
19044     Fixed path to sc520 SSI include file
19045
19046     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
19047
19048 commit d4f70da544c33db3e4fce6473dea4ecca4322545
19049 Author: Graeme Russ <graeme.russ@gmail.com>
19050 Date:   Fri Nov 21 06:28:05 2008 +1100
19051
19052     Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
19053
19054     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
19055
19056 commit c034075a713b60e654c64e88e87da29440f31bb4
19057 Author: Stefan Roese <sr@denx.de>
19058 Date:   Wed Nov 12 13:30:10 2008 +0100
19059
19060     serial: Add vcth UART driver
19061
19062     This patch adds the UART driver for the upcoming VCTH board support.
19063
19064     Signed-off-by: Stefan Roese <sr@denx.de>
19065
19066 commit 142a80ffc3b537a9c45acd2444a42a77f147c602
19067 Author: Ilya Yanok <yanok@emcraft.com>
19068 Date:   Thu Nov 13 19:49:36 2008 +0300
19069
19070     jffs2: cache data_crc results
19071
19072     As we moved data_crc() invocation from jffs2_1pass_build_lists() to
19073     jffs2_1pass_read_inode() data_crc is going to be calculated on each
19074     inode access. This patch adds caching of data_crc() results. There
19075     is no significant improvement in speed (because of flash access
19076     caching added in previous patch I think, crc in RAM is really fast)
19077     but this patch impacts memory usage -- every b_node structure uses
19078     12 bytes instead of 8.
19079
19080     Signed-off-by: Alexey Neyman <avn@emcraft.com>
19081     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19082
19083 commit 9b7076229ec6a958bd835ab70745f7676297ce82
19084 Author: Ilya Yanok <yanok@emcraft.com>
19085 Date:   Thu Nov 13 19:49:35 2008 +0300
19086
19087     jffs2: summary support
19088
19089     This patch adds support for reading fs information from summary
19090     node instead of scanning full eraseblock.
19091
19092     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19093
19094 commit 70741004dc28946cd82c7af6789c4ddb3fc94526
19095 Author: Ilya Yanok <yanok@emcraft.com>
19096 Date:   Thu Nov 13 19:49:34 2008 +0300
19097
19098     jffs2: add buffer to cache flash accesses
19099
19100     With this patch JFFS2 code allocates memory buffer of max_totlen size
19101     (size of the largest node, calculated during scan time) and uses it to
19102     store entire node. Speeds up loading. If malloc fails we use old ways
19103     to do things.
19104
19105     Signed-off-by: Alexey Neyman <avn@emcraft.com>
19106     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19107
19108 commit 8a36d31f72411144ac0412ee7e1880e801acd754
19109 Author: Ilya Yanok <yanok@emcraft.com>
19110 Date:   Thu Nov 13 19:49:33 2008 +0300
19111
19112     jffs2: rewrite jffs2 scanning code based on Linux one
19113
19114     Rewrites jffs2_1pass_build_lists() function in style of Linux's
19115     jffs2_scan_medium() and jffs2_scan_eraseblock().
19116     This includes:
19117      - Caching flash acceses
19118      - Smart dealing with free space
19119
19120     Signed-off-by: Alexey Neyman <avn@emcraft.com>
19121     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19122
19123 commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
19124 Author: Ilya Yanok <yanok@emcraft.com>
19125 Date:   Thu Nov 13 19:49:32 2008 +0300
19126
19127     jffs2: add sector_size field to part_info structure
19128
19129     This patch adds sector_size field to part_info structure (used
19130     by new JFFS2 code).
19131
19132     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19133
19134 commit f73846956778a7dfee83403ef9747aff77198848
19135 Author: Ilya Yanok <yanok@emcraft.com>
19136 Date:   Thu Nov 13 19:49:31 2008 +0300
19137
19138     jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
19139
19140     We need to update i_version inside cycle to find really latest version
19141     inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
19142     dump_inode() instead of calling expensive jffs2_1pass_read_inode().
19143
19144     Signed-off-by: Alexey Neyman <avn@emcraft.com>
19145     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19146
19147 commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
19148 Author: Wolfgang Denk <wd@denx.de>
19149 Date:   Tue Dec 9 23:13:51 2008 +0100
19150
19151     evb64260: fix "cast to pointer from integer of different size" warnings
19152
19153     Signed-off-by: Wolfgang Denk <wd@denx.de>
19154
19155 commit d2776827315c3d469b8cb4cec14d58877798daa2
19156 Author: Stefan Althoefer <stefan.althoefer@web.de>
19157 Date:   Sun Dec 7 19:39:11 2008 +0100
19158
19159     USB: descriptor handling
19160
19161     Hi,
19162
19163     I found a bug when working with the u-boot USB subsystem on IXP425 processor
19164     (big endian Xscale aka ARMv5).
19165     I recognized that the second usb_endpoint_descriptor of the attached memory
19166     stick was corrupted.
19167
19168     The reason for this are the packed structures below (either u-boot and
19169     u-boot-usb):
19170
19171     --------------
19172     /* Endpoint descriptor */
19173     struct usb_endpoint_descriptor {
19174         unsigned char  bLength;
19175         unsigned char  bDescriptorType;
19176         unsigned char  bEndpointAddress;
19177         unsigned char  bmAttributes;
19178         unsigned short wMaxPacketSize;
19179         unsigned char  bInterval;
19180         unsigned char  bRefresh;
19181         unsigned char  bSynchAddress;
19182
19183     } __attribute__ ((packed));
19184     /* Interface descriptor */
19185     struct usb_interface_descriptor {
19186         unsigned char  bLength;
19187         unsigned char  bDescriptorType;
19188         unsigned char  bInterfaceNumber;
19189         unsigned char  bAlternateSetting;
19190         unsigned char  bNumEndpoints;
19191         unsigned char  bInterfaceClass;
19192         unsigned char  bInterfaceSubClass;
19193         unsigned char  bInterfaceProtocol;
19194         unsigned char  iInterface;
19195
19196         unsigned char  no_of_ep;
19197         unsigned char  num_altsetting;
19198         unsigned char  act_altsetting;
19199         struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
19200     } __attribute__ ((packed));
19201     ------------
19202
19203     As usb_endpoint_descriptor is only 7byte in length, the start of all
19204     odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
19205     of these structures also not word aligned.
19206
19207     ARMv5 Architecture however does not support non-aligned multibyte
19208     data type (see A2.8 of ARM Architecture Reference Manual).
19209
19210     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
19211     Signed-off-by: Remy Böhmer <linux@bohmer.net>
19212
19213 commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
19214 Author: Kumar Gala <galak@kernel.crashing.org>
19215 Date:   Tue Dec 9 10:27:33 2008 -0600
19216
19217     drivers/fsl_pci_init: Fix compile warning
19218
19219     fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
19220     fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
19221
19222     The check only makes sense if we are CONFIG_PHYS_64BIT
19223
19224     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19225
19226 commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
19227 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19228 Date:   Sun Dec 7 09:45:35 2008 +0100
19229
19230     usbtty/omap: update to current API
19231
19232     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19233     Signed-off-by: Remy Böhmer <linux@bohmer.net>
19234
19235 commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
19236 Author: Anatolij Gustschin <agust@denx.de>
19237 Date:   Tue Dec 9 17:52:05 2008 +0100
19238
19239     video: fix FADS823 and RRvision compiling issues
19240
19241     Since commit 561858ee building for FADS823 and RRvision
19242     doesn't work. Let's include version.h and timestamp.h
19243     unconditionally to fix the problem.
19244
19245     Signed-off-by: Anatolij Gustschin <agust@denx.de>
19246
19247 commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
19248 Author: Stefan Roese <sr@denx.de>
19249 Date:   Tue Dec 2 10:53:47 2008 +0100
19250
19251     UBI: Fix size parsing in "ubi create"
19252
19253     Signed-off-by: Stefan Roese <sr@denx.de>
19254
19255 commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
19256 Author: Stefan Roese <sr@denx.de>
19257 Date:   Thu Nov 27 14:07:09 2008 +0100
19258
19259     UBI: Enable re-initializing of the "ubi part" command
19260
19261     With this patch now, the user can call "ubi part" multiple times to
19262     re-connect the UBI device to another MTD partition.
19263
19264     Signed-off-by: Stefan Roese <sr@denx.de>
19265
19266 commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
19267 Author: Stefan Roese <sr@denx.de>
19268 Date:   Thu Nov 27 14:05:15 2008 +0100
19269
19270     MTD: Fix problem based on non-working relocation (list head mtd_partitions)
19271
19272     Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
19273     first call of add_mtd_partitions(). Otherwise this won't work on platforms
19274     where the relocation is broken (like MIPS or PPC).
19275
19276     Signed-off-by: Stefan Roese <sr@denx.de>
19277
19278 commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
19279 Author: Trent Piepho <tpiepho@freescale.com>
19280 Date:   Wed Nov 12 17:29:48 2008 -0800
19281
19282     Section name should be ".data", not "data"
19283
19284     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
19285     Signed-off-by: Wolfgang Denk <wd@denx.de>
19286
19287 commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
19288 Author: Wolfgang Denk <wd@denx.de>
19289 Date:   Tue Dec 9 00:39:08 2008 +0100
19290
19291     MAKEALL: Automatically use parallel builds
19292
19293     Add logic to the MAKEALL script to determine the number of CPU cores
19294     on the system, and run a parallel build if there is more than one.
19295     Usually this significantrly accelerates builds.
19296
19297     Allow to manually adjust the number of parallel make jobs by using
19298     the "BUILD_NCPUS" environment variable.
19299
19300     Signed-off-by: Wolfgang Denk <wd@denx.de>
19301
19302 commit 268405fa7c44156c5192a70779920c70906af8d6
19303 Author: Wolfgang Denk <wd@denx.de>
19304 Date:   Tue Dec 9 00:24:30 2008 +0100
19305
19306     vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
19307
19308     Signed-off-by: Wolfgang Denk <wd@denx.de>
19309
19310 commit 153176a9414120ca1736f3cc4951623d6e14e6af
19311 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19312 Date:   Tue Nov 11 06:08:59 2008 +0100
19313
19314     avr32/bootm: remove unused variable 'ret'
19315
19316     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19317     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19318
19319 commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
19320 Author: Peter Tyser <ptyser@xes-inc.com>
19321 Date:   Wed Nov 12 13:06:48 2008 -0600
19322
19323     Remove unneeded CONFIG_SHELL references
19324
19325     Make should be using the bash shell by default which makes
19326     CONFIG_SHELL unnecessary
19327
19328     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19329
19330 commit cf7a7b99794bac936899819b95539be1dbd71708
19331 Author: Peter Tyser <ptyser@xes-inc.com>
19332 Date:   Wed Nov 12 12:33:20 2008 -0600
19333
19334     Use bash for default GNU Make shell application
19335
19336     Some Make script commands rely on bash-specific features like brace
19337     expansion, so default to bash for the SHELL variable with a fallback
19338     to the standard sh shell
19339
19340     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19341
19342 commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
19343 Author: Heiko Schocher <hs@denx.de>
19344 Date:   Wed Nov 12 09:50:45 2008 +0100
19345
19346     jffs2: rename devices_init () in common/jffs2.c
19347
19348     rename devices_init () in common/jffs2.c to
19349     jffs2_devices_init (), because there is also a
19350     devices_init () in common/devices.c.
19351
19352     Signed-off-by: Heiko Schocher <hs@denx.de>
19353
19354 commit af5eb847a10f1037590001355d88bab3fe7be48b
19355 Author: Daniel Hellstrom <daniel@gaisler.com>
19356 Date:   Mon Nov 10 12:46:20 2008 +0000
19357
19358     SPARC: Fixed compiler error introduced by commit c160a9544743
19359
19360     This patch fixes a build error for the SPARC platform. It was
19361     introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
19362
19363     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
19364
19365 commit 4c60259899aa00f59db0d936b8807f9a26411c0f
19366 Author: Gary Jennejohn <garyj@denx.de>
19367 Date:   Sun Nov 9 12:50:59 2008 +0100
19368
19369     mgsuvd add the board-specific part of the HDLC driver
19370
19371     Signed-off-by: Gary Jennejohn <garyj@denx.de>
19372
19373 commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
19374 Author: Gary Jennejohn <garyj@denx.de>
19375 Date:   Sun Nov 9 12:45:03 2008 +0100
19376
19377     mgcoge add the board-specific part of the HDLC driver
19378
19379     Signed-off-by: Gary Jennejohn <garyj@denx.de>
19380
19381 commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
19382 Author: Gary Jennejohn <garyj@denx.de>
19383 Date:   Sun Nov 9 12:36:15 2008 +0100
19384
19385     keymile add the common parts of the HDLC driver
19386
19387     This implements the ICN protocol used across the backplane and is
19388     needed by all the keymile boards.
19389
19390     Signed-off-by: Gary Jennejohn <garyj@denx.de>
19391
19392 commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
19393 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19394 Date:   Fri Nov 7 22:46:22 2008 +0100
19395
19396     drivers/bios_emulator: Move conditional compilation to Makefile
19397
19398     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19399
19400 commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
19401 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
19402 Date:   Thu Nov 6 14:01:51 2008 -0500
19403
19404     common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
19405
19406     Corrected endian order printing for compact flash serial number.
19407
19408     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
19409
19410 commit 16a28ef219c27423a1ef502f19070c4d375079b8
19411 Author: Gary Jennejohn <garyj@denx.de>
19412 Date:   Thu Nov 6 15:04:23 2008 +0100
19413
19414     IOMUX: Add console multiplexing support.
19415
19416     Modifications to support console multiplexing.  This is controlled using
19417     CONFIG_SYS_CONSOLE_MUX in the board configuration file.
19418
19419     This allows a user to specify multiple console devices in the environment
19420     with a command like this: setenv stdin serial,nc.  As a result, the user can
19421     enter text on both the serial and netconsole interfaces.
19422
19423     All devices - stdin, stdout and stderr - can be set in this manner.
19424
19425     1) common/iomux.c and include/iomux.h contain the environment setting
19426     implementation.
19427     2) doc/README.iomux contains a somewhat more detailed description.
19428     3) The implementation in (1) is called from common/cmd_nvedit.c to
19429     handle setenv and from common/console.c to handle initialization of
19430     input/output devices at boot time.
19431     4) common/console.c also contains the code needed to poll multiple console
19432     devices for input and send output to all devices registered for output.
19433     5) include/common.h includes iomux.h and common/Makefile generates iomux.o
19434     when CONFIG_SYS_CONSOLE_MUX is set.
19435
19436     Signed-off-by: Gary Jennejohn <garyj@denx.de>
19437
19438 commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
19439 Author: Mike Frysinger <vapier@gentoo.org>
19440 Date:   Tue Nov 4 16:03:46 2008 -0500
19441
19442     strings: use puts() rather than printf()
19443
19444     When running `strings` on really long strings, the stack tends to get
19445     smashed due to printf().  Switch to puts() instead since we're only passing
19446     the data through.
19447
19448     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19449
19450 commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
19451 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
19452 Date:   Mon Nov 3 22:16:18 2008 +0100
19453
19454     Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
19455
19456     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
19457
19458 commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
19459 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
19460 Date:   Mon Nov 3 22:15:34 2008 +0100
19461
19462     cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
19463
19464     - fix size too small by one in sprintf
19465     - changed old (pre 2004) device name ibmEmac to emac
19466     - boot device may be overriden in board config
19467     - servername may be defined in board config
19468     - additional parameters may be defined in board config
19469     - fixed some line wrappings
19470     - replaced  redundant MAX define by max
19471
19472     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
19473
19474 commit e9084b23d16102f44ace24379a1c0c352497ef80
19475 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
19476 Date:   Mon Nov 3 22:14:36 2008 +0100
19477
19478     Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
19479
19480     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
19481
19482 commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
19483 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
19484 Date:   Mon Nov 3 22:13:47 2008 +0100
19485
19486     README: Document CONFIG_SYS parameters for vxworks
19487
19488     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
19489
19490 commit ace514837cac656e29c37a19569cb8ea83071126
19491 Author: Peter Tyser <ptyser@xes-inc.com>
19492 Date:   Fri Oct 31 11:12:38 2008 -0500
19493
19494     lcd: Let the board code show board-specific info cleanup
19495
19496     remove unneeded version.h from lcd.c
19497
19498     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19499     Signed-off-by: Wolfgang Denk <wd@denx.de>
19500
19501 commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
19502 Author: Peter Tyser <ptyser@xes-inc.com>
19503 Date:   Mon Nov 3 09:30:59 2008 -0600
19504
19505     Update U-Boot's build timestamp on every compile
19506
19507     Use the GNU 'date' command to auto-generate a new U-Boot
19508     timestamp on every compile.
19509
19510     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19511
19512 commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
19513 Author: Remy Bohmer <linux@bohmer.net>
19514 Date:   Thu Dec 4 22:25:57 2008 +0100
19515
19516     Remove redundant armv4 flag from arm926ejs compile flags
19517
19518     Currently the arm926ejs tree has the armv4 option set during compilation.
19519     This flag does not belong here because a arm926 CPU is always a armv5 CPU.
19520
19521     Signed-off-by: Remy Bohmer <linux@bohmer.net>
19522
19523 commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
19524 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
19525 Date:   Sat Dec 6 13:11:14 2008 +0100
19526
19527     at91: Choose environment variables location within make config target
19528
19529     This patch adds the possiblity to choose the media where the environment will
19530     be located. This allow to choose this fundamental configuration without editing
19531     config files.
19532
19533     Documentation file added.
19534
19535     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
19536     Acked-by: Stelian Pop <stelian@popies.net>
19537     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19538
19539 commit 1450c4a6682378567030414a9f1198c39b7730c7
19540 Author: Anatolij Gustschin <agust@denx.de>
19541 Date:   Mon Nov 3 15:30:34 2008 +0100
19542
19543     lwmon, tqm8xx: Fix build errors
19544
19545     Commit 6b59e03e0237a40a2305ea385defdfd92000978b
19546     lcd: Let the board code show board-specific info
19547
19548     introduced some bugs which prevent U-Boot building
19549     for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
19550     be defined in the board configuration.
19551
19552     Also "LCD enabled" building for TQM823L doesn't work
19553     since this commit.
19554
19555     This patch fixes above-mentioned issues.
19556
19557     Signed-off-by: Anatolij Gustschin <agust@denx.de>
19558
19559 commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
19560 Author: Mike Frysinger <vapier@gentoo.org>
19561 Date:   Sun Nov 2 01:18:18 2008 -0400
19562
19563     ignore .gdb_history files
19564
19565     When using gdb, history files will often get generated.  So ignore them.
19566
19567     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19568
19569 commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
19570 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19571 Date:   Fri Oct 31 12:26:55 2008 +0100
19572
19573     FPGA: move fpga drivers to drivers/fpga
19574
19575     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19576
19577 commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
19578 Author: Peter Tyser <ptyser@xes-inc.com>
19579 Date:   Mon Dec 1 16:29:38 2008 -0600
19580
19581     net: Fix TftpStart() ip:filename bug
19582
19583     The TftpStart() function modifies the 'BootFile'
19584     string when 'BootFile' contains both an IP address
19585     and filename (eg 1.2.3.4:/path/file). This causes
19586     subsequent calls to TftpStart to incorrectly parse
19587     the TFTP filename and server IP address to use.
19588     For example:
19589
19590     => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
19591     Speed: 100, half duplex
19592     Using eTSEC1 device
19593     TFTP from server 10.52.0.62; our IP address is 10.52.253.79
19594                      ^^^^^^^^^^ CORRECT
19595     Filename '/home/ptyser/non_existant'.
19596               ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
19597     Load address: 0x100000
19598     Loading: *
19599     TFTP error: 'File not found' (1)
19600     Starting again
19601
19602     eTSEC2: No link.
19603     Speed: 100, half duplex
19604     Using eTSEC1 device
19605     TFTP from server 10.52.0.33; our IP address is 10.52.253.79
19606                      ^^^^^^^^^^ WRONG
19607     Filename '10.52.0.62'.
19608               ^^^^^^^^^^ WRONG
19609     Load address: 0x100000
19610     Loading: *
19611     TFTP error: 'File not found' (1)
19612     Starting again
19613
19614     TftpStart() was modified to not modify the 'BootFile' string.
19615
19616     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19617     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19618
19619 commit d32c5be50bf0600bfdc54223ef341ee9c63db445
19620 Author: Peter Tyser <ptyser@xes-inc.com>
19621 Date:   Mon Dec 1 16:26:21 2008 -0600
19622
19623     net: Add additional IP fragmentation check
19624
19625     Ignore IP packets which have the "more fragments" flag bit
19626     set.  This flag indicates the IP packet is fragmented and
19627     must be ignored by U-Boot.
19628
19629     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19630     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19631
19632 commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
19633 Author: Peter Tyser <ptyser@xes-inc.com>
19634 Date:   Mon Dec 1 16:26:20 2008 -0600
19635
19636     net: Define IP flag field values
19637
19638     These defines were pulled from the "Add simple
19639     IP/UDP fragmentation support" patch from Frank
19640     Haverkamp <haver@vnet.ibm.com>.
19641
19642     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19643     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19644
19645 commit 23afaba65ec5206757e589ef334a8b38168c045f
19646 Author: Anatolij Gustschin <agust@denx.de>
19647 Date:   Tue Dec 2 10:31:04 2008 +0100
19648
19649     net: tsec: Fix Marvell 88E1121R phy init
19650
19651     This patch tries to ensure that phy interrupt pin
19652     won't be asserted after booting. We experienced
19653     following issues with current 88E1121R phy init:
19654
19655     Marvell 88E1121R phy can be hardware-configured
19656     to share MDC/MDIO and interrupt pins for both ports
19657     P0 and P1 (e.g. as configured on socrates board).
19658     Port 0 interrupt pin will be shared by both ports
19659     in such configuration. After booting Linux and
19660     configuring eth0 interface, port 0 phy interrupts
19661     are enabled. After rebooting without proper eth0
19662     interface shutdown port 0 phy interrupts remain
19663     enabled so any change on port 0 (link status, etc.)
19664     cause assertion of the interrupt. Now booting Linux
19665     and configuring eth1 interface will cause permanent
19666     phy interrupt storm as the registered phy 1 interrupt
19667     handler doesn't acknowledge phy 0 interrupts. This
19668     of course should be fixed in Linux driver too.
19669
19670     Signed-off-by: Anatolij Gustschin <agust@denx.de>
19671     Acked-by: Andy Fleming <afleming@freescale.com>
19672     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19673
19674 commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
19675 Author: Peter Tyser <ptyser@xes-inc.com>
19676 Date:   Tue Dec 2 12:59:51 2008 -0600
19677
19678     net: Fix download command parsing
19679
19680     When CONFIG_SYS_HUSH_PARSER is defined network download
19681     commands with 1 argument in the format 'tftp "/path/file"'
19682     do not work as expected. The hush command parser strips
19683     the quotes from "/path/file" which causes the network
19684     commands to interpret "/path/file" as an address
19685     instead of the intended filename.
19686
19687     The previous check for a leading quote in netboot_common()
19688     was replaced with a check which ensures only valid
19689     numbers are treated as addresses.
19690
19691     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19692     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19693
19694 commit 3c2c2f427905040c1513d0c51d637689cba48346
19695 Author: Remy Bohmer <linux@bohmer.net>
19696 Date:   Thu Nov 27 22:30:27 2008 +0100
19697
19698     Remove non-ascii characters from fat code
19699
19700     This code contains some non-ascii characters in comment lines and code.
19701     Most editors do not display those characters properly and editing those
19702     files results always in diffs at these places which are usually not required
19703     to be changed at all. This is error prone.
19704
19705     So, remove those weird characters and replace them by normal C-style
19706     equivalents for which the proper defines were already in the header.
19707
19708     Signed-off-by: Remy Bohmer <linux@bohmer.net>
19709
19710 commit dc889e865356497d3e495570118c2245ebce2631
19711 Author: Dave Liu <daveliu@freescale.com>
19712 Date:   Fri Nov 28 20:16:58 2008 +0800
19713
19714     85xx: fix the wrong DDR settings for MPC8572DS
19715
19716     The default DDR freq is 400MHz or 800M data rate,
19717     the old settings is pure wrong for the default case.
19718
19719     Signed-off-by: Dave Liu <daveliu@freescale.com>
19720     Acked-by: Andy Fleming <afleming@freescale.com>
19721
19722 commit 9df59533f77de2829b4b66e5b7620e04edaa391c
19723 Author: Kumar Gala <galak@kernel.crashing.org>
19724 Date:   Mon Nov 24 10:29:26 2008 -0600
19725
19726     85xx: init gd as early as possible
19727
19728     Moved up the initialization of GD so C code like set_tlb() can use
19729     gd->flags to determine if we've relocated or not in the future.
19730
19731     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19732     Acked-by: Andy Fleming <afleming@freescale.com>
19733
19734 commit aed461af81012a398a205e9be67ab37667491838
19735 Author: Kumar Gala <galak@kernel.crashing.org>
19736 Date:   Mon Nov 24 10:29:25 2008 -0600
19737
19738     85xx: Fix relocation of CCSRBAR
19739
19740     If the virtual address for CCSRBAR is the same after relocation but
19741     the physical address is changing we'd end up having two TLB entries with
19742     the same VA.  Instead we new us the new CCSRBAR virt address + 4k as a
19743     temp virt address to access the old CCSRBAR to relocate it.
19744
19745     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19746     Acked-by: Andy Fleming <afleming@freescale.com>
19747
19748 commit ea154a1781135d822eedee7567cc156089eae93c
19749 Author: Kumar Gala <galak@kernel.crashing.org>
19750 Date:   Mon Nov 24 10:25:14 2008 -0600
19751
19752     FSL: Moved BR_PHYS_ADDR for localbus to common header
19753
19754     The BR_PHYS_ADDR macro is useful on all machines that have local bus
19755     which is pretty much all 83xx/85xx/86xx chips.
19756
19757     Additionally most 85xx & 86xx will need it if they want to support
19758     36-bit physical addresses.
19759
19760     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19761     Acked-by: Andy Fleming <afleming@freescale.com>
19762
19763 commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
19764 Author: Peter Tyser <ptyser@xes-inc.com>
19765 Date:   Mon Dec 1 13:47:12 2008 -0600
19766
19767     85xx: Add PORDEVSR_PCI1 define
19768
19769     Add define used to determine if PCI1 interface is in PCI or PCIX mode.
19770
19771     Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
19772
19773     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19774     Signed-off-by: Andy Fleming <afleming@freescale.com>
19775
19776 commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
19777 Author: Becky Bruce <becky.bruce@freescale.com>
19778 Date:   Fri Nov 21 19:24:22 2008 -0600
19779
19780     drivers/fsl_pci_init: Fix inbound window mapping bug
19781
19782     The current code will cause the creation of a 4GB window
19783     starting at 0 if we have more than 4GB of RAM installed,
19784     which overlaps with PCI_MEM space and causes pci_bus_to_phys()
19785     to return erroneous information. Limit the size to 4GB - 1;
19786     which causes the code to create one 2GB and one 1GB window
19787     instead.
19788
19789     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
19790     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19791     Acked-by: Andy Fleming <afleming@freescale.com>
19792
19793 commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
19794 Author: Jon Loeliger <jdl@freescale.com>
19795 Date:   Thu Nov 20 15:36:48 2008 -0600
19796
19797     Removed unused CONFIG_L1_INIT_RAM symbol.
19798
19799     Prevent further viral propogation of the unused
19800     symbol CONFIG_L1_INIT_RAM by just removing it.
19801
19802     Signed-off-by: Jon Loeliger <jdl@freescale.com>
19803     Acked-by: Andy Fleming <afleming@freescale.com>
19804
19805 commit 7008d26a40a76f90cae5824c812cfed449fb97b8
19806 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
19807 Date:   Wed Oct 29 09:21:44 2008 -0500
19808
19809     fsl ddr skip interleaving if not supported.
19810
19811     Removed while(1) hang if memctl_intlv_ctl is set wrong.
19812     Remove embedded tabs from strings.
19813
19814     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
19815     Acked-by: Kumar Gala <galak@kernel.crashing.org>
19816     Acked-by: Andy Fleming <afleming@freescale.com>
19817
19818 commit dd332e18d082de75eca3fc2c7c778f5d4571a096
19819 Author: Anatolij Gustschin <agust@denx.de>
19820 Date:   Thu Nov 13 18:08:57 2008 +0100
19821
19822     85xx: socrates: fix DDR SDRAM tlb entry configuration
19823
19824     since commit be0bd8234b9777ecd63c4c686f72af070d886517
19825     tlb entry for socrates DDR SDRAM will be reconfigured
19826     by setup_ddr_tlbs() from initdram() causing an
19827     inconsistency with previously configured DDR SDRAM tlb
19828     entry from tlb_table:
19829
19830     socrates>l2cam 7 9
19831     IDX  PID      EPN  SIZE V TS           RPN U0-U3 WIMGE UUUSSS
19832       7 : 00 00000000 256MB V  0 -> 0_00000000  0000 -I-G- ---RWX
19833       8 : 00 00000000 256MB V  0 -> 0_00000000  0000 ----- ---RWX
19834       9 : 00 10000000 256MB V  0 -> 0_10000000  0000 ----- ---RWX
19835
19836     This patch makes the presence of the DDR SDRAM tlb entry in
19837     the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
19838     inconsistency.
19839
19840     Signed-off-by: Anatolij Gustschin <agust@denx.de>
19841     Acked-by: Andy Fleming <afleming@freescale.com>
19842
19843 commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
19844 Author: Peter Tyser <ptyser@xes-inc.com>
19845 Date:   Tue Nov 11 10:17:10 2008 -0600
19846
19847     85xx: Add CPU 2 errata workaround to all 8548 boards
19848
19849     All mpc8548-based boards should implement the suggested workaround
19850     to CPU 2 errata. Without the workaround, its possible for the
19851     8548's core to hang while executing a msync or mbar 0 instruction
19852     and a snoopable transaction from an I/O master tagged to make
19853     quick forward progress is present.
19854
19855     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19856     Acked-by: Andy Fleming <afleming@freescale.com>
19857
19858 commit e57f0fa1333cdf3ca36110aac2900712a5f82976
19859 Author: Dave Liu <daveliu@freescale.com>
19860 Date:   Tue Oct 28 17:53:45 2008 +0800
19861
19862     85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
19863
19864     we need TLB entry for DDR at !SPD case.
19865
19866     Signed-off-by: Dave Liu <daveliu@freescale.com>
19867     Acked-by: Andy Fleming <afleming@freescale.com>
19868
19869 commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
19870 Author: Dave Liu <daveliu@freescale.com>
19871 Date:   Tue Oct 28 17:53:38 2008 +0800
19872
19873     85xx: remove the unused ddr_enable_ecc in the board file
19874
19875     The DDR controller of 8548/8544/8568/8572/8536 processors
19876     have the ECC data init feature, and the new DDR code is
19877     using the feature, and we don't need the way with DMA to
19878     init memory any more.
19879
19880     Signed-off-by: Dave Liu <daveliu@freescale.com>
19881     Acked-by: Andy Fleming <afleming@freescale.com>
19882
19883 commit 4a129a57d923f7c15aa1f567028a80a32d66a100
19884 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19885 Date:   Sun Nov 30 19:36:53 2008 +0100
19886
19887     at91rm9200dk: Fix typo
19888
19889     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19890
19891 commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
19892 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19893 Date:   Sun Nov 30 19:36:50 2008 +0100
19894
19895     AT91: remove non supported board AT91RM9200DF macro
19896
19897     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19898
19899 commit bd876772ee04095e5dd943d97515a1f14bad4b1c
19900 Author: Ilko Iliev <iliev@ronetix.at>
19901 Date:   Tue Dec 2 17:27:54 2008 +0100
19902
19903     mtd/dataflash.c: fix a problem with the last partition
19904
19905     This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
19906     partition can be defined to use the area to the end of dataflash size.
19907     Now it is possible to have only one dataflash partition from 0 to the end
19908     of of dataflash size.
19909
19910     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
19911
19912 commit 03f797793b124dccaae145b977d15d6cb9e74504
19913 Author: Ilko Iliev <iliev@ronetix.at>
19914 Date:   Tue Dec 2 17:20:17 2008 +0100
19915
19916     fix some coding style violations.
19917
19918     This patch fix some coding style violations.
19919
19920     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
19921
19922 commit 5e46b1e54112f4b7fd5185665e571510132c12a7
19923 Author: Stefan Roese <sr@denx.de>
19924 Date:   Thu Nov 27 14:11:37 2008 +0100
19925
19926     OneNAND: Add missing mtd info struct before calling onenand_erase()
19927
19928     Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
19929     for use in UBI) via CONFIG_MTD_PARTITIONS.
19930
19931     Signed-off-by: Stefan Roese <sr@denx.de>
19932     Signed-off-by: Scott Wood <scottwood@freescale.com>
19933
19934 commit 29382d4064fbaff5daacff4c3209370fa5713966
19935 Author: Becky Bruce <becky.bruce@freescale.com>
19936 Date:   Thu Nov 20 16:43:52 2008 -0600
19937
19938     mpc8641: Fix error in README
19939
19940     I made some updates to the code that didn't make it into the
19941     README - fix this
19942
19943     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
19944
19945 commit 801a194616d95e6fc426a176d9615ccbf9876c7f
19946 Author: Jon Loeliger <jdl@freescale.com>
19947 Date:   Thu Nov 20 12:01:02 2008 -0600
19948
19949     Removed unused CONFIG_L1_INIT_RAM symbol.
19950
19951     Prevent further viral propogation of the unused
19952     symbol CONFIG_L1_INIT_RAM by just removing it.
19953
19954     Signed-off-by: Jon Loeliger <jdl@freescale.com>
19955
19956 commit f698738e46cb461e28c2d58228bb34a2fcf5a475
19957 Author: Jon Loeliger <jdl@freescale.com>
19958 Date:   Thu Nov 20 14:02:56 2008 -0600
19959
19960     86xx: Fix non-64-bit compilation problems.
19961
19962     Introducing 64-bit (36-bit) support for the MPC8641HPCN
19963     failed to accomodate the other two 86xx boards.
19964     Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
19965     CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
19966     with nominal 32-bit values.
19967
19968     Signed-off-by: Jon Loeliger <jdl@freescale.com>
19969     Acked-by: Becky Bruce <becky.bruce@freescale.com>
19970
19971 commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
19972 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
19973 Date:   Wed Nov 26 17:40:37 2008 +0100
19974
19975     Remove obsolete command (apply afte USB style patch, 80 chars strict)
19976
19977     Remove USB obsolete commmand
19978
19979     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
19980     Signed-off-by: Remy Böhmer <linux@bohmer.net>
19981
19982 commit de39f8c19d7c12017248c49d432dcb81db68f724
19983 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
19984 Date:   Wed Nov 26 17:41:34 2008 +0100
19985
19986     USB style patch, 80 chars strict
19987
19988     USB Code style patch
19989
19990     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
19991     Signed-off-by: Remy Böhmer <linux@bohmer.net>
19992
19993 commit d10c5a87cb8affbb4d35a311370316d4383d598e
19994 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19995 Date:   Fri Nov 7 22:46:21 2008 +0100
19996
19997     drivers/usb: Move conditional compilation to Makefile
19998
19999     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20000     Signed-off-by: Remy Böhmer <linux@bohmer.net>
20001
20002 commit 2077e348c2a84901022ad95311b47b70361e6daa
20003 Author: Scott Wood <scottwood@freescale.com>
20004 Date:   Tue Nov 25 10:47:02 2008 -0600
20005
20006     NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
20007
20008     This caused the operation to be needlessly repeated if there were
20009     no bad blocks and no errors.
20010
20011     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
20012     Signed-off-by: Scott Wood <scottwood@freescale.com>
20013
20014 commit 89295028e7d8f7a524f485328279d72fdb102385
20015 Author: Michal Simek <monstr@monstr.eu>
20016 Date:   Mon Nov 24 12:09:50 2008 +0100
20017
20018     ppc4xx: ml300 remove Xilinx BSP from ml300 folder
20019
20020     This BSP should be outside u-boot source tree.
20021     The second reason is that xilinx ppc405 was moved to generic platform.
20022
20023     Signed-off-by: Michal Simek <monstr@monstr.eu>
20024     Signed-off-by: Stefan Roese <sr@denx.de>
20025
20026 commit 24eea623d4974a169026a975ba12fb23d48154b1
20027 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20028 Date:   Mon Nov 24 15:11:10 2008 +0100
20029
20030     ppc4xx: Remove unused features
20031
20032     This patch disables some unused features from the PCI405 configuration
20033     to keep U-Boot image size below 192k.
20034
20035     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20036     Signed-off-by: Stefan Roese <sr@denx.de>
20037
20038 commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
20039 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20040 Date:   Mon Nov 24 15:11:09 2008 +0100
20041
20042     ppc4xx: Use correct io accessors for PCI405
20043
20044     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20045     Signed-off-by: Stefan Roese <sr@denx.de>
20046
20047 commit 348c849d86a6f0785752b9bc497a34658713d1d1
20048 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20049 Date:   Mon Nov 24 15:11:08 2008 +0100
20050
20051     ppc4xx: Remove unused code from PCI405 code
20052
20053     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20054     Signed-off-by: Stefan Roese <sr@denx.de>
20055
20056 commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
20057 Author: Heiko Schocher <hs@denx.de>
20058 Date:   Thu Nov 20 09:59:09 2008 +0100
20059
20060     powerpc, keymile boards: extract identical config options
20061
20062     This patch extracts the identical config options for the
20063     keymile boards mgcoge, mgsuvd and kmeter1 in a new
20064     common config file keymile-common.h.
20065
20066     Signed-off-by: Heiko Schocher <hs@denx.de>
20067     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20068
20069 commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
20070 Author: Heiko Schocher <hs@denx.de>
20071 Date:   Fri Nov 21 08:29:40 2008 +0100
20072
20073     powerpc: keymile: Add a check for the PIGGY debug board
20074
20075     Check the presence of the PIGGY on the keymile boards mgcoge,
20076     mgsuvd and kmeter1. If the PIGGY is not present, dont register
20077     this Ethernet device.
20078
20079     Signed-off-by: Heiko Schocher <hs@denx.de>
20080     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20081
20082 commit 58c696eed839af894e0265064669c402dc28b371
20083 Author: Wolfgang Denk <wd@xpert.denx.de>
20084 Date:   Mon Nov 24 21:50:59 2008 +0100
20085
20086     AT91RM9200DK: fix broken boot from NOR flash
20087
20088     Signed-off-by: Wolfgang Denk <wd@denx.de>
20089
20090 commit 8052352f20b33bef8f9872fc983eac73d4693c38
20091 Author: Jens Scharsig <esw@bus-elektronik.de>
20092 Date:   Tue Nov 18 10:48:46 2008 +0100
20093
20094     at91rm9200: fix broken boot from nor flash
20095
20096     This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
20097     CONFIG_AT91RM9200 is defined and nor preloader is used.
20098
20099     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
20100
20101 commit 25ea652e907516a283b38237e83712a918f125d7
20102 Author: Piotr Ziecik <kosmo@semihalf.com>
20103 Date:   Mon Nov 17 15:58:00 2008 +0100
20104
20105     UBI: Add proof-of-concept CFI flash support
20106
20107     With this patch UBI can be used on CFI flash chips.
20108
20109     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
20110     Signed-off-by: Stefan Roese <sr@denx.de>
20111
20112 commit e6a7edbc1778d27431ac663b40a71dafa5d20578
20113 Author: Piotr Ziecik <kosmo@semihalf.com>
20114 Date:   Mon Nov 17 15:57:59 2008 +0100
20115
20116     mtd: Remove a printf() from add_mtd_device().
20117
20118     Remove a printf() from add_mtd_device(), which produces spurious output.
20119
20120     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
20121     Signed-off-by: Stefan Roese <sr@denx.de>
20122
20123 commit 91809ed51d8327a8dbbf29aa98a091154c282171
20124 Author: Piotr Ziecik <kosmo@semihalf.com>
20125 Date:   Mon Nov 17 15:57:58 2008 +0100
20126
20127     cfi-mtd: Add cfi-mtd driver.
20128
20129     Add cfi-mtd driver, which exports CFI flash to MTD layer.
20130     This allows CFI flash devices to be used from MTD layer.
20131
20132     Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
20133     option. Initialization is done by calling cfi_mtd_init() from
20134     flash_init().
20135
20136     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
20137     Signed-off-by: Stefan Roese <sr@denx.de>
20138
20139 commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
20140 Author: Piotr Ziecik <kosmo@semihalf.com>
20141 Date:   Mon Nov 17 15:49:32 2008 +0100
20142
20143     cfi_flash: Add interface for flash verbosity control
20144
20145     Add interface for flash verbosity control. It allows
20146     to disable output from low-level flash API. It is useful
20147     when calling these low-level functions from context other
20148     than flash commands (for example the MTD/CFI interface
20149     implmentation).
20150
20151     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
20152     Signed-off-by: Stefan Roese <sr@denx.de>
20153
20154 commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
20155 Author: Piotr Ziecik <kosmo@semihalf.com>
20156 Date:   Thu Nov 20 15:17:38 2008 +0100
20157
20158     cfi_flash: Export flash_sector_size() function.
20159
20160     Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
20161     so that it can be used in the upcoming cfi-mtd driver.
20162
20163     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
20164     Signed-off-by: Stefan Roese <sr@denx.de>
20165
20166 commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
20167 Author: Stefan Roese <sr@denx.de>
20168 Date:   Mon Nov 17 14:45:22 2008 +0100
20169
20170     cfi_flash: Make all flash access functions weak
20171
20172     This patch defines all flash access functions as weak so that
20173     they can be overridden by board specific versions.
20174
20175     This will be used by the upcoming VCTH board support where the NOR
20176     FLASH unfortunately can't be accessed memory-mapped. Special
20177     accessor functions are needed here.
20178
20179     To enable this weak functions you need to define
20180     CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
20181     Otherwise the "old" default functions will be used resulting
20182     in smaller code.
20183
20184     Signed-off-by: Stefan Roese <sr@denx.de>
20185     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20186
20187 commit a5c4067017631d903e1afa6ad615f0ce19fea517
20188 Author: Stefan Roese <sr@denx.de>
20189 Date:   Mon Nov 24 08:31:16 2008 +0100
20190
20191     UBI: Change parsing of size in commands to default to hex
20192
20193     Currently the size parameters of the UBI commands (e.g. "ubi write") are
20194     decoded as decimal instead of hex as default. This patch now interprets
20195     all these values consistantly as hex, as all other standard U-Boot commands
20196     do.
20197
20198     Signed-off-by: Stefan Roese <sr@denx.de>
20199
20200 commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
20201 Author: Stefan Roese <sr@denx.de>
20202 Date:   Fri Nov 21 13:06:06 2008 +0100
20203
20204     ppc4xx: ML2 shouldn't include the 4xx EMAC driver
20205
20206     Signed-off-by: Stefan Roese <sr@denx.de>
20207
20208 commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
20209 Author: Yuri Tikhonov <yur@emcraft.com>
20210 Date:   Fri Nov 14 16:19:19 2008 +0300
20211
20212     ppc4xx: katmai: Change default config
20213
20214      This patch enables support for EXT2, and increases the
20215     CONFIG_SYS_BOOTMAPSZ size for the default configuration
20216     of the katmai boards to use them as the RAID-reference
20217     AMCC setups.
20218
20219      EXT2 enabling allows one to boot kernels from the EXT2
20220     formatted Compact Flash cards.
20221
20222      CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
20223     Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
20224     the memory area with DTB file (which is placed at the
20225     end of the bootmap area) will turn out to be overlapped
20226     with the BSS segment of the 256KB kernel, and zeroed
20227     in early_init() of Linux.
20228
20229      Actually, increasing of the bootmap size could be done
20230     via setting of the bootm_size U-Boot variable, but it looks
20231     like the current U-Boot implementation have some bootm_size-
20232     related functionality lost. In many places through the U-Boot
20233     code the CONFIG_SYS_BOOTMAPSZ definition is used directly
20234     (instead of trying to read the corresponding value from the
20235     environment). The same is truth for the boot_jump_linux()
20236     function in lib_ppc/bootm.c, where U-Boot transfers control
20237     to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
20238     value to the booting kernel.
20239
20240     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
20241     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
20242     Signed-off-by: Stefan Roese <sr@denx.de>
20243
20244 commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
20245 Author: Dave Mitchell <dmitch71@gmail.com>
20246 Date:   Thu Nov 20 14:09:50 2008 -0600
20247
20248     ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
20249
20250     Expanded OCM TLB to allow access to 64K OCM as well as 256K of
20251     internal SRAM.
20252
20253     Adjusted internal SRAM initialization to match updated user
20254     manual recommendation.
20255
20256     OCM & ISRAM are now mapped as follows:
20257             physical        virtual         size
20258     ISRAM   0x4_0000_0000   0xE300_0000     256k
20259     OCM     0x4_0004_0000   0xE304_0000     64k
20260
20261     A single TLB was used for this mapping.
20262
20263     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
20264     Signed-off-by: Stefan Roese <sr@denx.de>
20265
20266 commit b14ca4b61a681f75f3125676e09d7ce6af66e927
20267 Author: Dave Mitchell <dmitch71@gmail.com>
20268 Date:   Thu Nov 20 14:00:49 2008 -0600
20269
20270     ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
20271
20272     Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
20273     L2 cache DCRs from ppc440.h to this new header.
20274
20275     Also converted these DCR defines from lowercase to uppercase and
20276     modified referencing modules to use them.
20277
20278     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
20279     Signed-off-by: Stefan Roese <sr@denx.de>
20280
20281 commit 711e2b2af820d21d9931d4cf8057d3894600fd54
20282 Author: Steven A. Falco <sfalco@harris.com>
20283 Date:   Thu Nov 20 14:37:57 2008 -0500
20284
20285     ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
20286
20287     The definitions of bits in SDR_CFG are incorrect, and not used within
20288     U-Boot.  Therefore, they can be removed.
20289
20290     The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
20291     and are unused, so they can be removed too.
20292
20293     A definition for SDR0_DDRCFG is added.
20294
20295     Signed-off-by: Steven A. Falco <sfalco@harris.com>
20296     Signed-off-by: Stefan Roese <sr@denx.de>
20297
20298 commit e23c7c95a96eb0f068efe5c532215a10a1512a95
20299 Author: Dirk Behme <dirk.behme@gmail.com>
20300 Date:   Mon Nov 10 20:15:25 2008 +0100
20301
20302     ARM: OMAP: Convert IO macros
20303
20304     Convert IO macros to readx/writex.
20305
20306     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
20307
20308 commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
20309 Author: Ilko Iliev <iliev@ronetix.at>
20310 Date:   Sun Nov 9 15:53:14 2008 +0100
20311
20312     lib_arm: do_bootm_linux() - correct a small mistake
20313
20314     This patch corrects a small bug in the "if" condition:
20315     the parameter "flag" is 0 and the "if" condition is always true.
20316     The result is - the boom command doesn't start the kernel.
20317     Affected targets: all arm based.
20318
20319     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
20320
20321 commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
20322 Author: Stelian Pop <stelian@popies.net>
20323 Date:   Sun Nov 9 00:14:46 2008 +0100
20324
20325     AT91: Enable PLLB for USB
20326
20327     At least some (old ?) versions of the AT91Bootstrap do not set up the
20328     PLLB correctly to 48 MHz in order to make USB host function correctly.
20329
20330     This patch sets up the PLLB to the same values Linux uses, and makes USB
20331     work ok on the following CPUs:
20332         - AT91CAP9
20333         - AT91SAM9260
20334         - AT91SAM9263
20335
20336     This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
20337     the relevant AT91CAP9/AT91SAM9 atmel boards.
20338
20339     Signed-off-by: Stelian Pop <stelian@popies.net>
20340     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20341
20342 commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
20343 Author: Stelian Pop <stelian@popies.net>
20344 Date:   Fri Nov 7 13:55:14 2008 +0100
20345
20346     AT91: Use AT91_CPU_CLOCK in displays
20347
20348     Introduce AT91_CPU_CLOCK and use it for displaying the CPU
20349     speed in the LCD driver.
20350
20351     Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
20352     corresponding board clocks.
20353
20354     Signed-off-by: Stelian Pop <stelian@popies.net>
20355
20356 commit fed36ac5ae613773b6cd90e61e292c45440e10c8
20357 Author: Heiko Schocher <hs@denx.de>
20358 Date:   Thu Nov 20 09:57:47 2008 +0100
20359
20360     powerpc: 83xx: add support for the kmeter1 board
20361
20362     This patch adds support for the kmeter1 board from Keymile,
20363     based on a Freescale MPC8360 CPU.
20364
20365     - serial console on UART 1
20366     - 256 MB DDR2 RAM
20367     - 64 MB NOR Flash
20368     - Ethernet RMII Mode over UCC4
20369     - PHY SMSC LAN8700
20370
20371     Signed-off-by: Heiko Schocher <hs@denx.de>
20372     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20373
20374 commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
20375 Author: Stefan Roese <sr@denx.de>
20376 Date:   Thu Nov 20 11:46:20 2008 +0100
20377
20378     ppc4xx: Clear all potentially pending exceptions in MCSR
20379
20380     This is needed on Canyonlands which still has an exception pending
20381     while running relocate_code(). This leads to a failure after trap_init()
20382     is moved to the top of board_init_r().
20383
20384     Signed-off-by: Stefan Roese <sr@denx.de>
20385
20386 commit facdad5f2602e899a01746916beddbf9e856b5ee
20387 Author: Heiko Schocher <hs@denx.de>
20388 Date:   Wed Nov 19 10:10:30 2008 +0100
20389
20390     powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
20391
20392     Signed-off-by: Heiko Schocher <hs@denx.de>
20393     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20394
20395 commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
20396 Author: Howard Gregory <Greg.Howard@freescale.com>
20397 Date:   Tue Nov 4 14:55:33 2008 +0800
20398
20399     mpc83xx: Improve the performance of DDR memory
20400
20401     modify the CAS timings. my understanding is that these
20402     settings decrease various wait times in the DDR interface.
20403     Because these wait times are in clock cycles, and the DDR
20404     clock on the 8315 RDB runs slower than on some other 83xx
20405     platforms, we can dial down these values without a problem,
20406     thereby decreasing the latency of memory a little.
20407
20408     Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
20409     Signed-off-by: Dave Liu <daveliu@freescale.com>
20410     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20411
20412 commit 8000b086b33a5a81f3f390f37e178db7956dc08b
20413 Author: Kyungmin Park <kyungmin.park@samsung.com>
20414 Date:   Fri Oct 24 14:55:33 2008 +0200
20415
20416     ARM: Add Apollon UBI support
20417
20418     To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
20419     macro.
20420
20421     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20422     Signed-off-by: Stefan Roese <sr@denx.de>
20423
20424 commit 694a0b3f1c0accd0de94b89555155d69f8022824
20425 Author: Kyungmin Park <kyungmin.park@samsung.com>
20426 Date:   Wed Nov 19 11:47:05 2008 +0100
20427
20428     UBI: Add UBI command support
20429
20430     This patch adds these UBI commands:
20431
20432     ubi part [nand|onenand] [part] - Show or set current partition
20433     ubi info [l[ayout]] -Display volume and UBI layout information
20434     ubi create[vol] volume [size] [type] - Create volume name with size
20435     ubi write[vol] address volume size - Write volume from address with size
20436     ubi read[vol] address volume [size] - Read volume to address with size
20437     ubi remove[vol] volume - Remove volume
20438
20439     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20440     Signed-off-by: Stefan Roese <sr@denx.de>
20441
20442 commit 58be3a1056d88c6d05f3e914389282807e69923a
20443 Author: Kyungmin Park <kyungmin.park@samsung.com>
20444 Date:   Wed Nov 19 16:38:24 2008 +0100
20445
20446     UBI: Add basic UBI support to U-Boot (Part 8/8)
20447
20448     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
20449     It's based on the Linux UBI version and basically has a "OS"
20450     translation wrapper that defines most Linux specific calls
20451     (spin_lock() etc.) into no-ops. Some source code parts have been
20452     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
20453     this version with the Linux version and simplifies future UBI
20454     ports/bug-fixes from the Linux version.
20455
20456     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20457     Signed-off-by: Stefan Roese <sr@denx.de>
20458
20459 commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
20460 Author: Kyungmin Park <kyungmin.park@samsung.com>
20461 Date:   Wed Nov 19 16:36:36 2008 +0100
20462
20463     UBI: Add basic UBI support to U-Boot (Part 7/8)
20464
20465     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
20466     It's based on the Linux UBI version and basically has a "OS"
20467     translation wrapper that defines most Linux specific calls
20468     (spin_lock() etc.) into no-ops. Some source code parts have been
20469     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
20470     this version with the Linux version and simplifies future UBI
20471     ports/bug-fixes from the Linux version.
20472
20473     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20474     Signed-off-by: Stefan Roese <sr@denx.de>
20475
20476 commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
20477 Author: Kyungmin Park <kyungmin.park@samsung.com>
20478 Date:   Wed Nov 19 16:32:36 2008 +0100
20479
20480     UBI: Add basic UBI support to U-Boot (Part 6/8)
20481
20482     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
20483     It's based on the Linux UBI version and basically has a "OS"
20484     translation wrapper that defines most Linux specific calls
20485     (spin_lock() etc.) into no-ops. Some source code parts have been
20486     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
20487     this version with the Linux version and simplifies future UBI
20488     ports/bug-fixes from the Linux version.
20489
20490     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20491     Signed-off-by: Stefan Roese <sr@denx.de>
20492
20493 commit c91a719daa331b5856109313371e4ece5ec06d96
20494 Author: Kyungmin Park <kyungmin.park@samsung.com>
20495 Date:   Wed Nov 19 16:28:06 2008 +0100
20496
20497     UBI: Add basic UBI support to U-Boot (Part 5/8)
20498
20499     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
20500     It's based on the Linux UBI version and basically has a "OS"
20501     translation wrapper that defines most Linux specific calls
20502     (spin_lock() etc.) into no-ops. Some source code parts have been
20503     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
20504     this version with the Linux version and simplifies future UBI
20505     ports/bug-fixes from the Linux version.
20506
20507     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20508     Signed-off-by: Stefan Roese <sr@denx.de>
20509
20510 commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
20511 Author: Kyungmin Park <kyungmin.park@samsung.com>
20512 Date:   Wed Nov 19 16:27:23 2008 +0100
20513
20514     UBI: Add basic UBI support to U-Boot (Part 4/8)
20515
20516     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
20517     It's based on the Linux UBI version and basically has a "OS"
20518     translation wrapper that defines most Linux specific calls
20519     (spin_lock() etc.) into no-ops. Some source code parts have been
20520     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
20521     this version with the Linux version and simplifies future UBI
20522     ports/bug-fixes from the Linux version.
20523
20524     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20525     Signed-off-by: Stefan Roese <sr@denx.de>
20526
20527 commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
20528 Author: Kyungmin Park <kyungmin.park@samsung.com>
20529 Date:   Wed Nov 19 16:26:54 2008 +0100
20530
20531     UBI: Add basic UBI support to U-Boot (Part 3/8)
20532
20533     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
20534     It's based on the Linux UBI version and basically has a "OS"
20535     translation wrapper that defines most Linux specific calls
20536     (spin_lock() etc.) into no-ops. Some source code parts have been
20537     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
20538     this version with the Linux version and simplifies future UBI
20539     ports/bug-fixes from the Linux version.
20540
20541     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20542     Signed-off-by: Stefan Roese <sr@denx.de>
20543
20544 commit 961df83361aff9a14f226214224eb8a06e05ba24
20545 Author: Kyungmin Park <kyungmin.park@samsung.com>
20546 Date:   Wed Nov 19 16:25:44 2008 +0100
20547
20548     UBI: Add basic UBI support to U-Boot (Part 2/8)
20549
20550     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
20551     It's based on the Linux UBI version and basically has a "OS"
20552     translation wrapper that defines most Linux specific calls
20553     (spin_lock() etc.) into no-ops. Some source code parts have been
20554     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
20555     this version with the Linux version and simplifies future UBI
20556     ports/bug-fixes from the Linux version.
20557
20558     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20559     Signed-off-by: Stefan Roese <sr@denx.de>
20560
20561 commit f399d4a281713d5ef2d764f05d545fe61e3bd569
20562 Author: Kyungmin Park <kyungmin.park@samsung.com>
20563 Date:   Wed Nov 19 16:23:06 2008 +0100
20564
20565     UBI: Add basic UBI support to U-Boot (Part 1/8)
20566
20567     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
20568     It's based on the Linux UBI version and basically has a "OS"
20569     translation wrapper that defines most Linux specific calls
20570     (spin_lock() etc.) into no-ops. Some source code parts have been
20571     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
20572     this version with the Linux version and simplifies future UBI
20573     ports/bug-fixes from the Linux version.
20574
20575     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20576     Signed-off-by: Stefan Roese <sr@denx.de>
20577
20578 commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
20579 Author: Kyungmin Park <kyungmin.park@samsung.com>
20580 Date:   Wed Nov 19 16:20:36 2008 +0100
20581
20582     MTD: Add MTD paritioning infrastructure
20583
20584     This MTD part infrastructure will be used by the upcoming
20585     UBI support.
20586
20587     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20588     Signed-off-by: Stefan Roese <sr@denx.de>
20589
20590 commit 9b827cf1720acda2473afa516956eab6f7cca9a1
20591 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
20592 Date:   Thu Oct 16 22:54:03 2008 +0530
20593
20594     Align end of bss by 4 bytes
20595
20596     Most of the bss initialization loop increments 4 bytes
20597     at a time. And the loop end is checked for an 'equal'
20598     condition. Make the bss end address aligned by 4, so
20599     that the loop will end as expected.
20600
20601     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
20602     Signed-off-by: Wolfgang Denk <wd@denx.de>
20603
20604 commit 3f510db522d160179dff3ddcce9b18f6241c2c24
20605 Author: Becky Bruce <becky.bruce@freescale.com>
20606 Date:   Mon Nov 10 19:45:35 2008 -0600
20607
20608     mpc8641: fix address-cells default in old .dts detection
20609
20610     address-cells defaults to 2, not 1; so in the unlikely
20611     event that it isn't specified, this patch is required
20612     for correct operation.
20613
20614     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20615
20616 commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
20617 Author: Becky Bruce <becky.bruce@freescale.com>
20618 Date:   Fri Oct 31 17:14:39 2008 -0500
20619
20620     lib_ppc: Move trap_init to occur earlier
20621
20622     Doing trap_init immediately once we're running from RAM
20623     means we're no longer dependent on the physical location of
20624     the flash on non-BookE platforms. Before trap_init, those
20625     platforms switch to real mode and go to 0xfff00100 on exception.
20626     After the switch, they go to 0x00000100  This makes it easier to
20627     move the flash location.
20628
20629     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20630
20631 commit d52082b12c6e545705a19433a2f4142526536189
20632 Author: Becky Bruce <becky.bruce@freescale.com>
20633 Date:   Fri Nov 7 13:46:19 2008 -0600
20634
20635     mpc8641: Try to detect old .dts files
20636
20637     Since we've changed the memory map of the board, be nice and
20638     add some checking to try to catch out-of-date .dts files.  We do
20639     this by checking the CCSRBAR location in the .dts and comparing
20640     it to the CCSRBAR location in u-boot.  If they don't match, a
20641     warning msg is printed.  This isn't foolproof, but it's simple and
20642     will catch most of the cases where an out-of-date .dts is present,
20643     including all of the cases where a new u-boot is used with an old
20644     standard MPC8641 .dts file as supplied with Linux.
20645
20646     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20647
20648 commit 8db0400a27839f91c047dcb83f4a0f09e054a180
20649 Author: Becky Bruce <becky.bruce@freescale.com>
20650 Date:   Thu Nov 6 13:04:09 2008 -0600
20651
20652     toplevel Makefile: Add MPC8641HPCN_36BIT target
20653
20654     This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
20655
20656     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20657
20658 commit 3111d32c494e8251b90917447796a7206b757e1e
20659 Author: Becky Bruce <becky.bruce@freescale.com>
20660 Date:   Thu Nov 6 17:37:35 2008 -0600
20661
20662     mpc8641: Support 36-bit physical addressing
20663
20664     This patch creates a memory map with all the devices
20665     in 36-bit physical space, in addition to the 32-bit map.
20666     The CCSR relocation is moved (again, sorry) to
20667     allow for the physical address to be 36 bits - this
20668     requires translation to be enabled.  With 36-bit physical
20669     addressing enabled, we are no longer running with VA=PA
20670     translations.  This means we have to distinguish between
20671     the two in the config file.  The existing region name is
20672     used to indicate the virtual address, and a _PHYS variety
20673     is created to represent the physical address.
20674
20675     Large physical addressing is not enabled by default.
20676     Set CONFIG_PHYS_64BIT in the config file to turn this on.
20677
20678     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20679
20680 commit c759a01a0022de9378a3a761f49786f87684c916
20681 Author: Becky Bruce <becky.bruce@freescale.com>
20682 Date:   Thu Nov 6 17:36:04 2008 -0600
20683
20684     mpc8641: Change 32-bit memory map
20685
20686     The memory map on the 8641hpcn is modified to look more like
20687     the 85xx boards; this is a step towards a more standardized
20688     layout going forward. As part of this change, we now relocate
20689     the flash.
20690
20691     The regions for some of the mappings were far larger than they
20692     needed to be.  I have reduced the mappings to match the
20693     actual sizes supported by the hardware.
20694
20695     In addition I have removed the comments at the head
20696     of the BAT blocks in the config file, rather than updating
20697     them.  These get horribly out of date, and it's a simple
20698     matter to look at the defines to see what they are set to
20699     since everything is right here in the same file.
20700
20701     Documentation has been changed to reflect the new map, as this
20702     change is user visible, and affects the OS which runs post-uboot.
20703
20704     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20705
20706 commit bf9a8c34309ed9276258295db9e9212aabb2531a
20707 Author: Becky Bruce <becky.bruce@freescale.com>
20708 Date:   Wed Nov 5 14:55:35 2008 -0600
20709
20710     mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
20711
20712     We define CONFIG_MONITOR_BASE_EARLY to define the initial location
20713     of the bootpage in flash.   Use this to create an early mapping
20714     definition for the FLASH, and change the early_bats code to use this.
20715
20716     This  change facilitates the relocation of the flash since the early
20717     mappings are no longer tied to the final location of the flash.
20718
20719     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20720
20721 commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
20722 Author: Becky Bruce <becky.bruce@freescale.com>
20723 Date:   Wed Nov 5 14:55:34 2008 -0600
20724
20725     mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
20726
20727     Using a mtmsr/blr means that you have to be executing at the
20728     same virtual address once you enable translation.  This is
20729     unnecessarily restrictive, and is not really how this is
20730     usually done.  Change it to use the more common mtspr SRR0/SRR1
20731     and rfi method.
20732
20733     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20734
20735 commit 6bf98b1362f0cb237620355ed3e6762fff82388d
20736 Author: Becky Bruce <becky.bruce@freescale.com>
20737 Date:   Wed Nov 5 14:55:33 2008 -0600
20738
20739     mpc8641: make DIAG_ADDR == FLASH_BASE
20740
20741     Currently, that's what it is, but it's hardcoded.
20742
20743     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20744
20745 commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
20746 Author: Becky Bruce <becky.bruce@freescale.com>
20747 Date:   Wed Nov 5 14:55:32 2008 -0600
20748
20749     mpc8641: Drop imaginary second flash bank, map 8MB
20750
20751     There's a lot of setup and foo for the second flash
20752     bank.  The problem is, this board doesn't actually have one.
20753     Clean this up.  Also, the flash is 8M in size.  Get rid
20754     of the confusing aliased overmapping, and just map 8M.
20755
20756     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20757
20758 commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
20759 Author: Becky Bruce <becky.bruce@freescale.com>
20760 Date:   Wed Nov 5 14:55:31 2008 -0600
20761
20762     mpc8641: only define CONFIG_ENV_SIZE once
20763
20764     It's currently defined twice inside in an if/else block, but
20765     both halves set the same value.  Move the define outside
20766     the if.
20767
20768     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20769
20770 commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
20771 Author: Becky Bruce <becky.bruce@freescale.com>
20772 Date:   Wed Nov 5 14:55:30 2008 -0600
20773
20774     mpc86xx: Move setup_bats into cpu_init_f
20775
20776     In order to later allow for a physical relocation of the
20777     flash, setup_bats, which sets up the final BAT mapping
20778     for the board, needs to happen *after* init_laws().
20779     Otherwise, there will be no window programmed for the flash
20780     at the new physical location at the point when we change
20781     the mmu translation.
20782
20783     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20784
20785 commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
20786 Author: Becky Bruce <becky.bruce@freescale.com>
20787 Date:   Wed Nov 5 14:55:29 2008 -0600
20788
20789     mpc8641: Remove extra "0" from BR2 define
20790
20791     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20792
20793 commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
20794 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
20795 Date:   Thu Oct 23 09:08:18 2008 -0400
20796
20797     drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
20798
20799     Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
20800     This adds support for PHY-less MAC connections to the UEC.
20801
20802     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
20803     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20804
20805 commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
20806 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20807 Date:   Thu Oct 23 16:27:24 2008 +0000
20808
20809     ColdFire: Add mii driver in drivers/net
20810
20811     All CF platforms' mii.c are consolidated into one
20812
20813     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20814     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20815
20816 commit 25a859066b3af1070eb69f12022113c0a91bd813
20817 Author: Ben Warren <biggerbadderben@gmail.com>
20818 Date:   Mon Oct 27 23:53:17 2008 -0700
20819
20820     Moved initialization of PPC4xx EMAC to cpu_eth_init()
20821
20822     Removed initialization of the driver from net/eth.c
20823
20824     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20825     Acked-by: Stefan Roese <sr@denx.de>
20826
20827 commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
20828 Author: Ben Warren <biggerbadderben@gmail.com>
20829 Date:   Sun Nov 9 21:29:23 2008 -0800
20830
20831     Moved PPC4xx EMAC driver to drivers/net
20832
20833     Also changed path in all linker scripts that reference this driver
20834
20835     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20836     Acked-by: Stefan Roese <sr@denx.de>
20837
20838 commit 96e21f86e8266ed40759e5495ee461265d7f6d28
20839 Author: Ben Warren <biggerbadderben@gmail.com>
20840 Date:   Mon Oct 27 23:50:15 2008 -0700
20841
20842     Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
20843
20844     All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
20845
20846     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20847     Acked-by: Stefan Roese <sr@denx.de>
20848
20849 commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
20850 Author: Ben Warren <biggerbadderben@gmail.com>
20851 Date:   Thu Oct 23 22:02:49 2008 -0700
20852
20853     Moved initialization of MPC8XX SCC to cpu_eth_init()
20854
20855     Removed initialization of the driver from net/eth.c
20856
20857     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20858
20859 commit a9bec96d6359ac9f90a852962bf3040cad9e0256
20860 Author: Ben Warren <biggerbadderben@gmail.com>
20861 Date:   Wed Oct 22 23:47:51 2008 -0700
20862
20863     Moved initialization of MPC8220 FEC to cpu_eth_init()
20864
20865     Removed initialization of the driver from net/eth.c
20866
20867     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20868
20869 commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
20870 Author: Ben Warren <biggerbadderben@gmail.com>
20871 Date:   Wed Oct 22 23:32:48 2008 -0700
20872
20873     Moved initialization of QE Ethernet controller to cpu_eth_init()
20874
20875     Removed initialization of the driver from net/eth.c
20876
20877     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20878
20879 commit 3456a148276d5494b53ee40242efb6462d163504
20880 Author: Ben Warren <biggerbadderben@gmail.com>
20881 Date:   Wed Oct 22 23:20:29 2008 -0700
20882
20883     Moved initialization of FCC Ethernet controller to cpu_eth_init
20884
20885     Affected boards:
20886         Several MPC8xx boards
20887         Several MPC8260/MPC8272 boards
20888         Several MPC85xx boards
20889
20890     Removed initialization of the driver from net/eth.c
20891
20892     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20893
20894 commit 62e15b497f5c6334c059512678c8db7940ae4c61
20895 Author: Ben Warren <biggerbadderben@gmail.com>
20896 Date:   Thu Oct 30 22:15:35 2008 -0700
20897
20898     Fix typo in cpu/mpc85xx/cpu.c
20899
20900     CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
20901
20902     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20903
20904 commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
20905 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20906 Date:   Sun Oct 19 12:08:50 2008 +0900
20907
20908     net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
20909
20910     This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
20911     as a part of ongoing eth_initialize cleanup work.  The function ret value
20912     is also fixed as it should be negative on fail.
20913
20914     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20915     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20916
20917 commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
20918 Author: Ben Warren <biggerbadderben@gmail.com>
20919 Date:   Fri Sep 5 01:55:22 2008 -0400
20920
20921     Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
20922
20923     Also, removed the driver initialization from net/eth.c
20924
20925     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20926
20927 commit f2a7806fc23e82d30c8548911369e0c530607354
20928 Author: Clive Stubbings <uboot@xentech.co.uk>
20929 Date:   Mon Oct 27 15:05:00 2008 +0000
20930
20931     xilinx_emaclite buffer overrun
20932
20933     Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
20934     PKTSIZE_ALIGN bytes long.
20935
20936     Acked-by: Michal Simek <monstr@monstr.eu>
20937
20938     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20939
20940 commit 0115b1953718a2969f6469d3d5da51ba11e12d42
20941 Author: richardretanubun <richardretanubun@ruggedcom.com>
20942 Date:   Fri Sep 26 08:59:12 2008 -0400
20943
20944     NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
20945
20946     The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
20947     This patch makes these function use the devname argument that is passed in to
20948     allow access to the phy registers of other devices in devlist[].
20949
20950     Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
20951
20952     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20953
20954 commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
20955 Author: richardretanubun <richardretanubun@ruggedcom.com>
20956 Date:   Mon Oct 6 15:31:43 2008 -0400
20957
20958     Adds two more ethernet interface to 83xx
20959
20960     Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
20961     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
20962     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20963
20964 commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
20965 Author: Stelian Pop <stelian@popies.net>
20966 Date:   Fri Nov 7 13:54:31 2008 +0100
20967
20968     AT91: Replace AT91_BASE_EMAC by the board specific values.
20969
20970     AT91_BASE_EMAC is never used outside the board specific files,
20971     so replace its usage by the board specific AT91xxx_BASE_EMAC.
20972
20973     Signed-off-by: Stelian Pop <stelian@popies.net>
20974     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20975
20976 commit c91e17affa175ce06afa89b04752301eb4a61666
20977 Author: Stelian Pop <stelian@popies.net>
20978 Date:   Fri Nov 7 12:09:21 2008 +0100
20979
20980     AT91: Replace (undefined) AT91_ID_US* by the board specific values.
20981
20982     AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
20983     Since they are never used outside the board specific files, they can
20984     be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
20985     AT91xxx_ID_US2.
20986
20987     Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
20988
20989     Signed-off-by: Stelian Pop <stelian@popies.net>
20990     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20991
20992 commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
20993 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20994 Date:   Sat Nov 1 10:47:59 2008 +0100
20995
20996     Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
20997
20998     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20999
21000 commit 1079432e04ccf71aa3684181186182cd63512f19
21001 Author: Sergey Lapin <slapin@ossfans.org>
21002 Date:   Fri Oct 31 12:28:43 2008 +0100
21003
21004     Custom AFEB9260 board support
21005
21006     This patch provides support for AFEB9260 board, a product of
21007     OpenSource hardware and software. Some commertial projects
21008     are made with this design. A board is basically AT91SAM9260-EK
21009     with some modifications and different peripherals and different
21010     parts used. Main purpose of this project is to gain experience in
21011     hardware design.
21012     More info: http://groups.google.com/group/arm9fpga-evolution-board
21013     (In Russian only, sorry).
21014     Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
21015
21016     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
21017
21018 commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
21019 Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
21020 Date:   Tue Oct 21 13:17:16 2008 +0900
21021
21022     Change to use "do_div" macro
21023
21024     Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
21025
21026 commit e352495318d8056a00faa21b633b3e4374bfbf52
21027 Author: Roman Mashak <romez777@gmail.com>
21028 Date:   Wed Oct 22 16:00:26 2008 -0400
21029
21030     ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
21031
21032     OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
21033     It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
21034
21035     Signed-off-by: Roman Mashak <romez777@gmail.com>
21036
21037 commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
21038 Author: Roman Mashak <romez777@gmail.com>
21039 Date:   Tue Oct 21 03:01:41 2008 -0700
21040
21041     ARM/Versatile port: Removed unused functions
21042
21043     Removal of never used functions.
21044
21045     Signed-off-by: Roman Mashak <romez777@gmail.com>
21046
21047 commit 1266df887781c779deaf6d05eea2ef90a470cb34
21048 Author: Becky Bruce <becky.bruce@freescale.com>
21049 Date:   Mon Nov 3 15:44:01 2008 -0600
21050
21051     powerpc: change 86xx SMP boot method
21052
21053     We put the bootpg for the secondary cpus into memory and use
21054     BPTR to get to it.  This is a step towards converting to the
21055     ePAPR boot methodology.  Also, the code is written to
21056     deal properly with more than 4GB of RAM.
21057
21058     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21059
21060 commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
21061 Author: Becky Bruce <becky.bruce@freescale.com>
21062 Date:   Fri Oct 31 17:13:49 2008 -0500
21063
21064     8641HPCN: Config file cleanup
21065
21066     There are several items in the config file that were hardcoded
21067     but that should really be based on other config options, since
21068     the regions are contiguous and depend on being so.  This cleans
21069     that up a bit.  Also, add BR_PHYS_ADDR() macro to convert
21070     addresses into the proper format for BR registers.
21071
21072     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21073
21074 commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
21075 Author: Becky Bruce <becky.bruce@freescale.com>
21076 Date:   Fri Oct 31 17:13:32 2008 -0500
21077
21078     86xx: Make dram_size a phys_size_t
21079
21080     It's currently a long and should be phys_size_t.
21081
21082     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21083
21084 commit 104992fc541302a6bac74448e01e7fdad20abca0
21085 Author: Becky Bruce <becky.bruce@freescale.com>
21086 Date:   Sun Nov 2 18:19:32 2008 -0600
21087
21088     powerpc 86xx: Handle CCSR relocation earlier
21089
21090     Currently, the CCSR gets relocated while translation is
21091     enabled, meaning we need 2 BAT translations to get to both the
21092     old location and the new location.  Also, the DEFAULT
21093     CCSR location has a dependency on the BAT that maps the
21094     FLASH region.  Moving the relocation removes this unnecessary
21095     dependency. This makes it easier and more intutive to
21096     modify the board's memory map.
21097
21098     Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
21099     BAT for CCSR space.
21100
21101     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21102
21103 commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
21104 Author: Becky Bruce <becky.bruce@freescale.com>
21105 Date:   Fri Oct 31 17:14:14 2008 -0500
21106
21107     mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
21108
21109     You can't actually have both, and with some coming changes to
21110     change the memory map for the board and support 36-bit physical,
21111     we need the extra BAT that is being consumed by having both.
21112
21113     I also make non-PCI configs build cleanly, for the sake of sanity.
21114
21115     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21116
21117 commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
21118 Author: Becky Bruce <becky.bruce@freescale.com>
21119 Date:   Fri Oct 31 17:14:00 2008 -0500
21120
21121     mpc8641: Stop supporting non-PCI_PNP configs
21122
21123     We don't actually ever do this, remove the code so we
21124     can stop maintaining it.
21125
21126     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21127
21128 commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
21129 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21130 Date:   Fri Oct 24 12:59:12 2008 +0000
21131
21132     ColdFire: Fix M5329EVB and M5373EVB nand issue
21133
21134     Fix compilation issue caused by a few mismatches.
21135     Provide proper nand chip select enable/disable in
21136     nand_hwcontrol() rather than in board_nand_init()
21137     just enable once. Remove redundant local nand driver
21138     functions - nand_read_byte(), nand_write_byte() and
21139     nand_dev_ready() to use common nand driver.
21140
21141     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21142
21143 commit 1b2708442224a551a0b865b52710306333888932
21144 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21145 Date:   Wed Oct 22 11:55:30 2008 +0000
21146
21147     ColdFire: Fix compilation error
21148
21149     The error was caused by the change for strmhz() in cpu.c.
21150     A few of them were one extra close parenthesis.
21151
21152     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21153
21154 commit 536e7dac16769954915a484e682a2efb28699133
21155 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21156 Date:   Wed Oct 22 11:38:21 2008 +0000
21157
21158     ColdFire: Add MCF5301x CPU and M53017EVB support
21159
21160     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21161
21162 commit a21d0c2cc9add8894d971ab791f4032f077db817
21163 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21164 Date:   Tue Oct 21 15:37:02 2008 +0000
21165
21166     ColdFire: Add SBF support for M52277EVB
21167
21168     Add serial boot support
21169
21170     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21171
21172 commit b202816c61042c183fe67d097a5893b0f2dafba0
21173 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21174 Date:   Tue Oct 21 14:19:26 2008 +0000
21175
21176     ColdFire: Use CFI driver for M5272C3
21177
21178     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21179
21180 commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
21181 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21182 Date:   Tue Oct 21 13:47:54 2008 +0000
21183
21184     ColdFire: Relocate FEC's GPIO and mii functions protocols
21185
21186     Place FEC pin assignments in cpu_init.c from platform's
21187     mii.c
21188
21189     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21190
21191 commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
21192 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21193 Date:   Tue Oct 21 12:15:44 2008 +0000
21194
21195     ColdFire: Remove platforms mii.c file
21196
21197     Will use mcfmii.c driver in drivers/net rather than
21198     keep creating new mii.c for each future platform.
21199     Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
21200     M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
21201     M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
21202     mii.c
21203
21204     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21205
21206 commit 012522fef3b382469125beb46a315ab4dee02fb0
21207 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21208 Date:   Tue Oct 21 10:03:07 2008 +0000
21209
21210     ColdFire: Modules header files cleanup
21211
21212     Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
21213     MDHA, SKHA, INTC, and FlexBus structures and
21214     definitions in immap_5xxx.h to more unify modules
21215     header files. Append DSPI support for m547x_8x.
21216     SSI cleanup. Remove USB Host structure from immap_539.h.
21217     Apply changes to use FlexBus structures in mcf52x2's
21218     cpu_init.c and platform configuration files.
21219
21220     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21221
21222 commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
21223 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21224 Date:   Tue Oct 21 08:52:36 2008 +0000
21225
21226     ColdFire: Remove linker file
21227
21228     Each different build for M54455EVB and M5235EVB will
21229     create a u-boot.lds linker file. It is redundant to
21230     keep the u-boot.lds
21231
21232     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21233
21234 commit 0829323073c505556ed5f5073f91adb504584d45
21235 Author: Peter Tyser <ptyser@xes-inc.com>
21236 Date:   Fri Oct 31 11:26:44 2008 -0500
21237
21238     ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
21239
21240     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21241
21242 commit a80b21d5127583171d6e9bc7f722947641898012
21243 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21244 Date:   Fri Oct 31 12:12:12 2008 +0100
21245
21246     common/Makefile: create others group for non core, environment and command files
21247
21248     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21249
21250 commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
21251 Author: Wolfgang Denk <wd@denx.de>
21252 Date:   Fri Oct 31 01:13:37 2008 +0100
21253
21254     TQM8260: use CFI flash driver instead of custom driver.
21255
21256     Signed-off-by: Wolfgang Denk <wd@denx.de>
21257
21258 commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
21259 Author: Andy Fleming <afleming@freescale.com>
21260 Date:   Thu Oct 30 17:35:30 2008 -0500
21261
21262     Consolidate MAX/MIN definitions
21263
21264     There were several, now there is one (two if you count the lower-case
21265     versions).
21266
21267     Signed-off-by: Andy Fleming <afleming@freescale.com>
21268
21269 commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
21270 Author: Heiko Schocher <hs@denx.de>
21271 Date:   Thu Oct 30 09:23:09 2008 +0100
21272
21273     mgsuvd: remove unused defines in config file.
21274
21275     Signed-off-by: Heiko Schocher <hs@denx.de>
21276
21277 commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
21278 Author: Wolfgang Denk <wd@denx.de>
21279 Date:   Sun Nov 2 16:14:22 2008 +0100
21280
21281     Coding Style cleanup, update CHANGELOG
21282
21283     Signed-off-by: Wolfgang Denk <wd@denx.de>
21284
21285 commit a47f957ab523019992fdef857af01bd71c58a4da
21286 Author: Alessandro Rubini <rubini-list@gnudd.com>
21287 Date:   Fri Oct 31 22:33:21 2008 +0100
21288
21289     NAND: Allow NAND and OneNAND to coexist
21290
21291     This removes in nand.h code that is verbatim duplicated from bbm.h,
21292     including directly bbm.h in nand.h. The previous state of affairs
21293     prevented compiling code for a board hosting both NAND and OneNAND chips.
21294
21295     Reported-by: Scott Wood <scottwood@freescale.com>
21296     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
21297     Signed-off-by: Scott Wood <scottwood@freescale.com>
21298
21299 commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
21300 Author: Scott Wood <scottwood@freescale.com>
21301 Date:   Fri Oct 31 13:51:12 2008 -0500
21302
21303     JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
21304
21305     Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
21306     Signed-off-by: Scott Wood <scottwood@freescale.com>
21307
21308 commit c57fc28947e248fb03c49a28b467686299895055
21309 Author: Jason Jin <Jason.Jin@freescale.com>
21310 Date:   Fri Oct 31 05:07:04 2008 -0500
21311
21312     NAND: Add NAND support for MPC8536DS board
21313
21314     This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
21315     for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
21316     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
21317
21318     Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
21319     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
21320     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21321
21322 commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
21323 Author: Haiying Wang <Haiying.Wang@freescale.com>
21324 Date:   Fri Oct 31 05:06:14 2008 -0500
21325
21326     NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
21327
21328     CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
21329
21330     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
21331     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21332
21333 commit 51b572a801be57790fe26adaa530210e7fba59cc
21334 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21335 Date:   Fri Oct 24 10:49:48 2008 +0900
21336
21337     sh: rsk7203: Moved rsk7203 board to board/renesas
21338
21339     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21340
21341 commit 58453b00b3ebb26aaa901210023f99504a90bb00
21342 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21343 Date:   Fri Oct 24 10:48:31 2008 +0900
21344
21345     sh: MigoR: Moved MigoR board to board/renesas
21346
21347     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21348
21349 commit c1da2a22817ba85b437afa2f4e715e658b219fd1
21350 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21351 Date:   Fri Oct 24 10:39:44 2008 +0900
21352
21353     sh: r2dplus: Moved r2dplus board to board/renesas
21354
21355     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21356
21357 commit 78385bf2359d828184d0b3649f7ae6b933420000
21358 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21359 Date:   Fri Oct 24 10:36:13 2008 +0900
21360
21361     sh: sh7763rdp: Moved sh7763rdp board to board/renesas
21362
21363     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21364
21365 commit c6525d459c350bfc246ea7826456af77e1e314eb
21366 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21367 Date:   Fri Oct 24 10:35:19 2008 +0900
21368
21369     sh: sh7785lcr: Moved sh7785lcr board to board/renesas
21370
21371     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21372
21373 commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
21374 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21375 Date:   Fri Oct 24 10:34:21 2008 +0900
21376
21377     sh: r7780mp: Moved r7780mp board to board/renesas
21378
21379     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21380
21381 commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
21382 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21383 Date:   Fri Oct 24 10:32:14 2008 +0900
21384
21385     sh: ap325rxa: Moved ap325rxa board to board/renesas
21386
21387     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21388
21389 commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
21390 Author: Wolfgang Denk <wd@xpert.denx.de>
21391 Date:   Fri Oct 31 01:12:28 2008 +0100
21392
21393     CFI Driver: Fix "flash not ready" problem
21394
21395     This patch fixes a problem on systems where the NOR flash is attached
21396     to a 64 bit bus.  The toggle bit detection in flash_toggle() is based
21397     on the assumption that the same flash address is read twice without
21398     any other interjacent flash accesses.  However, on 32 bit systems the
21399     function flash_read64() [as currently implemented] does not perform
21400     an atomic 64 bit read - instead, this is broken down into two 32 bit
21401     read accesses on addresses "addr" and "addr + 4".  So instead of
21402     reading a 64 bit value twice from "addr", we see a sequence of 4 32
21403     bit reads from "addr", "addr + 4", "addr", and "addr + 4".  The
21404     consequence is that flash_toggle() fails to work.
21405
21406     This patch implements a simple, but somewhat ugly solution, as it
21407     avoids the use of flash_read64() in this critical place (by breaking
21408     it down manually into 32 bit read operations) instead of rewriting
21409     flash_read64() such to perform atomic 64 bit reads as one could
21410     expect.  However, such a rewrite would require the use of floating
21411     point load operations, which becomes pretty complex:
21412
21413         save MSR;
21414         set Floating Point Enable bit in MSR;
21415         use "lfd" instruction to perform atomic 64 bit read;
21416         use "stfd" to store value to temporary variable on stack;
21417         load u64 value from temporary variable;
21418         restore saved MSR;
21419         return u64 value;
21420
21421     The benefit-cost ratio of such an implementation was considered too
21422     bad to actually attempt this, especially as we can expect that such
21423     an implementation would not only have a bigger memory footprint but
21424     also cause a performance degradation.
21425
21426     Signed-off-by: Wolfgang Denk <wd@denx.de>
21427     Signed-off-by: Stefan Roese <sr@denx.de>
21428
21429 commit cdd4fe63b094d4b767f12ff241d72566b461ee61
21430 Author: Stefan Roese <sr@denx.de>
21431 Date:   Fri Oct 31 10:48:08 2008 +0100
21432
21433     ppc4xx: Fix spelling error in MAINTAINERS file
21434
21435     Signed-off-by: Stefan Roese <sr@denx.de>
21436
21437 commit be270798900b75ad9c47c7b79c72f70441196c56
21438 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21439 Date:   Tue Oct 28 13:37:00 2008 +0100
21440
21441     ppc4xx: Update PMC440 board support
21442
21443     This patch brings PMC440 board support up to date:
21444
21445     - fix GPIO configuration
21446     - add misc_init_f()
21447     - use better values for usbact variable
21448     - fix USB 2.0 phy reset sequence
21449     - shrink BAR2 to save PCI address space
21450     - add FDT support
21451
21452     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21453     Signed-off-by: Stefan Roese <sr@denx.de>
21454
21455 commit 75183b1a7fc04206d9779d13f16e03853d7e965d
21456 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21457 Date:   Tue Oct 28 13:36:59 2008 +0100
21458
21459     ppc4xx: Fix PMC440 BSP commands
21460
21461     This patch fixes the PMC440 BSP commands painit and selfreset
21462
21463     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21464     Signed-off-by: Stefan Roese <sr@denx.de>
21465
21466 commit 76b565b69f886d5ae748db65e44f464b0e70d41a
21467 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21468 Date:   Tue Oct 28 13:36:58 2008 +0100
21469
21470     ppc4xx: Update PMC440 board configuration
21471
21472     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21473     Signed-off-by: Stefan Roese <sr@denx.de>
21474
21475 commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
21476 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21477 Date:   Tue Oct 28 13:36:57 2008 +0100
21478
21479     ppc4xx: Fix esd loadpci command
21480
21481     This patch fixes esd's loadpci command when not all
21482     memory on adapter boards is accessable via PCI.
21483
21484     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21485     Signed-off-by: Stefan Roese <sr@denx.de>
21486
21487 commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
21488 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21489 Date:   Tue Oct 28 13:36:56 2008 +0100
21490
21491     ppc4xx: Clean up PMC440 header
21492
21493     -Codingstyle cleanup
21494     -Remove unused GPIO define
21495
21496     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21497     Signed-off-by: Stefan Roese <sr@denx.de>
21498
21499 commit 295133258a44f97a57fb2ec339aecfda11f4db95
21500 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21501 Date:   Tue Oct 28 13:36:55 2008 +0100
21502
21503     ppc4xx: Handle other board variant in PMC440 FPGA code
21504
21505     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21506     Signed-off-by: Stefan Roese <sr@denx.de>
21507
21508 commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
21509 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
21510 Date:   Mon Oct 27 12:35:59 2008 +0100
21511
21512     ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
21513
21514     Xilinx ppc440 and ppc405 have many similarities. This patch merge the
21515     config files of both infrastuctures
21516
21517     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
21518     Signed-off-by: Stefan Roese <sr@denx.de>
21519
21520 commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
21521 Author: Stefan Roese <sr@denx.de>
21522 Date:   Sat Oct 25 06:45:31 2008 +0200
21523
21524     ppc4xx: Correctly configure the GPIO pin muxing on Arches
21525
21526     Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
21527     pin multiplexing correctly
21528
21529     Signed-off-by: Stefan Roese <sr@denx.de>
21530
21531 commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
21532 Author: Bartlomiej Sieka <tur@semihalf.com>
21533 Date:   Thu Oct 30 23:22:04 2008 +0100
21534
21535     Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
21536
21537     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21538
21539 commit 4bc7deee9095f21e243b724ca3d634251c1d5432
21540 Author: David Gibson <david@gibson.dropbear.id.au>
21541 Date:   Wed Oct 29 23:27:45 2008 -0500
21542
21543     libfdt: Fix bug in fdt_subnode_offset_namelen()
21544
21545     There's currently an off-by-one bug in fdt_subnode_offset_namelen()
21546     which causes it to keep searching after it's finished the subnodes of
21547     the given parent, and into the subnodes of siblings of the original
21548     node which come after it in the tree.
21549
21550     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21551     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21552
21553 commit f242a08871839eac081ba5b599af979f3a148a0d
21554 Author: Peter Korsgaard <jacmet@sunsite.dk>
21555 Date:   Tue Oct 28 08:26:52 2008 +0100
21556
21557     fdt_resize(): ensure minimum padding
21558
21559     fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
21560     (16 bytes), so make sure that fdt_resize at least adds that much
21561     padding, no matter what the location or size of the fdt is.
21562
21563     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
21564     Acked-by: Andy Fleming <afleming@freescale.com>
21565
21566 commit d685b74c64a38849f1a129b3ab846fbf67dd937e
21567 Author: Dave Liu <daveliu@freescale.com>
21568 Date:   Thu Oct 23 21:59:35 2008 +0800
21569
21570     74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
21571
21572     The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
21573
21574     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
21575
21576     This is needed in unlock_ram_in_cache() because it is called from C and
21577     will corrupt the small data area anchor that is kept in R2.
21578
21579     lock_ram_in_cache() is modified similarly as good coding practice, but
21580     is not called from C.
21581
21582     Signed-off-by: Nick Spence <nick.spence@freescale.com>
21583
21584     also, the r2 is used as global data pointer.
21585
21586     Signed-off-by: Dave Liu <daveliu@freescale.com>
21587
21588 commit e053ab1903ccae6048ef759025b9f675bba91450
21589 Author: Scott Wood <scottwood@freescale.com>
21590 Date:   Tue Oct 28 11:45:04 2008 -0500
21591
21592     mpc83xx pci: Round up memory size in inbound window.
21593
21594     The current calculation will fail to cover all memory if
21595     its size is not a power of two.
21596
21597     Signed-off-by: Scott Wood <scottwood@freescale.com>
21598     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21599
21600 commit 1c671977dc81359628be27ac99c174e76e8069ba
21601 Author: Dave Liu <daveliu@freescale.com>
21602 Date:   Thu Oct 23 21:19:13 2008 +0800
21603
21604     86xx: remove the unused definition
21605
21606     Signed-off-by: Dave Liu <daveliu@freescale.com>
21607
21608 commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
21609 Author: Dave Liu <daveliu@freescale.com>
21610 Date:   Tue Oct 28 17:47:49 2008 +0800
21611
21612     86xx: remove the redundant r2 global data pointer save
21613
21614     The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
21615     the another global data pointer save, but in fact the
21616     global data pointer will be initialized in the board_init_r,
21617     so remove it such as the 85xx/83xx family.
21618
21619     Signed-off-by: Dave Liu <daveliu@freescale.com>
21620     Acked-by: Kumar Gala <kumar.gala@freescale.com>
21621
21622 commit bd888e9544419665334a6f47f81f34011cea38f3
21623 Author: Dave Liu <daveliu@freescale.com>
21624 Date:   Tue Oct 28 17:47:41 2008 +0800
21625
21626     86xx: remove the unused code for 86xx family
21627
21628     I believe these code was copied from 74xx family, but for
21629     86xx, it is unused.
21630
21631     Signed-off-by: Dave Liu <daveliu@freescale.com>
21632     Acked-by: Kumar Gala <kumar.gala@freescale.com>
21633
21634 commit 5ba1ef507402bc5e344dc374203792a40f222e8a
21635 Author: Dave Liu <daveliu@freescale.com>
21636 Date:   Tue Oct 28 17:46:35 2008 +0800
21637
21638     86xx: remove the second DDR LAW setting for mpc8641hpcn
21639
21640     The DDR1 LAW will precedence the DDR2 LAW, so remove
21641     the second DDR LAW.
21642
21643     Signed-off-by: Dave Liu <daveliu@freescale.com>
21644     Acked-by: Becky Bruce <becky.bruce@freescale.com>
21645
21646 commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
21647 Author: Dave Liu <daveliu@freescale.com>
21648 Date:   Tue Oct 28 17:46:23 2008 +0800
21649
21650     86xx: remove the unused ddr_enable_ecc in the board file
21651
21652     The DDR controller of 86xx processors have the ECC data init
21653     feature, and the new DDR code is using the feature, we don't
21654     need the way with DMA to init memory again.
21655
21656     Signed-off-by: Dave Liu <daveliu@freescale.com>
21657     Acked-by: Kumar Gala <kumar.gala@freescale.com>
21658
21659 commit dc2adad85bf580d65916c940683f6e9671e8a5dd
21660 Author: Dave Liu <daveliu@freescale.com>
21661 Date:   Tue Oct 28 17:46:12 2008 +0800
21662
21663     86xx: Move the clear_tlbs before MMU turn on
21664
21665     We must invalidate TLBs before MMU turn on, but
21666     currently the code is not, if there are some stale
21667     TLB entry valid in the TLBs, it will cause strange
21668     issue.
21669
21670     Signed-off-by: Dave Liu <daveliu@freescale.com>
21671     Acked-by: Becky Bruce <becky.bruce@freescale.com>
21672
21673 commit 5cdade07b118d07154cb882650f9778cecc8a87c
21674 Author: Scott Wood <scottwood@freescale.com>
21675 Date:   Mon Oct 27 15:57:08 2008 -0500
21676
21677     mpc8313erdb: Document NAND boot.
21678
21679     Previously, the documentation claimed that NAND boot is not supported.
21680     This is no longer true.
21681
21682     Signed-off-by: Scott Wood <scottwood@freescale.com>
21683
21684 commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
21685 Author: Scott Wood <scottwood@freescale.com>
21686 Date:   Wed Oct 29 14:20:26 2008 -0500
21687
21688     NAND: Properly create JFFS2 cleanmarkers.
21689
21690     As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
21691     command is currently broken, and among other things causes all blocks
21692     to be marked bad.
21693
21694     This implements it properly using MTD_OOB_AUTO, along with some
21695     indentation fixes.
21696
21697     Signed-off-by: Scott Wood <scottwood@freescale.com>
21698
21699 commit f7fe57c09866b44692d18c8cf22828bd137ec58d
21700 Author: Scott Wood <scottwood@freescale.com>
21701 Date:   Wed Oct 29 13:42:41 2008 -0500
21702
21703     NAND fsl elbc: Set FMR[ECCM] based on page size.
21704
21705     Hardware expects ECCM 0 for small page and ECCM 1 for large page
21706     when booting from NAND, so use those defaults.
21707
21708     Signed-off-by: Scott Wood <scottwood@freescale.com>
21709
21710 commit c013b74975dab0805ef6d369b013230c4e8a660d
21711 Author: Haiying Wang <Haiying.Wang@freescale.com>
21712 Date:   Wed Oct 29 13:32:59 2008 -0400
21713
21714     NAND: Add support for MPC8572DS board
21715
21716     This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
21717     0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
21718     config file.
21719
21720     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
21721     make room for the increased code size with NAND enabled.
21722
21723     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
21724     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
21725     Signed-off-by: Scott Wood <scottwood@freescale.com>
21726
21727 commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
21728 Author: Haiying Wang <Haiying.Wang@freescale.com>
21729 Date:   Wed Oct 29 11:05:55 2008 -0400
21730
21731     Make Freescale local bus registers available for both 83xx and 85xx.
21732
21733     - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
21734       can be shared by both 83xx and 85xx
21735     - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
21736       files which use lbus83xx_t.
21737     - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
21738       85xx can share them.
21739
21740     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
21741     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
21742     Signed-off-by: Scott Wood <scottwood@freescale.com>
21743
21744 commit 695c130e4bf75b444720ddfd83aca88f41c046cf
21745 Author: Scott Wood <scottwood@freescale.com>
21746 Date:   Mon Oct 27 15:38:30 2008 -0500
21747
21748     NAND: Align right column of the shorthelp with other commands.
21749
21750     I accidentally broke this in when making consistent the partial
21751     alignment of the longhelp.
21752
21753     Signed-off-by: Scott Wood <scottwood@freescale.com>
21754
21755 commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
21756 Author: Karl Beldan <karl.beldan@gmail.com>
21757 Date:   Mon Sep 15 16:08:03 2008 +0200
21758
21759     NAND: Reset chip on power-up
21760
21761     Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
21762     The first command sent is NAND_CMD_READID.
21763     Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
21764     Tested with an MT29F4G08AAC.
21765
21766     Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
21767     Signed-off-by: Scott Wood <scottwood@freescale.com>
21768
21769 commit c45912d8abc52de796b9059a58faf7c4166eab58
21770 Author: Scott Wood <scottwood@freescale.com>
21771 Date:   Fri Oct 24 16:20:43 2008 -0500
21772
21773     NAND: sync with 2.6.27
21774
21775     This brings the core NAND code up to date with the Linux kernel.
21776
21777     Since there were several drivers in Linux as of the last update that are
21778     not in u-boot, I'm not bringing over new drivers that have been added
21779     since in the absence of an interested party.
21780
21781     I did not update OneNAND since it was recently synced by Kyungmin Park,
21782     and I'm not sure exactly what the common ancestor is.
21783
21784     Signed-off-by: Scott Wood <scottwood@freescale.com>
21785
21786 commit b1d0db1805c3395149777e507b6da53410abac4e
21787 Author: Kumar Gala <galak@kernel.crashing.org>
21788 Date:   Tue Oct 21 17:25:47 2008 -0500
21789
21790     bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
21791
21792     Added the ability to config out bootm support for Linux, NetBSD, RTEMS
21793
21794     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21795
21796 commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
21797 Author: Kumar Gala <galak@kernel.crashing.org>
21798 Date:   Tue Oct 21 17:25:46 2008 -0500
21799
21800     bootm: support subcommands in linux ppc bootm
21801
21802     Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
21803
21804     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21805
21806 commit 49c3a861d11735838f1f1b11999ce433006dc919
21807 Author: Kumar Gala <galak@kernel.crashing.org>
21808 Date:   Tue Oct 21 17:25:45 2008 -0500
21809
21810     bootm: Add subcommands
21811
21812     Add the ability to break the steps of the bootm command into several
21813     subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
21814
21815     This allows us to do things like manipulate device trees before
21816     they are passed to a booting kernel or setup memory for a secondary
21817     core in multicore situations.
21818
21819     Not all OS types support all subcommands (currently only start, loados,
21820     ramdisk, fdt, and go are supported).
21821
21822     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21823
21824 commit be08315933537f061bc1ce61f33a29c56458bbad
21825 Author: Kumar Gala <galak@kernel.crashing.org>
21826 Date:   Tue Oct 21 17:25:44 2008 -0500
21827
21828     bootm: Move to using a function pointer table for the boot os function
21829
21830     This removes a bit of code and makes it easier for the upcoming sub bootm
21831     command support to call into the proper OS specific handler.
21832
21833     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21834     Signed-off-by: Wolfgang Denk <wd@denx.de>
21835
21836 commit a369f4a492fa2805d87775d27380f0eeaca35aa6
21837 Author: Graeme Russ <graeme.russ@gmail.com>
21838 Date:   Mon Sep 29 23:03:14 2008 +1000
21839
21840     i386: Renamed show_boot_progress in assembler code
21841
21842     Renamed show_boot_progress in assembler init phase to
21843     show_boot_progress_asm to avoid link conflicts with C version
21844
21845     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
21846
21847 commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
21848 Author: Peter Tyser <ptyser@xes-inc.com>
21849 Date:   Mon Oct 27 16:42:00 2008 -0500
21850
21851     85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
21852
21853     The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
21854     processors have a 3-bit wide IO_SEL field but have the most
21855     significant bit is wired to 0 so this change should not affect
21856     them.
21857
21858     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21859
21860 commit cd4251624205cb97104f6e32679dc7754934f711
21861 Author: Becky Bruce <becky.bruce@freescale.com>
21862 Date:   Mon Oct 27 16:09:42 2008 -0500
21863
21864     powerpc: fix pci window initialization to work with > 4GB DRAM
21865
21866     The existing code has a few errors that need to be fixed in
21867     order to support large RAM sizes.  Fix those, and add a
21868     comment to make it clearer.
21869
21870     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21871     Acked-by: Kumar Gala <galak@kernel.crashing.org>
21872
21873 commit 219542a1a66ca017b12860920714a9859b18a5d7
21874 Author: Kumar Gala <galak@kernel.crashing.org>
21875 Date:   Mon Oct 27 13:16:20 2008 -0500
21876
21877     pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
21878
21879     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21880
21881 commit 6b59e03e0237a40a2305ea385defdfd92000978b
21882 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21883 Date:   Mon Sep 1 16:21:22 2008 +0200
21884
21885     lcd: Let the board code show board-specific info
21886
21887     The information displayed when CONFIG_LCD_INFO is set is inherently
21888     board-specific, so it should be done by the board code. The current code
21889     dealing with this only handles two cases, and is already a horrible mess
21890     of #ifdeffery.
21891
21892     Yes, this duplicates some code, but it also allows boards to print more
21893     board-specific information; this used to be very difficult.
21894
21895     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21896     Signed-off-by: Anatolij Gustschin <agust@denx.de>
21897
21898 commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
21899 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21900 Date:   Mon Sep 1 16:21:21 2008 +0200
21901
21902     lcd: Set lcd_is_enabled before clearing the screen
21903
21904     This allows the logo/info rendering routines to use the regular
21905     lcd_putc/lcd_puts/lcd_printf calls.
21906
21907     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21908     Signed-off-by: Anatolij Gustschin <agust@denx.de>
21909
21910 commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
21911 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21912 Date:   Mon Sep 1 16:21:20 2008 +0200
21913
21914     lcd: Implement lcd_printf()
21915
21916     lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
21917     this by borrowing the lcd_printf() implementation from the cogent board
21918     code (which appears to use its own LCD framework.)
21919
21920     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21921     Signed-off-by: Anatolij Gustschin <agust@denx.de>
21922
21923 commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
21924 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21925 Date:   Mon Sep 1 16:21:19 2008 +0200
21926
21927     atmel_lcdfb: Straighten out funky vl_sync logic
21928
21929     If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
21930     otherwise we don't. WTF?
21931
21932     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21933     Signed-off-by: Anatolij Gustschin <agust@denx.de>
21934
21935 commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
21936 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21937 Date:   Mon Sep 1 16:21:18 2008 +0200
21938
21939     atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
21940
21941     atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
21942     includes a file that does, asm/arch/gpio.h, but this file doesn't
21943     include <asm/arch/hardware.h> like it's supposed to.
21944
21945     Add the missing include to asm/arch/gpio.h and remove the workaround
21946     from the atmel_lcdfb driver. This makes the driver compile on avr32.
21947
21948     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21949     Signed-off-by: Anatolij Gustschin <agust@denx.de>
21950
21951 commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
21952 Author: Kumar Gala <galak@kernel.crashing.org>
21953 Date:   Wed Oct 22 14:38:55 2008 -0500
21954
21955     86xx: Convert all fsl_pci_init users to new APIs
21956
21957     Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
21958     fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
21959
21960     With these changes the board code is a bit smaller and we get dma-ranges
21961     set in the device tree for these boards.
21962
21963     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21964     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
21965     Acked-by: Jon Loeliger <jdl@freescale.com>
21966
21967 commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
21968 Author: Kumar Gala <galak@kernel.crashing.org>
21969 Date:   Tue Oct 21 08:28:33 2008 -0500
21970
21971     85xx: Convert all fsl_pci_init users to new APIs
21972
21973     Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
21974     MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
21975     and ft_fsl_pci_setup().
21976
21977     With these changes the board code is a bit smaller and we get dma-ranges
21978     set in the device tree for these boards.
21979
21980     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21981     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
21982
21983 commit a2aab460727e5f674353a83a81000ef794bffcae
21984 Author: Kumar Gala <galak@kernel.crashing.org>
21985 Date:   Thu Oct 23 00:01:06 2008 -0500
21986
21987     pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
21988
21989     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21990     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
21991
21992 commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
21993 Author: Kumar Gala <galak@kernel.crashing.org>
21994 Date:   Wed Oct 22 14:06:24 2008 -0500
21995
21996     pci/fsl_pci_init: Add a common PCI inbound setup function
21997
21998     Add a common setup function that determines the pci_region(s) based
21999     on how much memory we have in the system.
22000
22001     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22002     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22003
22004 commit 612ea01018a459234d54ed57ec6a5a244ce75678
22005 Author: Kumar Gala <galak@kernel.crashing.org>
22006 Date:   Tue Oct 21 10:13:14 2008 -0500
22007
22008     pci/fsl_pci_init: Enable larger address and setting inbound windows properly
22009
22010     * PCI Inbound window was setup incorrectly.  The PCI address and system
22011       address were swapped.  The PCI address should be setting piwar/piwbear
22012       and the system address should be setting pitar.
22013
22014     * Removed masking of addresses to allow for system address to support
22015       system address & PCI address >32-bits
22016
22017     * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
22018
22019     * Respect the PCI_REGION_PREFETCH for inbound windows
22020
22021     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22022     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22023
22024 commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
22025 Author: Kumar Gala <galak@kernel.crashing.org>
22026 Date:   Wed Oct 22 23:33:56 2008 -0500
22027
22028     fdt: Added helper to set PCI dma-ranges property
22029
22030     Added fdt_pci_dma_ranges() that parses the pci_region info from the
22031     struct pci_controller and populates the dma-ranges based on it.
22032
22033     The max # of windws/dma-ranges we support is 3 since on embedded
22034     PowerPC based systems this is the max number of windows.
22035
22036     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22037     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22038
22039 commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
22040 Author: Kumar Gala <galak@kernel.crashing.org>
22041 Date:   Thu Oct 23 00:05:47 2008 -0500
22042
22043     fdt: Add fdt_getprop_u32_default helpers
22044
22045     Add helper functions to return find a node and return it's property
22046     or a default value.
22047
22048     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22049     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22050     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
22051
22052 commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
22053 Author: Kumar Gala <galak@kernel.crashing.org>
22054 Date:   Tue Oct 21 18:06:15 2008 -0500
22055
22056     86xx: Enable 64-bit PCI resources on all Freescale boards
22057
22058     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22059     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22060
22061 commit 0151cbaccf4504821ecfde0217299bd740086bb6
22062 Author: Kumar Gala <galak@kernel.crashing.org>
22063 Date:   Tue Oct 21 11:33:58 2008 -0500
22064
22065     85xx: Enable 64-bit PCI resources on all Freescale boards
22066
22067     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22068     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22069
22070 commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
22071 Author: Kumar Gala <galak@kernel.crashing.org>
22072 Date:   Tue Oct 21 08:36:08 2008 -0500
22073
22074     pci: Allow for PCI addresses to be 64-bit
22075
22076     PCI bus is inherently 64-bit.  While not all system require access to
22077     the full 64-bit PCI address range some do.  This allows those systems
22078     to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
22079
22080     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22081     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22082     Acked-by: Wolfgang Denk <wd@denx.de>
22083
22084 commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
22085 Author: Dave Liu <daveliu@freescale.com>
22086 Date:   Thu Oct 23 21:18:53 2008 +0800
22087
22088     85xx: Fix the incorrect register used for DDR erratum1
22089
22090     The 8572 DDR erratum1:
22091     DDR controller may enter an illegal state when operating
22092     in 32-bit bus mode with 4-beat bursts.
22093
22094     Description:
22095     When operating with a 32-bit bus, it is recommended that
22096     DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
22097     This forces the DDR controller to use 4-beat bursts when
22098     communicating to the DRAMs. However, an issue exists that
22099     could lead to data corruption when the DDR controller is
22100     in 32-bit bus mode while using 4-beat bursts.
22101
22102     Projected Impact:
22103     If the DDR controller is operating in 32-bit bus mode with
22104     4-beat bursts, then the controller may enter into a bad state.
22105     All subsequent reads from memory is corrupted.
22106     Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
22107     Therefore, this erratum does not affect DDR3 mode.
22108
22109     Work Arounds:
22110     To work around this issue, software must set DEBUG_1[31] in
22111     DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
22112     and CCSRBAR offset + 0x6f00 for DDR_2).
22113
22114     Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
22115     as condition, but it should be DDR_SDRAM_CFG register.
22116
22117     Signed-off-by: Dave Liu <daveliu@freescale.com>
22118
22119 commit d5b693090ed08d24c18491df9d8fc7387b2906f3
22120 Author: Dave Liu <daveliu@freescale.com>
22121 Date:   Thu Oct 23 21:17:19 2008 +0800
22122
22123     85xx: remove unused config definition
22124
22125     Signed-off-by: Dave Liu <daveliu@freescale.com>
22126
22127 commit 0f060c3bf82832331a509f2e5d2442539e7aad09
22128 Author: Kumar Gala <galak@kernel.crashing.org>
22129 Date:   Thu Oct 23 01:47:38 2008 -0500
22130
22131     85xx: Add basic e500mc core support
22132
22133     Introduce CONFIG_E500MC to deal with the minor differences between
22134     e500v2 and e500mc.
22135
22136     * Certain fields of HID0/1 don't exist anymore on e500mc
22137     * Cache line size is 64-bytes on e500mc
22138     * reset value of PIR is different
22139
22140     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22141
22142 commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
22143 Author: Kumar Gala <galak@kernel.crashing.org>
22144 Date:   Thu Oct 23 01:47:37 2008 -0500
22145
22146     85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
22147
22148     Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
22149     e500mc's 64-byte cacheline properly when it gets added.
22150
22151     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22152
22153 commit 5deb8022c3749faac30e9ad9694691e2442b5c93
22154 Author: Georg Schardt <schardt@team-ctech.de>
22155 Date:   Fri Oct 24 13:51:52 2008 +0200
22156
22157     ppc4xx: New board avnet fx12 minimodul
22158
22159     This patch adds support for the avnet fx12 minimodul.
22160     It needs the "ppc4xx: Generic architecture for xilinx ppc405"
22161     patch from Ricardo.
22162
22163     Signed-off-by: Georg Schardt <schardt@team-ctech.de>
22164     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22165     Signed-off-by: Stefan Roese <sr@denx.de>
22166
22167 commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
22168 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22169 Date:   Tue Oct 21 18:29:46 2008 +0200
22170
22171     ppc4xx: Generic architecture for xilinx ppc405(v3)
22172
22173     As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
22174     ppc440 boards, this patch presents a common architecture for all the
22175     xilinx ppc405 boards.
22176
22177     Any custom xilinx ppc405 board can be added very easily with no code
22178     duplicity.
22179
22180     This patch also adds a simple generic board, that can be used on almost
22181     any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
22182
22183     This patch is prepared to work with the latest version of EDK (10.1)
22184
22185     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22186     Signed-off-by: Stefan Roese <sr@denx.de>
22187
22188 commit 485c00a57fab86f72a3769480c66bf1ca22e1459
22189 Author: Stefan Roese <sr@denx.de>
22190 Date:   Fri Oct 24 08:56:09 2008 +0200
22191
22192     ppc4xx: Disable DDR2 autocalibration on Kilauea for now
22193
22194     Since the new autocalibration still has some problems on some Kilauea
22195     boards with 200MHz DDR2 frequency we disable the autocalibration and
22196     use the hardcoded values as done before. This seems to work reliably
22197     on all known DDR2 frequencies.
22198
22199     After the autocalibration issue is fixed we will enable it again.
22200
22201     Signed-off-by: Stefan Roese <sr@denx.de>
22202
22203 commit f177f4250c729727b1629fa8d8d6556c999e9b8c
22204 Author: Mike Frysinger <vapier@gentoo.org>
22205 Date:   Wed Apr 9 02:02:07 2008 -0400
22206
22207     Blackfin: fix up UART status bit handling
22208
22209     Some Blackfin UARTs are read-to-clear while others are write-to-clear.
22210     This can cause problems when we poll the LSR and then later try and handle
22211     any errors detected.
22212
22213     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22214
22215 commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
22216 Author: Mike Frysinger <vapier@gentoo.org>
22217 Date:   Sat Oct 11 20:42:17 2008 -0400
22218
22219     Blackfin: bf561-ezkit: drop redundant code
22220
22221     Common Blackfin code already announces CPU information.
22222
22223     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22224
22225 commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
22226 Author: Mike Frysinger <vapier@gentoo.org>
22227 Date:   Sat Oct 11 20:43:10 2008 -0400
22228
22229     Blackfin: bf561-ezkit: drop pointless USB code
22230
22231     The USB/LAN register settings are not actually used/needed in order to
22232     drive things from U-Boot, so drop the code.
22233
22234     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22235
22236 commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
22237 Author: Mike Frysinger <vapier@gentoo.org>
22238 Date:   Sat Oct 11 20:47:58 2008 -0400
22239
22240     Blackfin: linker scripts: force start.o and set initcode boundaries
22241
22242     Make sure that the start.o object is always the first object in our linker
22243     script regardless of configuration settings, and add some linker symbols
22244     so the ldr utility can properly locate the initcode when generating a LDR.
22245
22246     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22247
22248 commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
22249 Author: Mike Frysinger <vapier@gentoo.org>
22250 Date:   Sat Oct 11 21:19:39 2008 -0400
22251
22252     Blackfin: small cpu init optimization while setting interrupt mask
22253
22254     Use the sti instruction to set the initial interrupt mask rather than
22255     banging on the core IMASK MMR to save both space and time.
22256
22257     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22258
22259 commit 960922291c9594acb575cec7e47d7bed9b58182c
22260 Author: Mike Frysinger <vapier@gentoo.org>
22261 Date:   Sat Oct 11 21:18:10 2008 -0400
22262
22263     Blackfin: set initial stack correctly according to Blackfin ABI
22264
22265     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22266
22267 commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
22268 Author: Mike Frysinger <vapier@gentoo.org>
22269 Date:   Sun Apr 20 03:11:53 2008 -0400
22270
22271     Blackfin: make baud calculation more accurate
22272
22273     We should use the algorithm in the Linux kernel so that the UART divisor
22274     calculation is more accurate.  It also fixes problems on some picky UARTs
22275     that have sampling anomalies.
22276
22277     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22278
22279 commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
22280 Author: Mike Frysinger <vapier@gentoo.org>
22281 Date:   Mon Oct 6 04:21:41 2008 -0400
22282
22283     Blackfin: decode hwerrcause/excause when crashing
22284
22285     Having to decode hwerrcause/excause values is a pain, so automate it.
22286
22287     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22288
22289 commit 2de95bb20c488f20298df6881b700a5a757ee780
22290 Author: Mike Frysinger <vapier@gentoo.org>
22291 Date:   Mon Oct 6 04:20:54 2008 -0400
22292
22293     Blackfin: fix register dump messages
22294
22295     Make sure we report RETI/IPEND correctly.
22296
22297     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22298
22299 commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
22300 Author: Mike Frysinger <vapier@gentoo.org>
22301 Date:   Mon Oct 6 04:19:34 2008 -0400
22302
22303     Blackfin: don't bother displaying reboot msg when crashing
22304
22305     The hang function already tells you to reboot, so no point in showing it
22306     twice.
22307
22308     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22309
22310 commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
22311 Author: Mike Frysinger <vapier@gentoo.org>
22312 Date:   Sun Jun 1 01:23:48 2008 -0400
22313
22314     Blackfin: enable support for nested interrupts
22315
22316     During cpu init, make sure we initialize the CEC properly so that
22317     interrupts can fire and be handled while U-Boot is running.
22318
22319     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22320
22321 commit 39782727e185860faa4884c2b04e84cb33d1c6cf
22322 Author: Mike Frysinger <vapier@gentoo.org>
22323 Date:   Mon Oct 6 03:55:25 2008 -0400
22324
22325     Blackfin: init NAND before relocating env
22326
22327     If booting out of NAND, we need to make sure we initialize it properly
22328     before attempting to relocate the environment.
22329
22330     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22331
22332 commit 0f9a8819416ba40a53de50af148847a0e508f84d
22333 Author: Mike Frysinger <vapier@gentoo.org>
22334 Date:   Thu Aug 7 18:40:13 2008 -0400
22335
22336     Blackfin: check cache bits, not cplb bits
22337
22338     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22339
22340 commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
22341 Author: Mike Frysinger <vapier@gentoo.org>
22342 Date:   Thu Aug 7 17:52:59 2008 -0400
22343
22344     Blackfin: drop unused cache flush code
22345
22346     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22347
22348 commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
22349 Author: Mike Frysinger <vapier@gentoo.org>
22350 Date:   Thu Aug 7 15:21:47 2008 -0400
22351
22352     Blackfin: unify cache handling code
22353
22354     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22355
22356 commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
22357 Author: Mike Frysinger <vapier@gentoo.org>
22358 Date:   Mon Oct 6 03:39:07 2008 -0400
22359
22360     Blackfin: only initialize the RTC when actually used
22361
22362     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22363
22364 commit 621e579b812dd1a2e6777f7cbf6e55e736505823
22365 Author: Mike Frysinger <vapier@gentoo.org>
22366 Date:   Mon Oct 6 03:44:33 2008 -0400
22367
22368     Blackfin: fix SWRST register definition
22369
22370     The SWRST register is a 16bit, not 32bit, register.
22371
22372     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22373
22374 commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
22375 Author: Mike Frysinger <vapier@gentoo.org>
22376 Date:   Thu Aug 7 18:54:57 2008 -0400
22377
22378     Blackfin: build with -fomit-frame-pointer
22379
22380     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22381
22382 commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
22383 Author: Mike Frysinger <vapier@gentoo.org>
22384 Date:   Thu Aug 7 17:50:26 2008 -0400
22385
22386     Blackfin: document some of the blackfin directories
22387
22388     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22389
22390 commit e4337968e43698a68ba608369f46d4a4114111ca
22391 Author: Mike Frysinger <vapier@gentoo.org>
22392 Date:   Thu Aug 7 15:16:56 2008 -0400
22393
22394     Blackfin: only enable hardware error irq by default
22395
22396     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22397
22398 commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
22399 Author: Mike Frysinger <vapier@gentoo.org>
22400 Date:   Thu Aug 7 13:36:43 2008 -0400
22401
22402     Blackfin: punt old unused mem_init.h header
22403
22404     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22405
22406 commit bcc121a01608042066a19ab5bff5bcfb805bf406
22407 Author: Mike Frysinger <vapier@gentoo.org>
22408 Date:   Thu Aug 7 13:18:55 2008 -0400
22409
22410     Blackfin: delete unused page_descriptor_table_size define
22411
22412     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22413
22414 commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
22415 Author: Mike Frysinger <vapier@gentoo.org>
22416 Date:   Thu Aug 7 13:17:03 2008 -0400
22417
22418     Blackfin: fix typo in boot mode comment and add NAND define
22419
22420     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22421
22422 commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
22423 Author: Ben Maan <moo@cow>
22424 Date:   Thu Aug 7 13:14:21 2008 -0400
22425
22426     Blackfin: fix port mux defines for BF54x
22427
22428     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22429
22430 commit 0656ef2ba274910d31364fe022f6c7db0051660d
22431 Author: Mike Frysinger <vapier@gentoo.org>
22432 Date:   Thu Aug 7 13:09:50 2008 -0400
22433
22434     Blackfin: update anomaly lists
22435
22436     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22437
22438 commit 50ca95402876cf7bac4e2d4f7855f616a038763f
22439 Author: Mike Frysinger <vapier@gentoo.org>
22440 Date:   Thu Aug 7 13:08:54 2008 -0400
22441
22442     Blackfin: unify DSPID/DBGSTAT MMR definitions
22443
22444     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22445
22446 commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
22447 Author: Wolfgang Denk <wd@denx.de>
22448 Date:   Tue Oct 21 15:53:51 2008 +0200
22449
22450     Fix strmhz(): avoid printing negative fractions
22451
22452     Signed-off-by: Wolfgang Denk <wd@denx.de>
22453
22454 commit 4a7f6b750d8de543fdf8e58acd86745010054571
22455 Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
22456 Date:   Fri Oct 17 08:55:51 2008 -0400
22457
22458     mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
22459
22460     This is done to allow other 83XX based platforms which also have UPM
22461     (e.g. 8360) to configure and use their UPM in u-boot.
22462
22463     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
22464     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22465
22466 commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
22467 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22468 Date:   Tue Oct 14 22:58:53 2008 +0400
22469
22470     mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
22471
22472     With this patch u-boot can fixup the dr_mode and phy_type properties
22473     for the Dual-Role USB controller.
22474
22475     While at it, also remove #ifdefs around includes, they are not needed.
22476
22477     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22478     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22479
22480 commit b3379f3fd13969934c00097c05754e7a8990fd39
22481 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22482 Date:   Wed Oct 8 20:52:54 2008 +0400
22483
22484     mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
22485
22486     Though NAND chip is replaceable on the MPC837XE-MDS boards, the
22487     current settings don't work with the default chip on the board.
22488     Nevertheless Freescale's U-Boot sets the option register correctly,
22489     so I just dumped the register from the working u-boot. My guess is
22490     that the old settings were applicable for some pilot boards, not
22491     found in the production.
22492
22493     This patch also enables FSL ELBC driver so that we could access
22494     the NAND storage in the u-boot.
22495
22496     The NAND support costs about 45KB, so the u-boot no longer fits
22497     into two 128KB NOR flash sectors, thus we also have to adjust
22498     environment location: add another 128KB to the monitor length.
22499
22500     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22501
22502     It is due to hardware design and logic defect, that is the
22503     I/O[0:7] of NAND chip is connected to LAD[7:0], so when
22504     the NAND chip connected to nLCS3,  you have to set up the
22505     OR3[BCTLD] = '1' for normal operation, otherwise it will have
22506     bus contention due to the pin 48/25 of U60 is enabled.
22507
22508     Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
22509     asserted upon access to the NAND chip, keep the default state.
22510
22511     Acked-by: Dave Liu <daveliu@freescale.com>
22512     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22513
22514 commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
22515 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22516 Date:   Thu Oct 2 19:17:33 2008 +0400
22517
22518     mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
22519
22520     The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
22521     standalone or acting as a PCI agent. User's Guide says:
22522
22523     - When the CPLD recognizes its location on the PIB it automatically
22524       configures RCW to the PCI Host.
22525     - If the CPLD fails to recognize its location then it is automatically
22526       configured as an Agent and the PCI is configured to an external arbiter.
22527
22528     This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
22529     flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
22530     PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
22531     any arbiter bad things will happen (here the board hangs during any config
22532     space reads).
22533
22534     In this situation we must disable the PCI. And in case of anybody really
22535     want to use an external arbiter, we provide "pci_external_aribter"
22536     environment variable.
22537
22538     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22539     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22540
22541 commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
22542 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22543 Date:   Thu Oct 2 18:32:25 2008 +0400
22544
22545     mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
22546
22547     This involves configuring the SerDes and fixing up the flags and
22548     PHY addresses for the TSECs.
22549
22550     For Linux we also fix up the device tree.
22551
22552     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22553     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22554
22555 commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
22556 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22557 Date:   Thu Oct 2 18:31:59 2008 +0400
22558
22559     mpc83xx: add TSECs' HRCWH masks for MPC837x processors
22560
22561     We'll use these masks to parse TSEC modes out of HRCWH.
22562
22563     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22564     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22565
22566 commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
22567 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22568 Date:   Thu Oct 2 18:31:56 2008 +0400
22569
22570     mpc83xx: serdes: add forgotten shifts for rfcks
22571
22572     The rfcks should be shifted by 28 bits left. We didn't notice the bug
22573     because we were using only 100MHz clocks (for which rfcks == 0).
22574
22575     Though, for SGMII we'll need 125MHz clocks.
22576
22577     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22578     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22579
22580 commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
22581 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22582 Date:   Thu Oct 2 18:31:53 2008 +0400
22583
22584     mpc83xx: fix serdes setup for the MPC8378E boards
22585
22586     MPC837xE specs says that SerDes1 has:
22587
22588     â€” Two lanes running x1 SGMII at 1.25 Gbps;
22589     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
22590
22591     And for SerDes2:
22592
22593     â€” Two lanes running x1 PCI Express at 2.5 Gbps;
22594     â€” One lane running x2 PCI Express at 2.5 Gbps;
22595     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
22596
22597     The spec also explicitly states that PEX options are not valid for
22598     the SD1.
22599
22600     Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
22601     which is wrong to do.
22602
22603     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22604     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22605
22606 commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
22607 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22608 Date:   Wed Sep 10 18:12:37 2008 +0400
22609
22610     mpc83xx: mpc8360emds: rework LBC SDRAM setup
22611
22612     Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
22613     it difficult to use (b/c then the memory is discontinuous and
22614     there is quite big memory hole between the DDR/SDRAM regions).
22615
22616     This patch reworks LBC SDRAM setup so that now we dynamically
22617     place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
22618     DDR memory).
22619
22620     With this patch we're able to:
22621
22622     - Boot without external DDR memory;
22623     - Use most "DDR + SDRAM" setups without need to support for
22624       sparse/discontinuous memory model in the software.
22625
22626     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22627     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22628
22629 commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
22630 Author: Wolfgang Denk <wd@xpert.denx.de>
22631 Date:   Tue Oct 21 11:23:56 2008 +0200
22632
22633     FDT: don't use private kernel header files
22634
22635     On some systems (for example Fedora Core 4) U-Boot builds with the
22636     following wanrings only:
22637
22638     ...
22639     In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
22640                      from fdt.c:51:
22641                  /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
22642
22643     This patch fixes this problem.
22644
22645     Signed-off-by: Wolfgang Denk <wd@denx.de>
22646
22647 commit f4d14c55504ce40287321bd63ee269e3233ee4ae
22648 Author: Stefan Roese <sr@denx.de>
22649 Date:   Mon Oct 13 15:15:31 2008 +0200
22650
22651     ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
22652
22653     Signed-off-by: Stefan Roese <sr@denx.de>
22654
22655 commit 43cbce69d48d052574d71f50724be546d90a46a4
22656 Author: Stefan Roese <sr@denx.de>
22657 Date:   Mon Oct 13 10:45:14 2008 +0200
22658
22659     ppc4xx: Correctly setup ranges property in ebc node
22660
22661     Previously only the NOR flash mapping was written into the ranges
22662     property of the ebc node. This patch now writes all enabled chip
22663     select areas into the ranges property.
22664
22665     Signed-off-by: Stefan Roese <sr@denx.de>
22666
22667 commit d7b26d58328f137471ea97de382bfa63f7239931
22668 Author: Dirk Eibach <eibach@gdsys.de>
22669 Date:   Wed Oct 8 15:37:50 2008 +0200
22670
22671     ppc4xx: Add GDSys neo 405EP board support
22672
22673     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
22674     Signed-off-by: Stefan Roese <sr@denx.de>
22675
22676 commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
22677 Author: Niklaus Giger <niklaus.giger@netstal.com>
22678 Date:   Wed Oct 1 14:46:13 2008 +0200
22679
22680     ppc4xx: Update configs for Netstal boards
22681
22682     I reorganized my config files, putting the common stuff into netstal-common.h
22683     (got the idea by looking a amcc-common.h from Stefan).
22684
22685     Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
22686
22687     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
22688     Signed-off-by: Stefan Roese <sr@denx.de>
22689
22690 commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
22691 Author: Adam Graham <agraham@amcc.com>
22692 Date:   Wed Oct 8 10:13:19 2008 -0700
22693
22694     ppc4xx: Add routine to retrieve CPU number
22695
22696     Provide a weak defined routine to retrieve the CPU number for
22697     reference boards that have multiple CPU's.  Default behavior
22698     is the existing single CPU print output.  Reference boards with
22699     multiple CPU's need to provide a board specific routine.
22700     See board/amcc/arches/arches.c for an example.
22701
22702     Signed-off-by: Adam Graham <agraham@amcc.com>
22703     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
22704     Signed-off-by: Stefan Roese <sr@denx.de>
22705
22706 commit 59217bae40e90982ab5400d849c08af683ace036
22707 Author: Adam Graham <agraham@amcc.com>
22708 Date:   Wed Oct 8 10:13:14 2008 -0700
22709
22710     ppc4xx: Add static support for 44x IBM SDRAM Controller
22711
22712     This patch add the capability to configure a PPC440 based IBM SDRAM
22713     Controller with static, compiled-in, values. PPC440 memory subsystem
22714     includes a Memory Queue core.
22715
22716     Signed-off-by: Adam Graham <agraham@amcc.com>
22717     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
22718     Signed-off-by: Stefan Roese <sr@denx.de>
22719
22720 commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
22721 Author: Adam Graham <agraham@amcc.com>
22722 Date:   Wed Oct 8 10:12:53 2008 -0700
22723
22724     ppc4xx: Add AMCC Arches board support (dual 460GT)
22725
22726     The Arches Evaluation board is based on the AMCC 460GT SoC chip.
22727     This board is a dual processor board with each processor providing
22728     independent resources for Rapid IO, Gigabit Ethernet, and serial
22729     communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
22730     FLASH, UART, EEPROM and temperature sensor, along with a shared debug
22731     port. The two 460GT's will communicate with each other via shared
22732     memory, Gigabit Ethernet and x1 PCI-Express.
22733
22734     Signed-off-by: Adam Graham <agraham@amcc.com>
22735     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
22736     Signed-off-by: Stefan Roese <sr@denx.de>
22737
22738 commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
22739 Author: Wolfgang Denk <wd@xpert.denx.de>
22740 Date:   Sun Oct 19 21:54:30 2008 +0200
22741
22742     TQM8260: environment in flash instead EEPROM, baudrate 115k
22743
22744     Several customers have reported problems with the environment in
22745     EEPROM, including corrupted content after board reset. Probably the
22746     code to prevent I2C Enge Conditions is not working sufficiently.
22747
22748     We move the environment to flash now, which allows to have a backup
22749     copy plus gives much faster boot times.
22750
22751     Also, change the default console initialization to 115200 bps as used
22752     on most other boards.
22753
22754     Signed-off-by: Wolfgang Denk <wd@denx.de>
22755
22756 commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
22757 Author: Kumar Gala <galak@kernel.crashing.org>
22758 Date:   Sun Oct 19 12:49:19 2008 -0500
22759
22760     85xx: Fix compile warning in mpc8536ds.c
22761
22762     mpc8536ds.c: In function 'is_sata_supported':
22763     mpc8536ds.c:615: warning: unused variable 'devdisr'
22764
22765     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22766
22767 commit 8ed44d91c8122d00368523b0b746691c895d3b3c
22768 Author: Wolfgang Denk <wd@denx.de>
22769 Date:   Sun Oct 19 02:35:50 2008 +0200
22770
22771     Cleanup: fix "MHz" spelling
22772
22773     Signed-off-by: Wolfgang Denk <wd@denx.de>
22774
22775 commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
22776 Author: Wolfgang Denk <wd@denx.de>
22777 Date:   Sun Oct 19 02:35:49 2008 +0200
22778
22779     Use strmhz() to format clock frequencies
22780
22781     Signed-off-by: Wolfgang Denk <wd@denx.de>
22782
22783 commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
22784 Author: Wolfgang Denk <wd@denx.de>
22785 Date:   Sun Oct 19 02:35:48 2008 +0200
22786
22787     strmhz(): Round numbers when printing clock frequencies
22788
22789     Round clock frequencies for printing.
22790
22791     Many boards printed off clock frequencies like 399 MHz instead of the
22792     exact 400 MHz because numberes were not rounded. This is fixed now.
22793
22794     Signed-off-by: Wolfgang Denk <wd@denx.de>
22795
22796 commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
22797 Author: Timur Tabi <timur@freescale.com>
22798 Date:   Mon Oct 20 15:16:47 2008 -0500
22799
22800     85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
22801
22802     Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
22803     to add a comment that the correct value disagrees with the 8544 reference
22804     manual.  The changelog for that commit is also wrong, as it says "bit 28"
22805     when it should be "bit 24".
22806
22807     Signed-off-by: Timur Tabi <timur@freescale.com>
22808
22809 commit 360fe71e82b83e264c964c9447c537e9a1f643c8
22810 Author: Heiko Schocher <hs@denx.de>
22811 Date:   Fri Oct 17 18:24:06 2008 +0200
22812
22813     mgcoge: add redundant environment sector
22814
22815     Signed-off-by: Heiko Schocher <hs@denx.de>
22816
22817 commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
22818 Author: Heiko Schocher <hs@denx.de>
22819 Date:   Fri Oct 17 18:23:27 2008 +0200
22820
22821     mgsuvd: update size of environment
22822
22823     Signed-off-by: Heiko Schocher <hs@denx.de>
22824
22825 commit 2e26d837f11460c0e6dede7d65424a31e0183d09
22826 Author: Jason Jin <Jason.jin@freescale.com>
22827 Date:   Fri Oct 10 11:41:00 2008 +0800
22828
22829     Enabled the Freescale SGMII riser card on 8536DS
22830
22831     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
22832
22833 commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
22834 Author: Liu Yu <yu.liu@freescale.com>
22835 Date:   Fri Oct 10 11:40:59 2008 +0800
22836
22837     Enabled the Freescale SGMII riser card on 8572DS
22838
22839     This patch based on Andy's work.
22840     Including command 'pixis_set_sgmii' support.
22841
22842     Signed-off-by: Liu Yu <yu.liu@freescale.com>
22843
22844 commit bff188baf9427c35745356439435acf3864d4c65
22845 Author: Liu Yu <yu.liu@freescale.com>
22846 Date:   Fri Oct 10 11:40:58 2008 +0800
22847
22848     Make pixis_set_sgmii more general to support MPC85xx boards.
22849
22850     The pixis sgmii command depend on the FPGA support on the board, some 85xx
22851     boards support SGMII riser card but did not support this command, define
22852     CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
22853
22854     Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
22855     are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
22856     PIXIS_VCFGEN1_MASK in header file for both boards.
22857
22858     Signed-off-by: Liu Yu <yu.liu@freescale.com>
22859
22860 commit 5e981d683d2363204c76773941c2e9c2044c808f
22861 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
22862 Date:   Wed Oct 8 23:38:02 2008 -0500
22863
22864     Add cpu/8xxx to TAGS_SUBDIRS
22865
22866     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
22867
22868 commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
22869 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
22870 Date:   Thu Oct 9 01:25:55 2008 -0500
22871
22872     fsl_law clear enable before changing.
22873
22874     Debug sessions may have left enabled laws.
22875     Changing lawbar with an unkown enabled tgtid could cause problems.
22876
22877     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
22878
22879 commit 86be510f7b5443e7e937f696bfbe037fdc740b15
22880 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
22881 Date:   Thu Oct 9 00:29:27 2008 -0500
22882
22883     mpc8572 additional end-point mode
22884
22885     mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
22886     Include host_agent == 0 decode for end-point determination.
22887
22888     This is not needed for the ds reference board since pcie3 will be a host
22889     in order to connect to the uli chip.  Include it here as a reference for
22890     other mpc8572 boards.
22891
22892     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
22893
22894 commit 6856b3d0221a838580e6bb06f61425fd7529ba93
22895 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
22896 Date:   Wed Oct 8 23:37:59 2008 -0500
22897
22898     85xx if NUM_CPUS>1, print cpu number
22899
22900     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
22901
22902 commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
22903 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
22904 Date:   Wed Oct 8 23:38:01 2008 -0500
22905
22906     pixis do not print long help if not configured
22907
22908     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
22909
22910 commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
22911 Author: Andy Fleming <afleming@freescale.com>
22912 Date:   Tue Oct 7 08:09:50 2008 -0500
22913
22914     Have u-boot pass stashing parameters into device tree
22915
22916     Some cores don't support ethernet stashing at all, and some
22917     instances have errata.  Adds 3 properties to gianfar nodes
22918     which support stashing.  For now, just add this support to
22919     85xx SoCs.
22920
22921     Signed-off-by: Andy Fleming <afleming@freescale.com>
22922
22923 commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
22924 Author: Haiying Wang <Haiying.Wang@freescale.com>
22925 Date:   Fri Oct 3 12:37:57 2008 -0400
22926
22927     Add DDR options setting on MPC8641HPCN board
22928
22929     * Add board specific parameter table to choose correct cpo, clk_adjust,
22930     write_data_delay based on board ddr frequency and n_ranks.
22931
22932     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
22933
22934     Signed-off-by: James Yang <James.Yang@freescale.com>
22935     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22936
22937 commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
22938 Author: Haiying Wang <Haiying.Wang@freescale.com>
22939 Date:   Fri Oct 3 12:37:41 2008 -0400
22940
22941     Add ddr interleaving suppport for MPC8572DS board
22942
22943     * Add board specific parameter table to choose correct cpo, clk_adjust,
22944     write_data_delay, 2T based on board ddr frequency and n_ranks.
22945
22946     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
22947
22948     * Set memory controller interleaving mode to bank interleaving, and disable
22949     bank(chip select) interleaving mode by default, because the default on-board
22950     DDR DIMMs are 2x512MB single-rank.
22951
22952     * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
22953
22954     Signed-off-by: James Yang <James.Yang@freescale.com>
22955     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22956
22957 commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
22958 Author: Haiying Wang <Haiying.Wang@freescale.com>
22959 Date:   Fri Oct 3 12:37:26 2008 -0400
22960
22961     Add debug information for DDR controller registers
22962
22963     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22964
22965 commit c9ffd839b1ada502c86f88edaf1534426b6688ce
22966 Author: Haiying Wang <Haiying.Wang@freescale.com>
22967 Date:   Fri Oct 3 12:37:10 2008 -0400
22968
22969     Check DDR interleaving mode
22970
22971     * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
22972     ba_intlv_ctl.
22973     * Print DDR interleaving mode information
22974     * Add doc/README.fsl-ddr to describe the interleaving setting
22975
22976     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22977
22978 commit dfb49108e4f86c2224e1f30124328b0de66ef72e
22979 Author: Haiying Wang <Haiying.Wang@freescale.com>
22980 Date:   Fri Oct 3 12:36:55 2008 -0400
22981
22982     Pass dimm parameters to populate populate controller options
22983
22984     Because some dimm parameters like n_ranks needs to be used with the board
22985     frequency to choose the board parameters like clk_adjust etc. in the
22986     board_specific_paramesters table of the board ddr file, we need to pass
22987     the dimm parameters to the board file.
22988
22989     * move ddr dimm parameters header file from /cpu to /include directory.
22990     * add ddr dimm parameters to populate board specific options.
22991     * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
22992
22993     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22994
22995 commit dbbbb3abeff325855cae76e33d69d5665631443f
22996 Author: Haiying Wang <Haiying.Wang@freescale.com>
22997 Date:   Fri Oct 3 12:36:39 2008 -0400
22998
22999     Make DDR interleaving mode work correctly
23000
23001     Fix some bugs:
23002       1. Correctly set intlv_ctl in cs_config.
23003       2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
23004       3. Set base_address and total memory for each ddr controller in memory
23005          controller interleaving mode.
23006
23007     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23008
23009 commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
23010 Author: Kumar Gala <galak@kernel.crashing.org>
23011 Date:   Mon Sep 22 23:40:42 2008 -0500
23012
23013     85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
23014
23015     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23016
23017 commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
23018 Author: Kumar Gala <galak@kernel.crashing.org>
23019 Date:   Mon Sep 22 14:11:11 2008 -0500
23020
23021     85xx: Improve flash remapping on MPC8572DS & MPC8536DS
23022
23023     Changing the flash from cacheable to cache-inhibited was taking a significant
23024     amount of time due to the fact that we were iterating over the full 256M of
23025     flash.  Instead we can just flush the L1 d-cache and invalidate the i-cache.
23026
23027     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23028
23029 commit 54e091d3b603a3332c619199ca83a07e95960da4
23030 Author: Kumar Gala <galak@kernel.crashing.org>
23031 Date:   Mon Sep 22 14:11:10 2008 -0500
23032
23033     85xx: Export invalidate_{i,d}cache and add flush_dcache
23034
23035     Added the ability for C code to invalidate the i/d-cache's and
23036     to flush the d-cache.  This allows us to more efficient change mappings
23037     from cache-able to cache-inhibited.
23038
23039     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23040
23041 commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
23042 Author: Heiko Schocher <hs@denx.de>
23043 Date:   Fri Oct 17 16:11:52 2008 +0200
23044
23045     mgcoge, mgsuvd: extract more common code
23046
23047     in ft_blob_update () for both boards was an unneccessary
23048     repetition of code, which this patch moves in a common
23049     function for this boards.
23050
23051     Signed-off-by: Heiko Schocher <hs@denx.de>
23052
23053 commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
23054 Author: Heiko Schocher <hs@denx.de>
23055 Date:   Fri Oct 17 12:15:55 2008 +0200
23056
23057     mgcoge, mgsuvd: use in_*/out_* accesors
23058
23059     Signed-off-by: Heiko Schocher <hs@denx.de>
23060
23061 commit a21ca95f8b9dca22714952b348e4905ac157b5cd
23062 Author: Heiko Schocher <hs@denx.de>
23063 Date:   Fri Oct 17 13:52:51 2008 +0200
23064
23065     mgsuvd: fix compiler warning when using soft_i2c driver
23066
23067     Signed-off-by: Heiko Schocher <hs@denx.de>
23068
23069 commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
23070 Author: Heiko Schocher <hs@denx.de>
23071 Date:   Fri Oct 17 12:15:05 2008 +0200
23072
23073     mgsuvd: fix coding style
23074
23075     Signed-off-by: Heiko Schocher <hs@denx.de>
23076
23077 commit 5f4c3137f4f051787707c548133823f1656eb508
23078 Author: Heiko Schocher <hs@denx.de>
23079 Date:   Fri Oct 17 12:13:30 2008 +0200
23080
23081     mgcoge: Second Flash on CS5 not on CS1
23082
23083     Signed-off-by: Heiko Schocher <hs@denx.de>
23084
23085 commit 76da19df5b8e186d269f29190696bd31fb6c836b
23086 Author: Kumar Gala <galak@kernel.crashing.org>
23087 Date:   Thu Oct 16 21:52:08 2008 -0500
23088
23089     Added arch_lmb_reserve to allow arch specific memory regions protection
23090
23091     Each architecture has different ways of determine what regions of memory
23092     might not be valid to get overwritten when we boot.  This provides a
23093     hook to allow them to reserve any regions they care about.  Currently
23094     only ppc, m68k and sparc need/use this.
23095
23096     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23097
23098 commit e02d4a9904c8f36395994c0c81469d552b82f5ea
23099 Author: Heiko Schocher <hs@denx.de>
23100 Date:   Thu Oct 16 16:32:35 2008 +0200
23101
23102     mgcoge: added CONFIG_FIT to support the new u-boot image format
23103
23104     Signed-off-by: Heiko Schocher <hs@denx.de>
23105
23106 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
23107 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23108 Date:   Thu Oct 16 15:01:15 2008 +0200
23109
23110     rename CFG_ macros to CONFIG_SYS
23111
23112     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23113
23114 commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
23115 Author: Kumar Gala <galak@kernel.crashing.org>
23116 Date:   Mon Oct 13 14:12:55 2008 -0500
23117
23118     74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
23119
23120     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23121
23122 commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
23123 Author: Kumar Gala <galak@kernel.crashing.org>
23124 Date:   Tue Sep 23 10:05:02 2008 -0500
23125
23126     Expose command table search for sub-commands
23127
23128     Sub-command can benefit from using the same table and search functions
23129     that top level commands have.  Expose this functionality by refactoring
23130     find_cmd() and introducing find_cmd_tbl() that sub-command processing
23131     can call.
23132
23133     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23134
23135 commit f7e51b27508446f8cae3927975817137979ad5e8
23136 Author: Heiko Schocher <hs@denx.de>
23137 Date:   Wed Oct 15 09:41:33 2008 +0200
23138
23139     mgsuvd, mgcoge: added BOOTCOUNT feature.
23140
23141     Signed-off-by: Heiko Schocher <hs@denx.de>
23142
23143 commit 8f64da7f83b553889bc08400c97047998382e9d2
23144 Author: Heiko Schocher <hs@denx.de>
23145 Date:   Wed Oct 15 09:41:00 2008 +0200
23146
23147     mgcoge, mgsuvd: added support for the IVM EEprom.
23148
23149     The EEprom contains some Manufacturerinformation,
23150     which are read from u-boot at boot time, and saved
23151     in same hush shell variables.
23152
23153     Signed-off-by: Heiko Schocher <hs@denx.de>
23154
23155 commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
23156 Author: Heiko Schocher <hs@denx.de>
23157 Date:   Wed Oct 15 09:40:28 2008 +0200
23158
23159     hush: add showvar command for hush shell.
23160
23161     This new command shows the local variables defined in
23162     the hush shell:
23163
23164     => help showvar
23165     showvar
23166         - print values of all hushshell variables
23167     showvar name ...
23168         - print value of hushshell variable 'name'
23169
23170     Also make the set_local_var() and unset_local_var ()
23171     no longer static, so it is possible to define local
23172     hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
23173     is defined, u-boot calls hush_init_var (), where
23174     boardspecific code can define local hush shell
23175     variables at boottime.
23176
23177     Signed-off-by: Heiko Schocher <hs@denx.de>
23178
23179 commit 67b23a322848d828a5e45c0567b72762bfde7abf
23180 Author: Heiko Schocher <hs@denx.de>
23181 Date:   Wed Oct 15 09:39:47 2008 +0200
23182
23183     I2C: adding new "i2c bus" Command to the I2C Subsystem.
23184
23185     With this Command it is possible to add new I2C Busses,
23186     which are behind 1 .. n I2C Muxes. Details see README.
23187
23188     Signed-off-by: Heiko Schocher <hs@denx.de>
23189
23190 commit c24853644ddd2dd2e4246b5854a93e6254a14092
23191 Author: Heiko Schocher <hs@denx.de>
23192 Date:   Wed Oct 15 09:39:08 2008 +0200
23193
23194     mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
23195
23196     As documented in doc/I2C_Edge_Conditions, adding a
23197     board specific deblocking mechanism via CFG_I2C_INIT_BOARD
23198     for the mgcoge and mgsuvd board.
23199
23200     This code was originally written by Keymile in association
23201     with Anatech and Atmel in 1998. The Code toggels the SCL
23202     until the SCA line goes to HIGH (max. 16 times).
23203     And after this, a start condition is sent.
23204
23205     This is another approach to deblock the I2C Bus. The
23206     soft I2C driver actually sends 9 clocks with SDA High,
23207     and then a stop at the end, to deblock the I2C Bus.
23208
23209     Maybe we should use the approach from Keymile as
23210     the new standard?
23211
23212     Signed-off-by: Heiko Schocher <hs@denx.de>
23213
23214 commit 4ca107effebfbabac1057c39632105dacef95957
23215 Author: Heiko Schocher <hs@denx.de>
23216 Date:   Wed Oct 15 09:38:38 2008 +0200
23217
23218     soft_i2c: Add CFG_I2C_INIT_BOARD option
23219
23220     This patch adds the option for a boardspecific
23221     I2C deblocking mechanism for the soft i2c driver.
23222
23223     Signed-off-by: Heiko Schocher <hs@denx.de>
23224
23225 commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
23226 Author: Heiko Schocher <hs@denx.de>
23227 Date:   Wed Oct 15 09:38:07 2008 +0200
23228
23229     mgcoge, mgsuvd: add DTT (LM75) support.
23230
23231     Signed-off-by: Heiko Schocher <hs@denx.de>
23232
23233 commit 8e442df438ab677057571e3ac01846bff7719bce
23234 Author: Heiko Schocher <hs@denx.de>
23235 Date:   Wed Oct 15 09:37:34 2008 +0200
23236
23237     lm75: Make the LM75 MULTI_BUS compatible.
23238
23239     Signed-off-by: Heiko Schocher <hs@denx.de>
23240
23241 commit 12f1678127c1df2b2878ba93c88948bedc060775
23242 Author: Heiko Schocher <hs@denx.de>
23243 Date:   Wed Oct 15 09:37:04 2008 +0200
23244
23245     lm75: fix Codingstyle issues.
23246
23247     Signed-off-by: Heiko Schocher <hs@denx.de>
23248
23249 commit f2202450c75ba6934b356024101500ddcde6e2a6
23250 Author: Heiko Schocher <hs@denx.de>
23251 Date:   Wed Oct 15 09:36:33 2008 +0200
23252
23253     mgcoge, mgsuvd: added EEprom support.
23254
23255     Signed-off-by: Heiko Schocher <hs@denx.de>
23256
23257 commit 9661bf9d120f760238b2a073b84f2baf05010057
23258 Author: Heiko Schocher <hs@denx.de>
23259 Date:   Wed Oct 15 09:36:03 2008 +0200
23260
23261     mgcoge, mgsuvd: add I2C support.
23262
23263     Signed-off-by: Heiko Schocher <hs@denx.de>
23264
23265 commit 98aed379586a155292efbf3209356836584b601c
23266 Author: Heiko Schocher <hs@denx.de>
23267 Date:   Wed Oct 15 09:35:26 2008 +0200
23268
23269     soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
23270
23271     This patch fixes the following warnings, when using
23272     the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
23273     systems:
23274
23275     soft_i2c.c: In function 'send_reset':
23276     soft_i2c.c:93: warning: unused variable 'immr'
23277     soft_i2c.c: In function 'send_start':
23278     soft_i2c.c:124: warning: unused variable 'immr'
23279     soft_i2c.c: In function 'send_stop':
23280     soft_i2c.c:146: warning: unused variable 'immr'
23281     soft_i2c.c: In function 'send_ack':
23282     soft_i2c.c:171: warning: unused variable 'immr'
23283     soft_i2c.c: In function 'write_byte':
23284     soft_i2c.c:196: warning: unused variable 'immr'
23285     soft_i2c.c: In function 'read_byte':
23286     soft_i2c.c:244: warning: unused variable 'immr'
23287
23288     Signed-off-by: Heiko Schocher <hs@denx.de>
23289
23290 commit 799b784aa00cb03a352847ab9f9acdde79b72d21
23291 Author: Heiko Schocher <hs@denx.de>
23292 Date:   Wed Oct 15 09:34:45 2008 +0200
23293
23294     i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
23295
23296     Signed-off-by: Heiko Schocher <hs@denx.de>
23297
23298 commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
23299 Author: Heiko Schocher <hs@denx.de>
23300 Date:   Wed Oct 15 09:34:05 2008 +0200
23301
23302     mgcoge: fix Coding Style issues.
23303
23304     Signed-off-by: Heiko Schocher <hs@denx.de>
23305
23306 commit e43a27c49712203fe8848a17714330623edfb2eb
23307 Author: Heiko Schocher <hs@denx.de>
23308 Date:   Wed Oct 15 09:33:30 2008 +0200
23309
23310     I2C: add new command i2c reset.
23311
23312     If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
23313     it is not possible to get out of this, until the
23314     complete Hardware gets a reset. This new commando
23315     calls again i2c_init (and that calls i2c_init_board
23316     if defined), which will deblock the I2C Bus.
23317
23318     Signed-off-by: Heiko Schocher <hs@denx.de>
23319     Signed-off-by: Wolfgang Denk <wd@denx.de>
23320
23321 commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
23322 Author: Heiko Schocher <hs@denx.de>
23323 Date:   Wed Oct 15 09:32:25 2008 +0200
23324
23325     mgsuvd, mgcoge: move this 2 boards in one dir.
23326
23327     There are some more extensions, which are for both boards
23328     and some more boards from this manufacturer will follow soon.
23329
23330     Signed-off-by: Heiko Schocher <hs@denx.de>
23331     Signed-off-by: Wolfgang Denk <wd@denx.de>
23332
23333 commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
23334 Author: Dirk Eibach <eibach@gdsys.de>
23335 Date:   Wed Oct 8 13:44:27 2008 +0200
23336
23337     hwmon: Add LM63 support
23338
23339     This patch adds support for the National LM63 temperature
23340     sensor with integrated fan control. It's used on the GDSys
23341     Neo board (405EP) which will be submitted later.
23342
23343     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
23344     Acked-by: Stefan Roese <sr@denx.de>
23345
23346 commit 7ba890bf2f2b92831420243c058951aa831119fd
23347 Author: Kyungmin Park <kmpark@infradead.org>
23348 Date:   Wed Oct 8 11:01:17 2008 +0900
23349
23350     Add Red Black Tree support
23351
23352     Now it's used at UBI module. Of course other modules can use it.
23353     If you want to use it, please define CONFIG_RBTREE
23354
23355     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
23356
23357 commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
23358 Author: richardretanubun <richardretanubun@ruggedcom.com>
23359 Date:   Mon Oct 6 16:10:53 2008 -0400
23360
23361     CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
23362
23363     Added support for CONFIG_EFI_PARTITION to ext2 commands.
23364     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
23365
23366 commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
23367 Author: richardretanubun <richardretanubun@ruggedcom.com>
23368 Date:   Fri Sep 26 11:13:22 2008 -0400
23369
23370     Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
23371
23372     The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
23373     of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
23374
23375     Based on linux/fs/partitions/efi.[ch]
23376
23377     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
23378
23379 commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
23380 Author: Bartlomiej Sieka <tur@semihalf.com>
23381 Date:   Wed Oct 1 15:26:32 2008 +0200
23382
23383     FIT: output image load address for type 'firmware', fix message while there
23384
23385     Now that the auto-update feature uses the 'firmware' type for updates, it is
23386     useful to inspect the load address of such images.
23387
23388     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23389
23390 commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
23391 Author: Bartlomiej Sieka <tur@semihalf.com>
23392 Date:   Wed Oct 1 15:26:31 2008 +0200
23393
23394     Automatic software update from TFTP server
23395
23396     The auto-update feature allows to automatically download software updates
23397     from a TFTP server and store them in Flash memory during boot. Updates are
23398     contained in a FIT file and protected with SHA-1 checksum.
23399
23400     More detailed description can be found in doc/README.update.
23401
23402     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23403     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23404
23405 commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
23406 Author: Bartlomiej Sieka <tur@semihalf.com>
23407 Date:   Wed Oct 1 15:26:27 2008 +0200
23408
23409     flash: factor out adjusting of Flash address to the end of sector
23410
23411     The upcoming automatic update feature needs the ability to adjust an
23412     address within Flash to the end of its respective sector. Factor out
23413     this functionality to a new function flash_sect_roundb().
23414
23415     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23416     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23417     Signed-off-by: Stefan Roese <sr@denx.de>
23418
23419 commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
23420 Author: Bartlomiej Sieka <tur@semihalf.com>
23421 Date:   Wed Oct 1 15:26:29 2008 +0200
23422
23423     net: Make TFTP server timeout configurable
23424
23425     There are two aspects of a TFTP transfer involving timeouts:
23426     1. timeout waiting for initial server reply after sending RRQ
23427     2. timeouts while transferring actual data from the server
23428
23429     Since the upcoming auto-update feature attempts a TFTP download during each
23430     boot, it is undesirable to have a long delay when the TFTP server is not
23431     available. Thus, this commit makes the server timeout (1.) configurable by two
23432     global variables:
23433
23434     TftpRRQTimeoutMSecs
23435     TftpRRQTimeoutCountMax
23436
23437     TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
23438     server, TftpRRQTimeoutCountMax overrides default number of connection retries.
23439     The total delay when trying to download a file from a non-existing TFTP server
23440     is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
23441
23442     Timeouts during file transfers (2.) are unaffected.
23443
23444     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23445     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23446     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23447
23448 commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
23449 Author: Bartlomiej Sieka <tur@semihalf.com>
23450 Date:   Wed Oct 1 15:26:28 2008 +0200
23451
23452     net: express the first argument to NetSetTimeout() in milliseconds
23453
23454     Enforce millisecond semantics of the first argument to NetSetTimeout() --
23455     the change is transparent for well-behaving boards (CFG_HZ == 1000 and
23456     get_timer() countiing in milliseconds).
23457
23458     Rationale for this patch is to enable millisecond granularity for
23459     network-related timeouts, which is needed for the upcoming automatic
23460     software update feature.
23461
23462     Summary of changes:
23463     - do not scale the first argument to NetSetTimeout() by CFG_HZ
23464     - change timeout values used in the networking code to milliseconds
23465
23466     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23467     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23468     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23469
23470 commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
23471 Author: richardretanubun <richardretanubun@ruggedcom.com>
23472 Date:   Mon Sep 29 18:28:23 2008 -0400
23473
23474     Adds two more ethernet interface to 83xx
23475
23476     Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
23477     Six eth interface is chosen because the platform I am using combines
23478     UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
23479
23480     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
23481     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23482
23483 commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
23484 Author: Haiying Wang <Haiying.Wang@freescale.com>
23485 Date:   Wed Sep 24 11:42:12 2008 -0500
23486
23487     Change UEC PHY interface to RGMII on MPC8568MDS
23488
23489     Change UEC phy interface from GMII to RGMII on MPC8568MDS board
23490
23491     Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
23492     but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
23493
23494     Now both UEC1 and UEC2 can work properly under u-boot.
23495
23496     It is also in consistent with the kernel setting for 8568 UEC phy interface.
23497
23498     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23499     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23500
23501 commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
23502 Author: Wolfgang Denk <wd@denx.de>
23503 Date:   Sat Oct 18 21:30:31 2008 +0200
23504
23505     Prepare v2008.10 release: update CHANGELOG & Makefile
23506
23507     Signed-off-by: Wolfgang Denk <wd@denx.de>
23508
23509 commit f7a35a60cf45491871a5c28e9ad24db005487857
23510 Author: Heiko Schocher <hs@denx.de>
23511 Date:   Fri Oct 17 18:24:06 2008 +0200
23512
23513     mgcoge: add redundant environment sector
23514
23515     Signed-off-by: Heiko Schocher <hs@denx.de>
23516     Signed-off-by: Wolfgang Denk <wd@denx.de>
23517
23518 commit c2537ee85954af9d036b18b644f3e18d837bf4a5
23519 Author: Heiko Schocher <hs@denx.de>
23520 Date:   Fri Oct 17 18:23:27 2008 +0200
23521
23522     mgsuvd: update size of environment
23523
23524     Signed-off-by: Heiko Schocher <hs@denx.de>
23525
23526 commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
23527 Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
23528 Date:   Thu Oct 16 13:38:00 2008 -0500
23529
23530     83xx NAND boot: wait for LTESR[CC]
23531
23532     At least some revisions of the 8313, and possibly other chips, do not
23533     wait for all pages of the initial 4K NAND region to be loaded before
23534     beginning execution; thus, we wait for it before branching out of the
23535     first NAND page.
23536
23537     This fixes warm reset problems when booting from NAND on 8313erdb.
23538
23539     Signed-off-by: Scott Wood <scottwood@freescale.com>
23540     Acked-by: Kim Phillips <kim.phillips@freescale.com>
23541
23542 commit bf29e0ea0af03d593c64614136acc723a7a022a2
23543 Author: Yuri Tikhonov <yur@emcraft.com>
23544 Date:   Fri Oct 17 12:54:18 2008 +0200
23545
23546     ppc4xx: PPC44x MQ initialization
23547
23548     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
23549     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
23550     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
23551
23552     Previously the appropriate initialization had been made in Linux, by the
23553     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
23554     registers after normal operation has begun is not supported and could
23555     have unpredictable results.
23556
23557     Comment from Stefan: This patch doesn't change the resulting value of the
23558     MQ registers. It explicitly sets/clears all bits to the desired state which
23559     better documents the resulting register value instead of relying on pre-set
23560     default values.
23561
23562     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
23563     Signed-off-by: Stefan Roese <sr@denx.de>
23564
23565 commit ec081c2c190148b374e86a795fb6b1c49caeb549
23566 Author: Stefan Roese <sr@denx.de>
23567 Date:   Fri Oct 17 12:51:46 2008 +0200
23568
23569     ppc4xx: PPC44x MQ initialization
23570
23571     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
23572     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
23573     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
23574
23575     Previously the appropriate initialization had been made in Linux, by the
23576     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
23577     registers after normal operation has begun is not supported and could
23578     have unpredictable results.
23579
23580     Comment from Stefan: This patch doesn't change the resulting value of the
23581     MQ registers. It explicitly sets/clears all bits to the desired state which
23582     better documents the resulting register value instead of relying on pre-set
23583     default values.
23584
23585     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
23586     Signed-off-by: Stefan Roese <sr@denx.de>
23587
23588 commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
23589 Author: Kumar Gala <galak@kernel.crashing.org>
23590 Date:   Thu Oct 16 21:58:50 2008 -0500
23591
23592     85xx: Using proper I2C source clock divider for MPC8544
23593
23594     The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
23595     bit 26, instead it should be bit 28.  This caused in incorrect
23596     interpretation of the i2c_clk which is the same as the SEC clk on
23597     MPC8544.  The SEC clk is controlled by cfg_sec_freq that is reported
23598     in PORDEVSR2.
23599
23600     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23601
23602 commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
23603 Author: Kumar Gala <galak@kernel.crashing.org>
23604 Date:   Thu Oct 16 21:58:49 2008 -0500
23605
23606     Revert "85xx: Using proper I2C source clock divider for MPC8544"
23607
23608     This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
23609
23610     The fix introduced by this patch is not correct.  The problem is
23611     that the documentation is not correct for the MPC8544 with regards
23612     to which bit in PORDEVSR2 is for the SEC_CFG.
23613
23614     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23615
23616 commit 2179c4766bffeece98e5e92040629a96c97e230c
23617 Author: Kumar Gala <galak@kernel.crashing.org>
23618 Date:   Wed Oct 15 10:19:41 2008 -0500
23619
23620     85xx: Fix compile warning
23621
23622     mpc8536ds.c: In function 'is_sata_supported':
23623     mpc8536ds.c:614: warning: unused variable 'devdisr'
23624
23625     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23626
23627 commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
23628 Author: Jason Jin <Jason.jin@freescale.com>
23629 Date:   Wed Oct 15 10:40:24 2008 +0800
23630
23631     Fix the function conflict in x86emu when DEBUG is on
23632
23633     The function parse_line() in common/main.c was exposed globally by commit
23634     6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
23635     name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
23636     This patch fix this by renaming the function in the debug.c file.
23637
23638     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
23639
23640 commit b4dbacf69a669a17487054552fc2761149dd6767
23641 Author: Wolfgang Denk <wd@denx.de>
23642 Date:   Wed Oct 15 15:50:45 2008 +0200
23643
23644     Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
23645
23646     Signed-off-by: Wolfgang Denk <wd@denx.de>
23647
23648 commit 374b9038293d01d8744a46af9b7854a6fd99b228
23649 Author: Heiko Schocher <hs@denx.de>
23650 Date:   Wed Oct 15 09:51:19 2008 +0200
23651
23652     Fix compiler warning in lib_ppc/board.c
23653
23654     Fix compiler warning introduced by commit 0f8cbc18
23655
23656     Signed-off-by: Heiko Schocher <hs@denx.de>
23657     Signed-off-by: Wolfgang Denk <wd@denx.de>
23658
23659 commit 9724555755a6f1066636481b41f7094e0ce93a69
23660 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
23661 Date:   Thu Oct 9 10:29:14 2008 +0530
23662
23663     mpc83xx: wait till UPM completes the write to array
23664
23665     Reference manual states that MxMR[MAD] increment is the indication
23666     of write to UPM array is complete. Honour that. Also, make the dummy
23667     write explicit.
23668
23669     also fix the comment.
23670
23671     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
23672     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23673
23674 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
23675 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
23676 Date:   Wed Oct 8 18:12:20 2008 -0500
23677
23678     Remove unwanted ';' at end of define.
23679
23680     Currently this is not creating any problem. But it will result
23681     in compilation error when used as below.
23682
23683     printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
23684
23685     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
23686
23687     continuation of the theme based on git grep "^#define CFG_.*;$" include/
23688
23689     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23690
23691 commit b2934a56650e9a6c54432f9ce6dc36757967385e
23692 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
23693 Date:   Mon Oct 6 10:53:59 2008 -0400
23694
23695     ARM DaVinci: Add maintainer information for SFFSDR board.
23696
23697     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
23698
23699 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
23700 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23701 Date:   Sat Oct 4 19:26:16 2008 +0200
23702
23703     api: fix type mismatch
23704
23705     This patch fixes a type mismatch and thus removes a compiler
23706     warning when compiling with CONFIG_API on powerpc.
23707
23708     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23709
23710 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
23711 Author: Peter Tyser <ptyser@xes-inc.com>
23712 Date:   Wed Oct 1 12:25:04 2008 -0500
23713
23714     cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
23715
23716     Original code displayed:
23717      => help i2c
23718      i2c i2c speed [speed] - show or set I2C bus speed
23719      i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
23720      ...
23721
23722     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23723
23724 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
23725 Author: Wolfgang Denk <wd@denx.de>
23726 Date:   Tue Oct 14 22:13:41 2008 +0200
23727
23728     Update CHANGELOG
23729
23730     Signed-off-by: Wolfgang Denk <wd@denx.de>
23731
23732 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
23733 Author: Jason Jin <Jason.jin@freescale.com>
23734 Date:   Fri Oct 10 11:41:01 2008 +0800
23735
23736     Do not init SATA when disabled on 8536DS.
23737
23738     SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
23739     driver still try to access the SATA registers, the cpu will hangup.
23740     This patch try to fix this by reading the serdes status before the SATA
23741     initialize.
23742
23743     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
23744     Acked-by: Andy Fleming <afleming@freescale.com>
23745
23746 commit 9dbc366744960013965fce8851035b6141f3b3ae
23747 Author: Remy Bohmer <linux@bohmer.net>
23748 Date:   Fri Oct 10 10:23:22 2008 +0200
23749
23750     The PIPE_INTERRUPT flag is used wrong
23751
23752     At a lot of places in the code the PIPE_INTERRUPT flags and friends
23753     are used wrong. The wrong bits are compared to this flag resulting
23754     in wrong conditions. Also there are macros that should be used for
23755     PIPE_* flags.
23756     This patch tries to fix them all, however, I was not able to test the
23757     changes, because I do not have any of these boards.
23758
23759     Review required!
23760
23761     Signed-off-by: Remy Bohmer <linux@bohmer.net>
23762     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
23763
23764 commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
23765 Author: Remy Bohmer <linux@bohmer.net>
23766 Date:   Fri Oct 10 10:23:21 2008 +0200
23767
23768     fix USB initialisation procedure
23769
23770     The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
23771     At some places directly 8,16,32,64 was used instead of the encoded
23772     value. Made a enum for the options to make this more clear and to help
23773     preventing similar errors in the future.
23774
23775     After fixing this bug it became clear that another bug existed where
23776     the 'pipe' is and-ed with PIPE_* flags, where it should have been
23777     'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
23778
23779     Also removed the triple 'get_device_descriptor' sequence, it has no use,
23780     and Windows nor Linux behaves that way.
23781     There is also a poll going on with a timeout when usb_control_msg() fails.
23782     However, the poll is useless, because the flag will never be set on a error,
23783     because there is no code that runs in a parallel that can set this flag.
23784     Changed this to something more logical.
23785
23786     Tested on AT91SAM9261ek and compared the flow on the USB bus to what
23787     Linux is doing. There is no difference anymore in the early initialisation
23788     sequence.
23789
23790     Signed-off-by: Remy Bohmer <linux@bohmer.net>
23791     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
23792
23793 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
23794 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
23795 Date:   Fri Oct 3 00:03:55 2008 +0400
23796
23797     fsl_diu: fix alignment error that caused malloc corruption
23798
23799     When aligning malloc()ed screen_base, invalid offset was added.
23800     This not only caused misaligned result (which did not cause hardware
23801     misbehaviour), but - worse - caused screen_base + smem_len to
23802     be out of malloc()ed space, which in turn caused breakage of
23803     futher malloc()/free() operation.
23804
23805     This patch fixes screen_base alignment.
23806
23807     Also this patch makes memset() that cleans framebuffer to be executed
23808     on first initialization of diu, not only on re-initialization. It looks
23809     correct to clean the framebuffer instead of displaying random garbage;
23810     I believe that was disabled only because that memset caused breakage
23811     of malloc/free described above - which no longer happens with the fix
23812     described above.
23813
23814     Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
23815
23816 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
23817 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23818 Date:   Wed Sep 24 10:29:37 2008 +0200
23819
23820     api: Fix building with CONFIG_API
23821
23822     This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
23823
23824     USB_MAX_STOR_DEV is defined in include/usb.h, but
23825     needed in api/api_storage.c.
23826
23827     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23828
23829 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
23830 Author: Peter Tyser <ptyser@xes-inc.com>
23831 Date:   Tue Sep 23 12:39:40 2008 -0500
23832
23833     Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
23834
23835     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23836
23837 commit 81e612014c40c922ec35488d17c504d4e9286f06
23838 Author: Peter Tyser <ptyser@xes-inc.com>
23839 Date:   Tue Sep 23 12:38:42 2008 -0500
23840
23841     Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
23842
23843     The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
23844     CFG_EEPROM_PAGE_WRITE_BITS in various temperature
23845     sensor drivers are not necessary
23846
23847     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23848
23849 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
23850 Author: Mike Frysinger <vapier@gentoo.org>
23851 Date:   Tue Oct 14 07:04:38 2008 -0400
23852
23853     cmd_spi: remove broken signed casting for display
23854
23855     Since we're working with unsigned data, you can't apply a signed pointer
23856     cast and then attempt to print the result.  Otherwise you get wrong output
23857     when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
23858
23859     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23860
23861 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
23862 Author: Mike Frysinger <vapier@gentoo.org>
23863 Date:   Tue Oct 14 07:05:24 2008 -0400
23864
23865     strings cmd: drop old CONFIG_CFG_STRINGS define
23866
23867     We don't need CONFIG_CFG_STRINGS anymore now that we have the define
23868     CONFIG_CMD_STRINGS and Makefile control.
23869
23870     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23871
23872 commit fecb5ade3b37f62981f2b05b621005850173aaa9
23873 Author: Jason Jin <Jason.jin@freescale.com>
23874 Date:   Fri Sep 19 17:32:49 2008 +0800
23875
23876     Fix the NAND size overflow issue.
23877
23878     When the total size of all NAND devices exceeds 4 GiB, the size  will
23879     overflow. This patch tries to fix this.
23880
23881     Note that we still have a problem when a single NAND device is bigger
23882     than 4 GiB: then the overflow would actually happen earlier, i. e.
23883     when storing the size in nand_info[].size, as nand_info[].size is an
23884     "u_int32_t".
23885
23886     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
23887     Signed-off-by: Wolfgang Denk <wd@denx.de>
23888
23889 commit 30f574717277238b9014b8136c90eea77196490f
23890 Author: Louis Su <louis@asix.com.tw>
23891 Date:   Wed Jul 9 11:01:37 2008 +0800
23892
23893     AX88180: new gigabit network driver
23894
23895     Signed-off-by: Louis Su <louis@asix.com.tw>
23896     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23897
23898 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
23899 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
23900 Date:   Tue Aug 19 16:07:03 2008 +0200
23901
23902     enable 10/100M at VSC8601 at tsec driver
23903
23904     Currently VSC8601 doesn't link with 10/100M partners if the
23905     EEPROM/Strapping is not set up.
23906     Setting the auto-neg register fixes this.
23907
23908     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
23909     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23910
23911 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
23912 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
23913 Date:   Tue Sep 30 15:02:53 2008 +0900
23914
23915     net: ne2000: Divided a function of NE2000 driver
23916
23917     get_prom function was used __attriute__ , but it is not enable.
23918     ax88796.o does not do link besides ne2000.o. When ld is carried
23919     out, get_prom function of ax88796.c is ignored.
23920     This problem is a thing by specifications of ld.
23921     I checked and test this patch on SuperH and MIPS.
23922
23923     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
23924     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23925
23926 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
23927 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
23928 Date:   Tue Oct 14 11:10:59 2008 +0900
23929
23930     sh: rsk7203: Add smc911x driver support to board config file
23931
23932     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
23933     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23934
23935 commit cae6f909baf86357b3c0bd01acfc414348c4d175
23936 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
23937 Date:   Thu Oct 9 13:54:33 2008 +0900
23938
23939     sh: Fix cannot execute a stand-alone application
23940
23941     Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
23942
23943     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
23944     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23945
23946 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
23947 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
23948 Date:   Wed Oct 8 23:38:00 2008 -0500
23949
23950     fsl_pci_init do not scan bus when configured as an end-point
23951
23952     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
23953     Acked-by: Andy Fleming <afleming@freescale.com>
23954
23955 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
23956 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
23957 Date:   Tue Sep 16 17:07:53 2008 -0400
23958
23959     ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
23960
23961     This is no longer necessary now that the GD_FLG_RELOC flag is set for
23962     all ARM boards.
23963
23964     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
23965
23966 commit d977a57356657ba241256231efca32828a5822f9
23967 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
23968 Date:   Sat Sep 13 10:04:32 2008 +0200
23969
23970     Fix lzma uncompress call (image_start wrongly used instead image_len)
23971
23972     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
23973
23974 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
23975 Author: Nick Spence <nick.spence@freescale.com>
23976 Date:   Thu Aug 28 14:09:15 2008 -0700
23977
23978     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
23979
23980     This is needed in unlock_ram_in_cache() because it is called from C and
23981     will corrupt the small data area anchor that is kept in R2.
23982
23983     lock_ram_in_cache() is modified similarly as good coding practice, but
23984     is not called from C.
23985
23986     Signed-off-by: Nick Spence <nick.spence@freescale.com>
23987
23988 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
23989 Author: Kumar Gala <galak@kernel.crashing.org>
23990 Date:   Tue Aug 19 15:05:34 2008 -0500
23991
23992     86xx: remove redudant code with lib_ppc/interrupts.c
23993
23994     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
23995     Not know how that happened, but there is no good reason for it.
23996
23997     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
23998     they exist.
23999
24000     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24001
24002 commit 0d01f66d235118515b5086b88f82498bc0695d6a
24003 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
24004 Date:   Thu Oct 9 01:26:36 2008 -0500
24005
24006     CFI: cfi_flash write fix for AMD legacy
24007
24008     The flash_unlock_seq requires a sector for AMD_LEGACY.
24009     Fix a retcode check typeo.
24010
24011     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
24012     Signed-off-by: Stefan Roese <sr@denx.de>
24013
24014 commit 542b385a620a1783454a00424930e51895f45073
24015 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24016 Date:   Tue Oct 7 13:13:10 2008 +0200
24017
24018     ppc4xx: Fix USB 2.0 phy reset sequence
24019
24020     This patch fixes USB 2.0 communication issues on some DU440 boards.
24021
24022     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24023     Signed-off-by: Stefan Roese <sr@denx.de>
24024
24025 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
24026 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24027 Date:   Tue Oct 7 13:13:09 2008 +0200
24028
24029     ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
24030
24031     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24032     Signed-off-by: Stefan Roese <sr@denx.de>
24033
24034 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
24035 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24036 Date:   Tue Oct 7 13:13:08 2008 +0200
24037
24038     ppc4xx: Fix DU440 GPIO configuration
24039
24040     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24041     Signed-off-by: Stefan Roese <sr@denx.de>
24042
24043 commit 35dd025c70fcc4389317db2f2a9d14795172137d
24044 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24045 Date:   Tue Oct 7 13:13:07 2008 +0200
24046
24047     ppc4xx: Update DU440 config
24048
24049     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24050     Signed-off-by: Stefan Roese <sr@denx.de>
24051
24052 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
24053 Author: Kumar Gala <galak@kernel.crashing.org>
24054 Date:   Wed Oct 8 15:36:39 2008 -0500
24055
24056     MPC8572DS: Fix compile warnings
24057
24058     Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
24059     compile warnings:
24060
24061     cmd_i2c.c:112: warning: missing braces around initializer
24062     cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
24063
24064     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24065
24066 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
24067 Author: Wolfgang Grandegger <wg@grandegger.com>
24068 Date:   Tue Sep 30 10:55:57 2008 +0200
24069
24070     85xx: Using proper I2C source clock divider for MPC8544
24071
24072     Measurements with our MPC8544 board showed that the I2C bus frequency
24073     is wrong by a factor of 1.5. Obviously, the interpretation of the
24074     MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
24075     correct. There seems to be an error in the 8544 RM.
24076
24077     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
24078
24079 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
24080 Author: Rafal Czubak <rcz@semihalf.com>
24081 Date:   Wed Oct 8 13:41:30 2008 +0200
24082
24083     FSL: Fix get_cpu_board_revision() return value.
24084
24085     get_cpu_board_revision() returned board revision based on information stored
24086     in global static struct eeprom. It should instead use one from local struct
24087     board_eeprom, to which the data is actually read from EEPROM. The bug led to
24088     system hang after printing L1 cache information on U-Boot startup. The problem
24089     was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
24090     boards using CFG_I2C_EEPROM_CCID.
24091
24092     The change has been successfully tested on MPC8555CDS system.
24093
24094     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
24095
24096 commit 747f316cca484ed627a97dd3391febabce384186
24097 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24098 Date:   Tue Sep 30 20:08:49 2008 +0200
24099
24100     update uImage FIT multi documentation
24101
24102     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24103
24104 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
24105 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24106 Date:   Tue Sep 30 20:08:36 2008 +0200
24107
24108     move README.imx31 to doc/ and merge with README.mx31
24109
24110     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24111
24112 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
24113 Author: Guennadi Liakhovetski <lg@denx.de>
24114 Date:   Thu Sep 25 20:54:37 2008 +0200
24115
24116     i.MX31: switch to CFG_HZ=1000
24117
24118     Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
24119     cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
24120     provides 2% or 0.4% precision depending on the
24121     CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
24122     boot-delay.
24123
24124     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24125
24126 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
24127 Author: gnusercn <gnusercn@gmail.com>
24128 Date:   Wed Oct 8 18:58:58 2008 +0200
24129
24130     Fix bug: in arch-arm, env_get_char dose not work fine
24131
24132     due to the arm implementation which supposed that U-Boot is in RAM
24133     when we jump to start_armboot
24134
24135     Signed-off-by: gnusercn <gnusercn@gmail.com>
24136     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24137
24138 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
24139 Author: Adam Graham <agraham@amcc.com>
24140 Date:   Mon Oct 6 10:16:13 2008 -0700
24141
24142     ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
24143
24144     After changing SDRAM_CLKTR phase value rerun the memory preload
24145     initialization sequence (INITPLR) to reset and relock the memory
24146     DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
24147     adjustment effects the phase relationship of the internal, to the
24148     PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
24149
24150     Signed-off-by: Adam Graham <agraham@amcc.com>
24151     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
24152     Signed-off-by: Stefan Roese <sr@denx.de>
24153
24154 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
24155 Author: Haiying Wang <Haiying.Wang@freescale.com>
24156 Date:   Fri Oct 3 11:48:03 2008 -0400
24157
24158     Remove redundant #define for MPC8536DS
24159
24160     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
24161
24162 commit 445a7b38308eb05b41de74165b20855db58c7ee5
24163 Author: Haiying Wang <Haiying.Wang@freescale.com>
24164 Date:   Fri Oct 3 11:47:30 2008 -0400
24165
24166     Add ID EEPROM support for MPC8572DS
24167
24168     The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
24169     system information like mac addresses etc. This patch enables it.
24170
24171     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
24172
24173 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
24174 Author: Haiying Wang <Haiying.Wang@freescale.com>
24175 Date:   Fri Oct 3 11:46:59 2008 -0400
24176
24177     Minor fixes for I2C address on MPC8572DS
24178
24179     MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
24180     according to the board spec, and adds the 2nd i2c bus offset.
24181
24182     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
24183
24184 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
24185 Author: Jason Jin <Jason.jin@freescale.com>
24186 Date:   Sat Sep 27 14:40:57 2008 +0800
24187
24188     Fix the incorrect DDR clk freq reporting on 8536DS
24189
24190     On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
24191     The display is still sync mode DDR freq. This patch try to fix
24192     this. The display DDR freq is now the actual freq in both
24193     sync and async mode.
24194
24195     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
24196
24197 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
24198 Author: Kumar Gala <galak@kernel.crashing.org>
24199 Date:   Tue Oct 7 10:28:46 2008 -0500
24200
24201     85xx: Remove setting of *cache-line-size in device trees
24202
24203     ePAPR says if the *cache-block-size is the same as *cache-line-size
24204     than we don't need the *cache-line-size property.
24205
24206     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24207
24208 commit a69a42338dd25408f9fd5390a83bc501749c7e1b
24209 Author: Mark Jackson <mpfj@mimc.co.uk>
24210 Date:   Fri Oct 3 11:48:57 2008 +0100
24211
24212     MIMC200 board now uses CONFIG_DISABLE_CONSOLE
24213
24214     Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE.
24215     Also fixed default uImage location.
24216
24217     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
24218     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24219
24220 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
24221 Author: Gerald Van Baren <vanbaren@cideas.com>
24222 Date:   Sat Oct 4 07:56:06 2008 -0400
24223
24224     libfdt: Fix error in documentation for fdt_get_alias_namelen()
24225
24226     Oops, screwed up the function name in the documenting comment for this
24227     function.  Trivial correction in this patch.
24228
24229     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
24230     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
24231
24232 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
24233 Author: David Gibson <david@gibson.dropbear.id.au>
24234 Date:   Wed Aug 20 16:55:14 2008 +1000
24235
24236     libfdt: Add function to explicitly expand aliases
24237
24238     Kumar has already added alias expansion to fdt_path_offset().
24239     However, in some circumstances it may be convenient for the user of
24240     libfdt to explicitly get the string expansion of an alias.  This patch
24241     adds a function to do this, fdt_get_alias(), and uses it to implement
24242     fdt_path_offset().
24243
24244     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
24245
24246 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
24247 Author: Mike Frysinger <vapier@gentoo.org>
24248 Date:   Thu Oct 2 01:55:38 2008 -0400
24249
24250     cfi_flash: do not reset flash when probe fails
24251
24252     The CFI flash driver starts at flash_init() which calls down into
24253     flash_get_size().  This starts by calling flash_detect_cfi().  If said
24254     function fails, flash_get_size() finishes by attempting to reset the
24255     flash.  Unfortunately, it does this with an info->portwidth set to 0x10
24256     which filters down into flash_make_cmd() and that happily smashes the
24257     stack by sticking info->portwidth bytes into a cfiword_t variable that
24258     lives on the stack.  On a 64bit system you probably won't notice, but
24259     killing the last 8 bytes on a 32bit system usually leads to a corrupt
24260     return address.  Which is what happens on a Blackfin system.
24261
24262     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24263     Signed-off-by: Stefan Roese <sr@denx.de>
24264
24265 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
24266 Author: Stefan Roese <sr@denx.de>
24267 Date:   Fri Sep 26 17:03:26 2008 +0200
24268
24269     fdt: Overwrite /chosen node in bootm if it already exists in the dtb
24270
24271     Set force parameter in fdt_chosen() call in do_bootm_linux() call.
24272     Without this, the chosen node is not overwritten if it already
24273     exists.
24274
24275     Signed-off-by: Stefan Roese <sr@denx.de>
24276
24277 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
24278 Author: Jon Loeliger <jdl@freescale.com>
24279 Date:   Thu Sep 25 11:02:17 2008 -0500
24280
24281     Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
24282
24283     Using Gcc 4.3 detected this problem:
24284
24285         ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
24286         ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
24287         occur when assuming that (X + c) < X is always false
24288
24289     To fix the problem, treat the offset as an unsigned int.
24290
24291     The problem report and proposed fix were provided
24292     by Steve Papacharalambous <stevep@freescale.com>.
24293
24294     Signed-off-by: Jon Loeliger <jdl@freescale.com>
24295
24296 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
24297 Author: David Gibson <david@gibson.dropbear.id.au>
24298 Date:   Fri Aug 29 14:19:13 2008 +1000
24299
24300     libfdt: Fix bugs in fdt_get_path()
24301
24302     The current implementation of fdt_get_path() has a couple of bugs,
24303     fixed by this patch.
24304
24305     First, contrary to its documentation, on success it returns the length
24306     of the node's path, rather than 0.  The testcase is correspondingly
24307     wrong, and the patch fixes this as well.
24308
24309     Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
24310     instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
24311     Specifically this happens when there is insufficient space even to
24312     hold the path's second last component.  This behaviour is corrected,
24313     and the testcase updated to check it.
24314
24315     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
24316
24317 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
24318 Author: Wolfgang Denk <wd@denx.de>
24319 Date:   Wed Oct 1 12:34:58 2008 +0200
24320
24321     TQM5200: enable support for ATAPI devices
24322
24323     Signed-off-by: Wolfgang Denk <wd@denx.de>
24324
24325 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
24326 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24327 Date:   Mon Sep 15 05:48:25 2008 +0200
24328
24329     Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
24330
24331     we need this due to the arm implementation which supposed that U-Boot
24332     is in RAM when we jump to start_armboot
24333
24334     This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
24335     in order to do it for all arm board
24336
24337     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24338
24339 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
24340 Author: Kim Phillips <kim.phillips@freescale.com>
24341 Date:   Wed Sep 24 08:46:25 2008 -0500
24342
24343     mpc83xx: don't disable autoboot
24344
24345     bootdelay set to -1 'permanently' disables autobooting, even if
24346     bootcmd is specified.  Change to a positive value to allow
24347     autobooting when a bootcmd is set.
24348
24349     Reported-by: Coray Tate <Coray.Tate@freescale.com>
24350     Cc: Scott Wood <scottwood@freescale.com>
24351     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24352
24353 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
24354 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24355 Date:   Wed Sep 24 10:42:15 2008 +0900
24356
24357     mpc83xx: Fix typo in include/mpc83xx.h
24358
24359     Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
24360
24361     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24362     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24363
24364 commit 162c41c03179727a1d14262f703c9a8bc40231fa
24365 Author: Kim Phillips <kim.phillips@freescale.com>
24366 Date:   Tue Sep 23 09:38:49 2008 -0500
24367
24368     mpc83xx: add h/w flash protection to board configs
24369
24370     the operating system may leave flash in a h/w locked state after writing.
24371     This allows u-boot to continue to write flash by enabling h/w unlocking
24372     by default.
24373
24374     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24375
24376 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
24377 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24378 Date:   Thu Sep 11 21:35:36 2008 +0400
24379
24380     mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
24381
24382     The spd_dram code shifts the base address, then masks 20 bits, but
24383     forgets to shift the base address back. Fix this by just masking the
24384     base address correctly.
24385
24386     Found this bug while trying to relocate a DDR memory at the base != 0.
24387
24388     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24389     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24390
24391 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
24392 Author: Stefan Roese <sr@denx.de>
24393 Date:   Mon Sep 22 16:10:43 2008 +0200
24394
24395     ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
24396
24397     Depending on the configuration jumper "SATA SELECT", U-Boot disabled
24398     either one PCIe node or the SATA node in the device tree blob. This
24399     patch removes the unnecessary and even confusing warning, when the node
24400     is not found at all.
24401
24402     Signed-off-by: Stefan Roese <sr@denx.de>
24403
24404 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
24405 Author: Remy Bohmer <linux@bohmer.net>
24406 Date:   Fri Sep 19 13:30:06 2008 +0200
24407
24408     Add missing device types to dev_print() in part.c
24409
24410     Signed-off-by: Remy Bohmer <linux@bohmer.net>
24411
24412 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
24413 Author: Wolfgang Denk <wd@denx.de>
24414 Date:   Mon Sep 22 22:23:06 2008 +0200
24415
24416     Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
24417     eventually leads to a machine check. This change assures that DPRAM
24418     is allocated only once in that case.
24419
24420     Signed-off-by: Gary Jennejohn <garyj@denx.de>
24421     Signed-off-by: Wolfgang Denk <wd@denx.de>
24422
24423 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
24424 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
24425 Date:   Wed Sep 17 17:57:34 2008 +0200
24426
24427     Fix Spartan-3 definitions.
24428
24429     A few Spartan-3 definitions erroneously use Spartan-3E size
24430     constants. This patch fixes them.
24431
24432     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
24433
24434 commit 28113e1f0da4146b823ffce37680d31d5685a60b
24435 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
24436 Date:   Wed Sep 17 17:41:58 2008 +0200
24437
24438     Remove duplicate Spartan-3E definition.
24439
24440     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
24441     Signed-off-by: Wolfgang Denk <wd@denx.de>
24442
24443 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
24444 Author: Anatolij Gustschin <agust@denx.de>
24445 Date:   Wed Sep 17 13:46:17 2008 +0200
24446
24447     socrates: change default mtest address range
24448
24449     Running mtest command on socrates without specifying
24450     an address range crashes the board. This patch changes
24451     default mtest address range to prevent this behavior.
24452
24453     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24454
24455 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
24456 Author: Anatolij Gustschin <agust@denx.de>
24457 Date:   Wed Sep 17 12:34:45 2008 +0200
24458
24459     socrates: fix crash after relocation
24460
24461     Currently U-Boot crashes after relocation to RAM.
24462     Changing the CPO value of the DDR SDRAM TIMING_CFG_2
24463     register to READ_LAT + 1 (to the value it was before
24464     conversion of socrates to new DDR code) fixes the
24465     problem.
24466
24467     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24468
24469 commit 562788b0a303f3528b920d81f547f5ca77ba528e
24470 Author: Anatolij Gustschin <agust@denx.de>
24471 Date:   Wed Sep 17 11:45:51 2008 +0200
24472
24473     socrates: fix SPD EEPROM address
24474
24475     Commit be0bd8234b9777ecd63c4c686f72af070d886517
24476     changed SPD EEPROM address to 0x51 and DDR SDRAM
24477     detection stopped working. Change this address
24478     back to 0x50.
24479
24480     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24481
24482 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
24483 Author: Stefan Roese <sr@denx.de>
24484 Date:   Mon Sep 22 11:06:50 2008 +0200
24485
24486     Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
24487
24488     This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
24489
24490     Signed-off-by: Stefan Roese <sr@denx.de>
24491
24492 commit e58c41e26cf3c8accd60311be579f452e368e97e
24493 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24494 Date:   Thu Sep 18 20:13:08 2008 +0900
24495
24496     usb: Fix compile warning of r8a66597-hcd
24497
24498     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24499     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
24500
24501 commit b5d10a13525c07ec6374adf840d7c87553b5f189
24502 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24503 Date:   Thu Sep 18 19:34:36 2008 +0900
24504
24505     sh: Fix compile warning
24506
24507     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24508
24509 commit 4a065abf926f128beb36d93449defa0d690e7fef
24510 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24511 Date:   Thu Sep 18 19:04:26 2008 +0900
24512
24513     sh: Add support watchdog for SH4A core
24514
24515     Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
24516     And fix some compile warning.
24517
24518     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24519
24520 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
24521 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24522 Date:   Wed Sep 17 11:45:26 2008 +0900
24523
24524     sh: Fix typo in SH serial driver
24525
24526     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24527     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24528
24529 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
24530 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24531 Date:   Wed Sep 17 11:08:36 2008 +0900
24532
24533     sh: Add support any page size and empty_zero_page to SH Linux uImage
24534
24535     Old U-Boot supported 4KB page size only. If this version, Linux
24536     kernel can not get command line from U-Boot.
24537     SH Linux kernel can change page size and empty_zero_page.
24538     This patch support this function and fix promlem.
24539
24540     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24541     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24542
24543 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
24544 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24545 Date:   Thu Aug 28 13:40:52 2008 +0900
24546
24547     sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
24548
24549     Add function of smc911x, pkt_data_pull and pkt_data_push.
24550
24551     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24552     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24553
24554 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
24555 Author: Wolfgang Denk <wd@denx.de>
24556 Date:   Thu Sep 18 13:57:32 2008 +0200
24557
24558     ADS5121: fix typo in "rootpath" default setting
24559
24560     Signed-off-by: Wolfgang Denk <wd@denx.de>
24561
24562 commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
24563 Author: Remy Bohmer <linux@bohmer.net>
24564 Date:   Tue Sep 16 14:55:44 2008 +0200
24565
24566     USB layer of U-Boot causes USB protocol errors while using USB memory sticks
24567
24568     There are several differences between Linux, Windows and U-boot for initialising the
24569     USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
24570     things really different, and some are wrong (compared to the USB standard).
24571
24572     This patch fixes some errors:
24573     * The NEW_init procedure that was already in the code is good, while the old procedure
24574       is wrong. See code comments for more info.
24575     * On a Control request the data returned by the device can be more than 8 bytes, while
24576       the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
24577       This results in a lot of USB sticks not being recognised, and the transmission ended
24578       frequently with a CTL:TIMEOUT Error.
24579     * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
24580
24581     Signed-off-by: Remy Bohmer <linux@bohmer.net>
24582     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
24583
24584 commit 6f5794a6f78b313231256958fd73673c6aacc116
24585 Author: Remy Bohmer <linux@bohmer.net>
24586 Date:   Tue Sep 16 14:55:43 2008 +0200
24587
24588     Refactoring parts of the common USB OHCI code
24589
24590     This patch refactors some large routines of the USB OHCI code by
24591     making some routines smaller and more readable which helps
24592     debugging and understanding the code. (Makes the code looks
24593     somewhat more like the Linux implementation.)
24594
24595     Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
24596
24597     Signed-off-by: Remy Bohmer <linux@bohmer.net>
24598     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
24599
24600 commit be19d324edc1a1d7f393d24e10d164cd94c91a00
24601 Author: Remy Bohmer <linux@bohmer.net>
24602 Date:   Tue Sep 16 14:55:42 2008 +0200
24603
24604     Fix for USB sticks not working on ARM while using GCC 4.x compilers
24605
24606     The GCC-compiler makes an optimisation error while optimising the routine
24607     usb_set_maxpacket(). This should be fixed in the compiler in the first place,
24608     but there lots of compilers out there that makes this error, that it is
24609     probably wiser to workaround it in U-boot itself.
24610
24611     What happens is that the register r3 is used as loop-counter 'i', but gets
24612     overwritten later on. From there it starts using register r3 for several other
24613     things and the assembler code is becoming a big mess. This is clearly a compiler bug.
24614
24615     This error occurs on at least several versions of Code Sourcery Lite compilers
24616     for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
24617     compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
24618
24619     We work around it by splitting up this routine in 2 parts, and making sure that
24620     the split out part is NOT inlined any longer. This will make GCC spit out assembler
24621     that do not show this problem. Another possibility is to adapt the Makefile to stop
24622     optimisation for the complete file. I think this solution is nicer.
24623
24624     Signed-off-by: Remy Bohmer <linux@bohmer.net>
24625     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
24626
24627 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
24628 Author: Wolfgang Denk <wd@denx.de>
24629 Date:   Wed Sep 17 10:17:55 2008 +0200
24630
24631     Coding style cleanup; update CHANEGLOG
24632
24633     Signed-off-by: Wolfgang Denk <wd@denx.de>
24634
24635 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
24636 Author: Victor Gallardo <vgallardo@amcc.com>
24637 Date:   Tue Sep 16 06:59:13 2008 -0700
24638
24639     ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
24640
24641     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
24642     Signed-off-by: Adam Graham <agraham@amcc.com>
24643     Signed-off-by: Stefan Roese <sr@denx.de>
24644
24645 commit ce47eb402c5e29a025399dc282246414fc492940
24646 Author: Peter Tyser <ptyser@xes-inc.com>
24647 Date:   Tue Sep 16 10:04:47 2008 -0500
24648
24649     Support for multiple SGMII/TBI interfaces for TSEC ethernet
24650
24651     Fix TBI PHY accesses to use the proper offset in CPU register space. The
24652     previous code would incorrectly access the TBI PHY by reading/writing to CPU
24653     register space at the same location as would be used to access external PHYs.
24654
24655     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24656     Acked-by: Andy Fleming <afleming@freescale.com>
24657
24658 commit 7c803be2eb3cae245dedda438776e08fb122250f
24659 Author: Wolfgang Denk <wd@denx.de>
24660 Date:   Tue Sep 16 18:02:19 2008 +0200
24661
24662     TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
24663
24664     After switching to using the CFI flash driver, the correct remapping
24665     of the flash banks was forgotten.
24666
24667     Also, some boards were not adapted, and the old legacy flash driver
24668     was not removed yet.
24669
24670     Signed-off-by: Wolfgang Denk <wd@denx.de>
24671
24672 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
24673 Author: Wolfgang Denk <wd@denx.de>
24674 Date:   Sun Sep 14 00:59:35 2008 +0200
24675
24676     Prepare v2008.10-rc2
24677
24678     Signed-off-by: Wolfgang Denk <wd@denx.de>
24679
24680 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
24681 Author: Wolfgang Denk <wd@denx.de>
24682 Date:   Sat Sep 13 02:23:05 2008 +0200
24683
24684     Coding style cleanup, update CHANGELOG
24685
24686     Signed-off-by: Wolfgang Denk <wd@denx.de>
24687
24688 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
24689 Author: Peter Tyser <ptyser@xes-inc.com>
24690 Date:   Wed Sep 10 09:18:34 2008 -0500
24691
24692     Update mailing list email and archive addresses
24693
24694     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24695
24696 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
24697 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
24698 Date:   Thu Sep 11 15:40:01 2008 +0200
24699
24700     85xx: socrates: autoprobe Lime chip
24701
24702     This patch is an attempt to implement autoprobing for the Lime
24703     presence on the bus.
24704     Configure GPCM for Lime CS2 and try to access chip ID registers.
24705     Second read atempt delivers register values if the chip is present.
24706
24707     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24708
24709 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
24710 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
24711 Date:   Thu Sep 11 15:40:01 2008 +0200
24712
24713     85xx: socrates: Add support for new image format.
24714
24715     Signed-off-by: Detlev Zundel <dzu@denx.de>
24716
24717 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
24718 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24719 Date:   Thu Sep 11 17:28:18 2008 +0900
24720
24721     sh: Fix compile error for r2dplus
24722
24723     netdev.h was not include by r2dplus.
24724
24725     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24726
24727 commit 56844a22b76c719e600047e23b80465a44d76abd
24728 Author: Heiko Schocher <hs@denx.de>
24729 Date:   Thu Sep 11 08:11:23 2008 +0200
24730
24731     powerpc: Fix bootm to boot up again with a Ramdisk
24732
24733     Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
24734     and this stopped Linux from booting with a Ramdisk. This patch fixes
24735     this, by deleting the useless dummy mem reservation.
24736
24737     When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
24738     added to of_size, so we dont need anymore a dummy mem reservation.
24739
24740     I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
24741     system (=0x44 bytes) and rounded it up to 0x80).
24742
24743     Signed-off-by: Heiko Schocher <hs@denx.de>
24744     Acked-by: Kumar Gala <galak@kernel.crashing.org>
24745
24746 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
24747 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
24748 Date:   Mon Sep 8 02:46:13 2008 +0200
24749
24750     Add support for LZMA uncompression algorithm.
24751
24752     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
24753     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24754
24755 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
24756 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24757 Date:   Fri Jun 27 23:04:20 2008 +0400
24758
24759     fsl_elbc_nand: ecclayout cleanups
24760
24761     This patch deletes oobavail assignments, they're calculated by the nand
24762     core code in nand_scan_tail, plus current oobavail values are wrong for
24763     the LP NANDs.
24764
24765     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24766     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
24767     Signed-off-by: Scott Wood <scottwood@freescale.com>
24768
24769 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
24770 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24771 Date:   Fri Jun 27 23:04:13 2008 +0400
24772
24773     fsl_elbc_nand: implement support for flash-based BBT
24774
24775     This patch implements support for flash-based BBT for chips working
24776     through ELBC NAND controller, so that NAND core will not have to re-scan
24777     for bad blocks on every boot.
24778
24779     Because ELBC controller may provide HW-generated ECCs we should adjust
24780     bbt pattern and bbt version positions in the OOB free area.
24781
24782     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24783     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
24784     Signed-off-by: Scott Wood <scottwood@freescale.com>
24785
24786 commit 97ae023648e764f794ffb9c52da109d6caf09c47
24787 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24788 Date:   Fri Jun 27 23:04:04 2008 +0400
24789
24790     fsl_elbc_nand: fix OOB workability for large page NAND chips
24791
24792     For large page chips, nand_bbt is looking into OOB area, and checking
24793     for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
24794     reserved for bbt means.
24795
24796     But ELBC driver is specifying ecclayout so that oobfree area starts at
24797     offset 1, so only one byte left for the bbt purposes.
24798
24799     This causes problems with any OOB users, namely JFFS2: after first mount
24800     JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
24801
24802       OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
24803       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
24804       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
24805       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
24806
24807     And on the next boot, NAND core will rescan for bad blocks, then will
24808     see "0xff 0x19" pattern, and will mark all blocks as bad ones.
24809
24810     To fix the issue we should implement our own bad block pattern: just one
24811     byte at OOB start. Though, this will work only for x8 chips. For x16
24812     chips two bytes must be checked. Since ELBC driver does not support x16
24813     NANDs (yet), we're safe for now.
24814
24815     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24816     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
24817     Signed-off-by: Scott Wood <scottwood@freescale.com>
24818
24819 commit 7238ada313057a85409485b8ee21515dc10c07a5
24820 Author: Wolfgang Denk <wd@denx.de>
24821 Date:   Fri Sep 12 13:52:21 2008 +0200
24822
24823     MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
24824
24825     Signed-off-by: Wolfgang Denk <wd@denx.de>
24826
24827 commit b18410e508a12ba0a177dfc2a386857c806fa96d
24828 Author: Stefan Roese <sr@denx.de>
24829 Date:   Thu Sep 11 13:05:56 2008 +0200
24830
24831     ppc4xx: Enable device tree (FDT) support in zeus board port
24832
24833     Signed-off-by: Stefan Roese <sr@denx.de>
24834
24835 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
24836 Author: Stefan Roese <sr@denx.de>
24837 Date:   Wed Sep 10 16:53:47 2008 +0200
24838
24839     ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
24840
24841     This patch fixes a problem introdiced with patch
24842     bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
24843     initdram()].
24844
24845     The boards affected are:
24846     - PCI405
24847     - PPChameleonEVB
24848     - quad100hd
24849     - taihu
24850     - zeus
24851
24852     Signed-off-by: Stefan Roese <sr@denx.de>
24853
24854 commit 61737c59a3285f6fadf96a5836879898c04ec28d
24855 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24856 Date:   Thu Sep 11 19:41:26 2008 -0400
24857
24858     ppc4xx: Add .gitignore file to xilinx-ppc440 boards
24859
24860     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24861     Signed-off-by: Stefan Roese <sr@denx.de>
24862
24863 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
24864 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24865 Date:   Thu Sep 11 19:41:25 2008 -0400
24866
24867     ppc4xx: Fix compilation of v5fx30teval_flash
24868
24869     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24870     Signed-off-by: Stefan Roese <sr@denx.de>
24871
24872 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
24873 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24874 Date:   Wed Sep 10 17:44:30 2008 -0400
24875
24876     ppc4xx: Fix in-tree build for ppc440-generic boards
24877
24878     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24879     Signed-off-by: Stefan Roese <sr@denx.de>
24880
24881 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
24882 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24883 Date:   Fri Sep 12 02:20:47 2008 +0200
24884
24885     ARM: synchronize mach-types.h with linux 2.6.27-rc6
24886
24887     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24888
24889 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
24890 Author: Jens Scharsig <esw@bus-elektronik.de>
24891 Date:   Fri Sep 12 02:20:47 2008 +0200
24892
24893     at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
24894
24895     This patch prevents linker error on AT91RM9200 boards, if
24896     CONFIG_CMD_I2_TREE is set.
24897     It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
24898
24899     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
24900
24901 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
24902 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24903 Date:   Fri Sep 12 02:20:47 2008 +0200
24904
24905     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
24906
24907     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
24908
24909     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24910
24911 commit 03db53335c8eba656a7c44d1555b1a4514383e33
24912 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
24913 Date:   Fri Sep 12 02:20:46 2008 +0200
24914
24915     make: Remove redundant __ARM__ addition when cross-compiling on *BSD
24916
24917     __ARM__ is given by arm_config.mk automatically.
24918
24919     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
24920
24921 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
24922 Author: Claudio Scordino <claudio@evidence.eu.com>
24923 Date:   Fri Sep 12 02:20:46 2008 +0200
24924
24925     Fix MACH_TYPE for the AT91RM9200DK board.
24926
24927     Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
24928
24929 commit 274737e5eb25b2bcd3af3a96da923effd543284f
24930 Author: Andrew Dyer <adyer@righthandtech.com>
24931 Date:   Fri Sep 12 02:20:46 2008 +0200
24932
24933     i.mx change get_timer(base) to return time since base
24934
24935     This patch changes get_timer() for i.MX to return the time since
24936     'base' instead of the time since the counter was at zero.
24937
24938     Symptom seen is flash timeout errors when erasing or programming a
24939     sector using the common cfi flash code.
24940
24941     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
24942
24943 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
24944 Author: Andrew Dyer <adyer@righthandtech.com>
24945 Date:   Fri Sep 12 02:20:46 2008 +0200
24946
24947     i.MX use u-boot baud rate and don't assume UART master clock
24948
24949     1) Change the i.MX serial driver to use the baud rate set in the
24950      u-boot environment
24951
24952     2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
24953
24954     3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
24955      one to clear" like other status bits in the reg.)
24956
24957     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
24958
24959 commit 6e1551a870d360805b9d172dc56d935064abe71d
24960 Author: Andrew Dyer <adyer@righthandtech.com>
24961 Date:   Fri Sep 12 02:20:46 2008 +0200
24962
24963     arm920t fix constant error in start.S
24964
24965     Code in cpu/arm920t/start.S will die with a compilation error if
24966     CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
24967     the ARM sub instruction.  Change the code so that each is subtracted
24968     independently to avoid the error.
24969
24970     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
24971
24972 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
24973 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
24974 Date:   Fri Sep 12 02:20:40 2008 +0200
24975
24976     ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
24977
24978     - Correct Invalid #define of MPUTIM_PTV_MASK for
24979        omap1510 & omap730 register definition
24980
24981      MPUTIM_PTV_MASK is defined as
24982      #define MPUTIM_PTV_MASK            (0x7<<PTV_BIT)
24983
24984      while it should have been
24985      #define MPUTIM_PTV_MASK            (0x7<<MPUTIM_PTV_BIT)
24986
24987     - Below Patch corrects the same
24988
24989     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
24990
24991 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
24992 Author: Adrian Filipi <adrian.filipi@eurotech.com>
24993 Date:   Fri Jul 18 11:52:02 2008 -0400
24994
24995     Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
24996
24997     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
24998
24999 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
25000 Author: Guennadi Liakhovetski <lg@denx.de>
25001 Date:   Thu Aug 28 12:25:11 2008 +0200
25002
25003     i.MX31: document timer precision option
25004
25005     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25006
25007 commit 1a6337b01351b82a45b0defa76f08744511c580b
25008 Author: Magnus Lilja <lilja.magnus@gmail.com>
25009 Date:   Fri Aug 29 10:36:18 2008 +0200
25010
25011     i.MX31: Make the SPI bus and chip select configurable for MC13783
25012
25013     The i.MX31 has three SPI buses and each bus has several chip selects
25014     and the MC13783 chip can be connected to any of these. The current
25015     RTC driver for MC13783 is hardcoded for CSPI2/SS2.
25016
25017     This patch makes make MC13783 SPI bus and chip select configurable
25018     via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
25019
25020     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
25021
25022 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
25023 Author: Magnus Lilja <lilja.magnus@gmail.com>
25024 Date:   Fri Aug 29 10:36:17 2008 +0200
25025
25026     i.MX31: Add reset_timer() and modify get_timer_masked().
25027
25028     This patch adds the reset_timer() function (needed by nand_base.c) and
25029     modifies the get_timer_masked() to work in the same way as the omap24xx
25030     function.
25031
25032     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
25033
25034 commit deeec4991a55de243787002ede24d2331d234fc8
25035 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25036 Date:   Wed Sep 10 22:48:09 2008 +0200
25037
25038     ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
25039
25040     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25041
25042 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
25043 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25044 Date:   Wed Sep 10 22:48:09 2008 +0200
25045
25046     bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
25047
25048     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25049
25050 commit 0e8d158664a913392cb01fb11a948d83f72e105e
25051 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25052 Date:   Wed Sep 10 22:48:06 2008 +0200
25053
25054     rename CFG_ENV macros to CONFIG_ENV
25055
25056     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25057
25058 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
25059 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25060 Date:   Wed Sep 10 22:48:05 2008 +0200
25061
25062     nvedit: rename error comment to CONFIG_ENV_IS_IN_
25063
25064     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25065
25066 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
25067 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25068 Date:   Wed Sep 10 22:48:05 2008 +0200
25069
25070     cmd_mem: Move conditional compilation to Makefile
25071
25072     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25073
25074 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
25075 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25076 Date:   Wed Sep 10 22:48:05 2008 +0200
25077
25078     move cmd_get_data_size to command.c
25079
25080     add CMD_DATA_SIZE macro to enable it
25081
25082     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25083
25084 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
25085 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25086 Date:   Wed Sep 10 22:48:04 2008 +0200
25087
25088     env_flash: Move conditional compilation to Makefile
25089
25090     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25091
25092 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
25093 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25094 Date:   Wed Sep 10 22:48:04 2008 +0200
25095
25096     rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
25097
25098     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25099
25100 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
25101 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25102 Date:   Wed Sep 10 22:48:03 2008 +0200
25103
25104     cleanup use of CFG_ENV_IS_IN_FLASH
25105
25106     - #if CFG_ENV_IS_IN_FLASH
25107     - #if (CFG_ENV_IS_IN_FLASH == 1)
25108     - #define CFG_ENV_IS_IN_FLASH 0
25109
25110     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25111
25112 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
25113 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25114 Date:   Wed Sep 10 22:48:01 2008 +0200
25115
25116     rename environment.c in env_embedded.c to reflect is functionality
25117
25118     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25119
25120 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
25121 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25122 Date:   Wed Sep 10 22:48:01 2008 +0200
25123
25124     env_nowhere: Move conditional compilation to Makefile
25125
25126     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25127
25128 commit 93f6d72544da4510a146bc4c93d609b0116cde37
25129 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25130 Date:   Wed Sep 10 22:48:00 2008 +0200
25131
25132     rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
25133
25134     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25135
25136 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
25137 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25138 Date:   Wed Sep 10 22:48:00 2008 +0200
25139
25140     env_sf: Move conditional compilation to Makefile
25141
25142     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25143
25144 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
25145 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25146 Date:   Wed Sep 10 22:48:00 2008 +0200
25147
25148     rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
25149
25150     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25151
25152 commit 55c5f49910ec8225347aa1d211352a84de6649b4
25153 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25154 Date:   Wed Sep 10 22:48:00 2008 +0200
25155
25156     env_onenand: Move conditional compilation to Makefile
25157
25158     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25159
25160 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
25161 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25162 Date:   Wed Sep 10 22:47:59 2008 +0200
25163
25164     rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
25165
25166     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25167
25168 commit 957a0e69575683efd70ace147746bbb3d8e7c501
25169 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25170 Date:   Wed Sep 10 22:47:59 2008 +0200
25171
25172     env_nvram: Move conditional compilation to Makefile
25173
25174     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25175
25176 commit 9314cee6917444ab88bd4e758da7a30975120187
25177 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25178 Date:   Wed Sep 10 22:47:59 2008 +0200
25179
25180     rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
25181
25182     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25183
25184 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
25185 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25186 Date:   Wed Sep 10 22:47:59 2008 +0200
25187
25188     env_nand: Move conditional compilation to Makefile
25189
25190     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25191
25192 commit 51bfee192099206a4397f15f3b93516e01f58ab0
25193 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25194 Date:   Wed Sep 10 22:47:58 2008 +0200
25195
25196     rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
25197
25198     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25199
25200 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
25201 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25202 Date:   Wed Sep 10 22:47:58 2008 +0200
25203
25204     env_dataflash: Move conditional compilation to Makefile
25205
25206     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25207
25208 commit 057c849c45b9ee19df8ff3acdeee66be52819962
25209 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25210 Date:   Wed Sep 10 22:47:58 2008 +0200
25211
25212     rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
25213
25214     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25215
25216 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
25217 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25218 Date:   Wed Sep 10 22:47:52 2008 +0200
25219
25220     cmd_eeprom: Move conditional compilation to Makefile
25221
25222     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25223
25224 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
25225 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25226 Date:   Fri Sep 5 09:19:54 2008 +0200
25227
25228     env_eeprom: Move conditional compilation to Makefile
25229
25230     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25231
25232 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
25233 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25234 Date:   Fri Sep 5 09:19:30 2008 +0200
25235
25236     rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
25237
25238     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25239
25240 commit 32628c5008105a732212003d83b75f05e5243bb2
25241 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25242 Date:   Sat Aug 30 23:54:58 2008 +0200
25243
25244     cmd_mac: Move conditional compilation to Makefile
25245
25246     finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
25247     start in commit ad8f8687b78c3e917b173f038926695383c55555
25248
25249     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25250
25251 commit e5648acab153f0f429bfc714902c5aaa7879f71b
25252 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25253 Date:   Sat Aug 30 23:47:41 2008 +0200
25254
25255     cmd_fdc: Move conditional compilation to Makefile
25256
25257     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25258
25259 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
25260 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25261 Date:   Sat Aug 30 23:47:38 2008 +0200
25262
25263     common/Makefile: add core command section
25264
25265     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25266
25267 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
25268 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25269 Date:   Sat Aug 30 23:29:57 2008 +0200
25270
25271     cmd_vfd: Move conditional compilation to Makefile
25272
25273     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25274
25275 commit 6644641d072aee3087da129d8443187196a4d8a9
25276 Author: Scott Wood <scottwood@freescale.com>
25277 Date:   Wed Sep 10 11:48:49 2008 -0500
25278
25279     delta, zylonite: Update nand_oobinfo to nand_ecclayout.
25280
25281     This is part of the switch to newer upstream MTD code.
25282
25283     Signed-off-by: Scott Wood <scottwood@freescale.com>
25284
25285 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
25286 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25287 Date:   Sat Aug 30 17:06:55 2008 -0400
25288
25289     ARM DaVinci: Fix broken HW ECC for large page NAND.
25290
25291     Based on original patch by Bernard Blackham <bernard@largestprime.net>
25292
25293     U-boot's HW ECC support for large page NAND on Davinci is completely
25294     broken.  Some kernels, such as the 2.6.10 one supported by
25295     MontaVista for DaVinci, rely upon this broken behaviour as they
25296     share the same code for ECCs. In the existing scheme, error
25297     detection *might* work on large page, but error correction
25298     definitely does not.  Small page ECC correction works, but the
25299     format is not compatible with the mainline git kernel.
25300
25301     This patch adds ECC code that matches what is currently in the
25302     Davinci git repository (since NAND support was added in 2.6.24).
25303     This makes the ECC and OOB layout written by u-boot compatible with
25304     Linux for both small page and large page devices and fixes ECC
25305     correction for large page devices.
25306
25307     The old behaviour can be restored by defining the macro
25308     CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
25309
25310     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25311     Acked-by: Sergey Kubushyn <ksi@koi8.net>
25312     Signed-off-by: Scott Wood <scottwood@freescale.com>
25313
25314 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
25315 Author: Heiko Schocher <hs@denx.de>
25316 Date:   Wed Sep 10 11:15:28 2008 +0200
25317
25318     muas3001: update BR4 settings
25319
25320     Also set up the port pins for using I2C.
25321
25322     Signed-off-by: Heiko Schocher <hs@denx.de>
25323
25324 commit 3591293509e0c0bcf244b0f974775bff2e25697e
25325 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
25326 Date:   Wed Sep 10 09:43:49 2008 +0300
25327
25328     autoscr: Fix one-character lines and non-newline terminated scripts
25329
25330     When not using hush, the autoscr command now executes lines that are
25331     only one character long. It also runs the last line of scripts even if
25332     it does not end in a newline.
25333
25334     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
25335
25336 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
25337 Author: Victor Gallardo <vgallardo@amcc.com>
25338 Date:   Tue Sep 9 15:13:29 2008 -0700
25339
25340     ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
25341
25342     On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
25343     and glacier.
25344
25345     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
25346
25347 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
25348 Author: Heiko Schocher <hs@denx.de>
25349 Date:   Mon Sep 8 10:21:11 2008 +0200
25350
25351     muas3001: added support for the LM75 sensor.
25352
25353     Signed-off-by: Heiko Schocher <hs@denx.de>
25354
25355 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
25356 Author: Heiko Schocher <hs@denx.de>
25357 Date:   Mon Sep 8 10:20:19 2008 +0200
25358
25359     muas3001: activate WDT for the muas3001 board.
25360
25361     Signed-off-by: Heiko Schocher <hs@denx.de>
25362
25363 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
25364 Author: Heiko Schocher <hs@denx.de>
25365 Date:   Mon Sep 8 10:19:36 2008 +0200
25366
25367     muas3001: added 64MB SDRAM autodetection.
25368
25369     Signed-off-by: Heiko Schocher <hs@denx.de>
25370
25371 commit 5251469943895de4bb9a04d5053352cc22acb7d5
25372 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
25373 Date:   Thu Aug 21 07:12:26 2008 -0700
25374
25375     Fix printf errors under -DDEBUG
25376
25377     Fix printf format-string/arg mismatches under -DDEBUG.
25378
25379     These warnings occur with DEBUG defined for a platform using
25380     cpu/mpc85xx.  Users of other architectures can unearth similar
25381     problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
25382     after "CFLAGS += $(call cc-option,-fno-stack-protector)".
25383
25384     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
25385     Signed-off-by: Andy Fleming <afleming@freescale.com>
25386
25387 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
25388 Author: Wolfgang Denk <wd@denx.de>
25389 Date:   Tue Sep 9 23:55:18 2008 +0200
25390
25391     Update CHANGELOG, prepare 2008-10-rc1 release
25392
25393     Signed-off-by: Wolfgang Denk <wd@denx.de>
25394
25395 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
25396 Author: Kumar Gala <galak@kernel.crashing.org>
25397 Date:   Mon Sep 8 08:51:29 2008 -0500
25398
25399     85xx: Ensure timebase is zero on secondary cores
25400
25401     The e500um says the timebase is volatile out of reset.  To ensure
25402     TB sync works we need to make sure its zero.
25403
25404     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25405
25406 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
25407 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25408 Date:   Tue Sep 9 22:18:24 2008 +0200
25409
25410     bootm_load_os: fix load_end debug message
25411
25412     print load_end value not pointer
25413
25414     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25415
25416 commit 1d9af0be764960e6cc1c093e97176c3542796820
25417 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25418 Date:   Tue Sep 9 22:18:23 2008 +0200
25419
25420     bootm: enable fdt support only on ppc, m68k and sparc
25421
25422     ...as done in image.c
25423
25424     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25425
25426 commit 748b5274e76f81df85cfcffaffedc323678d0623
25427 Author: Markus Heidelberg <markus.heidelberg@web.de>
25428 Date:   Tue Sep 9 18:51:05 2008 +0200
25429
25430     common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
25431
25432     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
25433
25434 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
25435 Author: Markus Heidelberg <markus.heidelberg@web.de>
25436 Date:   Tue Sep 9 17:31:46 2008 +0200
25437
25438     gitignore: add tags files and Vim swap file
25439
25440     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
25441
25442 commit 1d9b67b23fca6a25154333733204339802510720
25443 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
25444 Date:   Tue Sep 9 17:52:47 2008 +0900
25445
25446     add board_eth_init() for sh7785lcr board
25447
25448     Fix the problem that cannot work RTL8169 on sh7785lcr board.
25449
25450     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
25451
25452 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
25453 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25454 Date:   Wed Aug 6 16:08:41 2008 -0500
25455
25456     mtd: SPI Flash: Support the STMicro Flash
25457
25458     Add MTD SPI Flash support for M25P16, M25P20, M25P32,
25459     M25P40, M25P64, M25P80, M25P128.
25460
25461     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
25462     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25463
25464 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
25465 Author: Wolfgang Denk <wd@denx.de>
25466 Date:   Tue Sep 9 17:55:31 2008 +0200
25467
25468     trab: fix build problem after change to use do_div()
25469
25470     We must link with libgeneric now.
25471
25472     Signed-off-by: Wolfgang Denk <wd@denx.de>
25473
25474 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
25475 Author: Ryan CHEN <ryan.chen@st.com>
25476 Date:   Wed Aug 20 13:00:17 2008 -0400
25477
25478     Correct drv_usb_kbd_init function
25479
25480     The patch is that check if usb_get_dev_index() function return valid
25481     pointer. If valid, continue. Otherwise return -1.
25482
25483     Signed-off-by: Ryan Chen <ryan.chen@st.com>
25484     Acked-by: Markus Klotzbuecher <mk@denx.de>
25485
25486 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
25487 Author: Remy Bohmer <linux@bohmer.net>
25488 Date:   Wed Aug 20 11:22:02 2008 +0200
25489
25490     Make usb-stop() safe to call multiple times in a row.
25491
25492     A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
25493     enabled the usb_stop() command in common/cmd_bootm.c which was
25494     not enabled for some time, because no board did actually set the
25495     CFG_CMD_USB flag. So, now the usb_stop() is executed before
25496     loading the linux kernel.
25497
25498     However, the usb_ohci driver hangs up (at least on AT91SAM) if the
25499     driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
25500     If some other piece of code calls usb_stop() before the bootm command,
25501     this command will hangup the system during boot.
25502     (usb start and stop is typically used while booting from usb memory stick)
25503
25504     But, stopping the usb stack twice is useless anyway, and a flag already
25505     existed that kept track on the usb_init()/usb_stop() calls.
25506     So, we now check if the usb stack is really started before we stop it.
25507
25508     This problem is now fixed in both the upper as low-level layer.
25509
25510     Signed-off-by: Remy Bohmer <linux@bohmer.net>
25511     Acked-by: Markus Klotzbuecher <mk@denx.de>
25512
25513 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
25514 Author: Wolfgang Denk <wd@denx.de>
25515 Date:   Tue Sep 9 16:55:47 2008 +0200
25516
25517     Makefile: fix bug introduced by commit 47ffd6c2
25518
25519 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
25520 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
25521 Date:   Tue Sep 9 10:00:33 2008 -0400
25522
25523     ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
25524
25525     This patch solves the problems compiling ml507, v5fx30teval and
25526     ppc440-generic out of tree.
25527
25528     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
25529
25530 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
25531 Author: NĂ­colas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
25532 Date:   Thu Sep 4 15:35:46 2008 -0300
25533
25534     Fix dev_print when called from usb_stor_info (usb storage command)
25535
25536     Fix output of the usb storage command. It was printing "Device 0: not
25537     available" because IF_TYPE_USB was not included into the switch
25538     statement.
25539
25540     Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
25541
25542 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
25543 Author: Bartlomiej Sieka <tur@semihalf.com>
25544 Date:   Tue Sep 9 12:58:16 2008 +0200
25545
25546     FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
25547
25548     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25549
25550 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
25551 Author: Bartlomiej Sieka <tur@semihalf.com>
25552 Date:   Tue Sep 9 12:58:15 2008 +0200
25553
25554     FIT: add ability to check hashes of all images in FIT, improve output
25555
25556     - add function fit_all_image_check_hashes() that verifies if all
25557       hashes of all images in the FIT are valid
25558     - improve output of fit_image_check_hashes() when the hash check fails
25559
25560     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25561
25562 commit 1de1fa408967cef6804bb046b904114519bb36f0
25563 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25564 Date:   Mon Sep 8 20:54:39 2008 +0200
25565
25566     qemu_mips: Update linux bootm to support dynamic cmdline
25567
25568     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25569
25570 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
25571 Author: Peter Tyser <ptyser@xes-inc.com>
25572 Date:   Mon Sep 8 14:56:49 2008 -0500
25573
25574     Add support for booting of INTEGRITY operating system uImages
25575
25576     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25577
25578 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
25579 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25580 Date:   Mon Sep 8 21:01:29 2008 +0200
25581
25582     mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
25583
25584     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25585
25586 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
25587 Author: Kumar Gala <galak@kernel.crashing.org>
25588 Date:   Mon Sep 8 13:57:12 2008 -0500
25589
25590     Remove support for booting ARTOS images
25591
25592     Pantelis Antoniou stated:
25593         AFAIK, it is still used but the products using PPC are long gone.
25594         Nuke it plz (from orbit).
25595
25596     So remove it since it cleans up a usage of env_get_char outside of
25597     the environment code.
25598
25599     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25600
25601 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
25602 Author: Wolfgang Denk <wd@denx.de>
25603 Date:   Tue Sep 9 15:45:18 2008 +0200
25604
25605     Makefile: compile and link each module just once
25606
25607     Several source files need to be compiled and linked when one or more
25608     config options are selected. To allow for easy selection in the
25609     Makefiles yet to avoild multiple compilation (which costs build time)
25610     and especially multiple linking (which causes errors), we use
25611     "COBJS = $(sort COBJS-y)" which eliminates duplicates.
25612
25613     By courtesy of Detlev Zundel who suggested this approach.
25614
25615     Signed-off-by: Wolfgang Denk <wd@denx.de>
25616
25617 commit 48d0192fe869948fef14b460b5f0c85bca933693
25618 Author: Andreas Engel <andreas.engel@ericsson.com>
25619 Date:   Mon Sep 8 14:30:53 2008 +0200
25620
25621     Moved conditional compile into Makefile
25622
25623     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
25624
25625 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
25626 Author: Andreas Engel <andreas.engel@ericsson.com>
25627 Date:   Mon Sep 8 10:17:31 2008 +0200
25628
25629     Merged serial_pl010.c and serial_pl011.c.
25630
25631     They only differ in the init function.
25632     This also adds the missing watchdog support for the PL011.
25633
25634     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
25635
25636 commit 0817d688f307ee2c0598e79175c94a40ce90337b
25637 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
25638 Date:   Sun Sep 7 17:10:27 2008 -0400
25639
25640     Remove gap fill in srec object v2
25641
25642     SREC files do not need gap fill: The load address is specified in the
25643     file. On the other hand, it can't be avoided in a .bin object. It has
25644     no information about memory location.
25645
25646     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
25647
25648 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
25649 Author: Markus Heidelberg <markus.heidelberg@web.de>
25650 Date:   Sun Sep 7 20:18:27 2008 +0200
25651
25652     README: fix missing subdirectory in the documentation
25653
25654     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
25655
25656 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
25657 Author: Graeme Russ <graeme.russ@gmail.com>
25658 Date:   Sun Sep 7 07:08:42 2008 +1000
25659
25660     Update i386 code (sc520_cdp)
25661
25662     Attempt to bring i386 / sc520 inline with master
25663
25664     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
25665
25666 commit 5608692104efa8d56df803dc79ea41ac3607eee5
25667 Author: Guennadi Liakhovetski <lg@denx.de>
25668 Date:   Thu Sep 4 13:01:49 2008 +0200
25669
25670     fw_env: add NAND support
25671
25672     Add support for environment in NAND with automatic NOR / NAND recognition,
25673     including unaligned environment, bad-block skipping, redundant environment
25674     copy.
25675
25676     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25677
25678 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
25679 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25680 Date:   Tue Sep 9 09:50:24 2008 +0200
25681
25682     ppc4xx: Fix out-of-tree building of CPCI405 variants
25683
25684     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25685     Acked-by: Stefan Roese <sr@denx.de>
25686
25687 commit 59f630588e3fdbd698a0a2798e52a8924e899563
25688 Author: Sergei Poselenov <sposelenov@emcraft.com>
25689 Date:   Fri Aug 15 15:42:11 2008 +0200
25690
25691     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
25692
25693     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
25694
25695 commit e64987a892353f3d49eb242d997820ef8f538912
25696 Author: Anatolij Gustschin <agust@denx.de>
25697 Date:   Fri Aug 15 15:42:13 2008 +0200
25698
25699     85xx: socrates: Enable Lime support.
25700
25701     This patch adds Lime GDC support together with support for the PWM
25702     backlight control through the w83782d chip.  The reset pin of the
25703     latter is attached to GPIO, so we need to reset it in
25704     early_board_init_r.
25705
25706     Signed-off-by: Anatolij Gustschin <agust@denx.de>
25707
25708 commit 3e79b588b5199f35016f178fc0d5d1266382097f
25709 Author: Detlev Zundel <dzu@denx.de>
25710 Date:   Fri Aug 15 15:42:12 2008 +0200
25711
25712     85xx: Socrates: Major code update.
25713
25714     - Update the local bus ranges in the FDT for Linux for the various
25715       devices connected to the local bus via chip-select.
25716
25717     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
25718       lower than 66 MHz and uses I/O accessor functions consequently.
25719
25720     - UPM data update.
25721
25722     - Update of default environment and configuration.  Use I2C multibus
25723       as we do have two I2C buses.  Also enable sdram and ext2 commands.
25724
25725     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
25726     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
25727     Signed-off-by: Detlev Zundel <dzu@denx.de>
25728
25729 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
25730 Author: Timur Tabi <timur@freescale.com>
25731 Date:   Fri Jul 18 16:52:23 2008 +0200
25732
25733     Update Freescale 85xx boards to sys_eeprom.c
25734
25735     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
25736     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
25737     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
25738     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
25739
25740     Signed-off-by: Timur Tabi <timur@freescale.com>
25741
25742 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
25743 Author: Wolfgang Denk <wd@denx.de>
25744 Date:   Tue Sep 9 10:08:02 2008 +0200
25745
25746     lib_ppc/interrupts.c: make board_show_activity() a weak function
25747
25748     This allows to use show_activity() without having to
25749     define an empty board_show_activity() function.
25750
25751     Signed-off-by: Wolfgang Denk <wd@denx.de>
25752
25753 commit fe876787f8743883ce58fed61525eaa2f34da4c5
25754 Author: Wolfgang Denk <wd@denx.de>
25755 Date:   Tue Sep 9 10:06:44 2008 +0200
25756
25757     stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
25758
25759     Signed-off-by: Wolfgang Denk <wd@denx.de>
25760
25761 commit 965de106ba8900372c8b16dc60d5acab7f925e38
25762 Author: Wolfgang Denk <wd@denx.de>
25763 Date:   Tue Sep 9 10:03:47 2008 +0200
25764
25765     NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
25766
25767     Signed-off-by: Wolfgang Denk <wd@denx.de>
25768
25769 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
25770 Author: Sergei Poselenov <sposelenov@emcraft.com>
25771 Date:   Fri Aug 15 15:42:11 2008 +0200
25772
25773     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
25774
25775     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
25776
25777 commit 36241ca29d4804a1006fb3f26069effda5202581
25778 Author: Anatolij Gustschin <agust@denx.de>
25779 Date:   Fri Aug 15 15:42:13 2008 +0200
25780
25781     85xx: socrates: Enable Lime support.
25782
25783     This patch adds Lime GDC support together with support for the PWM
25784     backlight control through the w83782d chip.  The reset pin of the
25785     latter is attached to GPIO, so we need to reset it in
25786     early_board_init_r.
25787
25788     Signed-off-by: Anatolij Gustschin <agust@denx.de>
25789
25790 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
25791 Author: Detlev Zundel <dzu@denx.de>
25792 Date:   Fri Aug 15 15:42:12 2008 +0200
25793
25794     85xx: Socrates: Major code update.
25795
25796     - Update the local bus ranges in the FDT for Linux for the various
25797       devices connected to the local bus via chip-select.
25798
25799     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
25800       lower than 66 MHz and uses I/O accessor functions consequently.
25801
25802     - UPM data update.
25803
25804     - Update of default environment and configuration.  Use I2C multibus
25805       as we do have two I2C buses.  Also enable sdram and ext2 commands.
25806
25807     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
25808     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
25809     Signed-off-by: Detlev Zundel <dzu@denx.de>
25810
25811 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
25812 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25813 Date:   Tue Sep 9 01:22:39 2008 +0200
25814
25815     disk-on-chip: remove duplicate doc_probe declaration
25816
25817     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25818
25819 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
25820 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25821 Date:   Tue Sep 9 00:59:40 2008 +0200
25822
25823     onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
25824
25825     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25826
25827 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
25828 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25829 Date:   Tue Sep 9 00:59:39 2008 +0200
25830
25831     rs5c372: fix rtc_set prototype
25832
25833     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25834
25835 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
25836 Author: Sergei Poselenov <sposelenov@emcraft.com>
25837 Date:   Thu Aug 14 14:08:28 2008 +0200
25838
25839     ARM: fix warning: target CPU does not support interworking
25840
25841     This patch fixes warnings like this:
25842
25843     start.S:0: warning: target CPU does not support interworking
25844
25845     which come from some ARM cross compilers and are caused by hard-coded
25846     (with "--with-cpu=arm9" configuration option) ARM targets (which
25847     support ARM Thumb instructions), while the ARM target selected from
25848     the command line (with "-march=armv4") doesn't support Thumb
25849     instructions.
25850
25851     This warning is issued by the compiler regardless of the real use of
25852     the Thumb instructions in code.
25853
25854     To fix this problem, we use options according to compiler version
25855     being used.
25856
25857     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
25858     Signed-off-by: Wolfgang Denk <wd@denx.de>
25859
25860 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
25861 Author: Sergei Poselenov <sposelenov@emcraft.com>
25862 Date:   Thu Aug 14 14:08:28 2008 +0200
25863
25864     ARM: Use do_div() instead of division for "long long".
25865
25866     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
25867     Signed-off-by: Wolfgang Denk <wd@denx.de>
25868
25869 commit 8febd13c69cb68652577d1a9fcbde954bf784155
25870 Author: Timur Tabi <timur@freescale.com>
25871 Date:   Fri Jul 18 16:52:23 2008 +0200
25872
25873     Update Freescale 85xx boards to sys_eeprom.c
25874
25875     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
25876     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
25877     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
25878     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
25879
25880     Signed-off-by: Timur Tabi <timur@freescale.com>
25881
25882 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
25883 Author: Wolfgang Denk <wd@denx.de>
25884 Date:   Mon Sep 8 23:26:22 2008 +0200
25885
25886     lib_arm/bootm.c: fix compile warnings
25887
25888     bootm.c:128: warning: label 'error' defined but not used
25889     bootm.c:65: warning: unused variable 'ret'
25890
25891     Signed-off-by: Wolfgang Denk <wd@denx.de>
25892
25893 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
25894 Author: Wolfgang Denk <wd@denx.de>
25895 Date:   Mon Sep 8 22:46:42 2008 +0200
25896
25897     ml507: fix out of tree build problem
25898
25899     Signed-off-by: Wolfgang Denk <wd@denx.de>
25900
25901 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
25902 Author: Wolfgang Denk <wd@denx.de>
25903 Date:   Mon Sep 8 22:10:28 2008 +0200
25904
25905     common/cmd_bootm.c: fix printf() format warnings
25906
25907     Signed-off-by: Wolfgang Denk <wd@denx.de>
25908
25909 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
25910 Author: Wolfgang Denk <wd@denx.de>
25911 Date:   Mon Sep 8 22:37:45 2008 +0200
25912
25913     BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
25914
25915     missing doc_probe() prototype.
25916
25917     Signed-off-by: Wolfgang Denk <wd@denx.de>
25918
25919 commit 2c5e3cc4994897d364b148942ff23e47783198f6
25920 Author: Wolfgang Denk <wd@denx.de>
25921 Date:   Mon Sep 8 21:28:14 2008 +0200
25922
25923     mk48t59: fix compile problem introduced by commit d1e23194
25924
25925     Signed-off-by: Wolfgang Denk <wd@denx.de>
25926
25927 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
25928 Author: Stefan Roese <sr@denx.de>
25929 Date:   Mon Sep 8 14:11:12 2008 +0200
25930
25931     ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
25932
25933     This patch moves some 4xx specific prototypes out of include common.h
25934     to a ppc4xx specific header.
25935
25936     Signed-off-by: Stefan Roese <sr@denx.de>
25937
25938 commit ac53ee8318678190bf3c68da477a84a657d86fb0
25939 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25940 Date:   Fri Sep 5 15:34:04 2008 +0200
25941
25942     ppc4xx: Update CPCI405(AB) configuration
25943
25944     This patch add FDT support and command line editing capabilities
25945     for CPCI405 and CPCI405AB boards.
25946
25947     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25948     Signed-off-by: Stefan Roese <sr@denx.de>
25949
25950 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
25951 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25952 Date:   Fri Sep 5 15:34:03 2008 +0200
25953
25954     ppc4xx: Cleanup CPCI405 linker script
25955
25956     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25957     Signed-off-by: Stefan Roese <sr@denx.de>
25958
25959 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
25960 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25961 Date:   Fri Sep 5 15:34:02 2008 +0200
25962
25963     ppc4xx: Update CPCI405 variants handling
25964
25965     This patch replaces the BOARD_REVISION variable in include/config.mk
25966     by a using a temporary include file in the platform directory.
25967
25968     The former way does not work anymore and the latter is also used by
25969     some other boards.
25970
25971     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25972     Signed-off-by: Stefan Roese <sr@denx.de>
25973
25974 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
25975 Author: Stefan Roese <sr@denx.de>
25976 Date:   Mon Sep 8 10:01:48 2008 +0200
25977
25978     ppc4xx: Remove CONFIG_CS8952_PHY define
25979
25980     Since this define is only used on one board that was never really in
25981     production, removing this compile time option doesn't hurt and makes
25982     the code more readable.
25983
25984     Signed-off-by: Stefan Roese <sr@denx.de>
25985
25986 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
25987 Author: Stefan Roese <sr@denx.de>
25988 Date:   Fri Sep 5 14:11:40 2008 +0200
25989
25990     ppc4xx: Fix compilation warning for PIP405
25991
25992     This patch fixes a compilation warning for the PIP405 board. It moves the
25993     #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
25994     occur anymore. I am a little unsure if this #ifdef is at the correct
25995     place now or if it could be removed completely. This needs to get
25996     tested on the PIP405 board.
25997
25998     Signed-off-by: Stefan Roese <sr@denx.de>
25999
26000 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
26001 Author: Stefan Roese <sr@denx.de>
26002 Date:   Fri Sep 5 14:09:09 2008 +0200
26003
26004     ppc4xx: Fix compilation warning for canyonlands & glacier
26005
26006     Signed-off-by: Stefan Roese <sr@denx.de>
26007
26008 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
26009 Author: Kumar Gala <galak@kernel.crashing.org>
26010 Date:   Fri Sep 5 14:40:29 2008 -0500
26011
26012     Fix compiler warning in mpc8xxx ddr code
26013
26014     ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
26015     ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
26016     ctrl_regs.c:523: note: 'caslat' was declared here
26017
26018     Add a warning in DDR1 case if cas_latency isn't a value we know about.
26019
26020     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26021     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26022
26023 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
26024 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26025 Date:   Mon Sep 1 23:06:23 2008 +0200
26026
26027     rtc: allow rtc_set to return an error and use it in cmd_date
26028
26029     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26030
26031 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
26032 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26033 Date:   Mon Sep 1 01:16:33 2008 +0200
26034
26035     ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
26036
26037     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26038
26039 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
26040 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26041 Date:   Sun Aug 31 05:37:04 2008 +0900
26042
26043     config.mk: Move arch-specific condition to $(ARCH)_config.mk
26044
26045     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26046
26047 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
26048 Author: Kumar Gala <galak@kernel.crashing.org>
26049 Date:   Fri Aug 29 19:08:29 2008 -0500
26050
26051     Prevent crash if random/invalid ramdisks are passed to bootm
26052
26053     Adds returning an error from the ramdisk detection code if
26054     its not a real ramdisk (invalid).  There is no reason we can't
26055     just return back to the console if we detect an invalid
26056     ramdisk or CRC error.
26057
26058     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26059
26060 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
26061 Author: Anatolij Gustschin <agust@denx.de>
26062 Date:   Fri Aug 29 21:04:45 2008 +0200
26063
26064     Prevent crash if random DTB address is passed to bootm
26065
26066     This patch adds bootm_start() return value check. If
26067     error status is returned, we do not proceed further to
26068     prevent board reset or crash as we still can recover
26069     at this point.
26070
26071     Signed-off-by: Anatolij Gustschin <agust@denx.de>
26072
26073 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
26074 Author: Andrew Dyer <adyer@righthandtech.com>
26075 Date:   Fri Aug 29 12:30:39 2008 -0500
26076
26077     clean up some #if !defined() in drivers/video/cfb_console.c
26078
26079     rearrange some #if !defined() / #else / #endif statements to remove
26080     the negative logic.
26081
26082     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
26083
26084 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
26085 Author: Kyungmin Park <kmpark@infradead.org>
26086 Date:   Fri Aug 29 09:02:20 2008 +0900
26087
26088     apollon: use the last memory area for u-boot
26089
26090     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26091
26092 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
26093 Author: Heiko Schocher <hs@denx.de>
26094 Date:   Thu Aug 28 13:50:42 2008 +0200
26095
26096     TQM8272: move NAND part in seperate File
26097
26098     I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
26099     because I have no longer access to the hardware.
26100
26101     Signed-off-by: Heiko Schocher <hs@denx.de>
26102
26103 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
26104 Author: Heiko Schocher <hs@denx.de>
26105 Date:   Thu Aug 28 13:48:36 2008 +0200
26106
26107     TQM8272: Fix compiling error for the TQM8272 board.
26108
26109     Fix compile problems caused by
26110     commit  cfa460adfdefcc30d104e1a9ee44994ee349bb7b
26111
26112     Signed-off-by: Heiko Schocher <hs@denx.de>
26113
26114 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
26115 Author: Kyungmin Park <kmpark@infradead.org>
26116 Date:   Wed Aug 27 14:45:20 2008 +0900
26117
26118     Add JFFS2 command support on OneNAND
26119
26120     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26121
26122 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
26123 Author: Mark Jackson <mpfj@mimc.co.uk>
26124 Date:   Mon Aug 25 19:21:30 2008 +0100
26125
26126     Allow console input to be disabled
26127
26128     Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
26129
26130     When CONFIG_DISABLE_CONSOLE is defined, setting
26131     GD_FLG_DISABLE_CONSOLE disables all console input and output.
26132
26133     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
26134
26135 commit 2b22d608f370565c87f55928b524207031419c11
26136 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
26137 Date:   Wed Jul 30 12:39:29 2008 +0200
26138
26139     loads: allow negative offsets
26140
26141     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
26142
26143 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
26144 Author: Yuri Tikhonov <yur@emcraft.com>
26145 Date:   Thu Sep 4 11:19:05 2008 +0200
26146
26147     USB EHCI: reset root hub
26148
26149     Some of multi-function USB controllers (e.g. ISP1562) allow root hub
26150     resetting only via EHCI registers. So, this patch adds the
26151     corresponding kind of reset to OHCI's hc_reset() if the newly
26152     introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
26153     board).
26154
26155     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26156     Acked-by: Markus Klotzbuecher <mk@denx.de>
26157
26158 commit 5875d358f025c1b042d8a0f08384b756de7256c9
26159 Author: Yuri Tikhonov <yur@emcraft.com>
26160 Date:   Fri Aug 15 15:42:09 2008 +0200
26161
26162     RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
26163
26164     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26165
26166 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
26167 Author: Stefan Roese <sr@denx.de>
26168 Date:   Fri Sep 5 10:47:46 2008 +0200
26169
26170     devices: Use list_add_tail() instead of list_add() to register a device
26171
26172     This patch fixes a problem spotted on Glacier/Canyonlands (and most
26173     likely lots of other board ports), that no serial output was seen
26174     after console initialization in console_init_r(). This is because the
26175     last added console device was used instead of the first added.
26176
26177     This patch fixes this problem by using list_add_tail() instead of
26178     list_add() to register a device. This way the first added console
26179     is used again.
26180
26181     Signed-off-by: Stefan Roese <sr@denx.de>
26182
26183 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
26184 Author: Victor Gallardo <vgallardo@amcc.com>
26185 Date:   Thu Sep 4 23:49:36 2008 -0700
26186
26187     ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
26188
26189     This patch adds GPCS, SGMII and M88E1112 PHY support
26190     for the AMCC PPC460GT/EX processors.
26191
26192     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
26193     Signed-off-by: Stefan Roese <sr@denx.de>
26194
26195 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
26196 Author: Adam Graham <agraham@amcc.com>
26197 Date:   Wed Sep 3 12:26:59 2008 -0700
26198
26199     ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
26200
26201     Signed-off-by: Adam Graham <agraham@amcc.com>
26202     Signed-off-by: Stefan Roese <sr@denx.de>
26203
26204 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
26205 Author: Adam Graham <agraham@amcc.com>
26206 Date:   Wed Sep 3 12:26:28 2008 -0700
26207
26208     ppc4xx: IBM Memory Controller DDR autocalibration routines
26209
26210     Alternate SDRAM DDR autocalibration routine that can be generically used
26211     for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
26212     support of more DIMM/memory chip vendors and gets the DDR autocalibration
26213     values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
26214
26215     Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
26216     "Method_A" and "Method_B".  DDR autocalibration Method_A scans the full range
26217     of possible PPC4xx  SDRAM Controller DDR autocalibration values and takes a
26218     lot longer to run than Method_B.  Method_B executes in the same amount of time
26219     as the currently existing DDR autocalibration routine, i.e. 1 second or so.
26220     Normally Method_B is used and it is set as the default method.
26221
26222     The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
26223     Controller registers.[bit-field]:
26224     1)  SDRAM0_RQDC.[RQFD]
26225     2)  SDRAM0_RFDC.[RFFD]
26226
26227     This alternate PPC4xx DDR autocalibration code calibrates the following
26228     IBM SDRAM Controller registers.[bit-field]:
26229
26230     1)  SDRAM0_WRDTR.[WDTR]
26231     2)  SDRAM0_CLKTR.[CKTR]
26232     3)  SDRAM0_RQDC.[RQFD]
26233     4)  SDRAM0_RFDC.[RFFD]
26234
26235     and will also use the calibrated settings of the above four registers that
26236     produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
26237     register.[bit-field].
26238
26239     Signed-off-by: Adam Graham <agraham@amcc.com>
26240     Signed-off-by: Stefan Roese <sr@denx.de>
26241
26242 commit e07f4a8033b6270b8103049adb6456f660ff4a89
26243 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
26244 Date:   Mon Sep 1 13:09:39 2008 -0400
26245
26246     ppc44x: Unification of virtex5 pp440 boards
26247
26248     This patch provides an unificated way of handling xilinx v5 ppc440 boards.
26249
26250     It unificates 3 different things:
26251
26252     1) Source code
26253     A new board called ppc440-generic has been created. This board includes
26254     a generic tlb initialization (Maps the whole memory into virtual) and
26255     defines board_pre_init, checkboard, initdram and get_sys_info weakly,
26256     so, they can be replaced by specific functions.
26257
26258     If a new board needs to redefine any of the previous functions
26259     (specific initialization) it can create a new directory with the
26260     specific initializations needed. (see the example ml507 board).
26261
26262     2) Configuration file
26263     Common configurations are located under configs/xilinx-ppc440.h, this
26264     header file interpretes the xparameters file generated by EDK and
26265     configurates u-boot in correspondence. Example: if there is a Temac,
26266     allows CMD_CONFIG_NET
26267     Specific configuration are located under specific configuration file.
26268     (see the example ml507 board)
26269
26270     3) Makefile
26271     Some work has been done in order to not duplicate work in the Main
26272     Makefile. Please see the attached code.
26273
26274     In order to support new boards they can be implemented in the next way:
26275
26276     a) Simple Generic Board  (90% of the time)
26277     Using EDK generates a new xparameters.h file, replace
26278     ppc440-generic/xparameters.h  and run make xilinx-ppc440-generic_config
26279     && make
26280
26281     b) Simple Boards with special u-boot parameters (9 % of the time)
26282     Create a new file under configs for it (use ml507.h as example) and
26283     change your paramaters. Create a new Makefile paragraph and compile
26284
26285     c) Complex boards (1% of the time)
26286     Create a new folder for the board, like the ml507
26287
26288     Finally, it adds support for the Avnet FX30T Evaluation board, following
26289     the new generic structure:
26290
26291     Cheap board by Avnet for evaluating the Virtex5 FX technology.
26292
26293     This patch adds support for:
26294      - UartLite
26295      - 16MB Flash
26296      - 64MB RAM
26297
26298     Prior using U-boot in this board, read carefully the ERRATA by Avnet
26299     to solve some memory initialization issues.
26300
26301     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
26302     Signed-off-by: Stefan Roese <sr@denx.de>
26303
26304 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
26305 Author: Nick Spence <nick.spence@freescale.com>
26306 Date:   Tue Sep 2 15:21:16 2008 -0500
26307
26308     mpc83xx: fix mpc8313 in-tree building with NAND
26309
26310     and add mpc8313 NAND build to MAKEALL
26311
26312     Signed-off-by: Nick Spence <nick.spence@freescale.com>
26313     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26314
26315 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
26316 Author: Nick Spence <nick.spence@freescale.com>
26317 Date:   Thu Aug 28 14:09:25 2008 -0700
26318
26319     mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
26320
26321     Cleans up some latent issues with the data cache control so that
26322     dcache_enable() and dcache_disable() will work reliably (after
26323     unlock_ram_in_cache() has been called)
26324
26325     Signed-off-by: Nick Spence <nick.spence@freescale.com>
26326     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26327
26328 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
26329 Author: Nick Spence <nick.spence@freescale.com>
26330 Date:   Thu Aug 28 14:09:19 2008 -0700
26331
26332     mpc83xx: Store and display Arbiter Event Register values
26333
26334     Record the Arbiter Event Register values and optionally display them.
26335
26336     The Arbiter Event Register can record the type and effective address of
26337     an arbiter error, even through an HRESET. This patch stores the values in
26338     the global data structure.
26339
26340     Display of the Arbiter Event registers immediately after the RSR value
26341     can be enabled with defines. The Arbiter values will only be displayed
26342     if an arbiter event has occured since the last Power On Reset, and either
26343     of the following defines exist:
26344      #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
26345                                         and type register values
26346      #define CONFIG_DISPLAY_AER_FULL  - display and interpret the arbiter
26347                                         event register values
26348
26349     Address Only transactions are one of the trapped events that can register
26350     as an arbiter event. They occur with some cache manipulation instructions
26351     if the HID0_ABE (Address Broadcast Enable) is set and the memory region
26352     has the MEMORY_COHERENCE WIMG bit set. Setting:
26353      #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
26354                                   only events, so that it can still capture
26355                                   other real problems.
26356
26357     Signed-off-by: Nick Spence <nick.spence@freescale.com>
26358     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26359
26360 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
26361 Author: Nick Spence <nick.spence@freescale.com>
26362 Date:   Thu Aug 28 14:09:11 2008 -0700
26363
26364     mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
26365
26366     This is needed in unlock_ram_in_cache() because it is called from C and
26367     will corrupt the small data area anchor that is kept in R2.
26368
26369     lock_ram_in_cache() is modified similarly as good coding practice, but
26370     is not called from C.
26371
26372     Signed-off-by: Nick Spence <nick.spence@freescale.com>
26373     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26374
26375 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
26376 Author: Nick Spence <nick.spence@freescale.com>
26377 Date:   Fri Aug 22 23:52:50 2008 -0700
26378
26379     MPC83XX: Fix GPIO configuration - set gpio level before direction
26380
26381     Set DAT value before DIR values to avoid creating glitches on the
26382     GPIO signals.
26383
26384     Set gpio level register before direction register to inhibit
26385     glitches on high level output pins.
26386
26387     Dir and data gets cleared at powerup, so high level output lines see
26388     a short low pulse between setting the direction and level registers.
26389
26390     Issue was seen on a new board with the nReset line of the NOR flash
26391     connected to a GPIO. Setting the direction register puts the NOR flash
26392     in reset so the next instruction to set the level cannot get executed.
26393
26394     Signed-off-by: Nick Spence <nick.spence@freescale.com>
26395     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
26396     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26397
26398 commit 7007c5975ee900ad70983b0681d3251e221f8321
26399 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26400 Date:   Tue Sep 2 02:58:32 2008 +0200
26401
26402     doc/qemu_mips: add doc howto debug u-boot with gdb
26403
26404     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26405
26406 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
26407 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26408 Date:   Wed Sep 3 17:15:45 2008 +0200
26409
26410     ppx4xx: Fix broken DASA_SIM board
26411
26412     This patch adds initdram() to DASA_SIM boards that has been
26413     removed accidentally by a previous commit.
26414
26415     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26416     Signed-off-by: Stefan Roese <sr@denx.de>
26417
26418 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
26419 Author: Stefan Roese <sr@denx.de>
26420 Date:   Mon Sep 1 08:35:37 2008 +0200
26421
26422     ppc4xx: Remove reference to common/lists.o from some esd linker scripts
26423
26424     This patch removes some direct references to common/lists.o from some
26425     esd linker scripts. This is necessary because the lists source was moved
26426     and is not in the "common" directory anymore.
26427
26428     Signed-off-by: Stefan Roese <sr@denx.de>
26429
26430 commit 97b0734d65f8a0b03df0a335a2addc759da56107
26431 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26432 Date:   Tue Sep 2 16:33:05 2008 +0200
26433
26434     ppc4xx: Remove obsolete or unused functions from some esd boards
26435
26436     This patch removes initdram() and testdram() from most esd 405 platforms.
26437     Some boards also have an empty dummy implementation of
26438     misc_init_f(). This is also removed.
26439
26440     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26441     Signed-off-by: Stefan Roese <sr@denx.de>
26442
26443 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
26444 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26445 Date:   Tue Sep 2 15:07:54 2008 +0200
26446
26447     ppc4xx: Update VOM405 board configuration
26448
26449     - remove PCI code
26450     - add command line editing
26451     - minor cleanup
26452
26453     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26454     Signed-off-by: Stefan Roese <sr@denx.de>
26455
26456 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
26457 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26458 Date:   Tue Sep 2 15:07:53 2008 +0200
26459
26460     ppc4xx: Remove obsolete initdram() function from VOM405 board
26461
26462     This patch removed the obsolete initdram() function from
26463     VOM405 platform file.
26464
26465     Some minor cleanup.
26466
26467     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26468     Signed-off-by: Stefan Roese <sr@denx.de>
26469
26470 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
26471 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26472 Date:   Tue Sep 2 15:07:52 2008 +0200
26473
26474     ppc4xx: Cleanup VOM405 linker script
26475
26476     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26477     Signed-off-by: Stefan Roese <sr@denx.de>
26478
26479 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
26480 Author: Matthias Fuchs <mf@esd.eu>
26481 Date:   Tue Sep 2 15:07:51 2008 +0200
26482
26483     ppc4xx: Add fdt support for VOM405 boards
26484
26485     Signed-off-by: Matthias Fuchs <mf@esd.eu>
26486     Signed-off-by: Stefan Roese <sr@denx.de>
26487
26488 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
26489 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26490 Date:   Tue Sep 2 11:36:14 2008 +0200
26491
26492     ppc4xx: Coding style cleanup
26493
26494     Wrap long lines etc.
26495
26496     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26497     Signed-off-by: Stefan Roese <sr@denx.de>
26498
26499 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
26500 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26501 Date:   Tue Sep 2 11:35:56 2008 +0200
26502
26503     ppc4xx: Enable USB on PLU405 boards
26504
26505     This patch enables the PCI-OHCI controller on PLU405 board.
26506
26507     Also the default CPU frequency is updated to 266 MHz and
26508     command line editing is enabled.
26509
26510     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26511     Signed-off-by: Stefan Roese <sr@denx.de>
26512
26513 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
26514 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26515 Date:   Tue Sep 2 11:35:35 2008 +0200
26516
26517     ppc4xx: Cleanup PLU405 platform file
26518
26519     This patch
26520     - wraps some long lines
26521     - removes unused/obsolete functions: misc_init_f() and initdram()
26522
26523     Signed-off-by: Matthias Fuchs <mf@esd.eu>
26524     Signed-off-by: Stefan Roese <sr@denx.de>
26525
26526 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
26527 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26528 Date:   Tue Sep 2 11:35:04 2008 +0200
26529
26530     ppc4xx: Cleanup PLU405 linker script
26531
26532     Signed-off-by: Matthias Fuchs <mf@esd.eu>
26533     Signed-off-by: Stefan Roese <sr@denx.de>
26534
26535 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
26536 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26537 Date:   Tue Sep 2 11:34:36 2008 +0200
26538
26539     ppc4xx: Add fdt support for PLU405 boards
26540
26541     Signed-off-by: Matthias Fuchs <mf@esd.eu>
26542     Signed-off-by: Stefan Roese <sr@denx.de>
26543
26544 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
26545 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26546 Date:   Tue Sep 2 11:34:08 2008 +0200
26547
26548     ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
26549
26550     Signed-off-by: Matthias Fuchs <mf@esd.eu>
26551     Signed-off-by: Stefan Roese <sr@denx.de>
26552
26553 commit be1b0d2777e179191a57b138b660547a17e55aad
26554 Author: Jochen Friedrich <jochen@scram.de>
26555 Date:   Tue Sep 2 11:24:59 2008 +0200
26556
26557     Don't tftp to unknown flash
26558
26559     If a board has a variable number of flash banks, there are empty entries
26560     in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
26561     "Outside available Flash". This patch skips flash banks with unknown
26562     flash ids.
26563
26564     Signed-off-by: Jochen Friedrich <jochen@scram.de>
26565     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26566
26567 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
26568 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26569 Date:   Thu Aug 28 13:40:44 2008 +0900
26570
26571     net: smc911x: Add pkt_data_pull and pkt_data_push function
26572
26573     The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
26574     Byte-swapping is necessary, and so poor performance is inevitable.
26575     This problem cannot evade by the swap function of CHIP, this can
26576     evade by software Byte-swapping.
26577     And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
26578     functions necessary to solve this problem.
26579
26580     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26581     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26582
26583 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
26584 Author: Ben Warren <biggerbadderben@gmail.com>
26585 Date:   Sun Aug 31 20:37:00 2008 -0700
26586
26587     Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
26588
26589     Affected boards:
26590         db64360
26591         db64460
26592         katmai
26593         taihu
26594         taishan
26595         yucca
26596         cpc45
26597         cpu87
26598         eXalion
26599         elppc
26600         debris
26601         kvme080
26602         mpc8315erdb
26603         integratorap
26604         ixdp425
26605         oxc
26606         pm826
26607         pm828
26608         pm854
26609         pm856
26610         ppmc7xx
26611         sc3
26612         sc520_spunk
26613         sorcery
26614         tqm8272
26615         tqm85xx
26616         utx8245
26617
26618     Removed initialization of the driver from net/eth.c
26619     Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
26620
26621     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26622
26623 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
26624 Author: Ben Warren <biggerbadderben@gmail.com>
26625 Date:   Sun Aug 31 10:45:44 2008 -0700
26626
26627     Moved initialization of TULIP Ethernet controller to board_eth_init()
26628
26629     Affected boards:
26630         cu824
26631         bab7xx
26632         adciop
26633         dasa_sim
26634         mousse
26635         mpc8540eval
26636         musenki
26637         mvblue
26638         pcippc2/pcippc6
26639         sbc8240
26640         stxssa
26641
26642     Removed initialization of the driver from net/eth.c
26643
26644     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26645
26646 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
26647 Author: Ben Warren <biggerbadderben@gmail.com>
26648 Date:   Sun Aug 31 10:44:19 2008 -0700
26649
26650     Moved initialization of E1000 Ethernet controller to board_eth_init()
26651
26652     Affected boards:
26653         ap1000
26654         mvbc_p
26655         PM854
26656
26657     Removed initialization of the driver from net/eth.c
26658
26659     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26660
26661 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
26662 Author: Ben Warren <biggerbadderben@gmail.com>
26663 Date:   Sun Aug 31 10:40:51 2008 -0700
26664
26665     Moved initialization of plb2800 Ethernet driver to board_eth_init
26666
26667     Affected boards:
26668         purple
26669
26670     Removed initialization of controller from net/eth.c
26671
26672     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26673
26674 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
26675 Author: Ben Warren <biggerbadderben@gmail.com>
26676 Date:   Sun Aug 31 10:39:12 2008 -0700
26677
26678     Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
26679
26680     Modified board_eth_init() functions of boards that have this FEC in addition
26681     to other Ethernet controllers.
26682
26683     Affected boards:
26684         bc3450
26685         icecube
26686         mvbc_p
26687         o2dnt
26688         pm520
26689         total5200
26690         tq5200
26691
26692     Removed initialization of controller from net/eth.c
26693
26694     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26695
26696 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
26697 Author: Ben Warren <biggerbadderben@gmail.com>
26698 Date:   Sun Aug 31 10:36:38 2008 -0700
26699
26700     Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
26701
26702     Added a cpu_eth_init() function to MPC512x CPU directory and
26703     removed code from net/eth.c
26704
26705     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26706
26707 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
26708 Author: Ben Warren <biggerbadderben@gmail.com>
26709 Date:   Sun Aug 31 10:16:59 2008 -0700
26710
26711     Moved initialization of IncaIP Ethernet controller to board_eth_init
26712
26713     Affected boards:
26714         IncaIP
26715
26716     Removed initialization of the driver from net/eth.c
26717
26718     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26719
26720 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
26721 Author: Ben Warren <biggerbadderben@gmail.com>
26722 Date:   Sun Aug 31 10:15:26 2008 -0700
26723
26724     Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
26725
26726         Affected boards:
26727             AmigaOneG3SE
26728
26729         Removed initialization of the driver from net/eth.c
26730
26731     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26732
26733 commit 6aca145e067efe75398e9fac97822bd3700de0b2
26734 Author: Ben Warren <biggerbadderben@gmail.com>
26735 Date:   Sun Aug 31 10:13:34 2008 -0700
26736
26737     Moved initialization of GT6426x Ethernet controller to board_eth_init()
26738
26739     Affected boards:
26740         EVB64260
26741         P3G4
26742         ZUMA
26743
26744     Removed initialization of the driver from net/eth.c
26745
26746     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26747
26748 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
26749 Author: Ben Warren <biggerbadderben@gmail.com>
26750 Date:   Sun Aug 31 10:08:43 2008 -0700
26751
26752     Moved initialization of PCNET Ethernet controller to board_eth_init()
26753
26754     Affected boards:
26755         PN62
26756         sc520_cdp
26757
26758     Removed initialization of the driver from net/eth.c
26759
26760     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26761
26762 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
26763 Author: Ben Warren <biggerbadderben@gmail.com>
26764 Date:   Sun Aug 31 10:07:16 2008 -0700
26765
26766     Moved initialization of NATSEMI Ethernet controller to board_eth_init()
26767
26768     Affected boards:
26769         a3000
26770
26771     Removed initialization of the driver from net/eth.c
26772
26773     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26774
26775 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
26776 Author: Ben Warren <biggerbadderben@gmail.com>
26777 Date:   Sun Aug 31 10:03:22 2008 -0700
26778
26779     Moved initialization of NS8382X Ethernet controller to board_eth_init()
26780
26781     Affected boards:
26782         bc3450
26783         cpci5200
26784         mecp5200
26785         pf2000
26786         icecube
26787         o2dnt
26788         pm520
26789         sandpoint8245
26790         total5200
26791         tqm5200
26792
26793     Removed initialization of the driver from net/eth.c
26794
26795     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26796
26797 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
26798 Author: Ben Warren <biggerbadderben@gmail.com>
26799 Date:   Sun Aug 31 09:59:33 2008 -0700
26800
26801     Moved initialization of TSI108 Ethernet controller to board_eth_init()
26802
26803     Affected boards:
26804         mpc7448hpc2
26805
26806     Removed initialization of the driver from net/eth.c
26807
26808     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26809
26810 commit 0b252f50ae218ae15bfb63af44227972686ebc56
26811 Author: Ben Warren <biggerbadderben@gmail.com>
26812 Date:   Sun Aug 31 21:41:08 2008 -0700
26813
26814     Moved initialization of RTL8139 Ethernet controller to board_eth_init()
26815
26816     Affected boards:
26817         hidden_dragon
26818         MPC8544DS
26819         MPC8610HPCN
26820         R2DPLUS
26821         TB0229
26822
26823     Removed initialization of the driver from net/eth.c
26824
26825     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26826
26827 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
26828 Author: Ben Warren <biggerbadderben@gmail.com>
26829 Date:   Sun Aug 31 09:49:42 2008 -0700
26830
26831     Moved initialization of RTL8169 Ethernet controller to board_eth_init()
26832
26833     Affected boards:
26834         linkstation
26835         r7780mp
26836
26837     Removed initialization of the driver from net/eth.c
26838
26839     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26840
26841 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
26842 Author: Ben Warren <biggerbadderben@gmail.com>
26843 Date:   Tue Aug 12 22:11:53 2008 -0700
26844
26845     Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
26846
26847     Removed at91sam9_eth_initialize() from net/eth.c
26848
26849     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26850
26851 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
26852 Author: Ben Warren <biggerbadderben@gmail.com>
26853 Date:   Sun Aug 31 22:22:04 2008 -0700
26854
26855     Introduce netdev.h header file and remove externs
26856
26857     This addresses all drivers whose initializers have already
26858     been moved to board_eth_init()/cpu_eth_init().
26859
26860     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26861
26862 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
26863 Author: Andy Fleming <afleming@freescale.com>
26864 Date:   Sun Aug 31 16:33:30 2008 -0500
26865
26866     Add pixis_set_sgmii command
26867
26868     The 8544DS and 8572DS platforms support an optional SGMII riser card to
26869     expose ethernet over an SGMII interface.  Once the card is in, it is also
26870     necessary to configure the board such that it uses the card, rather than
26871     the on-board ethernet ports.  This can either be done by flipping dip switches
26872     on the motherboard, or by modifying registers in the pixis.  Either way
26873     requires a reboot.
26874
26875     This adds a command to allow users to choose which ports are routed through
26876     the SGMII card, and which through the onboard ports.  It also allows users
26877     to revert to the current switch settings.
26878
26879     This code does not work on the 8572, as the PIXIS is different.
26880
26881     Signed-off-by: Andy Fleming <afleming@freescale.com>
26882     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26883
26884 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
26885 Author: Andy Fleming <afleming@freescale.com>
26886 Date:   Sun Aug 31 16:33:29 2008 -0500
26887
26888     Add SGMII support for the 8544 DS
26889
26890     The 8544 DS has an optional SGMII Riser card, which uses different PHY
26891     addresses.  Check if we are in SGMII mode, and invoke the SGMII Riser
26892     setup code if so.
26893
26894     Signed-off-by: Andy Fleming <afleming@freescale.com>
26895     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26896
26897 commit 652f7c2eef76a1340928bd660845441e932d86a2
26898 Author: Andy Fleming <afleming@freescale.com>
26899 Date:   Sun Aug 31 16:33:28 2008 -0500
26900
26901     Add support for Freescale SGMII Riser Card
26902
26903     The 8544DS and 8572DS systems have an optional SGMII riser card which
26904     exposes new ethernet ports which are connected to the eTSECs via an
26905     SGMII interface.  The SGMII PHYs for this board are offset from the standard
26906     PHY addresses, so this code modifies the passed in tsec_info structure to
26907     use the SGMII PHYs on the card, instead.
26908
26909     Signed-off-by: Andy Fleming <afleming@freescale.com>
26910     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26911
26912 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
26913 Author: Andy Fleming <afleming@freescale.com>
26914 Date:   Sun Aug 31 16:33:27 2008 -0500
26915
26916     Add SGMII support to the tsec
26917
26918     Adds support for configuring the TBI to talk properly with the SerDes.
26919
26920     Signed-off-by: Andy Fleming <afleming@freescale.com>
26921     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26922
26923 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
26924 Author: Andy Fleming <afleming@freescale.com>
26925 Date:   Sun Aug 31 16:33:26 2008 -0500
26926
26927     Pass in tsec_info struct through tsec_initialize
26928
26929     The tsec driver contains a hard-coded array of configuration information
26930     for the tsec ethernet controllers.  We create a default function that works
26931     for most tsecs, and allow that to be overridden by board code.  It creates
26932     an array of tsec_info structures, which are then parsed by the corresponding
26933     driver instance to determine configuration.  Also, add regs, miiregs, and
26934     devname fields to the tsec_info structure, so that we don't need the kludgy
26935     "index" parameter.
26936
26937     Signed-off-by: Andy Fleming <afleming@freescale.com>
26938     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26939
26940 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
26941 Author: Andy Fleming <afleming@freescale.com>
26942 Date:   Sun Aug 31 16:33:25 2008 -0500
26943
26944     tsec: Move tsec.h to include/
26945
26946     This is to prepare the way for board code passing in the tsec_info structure
26947
26948     Signed-off-by: Andy Fleming <afleming@freescale.com>
26949     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26950
26951 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
26952 Author: Sergei Poselenov <sposelenov@emcraft.com>
26953 Date:   Fri Jun 6 15:52:44 2008 +0200
26954
26955     PHY: Add support for the M88E1121R Marvell chip.
26956
26957     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26958     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26959     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26960
26961 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
26962 Author: Wolfgang Denk <wd@denx.de>
26963 Date:   Tue Sep 2 21:17:36 2008 +0200
26964
26965     fw_env.c: fix build problems with MTD_VERSION=old
26966
26967     (as needed to support old 2.4 Linux kernel based releases)
26968
26969     Signed-off-by: Wolfgang Denk <wd@denx.de>
26970
26971 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
26972 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26973 Date:   Mon Sep 1 17:11:26 2008 +0200
26974
26975     device: make device_register() clone the device
26976
26977     This is expected by the callers, but this fact was hidden well within
26978     the old list implementation.
26979
26980     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26981
26982 commit baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0
26983 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26984 Date:   Mon Sep 1 14:00:07 2008 +0200
26985
26986     avr32: Add support for "GPIO" port mux
26987
26988     The "GPIO" port mux is used on AVR32 UC3 parts as well as AT32AP7200 and
26989     all later AVR32 chips. This patch adds a driver for it, implementing the
26990     same API as the existing portmux-pio driver but with more functionality.
26991
26992     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26993
26994 commit d92852579546c46bdaac978e0b6767a6645b69e0
26995 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26996 Date:   Fri Aug 15 15:02:29 2008 +0200
26997
26998     atstk1000: Convert to new-style makefile
26999
27000     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27001
27002 commit 25e6854d42c11046a468576179b5494f850311b2
27003 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27004 Date:   Sun Aug 31 18:46:35 2008 +0200
27005
27006     avr32: use board_early_init_r instead of board_init_info
27007
27008     Replace the avr32-specific board_init_info hook by the standard
27009     board_early_init_r hook and make it optional.
27010
27011     board_early_init_r() runs somewhat earlier than board_init_info used to
27012     do, but this isn't a problem for any of the in-tree boards.
27013
27014     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27015
27016 commit 36d375faf5cff98e8dca32aabbbb1ec6036437dd
27017 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27018 Date:   Sun Aug 31 18:24:24 2008 +0200
27019
27020     avr32: Use board_postclk_init instead of gclk_init
27021
27022     Replace the avr32-specific gclk_init() board hook with the standard
27023     board_postclk_init() hook which is supposed to run at the same point
27024     during initialization.
27025
27026     Provide a dummy weak alias for boards not implementing this hook. The
27027     cost of this is:
27028       - 2 bytes for the dummy function (retal 0)
27029       - 2 bytes for each unnecessary function call (short rcall)
27030
27031     which is a pretty small price to pay for avoiding lots of #ifdef
27032     clutter. In this particular case, all boards probably end up slightly
27033     smaller because we avoid the conditional checking if the gclk_init
27034     symbol is NULL.
27035
27036     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27037
27038 commit abdde2b1d570b1ee77606bf783444fcddf7f0965
27039 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27040 Date:   Sun Aug 31 18:07:35 2008 +0200
27041
27042     hammerhead: Use gclk helper functions
27043
27044     Use the new gclk helper functions to set up the PHY clock instead of
27045     accessing the PM registers directly.
27046
27047     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27048
27049 commit 98090cd75cdb40b2ab94c806c338540a5716748b
27050 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27051 Date:   Sun Aug 31 18:05:32 2008 +0200
27052
27053     avr32: Add gclk helper functions
27054
27055     Add two helper functions for configuring and enabling generic clocks:
27056       - gclk_enable_output: Enables output on a GCLKx pin
27057       - gclk_set_rate: Configures a gclk to run at a specific rate
27058
27059     This should eliminate any reason to go mucking about with PM registers
27060     from board code.
27061
27062     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27063
27064 commit ab0df36fc7db9dda0b786b909f653e279dfeb9cf
27065 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27066 Date:   Fri Aug 29 21:09:49 2008 +0200
27067
27068     avr32: refactor the portmux/gpio code
27069
27070       - Separate the portmux configuration functionality from the GPIO pin
27071         control API.
27072       - Separate the controller-specific code from the chip-specific code.
27073       - Allow "ganged" port configuration (multiple pins at once).
27074       - Add more flexibility to the "canned" peripheral select functions:
27075           - Allow using more than 23 address bits, more chip selects, as
27076         well as NAND- and CF-specific pins.
27077           - Make the MACB SPEED pin optional, and choose between MII/RMII
27078         using a parameter instead of an #ifdef.
27079           - Make it possible to use other MMC slots than slot 0, and support
27080         different MMC/SDCard data bus widths.
27081       - Use more reasonable pull-up defaults; floating pins may consume a
27082         lot of power.
27083       - Get rid of some custom portmux code from the mimc200 board code. The
27084         old gpio/portmux API couldn't really handle its requirements, but
27085         the new one can.
27086       - Add documentation.
27087
27088     The end result is slightly smaller code for all boards. Which isn't
27089     really the point, but at least it isn't any larger.
27090
27091     This has been verified on ATSTK1002 and ATNGW100. I'd appreciate if
27092     the board maintainers could help me test this on their boards. In
27093     particular, the mimc200 port has lost a lot of code, so I'm hoping Mark
27094     can help me out.
27095
27096     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27097     Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
27098     Cc: Mark Jackson <mpfj@mimc.co.uk>
27099     Cc: Alex Raimondi <alex.raimondi@miromico.ch>
27100     Cc: Julien May <julien.may@miromico.ch>
27101
27102     Changes since v1:
27103       * Enable pullup on NWAIT
27104       * Add missing include to portmux-pio.h
27105       * Rename CONFIG_PIO2 -> CONFIG_PORTMUX_PIO to match docs
27106
27107 commit 4c24e8288c601cb773ab02528b48a8577970e867
27108 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27109 Date:   Sat Aug 30 17:28:36 2008 +0200
27110
27111     avr32: data_bits should reflect the actual number of data bits
27112
27113     Make the data_bits enum in struct sdram_config reflect the actual number
27114     of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean
27115     32 bits is just too confusing.
27116
27117     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27118
27119 commit 66b7bc5175325809718d8d49ef073bc1036ad71b
27120 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27121 Date:   Fri Aug 29 17:48:18 2008 +0200
27122
27123     avr32: Update README
27124
27125     Remove some outdated and/or unnecessary information, and add updated
27126     information about the toolchain and buildroot.
27127
27128     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27129
27130 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
27131 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27132 Date:   Sun Aug 31 23:28:15 2008 +0900
27133
27134     sh: Remove CC line from board's Makefile
27135
27136     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27137
27138 commit 468eae0660de6fdfd9999944c536ecc4797bd944
27139 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27140 Date:   Sun Aug 31 23:25:57 2008 +0900
27141
27142     sh: Replaced "@./mkconfig" for @$(MKCONFIG)
27143
27144     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27145
27146 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
27147 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27148 Date:   Thu Aug 28 14:50:52 2008 +0900
27149
27150     sh: Add support sh2 to MAKEALL
27151
27152     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27153     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27154
27155 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
27156 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27157 Date:   Thu Aug 28 14:52:23 2008 +0900
27158
27159     sh: Fix compile error rsk7203 board
27160
27161     This boards used old type preprocessor.
27162     This patch fix compile error.
27163
27164     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27165     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27166
27167 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
27168 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27169 Date:   Thu Aug 28 14:53:31 2008 +0900
27170
27171     sh: Fix compile error sh7785lcr board
27172
27173     This boards used old type preprocessor.
27174     This patch fix compile error.
27175
27176     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27177     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27178
27179 commit 6f0da4972e48f99d37bc522814940a6022cd3084
27180 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27181 Date:   Fri Aug 22 17:39:09 2008 +0900
27182
27183     sh: Renesas Solutions AP325RXA board support
27184
27185     AP325RXA is SH7723's reference board.
27186     This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
27187     In this patch, support SCIF, NOR Flash, and Ethernet.
27188
27189     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27190     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27191
27192 commit ab09f433b50bb83b5e440c335bc3839ee069e534
27193 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27194 Date:   Fri Aug 22 17:48:51 2008 +0900
27195
27196     sh: add support Renesas SH7723
27197
27198     Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
27199     This patch supports CPU register's header file and SCIF serial driver.
27200
27201     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27202     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27203
27204 commit c655fad06ba3fb042dbc667724a40e1a9a091248
27205 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27206 Date:   Sun Aug 31 23:02:04 2008 +0900
27207
27208     sh: Renesas RSK+ 7203 board support
27209
27210     This adds initial support for the RTE RSK+ SH7203 board.
27211
27212     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27213     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27214
27215 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
27216 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27217 Date:   Thu Jul 3 23:11:02 2008 +0900
27218
27219     sh: Add support Renesas SH7203 processor
27220
27221     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27222     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27223
27224 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
27225 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27226 Date:   Sun Aug 31 22:48:33 2008 +0900
27227
27228     sh: Add support SH2/SH2A which is CPU of Renesas Technology
27229
27230     Add support SH2/SH2A basic function.
27231
27232     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27233     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27234
27235 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
27236 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27237 Date:   Sun Aug 31 22:45:08 2008 +0900
27238
27239     sh: Renesas R0P7785LC0011RL board support
27240
27241     This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
27242     Graphic, Ethernet, USB, SD, RTC, and I2C controller.
27243
27244     This patch supports the following functions:
27245      - 128MB DDR2-SDRAM (29-bit address mode only)
27246      - NOR Flash
27247      - USB host
27248      - Ethernet
27249
27250     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
27251     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27252
27253 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
27254 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
27255 Date:   Thu Jul 10 19:32:53 2008 +0900
27256
27257     sh: add support for SH7785
27258
27259     Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
27260     This patch supports CPU register's header file.
27261
27262     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
27263     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27264
27265 commit d6e04258be8f2408845468d3cf722a4cf0433445
27266 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27267 Date:   Sun Aug 31 04:45:42 2008 +0200
27268
27269     davinci: fix remaining dm644x_eth
27270
27271     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27272
27273 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
27274 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27275 Date:   Sun Aug 31 04:24:56 2008 +0200
27276
27277     fs: Move conditional compilation to Makefile
27278
27279     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27280
27281 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
27282 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27283 Date:   Sun Aug 31 04:24:55 2008 +0200
27284
27285     devices: merge to list_head
27286
27287     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27288
27289 commit ef0255fc75f28655f9681422079287d68a14dbaa
27290 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27291 Date:   Sun Aug 31 04:24:51 2008 +0200
27292
27293     update linux/list
27294
27295     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27296
27297 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
27298 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27299 Date:   Sun Aug 31 00:39:48 2008 +0200
27300
27301     smdk6400: add gitignore
27302
27303     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27304
27305 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
27306 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27307 Date:   Sun Aug 31 00:39:48 2008 +0200
27308
27309     smdk6400: Use CONFIG_FLASH_CFI_DRIVER
27310
27311     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27312
27313 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
27314 Author: Guennadi Liakhovetski <lg@denx.de>
27315 Date:   Sun Aug 31 00:39:47 2008 +0200
27316
27317     smdk6400: remove redundant bootargs definition
27318
27319     Double bootargs setting leads to a duplicated environmant entry.
27320
27321     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27322
27323 commit 11edcfe260f20dcea79284a3e95270989d433854
27324 Author: Guennadi Liakhovetski <lg@denx.de>
27325 Date:   Sun Aug 31 00:39:47 2008 +0200
27326
27327     ARM: Add support for S3C6400 based SMDK6400 board
27328
27329     SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
27330     driver for it too. The board can also boot from the NOR flash, but due to
27331     hardware limitations it can only address 64KiB on it, which is not enough
27332     for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
27333
27334     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27335
27336 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
27337 Author: Guennadi Liakhovetski <lg@denx.de>
27338 Date:   Sun Aug 31 00:39:47 2008 +0200
27339
27340     NAND: add NAND driver for S3C64XX
27341
27342     Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
27343
27344     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27345
27346 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
27347 Author: Guennadi Liakhovetski <lg@denx.de>
27348 Date:   Sun Aug 31 00:39:47 2008 +0200
27349
27350     S3C64XX: remove broken HWFLOW support from the serial driver
27351
27352     As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
27353     broken and currently unused. Remove it.
27354
27355     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27356
27357 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
27358 Author: Guennadi Liakhovetski <lg@denx.de>
27359 Date:   Sun Aug 31 00:39:47 2008 +0200
27360
27361     serial: add S3C64XX serial driver
27362
27363     Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
27364
27365     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27366
27367 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
27368 Author: Guennadi Liakhovetski <lg@denx.de>
27369 Date:   Sun Aug 31 00:39:46 2008 +0200
27370
27371     USB: Add support for OHCI controller on S3C6400
27372
27373     Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
27374     try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
27375     it should work too and we could still profit from instruction cache.
27376
27377     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27378
27379 commit 9b07773f8883665b002500c190507e9fd99b7181
27380 Author: Guennadi Liakhovetski <lg@denx.de>
27381 Date:   Sun Aug 31 00:39:46 2008 +0200
27382
27383     ARM: Add arm1176 core with S3C6400 SoC
27384
27385     Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
27386
27387     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27388
27389 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
27390 Author: Sandeep Paulraj <s-paulraj@ti.com>
27391 Date:   Sun Aug 31 00:39:46 2008 +0200
27392
27393     ARM DaVinci: Changing function names for EMAC driver
27394
27395     DM644x is just one of a series of DaVinci chips that use the EMAC driver.
27396     By replacing all the function names that start with dm644x_* to davinci_*
27397     we make these function more portable. I have tested this change on my EVM.
27398     DM6467 is another DaVinci SOC which uses the EMAC driver and i will
27399     be sending patches that add DaVinci DM6467 support to the list soon.
27400
27401     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
27402
27403 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
27404 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
27405 Date:   Sat Aug 30 23:21:30 2008 +0200
27406
27407     Integrator[AP/CP] - Remove unused file memsetup.S
27408
27409     - memsetup.s is changed/merged to lowlevel_init.S
27410       memsetup.S has a global label memsetup that just returns back to caller
27411     - memsetup global label is changed/merged to lowlevel_init
27412       This label is not called from anywhere.
27413
27414     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
27415
27416 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
27417 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
27418 Date:   Wed Aug 27 21:35:52 2008 +0200
27419
27420     ARM DaVinci: Standardize names of directories/files
27421
27422     ARM DaVinci: Standardize names of directories/files.
27423
27424     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
27425     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27426
27427 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
27428 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
27429 Date:   Fri Jul 11 15:10:13 2008 -0400
27430
27431     ARM DaVinci: Move common functions to board/davinci/common
27432
27433     ARM DaVinci: Move common functions to board/davinci/common.
27434
27435     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
27436
27437 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
27438 Author: Stefan Roese <sr@denx.de>
27439 Date:   Fri Aug 29 11:56:49 2008 +0200
27440
27441     ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
27442
27443     This function is needed for the new NAND infrastructure. We only need
27444     a dummy implementation though for the NDFC.
27445
27446     Signed-off-by: Stefan Roese <sr@denx.de>
27447
27448 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
27449 Author: Stefan Roese <sr@denx.de>
27450 Date:   Fri Aug 29 12:06:27 2008 +0200
27451
27452     ppc4xx: Increase image size for NAND boot target
27453
27454     This is needed since now with HUSH enabled (amcc-common.h) the image
27455     read from NAND exceeds the previous limit.
27456
27457     Signed-off-by: Stefan Roese <sr@denx.de>
27458
27459 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
27460 Author: Ben Warren <biggerbadderben@gmail.com>
27461 Date:   Thu Aug 28 23:58:30 2008 -0700
27462
27463     Move MPC512x_FEC driver to drivers/net
27464
27465     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27466
27467 commit 80b00af01b3c9154774de2936f05a051e92f6a03
27468 Author: Ben Warren <biggerbadderben@gmail.com>
27469 Date:   Thu Aug 28 23:58:29 2008 -0700
27470
27471     Move MPC5xxx_FEC driver to drivers/net
27472
27473     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27474
27475 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
27476 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27477 Date:   Fri Aug 29 21:53:57 2008 +0200
27478
27479     cmd_terminal: remove no need ifdef
27480
27481     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27482
27483 commit 578118bdf122877ae769776be002255be447b4fa
27484 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27485 Date:   Fri Aug 29 21:53:57 2008 +0200
27486
27487     common/Makefile: order by functionality
27488
27489     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27490
27491 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
27492 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27493 Date:   Fri Aug 29 21:53:56 2008 +0200
27494
27495     miiphyutil: Move conditional compilation to Makefile
27496
27497     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27498
27499 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
27500 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27501 Date:   Fri Aug 29 21:53:37 2008 +0200
27502
27503     autoscript: Move conditional compilation to Makefile
27504
27505     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27506
27507 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
27508 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27509 Date:   Fri Aug 29 01:18:11 2008 +0200
27510
27511     crc16: move to lib_generic
27512
27513     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27514
27515 commit 55195773eacefb22dd483a3c560ea30a14263ce1
27516 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27517 Date:   Fri Aug 29 01:18:01 2008 +0200
27518
27519     miiphybb: move to drivers/net/phy
27520
27521     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27522
27523 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
27524 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27525 Date:   Thu Aug 28 12:31:51 2008 +0200
27526
27527     soft_spi: move to drivers/spi
27528
27529     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27530
27531 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
27532 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27533 Date:   Thu Aug 28 12:31:51 2008 +0200
27534
27535     soft_i2c: move to drivers/i2c
27536
27537     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27538
27539 commit 717a222229fdb77703e9174d0eb08a4b41febf49
27540 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27541 Date:   Thu Aug 28 12:31:48 2008 +0200
27542
27543     gunzip: move to lib_generic
27544
27545     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27546
27547 commit 52aef8f9ba28b747973bf76741c23db658d5773c
27548 Author: Wolfgang Ocker <weo@reccoware.de>
27549 Date:   Tue Aug 26 19:55:23 2008 +0200
27550
27551     ppc4xx: NAND configuration
27552
27553     Made NAND bank configuration setting a config variable.
27554
27555     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
27556     Signed-off-by: Stefan Roese <sr@denx.de>
27557
27558 commit 5bc542a593abc9e974fbd34704af85c37c366c60
27559 Author: Victor Gallardo <vgallardo@amcc.com>
27560 Date:   Thu Aug 28 16:03:28 2008 -0700
27561
27562     ppc4xx: fix UIC external_interrupt hang on UIC0
27563
27564     This patch fixes a UIC external_interrupt hang if critical or non-critical
27565     interrupt is set at the same time as a normal interrupt is set on UIC0.
27566
27567     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
27568     Signed-off-by: Stefan Roese <sr@denx.de>
27569
27570 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
27571 Author: Prodyut  Hazarika <phazarika@amcc.com>
27572 Date:   Wed Aug 27 16:39:00 2008 -0700
27573
27574     ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
27575
27576     Removed Magic numbers from Initialization preload registers
27577     Tested with Kilauea, Glacier, Canyonlands and Katmai boards
27578     About 5-7% improvement seen for LMBench memtests
27579
27580     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
27581     Signed-off-by: Stefan Roese <sr@denx.de>
27582
27583 commit 8a490422bed685c9491274ec997f62061d88620b
27584 Author: John Rigby <jrigby@freescale.com>
27585 Date:   Thu Aug 28 13:17:07 2008 -0600
27586
27587     ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
27588
27589     MPC5121 rev 2 silicon has a new register for controlling how long
27590     CS is asserted after deassertion of ALE in multiplexed mode.
27591
27592     The default is to assert CS together with ALE.  The alternative
27593     is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
27594
27595     The default is wrong for the NOR flash and CPLD on the ADS5121.
27596
27597     This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
27598     it does so conditionally based on silicon rev 2.0 or greater.
27599
27600     Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
27601     Signed-off-by: John Rigby <jrigby@freescale.com>
27602
27603 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
27604 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27605 Date:   Tue Aug 19 00:56:46 2008 +0600
27606
27607     Add I2C frequency dividers for ColdFire
27608
27609     The existing I2C freqency dividers for FDR does not apply
27610     to ColdFire platforms; thus, a seperate table is added
27611     based on MCF5xxx Reference Manual
27612
27613     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
27614     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27615     Acked-by: Tabi Timur <timur@freescale.com>
27616
27617 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
27618 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27619 Date:   Tue Aug 19 03:01:19 2008 +0600
27620
27621     ColdFire: I2C fix for multiple platforms
27622
27623     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27624
27625 commit d53cf6a9c7423cba668b867978648645f71c3090
27626 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27627 Date:   Tue Aug 19 00:37:13 2008 +0600
27628
27629     ColdFire: Add CONFIG_MII_INIT for M5272C3
27630
27631     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27632
27633 commit f78ced3028d4130b24a318943a70cf5584ab16f4
27634 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27635 Date:   Tue Aug 19 00:26:25 2008 +0600
27636
27637     ColdFire: Multiple fixes for MCF5445x platforms
27638
27639     Add FEC pin set and mii reset in __mii_init(). Change
27640     legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
27641     change cfi_offset to 0, and change CFG_FLASH_CFI to
27642     CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
27643     M54455EVB env settings in configuration file.
27644
27645     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27646
27647 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
27648 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27649 Date:   Fri Aug 15 18:24:25 2008 +0000
27650
27651     ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
27652
27653     The user manuals recommend 7.
27654
27655     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
27656     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27657
27658 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
27659 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27660 Date:   Fri Aug 15 16:50:07 2008 +0000
27661
27662     ColdFire: Raise uart baudrate to 115200 bps
27663
27664     M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
27665     uart baudrate increase from 19200 to 115200 bps
27666
27667     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27668
27669 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
27670 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27671 Date:   Wed Aug 13 12:07:03 2008 +0000
27672
27673     ColdFire: Fix board.c warning message
27674
27675     Implicit declaration of nand_init() warning message
27676
27677     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27678
27679 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
27680 Author: Kumar Gala <galak@kernel.crashing.org>
27681 Date:   Wed Aug 27 01:10:34 2008 -0500
27682
27683     FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
27684
27685     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27686
27687 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
27688 Author: Heiko Schocher <hs@denx.de>
27689 Date:   Thu Aug 21 20:44:49 2008 +0200
27690
27691     mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
27692
27693     Signed-off-by: Heiko Schocher <hs@denx.de>
27694
27695 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
27696 Author: Kumar Gala <galak@kernel.crashing.org>
27697 Date:   Tue Aug 19 14:46:36 2008 -0500
27698
27699     mpc85xx: remove redudant code with lib_ppc/interrupts.c
27700
27701     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
27702     not show how that happened, but there is no good reason for it.
27703
27704     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
27705     they exist.
27706
27707     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27708
27709 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
27710 Author: Kumar Gala <galak@kernel.crashing.org>
27711 Date:   Fri Jul 25 13:31:05 2008 -0500
27712
27713     mpc85xx: Add support for the MPC8536DS reference board
27714
27715     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27716     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
27717     Signed-off-by: Dejan Minic <minic@freescale.com>
27718     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
27719     Signed-off-by: Dave Liu <daveliu@freescale.com>
27720     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27721
27722 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
27723 Author: Kumar Gala <galak@kernel.crashing.org>
27724 Date:   Tue Aug 12 11:14:19 2008 -0500
27725
27726     mpc85xx: Add support for the MPC8536
27727
27728     The MPC8536 Adds SDHC and SATA controllers to the PQ3 family.  We
27729     also have SERDES init code for the 8536.
27730
27731     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27732     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
27733     Signed-off-by: Dejan Minic <minic@freescale.com>
27734     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
27735     Signed-off-by: Dave Liu <daveliu@freescale.com>
27736
27737 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
27738 Author: Kumar Gala <galak@kernel.crashing.org>
27739 Date:   Tue Aug 12 11:13:08 2008 -0500
27740
27741     mpc85xx: Add support for the MPC8572DS reference board
27742
27743     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27744
27745 commit 457caecdbca3df21a93abff19eab12dbc61b7897
27746 Author: Kumar Gala <galak@kernel.crashing.org>
27747 Date:   Wed Aug 27 01:05:35 2008 -0500
27748
27749     FSL DDR: Remove old SPD support from cpu/mpc85xx
27750
27751     All 85xx boards have been converted to the new code so we can
27752     remove the old SPD DDR setup code.
27753
27754     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27755
27756 commit 0e7927db138976469e7257e29c1338050a50fcd9
27757 Author: Kumar Gala <galak@kernel.crashing.org>
27758 Date:   Wed Aug 27 01:04:07 2008 -0500
27759
27760     FSL DDR: Convert STXSSA to new DDR code.
27761
27762     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27763
27764 commit c360d9b970fbb9c13744c355879671165bbb9b9e
27765 Author: Kumar Gala <galak@kernel.crashing.org>
27766 Date:   Wed Aug 27 01:03:42 2008 -0500
27767
27768     FSL DDR: Convert STXGP3 to new DDR code.
27769
27770     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27771
27772 commit 8e55313b7ae12352a343f9b9962e662dbd897187
27773 Author: Kumar Gala <galak@kernel.crashing.org>
27774 Date:   Tue Aug 26 23:52:58 2008 -0500
27775
27776     FSL DDR: Convert SBC8560 to new DDR code.
27777
27778     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27779
27780 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
27781 Author: Kumar Gala <galak@kernel.crashing.org>
27782 Date:   Tue Aug 26 23:52:32 2008 -0500
27783
27784     FSL DDR: Convert MPC8540EVAL to new DDR code.
27785
27786     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27787
27788 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
27789 Author: Kumar Gala <galak@kernel.crashing.org>
27790 Date:   Tue Aug 26 23:52:07 2008 -0500
27791
27792     FSL DDR: Convert PM856 to new DDR code.
27793
27794     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27795
27796 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
27797 Author: Kumar Gala <galak@kernel.crashing.org>
27798 Date:   Tue Aug 26 23:51:49 2008 -0500
27799
27800     FSL DDR: Convert PM854 to new DDR code.
27801
27802     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27803
27804 commit 33b9079ba20926f14238fff863b68a98e938948e
27805 Author: Kumar Gala <galak@kernel.crashing.org>
27806 Date:   Tue Aug 26 23:15:28 2008 -0500
27807
27808     FSL DDR: Convert sbc8548 to new DDR code.
27809
27810     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27811
27812 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
27813 Author: Kumar Gala <galak@kernel.crashing.org>
27814 Date:   Tue Aug 26 23:14:14 2008 -0500
27815
27816     FSL DDR: Convert atum8548 to new DDR code.
27817
27818     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27819
27820 commit be0bd8234b9777ecd63c4c686f72af070d886517
27821 Author: Kumar Gala <galak@kernel.crashing.org>
27822 Date:   Tue Aug 26 22:56:56 2008 -0500
27823
27824     FSL DDR: Convert socrates to new DDR code.
27825
27826     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27827
27828 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
27829 Author: Kumar Gala <galak@kernel.crashing.org>
27830 Date:   Tue Aug 26 08:02:30 2008 -0500
27831
27832     FSL DDR: Convert MPC8544DS to new DDR code.
27833
27834     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27835
27836 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
27837 Author: Jon Loeliger <jdl@freescale.com>
27838 Date:   Tue Mar 18 13:51:05 2008 -0500
27839
27840     FSL DDR: Convert MPC8568MDS to new DDR code.
27841
27842     Signed-off-by: Jon Loeliger <jdl@freescale.com>
27843     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27844
27845 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
27846 Author: Jon Loeliger <jdl@freescale.com>
27847 Date:   Tue Mar 18 13:51:06 2008 -0500
27848
27849     FSL DDR: Convert MPC8548CDS to new DDR code.
27850
27851     Signed-off-by: Jon Loeliger <jdl@freescale.com>
27852     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27853
27854 commit aa11d85cf318b961e029fe50d68ca47d004bce93
27855 Author: Jon Loeliger <jdl@freescale.com>
27856 Date:   Mon Mar 17 15:48:18 2008 -0500
27857
27858     FSL DDR: Convert MPC8541CDS to new DDR code.
27859
27860     Signed-off-by: Jon Loeliger <jdl@freescale.com>
27861     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27862
27863 commit 2b40edb10d81da7bba724edbccd7f53777112579
27864 Author: Jon Loeliger <jdl@freescale.com>
27865 Date:   Tue Mar 18 11:12:42 2008 -0500
27866
27867     FSL DDR: Convert MPC8555ADS to new DDR code.
27868
27869     Signed-off-by: Jon Loeliger <jdl@freescale.com>
27870     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27871
27872 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
27873 Author: Jon Loeliger <jdl@freescale.com>
27874 Date:   Tue Mar 18 11:12:44 2008 -0500
27875
27876     FSL DDR: Convert MPC8560ADS to new DDR code.
27877
27878     Signed-off-by: Jon Loeliger <jdl@freescale.com>
27879     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27880
27881 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
27882 Author: Kumar Gala <galak@kernel.crashing.org>
27883 Date:   Fri Jun 6 13:12:18 2008 -0500
27884
27885     FSL DDR: Convert MPC8540ADS to new DDR code.
27886
27887     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27888
27889 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
27890 Author: Kumar Gala <galak@kernel.crashing.org>
27891 Date:   Tue Aug 26 21:34:55 2008 -0500
27892
27893     FSL DDR: Add 85xx specific register setting
27894
27895     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27896
27897 commit 6fb1b7346849ccd0c20306143e334f5b76143070
27898 Author: Kumar Gala <galak@kernel.crashing.org>
27899 Date:   Mon Jun 9 11:07:46 2008 -0500
27900
27901     FSL DDR: Add e500 TLB helper for DDR code
27902
27903     Provide a helper function that board code can call to map TLBs when
27904     setting up DDR.
27905
27906     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27907
27908 commit d26b739afe5a6760bd345743188759cd9d0f3b47
27909 Author: Andrew Dyer <adyer@righthandtech.com>
27910 Date:   Tue Aug 26 17:03:38 2008 -0500
27911
27912     dm9000 remove dead external phy support, gpio fix
27913
27914     dm9000 has code to detect and initialize external phy parts, but later
27915     on in the code the part is forced to use the internal phy
27916     unconditionally.  Remove the unused/untested code.
27917
27918     change the GPIO initialization so that only the GPIO used as an
27919     internal phy reset (hardwired in the chip) is set as an output.  The
27920     remaining GPIO need to be handled by board specific code to prevent
27921     possible drive conflicts.  Set as inputs for safety.
27922
27923     replace a few magic numbers with defines
27924
27925     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
27926     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27927
27928 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
27929 Author: Peter Tyser <ptyser@xes-inc.com>
27930 Date:   Tue Aug 26 11:17:48 2008 -0500
27931
27932     Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
27933
27934     cmd_net.c command descriptions were updated to describe the optional
27935     hostIPaddr argument.  The dhcp command help message was also updated
27936     to more closely reflect the other commands in cmd_net.c
27937
27938     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
27939     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27940
27941 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
27942 Author: Remy Bohmer <linux@bohmer.net>
27943 Date:   Wed Aug 20 11:30:28 2008 +0200
27944
27945     Fix bogus error message in the DHCP handler
27946
27947     The DHCP handler has 1 state that is not listed in this case, causing a
27948     failure message when there is actually no failure.
27949
27950     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27951     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27952
27953 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
27954 Author: Remy Bohmer <linux@bohmer.net>
27955 Date:   Wed Aug 20 11:30:27 2008 +0200
27956
27957     Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
27958
27959     The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
27960     missing extern inside the net/bootp.h header
27961
27962     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27963     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27964
27965 commit 1803f7f91ff35ca402259065df7557107dcf28a2
27966 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27967 Date:   Tue Aug 19 21:26:32 2008 +0000
27968
27969     ColdFire: Add FEC Buffer descriptors in SRAM
27970
27971     Add FEC Buffer descriptors and data buffer in SRAM for
27972     faster execution and access.
27973
27974     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27975     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27976
27977 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
27978 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27979 Date:   Thu Aug 21 23:55:11 2008 +0000
27980
27981     Fix ColdFire FEC warning messages
27982
27983     Types mismatch and implicit declaration of icache_invalid()
27984     warning messages
27985
27986     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27987     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27988
27989 commit 6a002171098e968bd5b362347d2831224fab6048
27990 Author: Ben Warren <biggerbadderben@gmail.com>
27991 Date:   Sat Jul 12 00:17:50 2008 -0700
27992
27993     Moved initialization of SKGE Ethernet driver to board code.
27994
27995     The only board using this driver is the SL8245 board.
27996     Removed initialization for the driver from net/eth.c
27997
27998     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27999
28000 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
28001 Author: Ben Warren <biggerbadderben@gmail.com>
28002 Date:   Sat Jul 12 00:08:45 2008 -0700
28003
28004     Moved conditional compilation to Makefile for SK98 Ethernet driver
28005
28006     Brute-force removal of #ifdefs.  Didn't touch the code.
28007     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28008
28009 commit 65d3d99c28dc363d15eaee78225ff643df499b97
28010 Author: Ben Warren <biggerbadderben@gmail.com>
28011 Date:   Fri Jul 11 23:42:19 2008 -0700
28012
28013     Moved initialization of ULI526X Ethernet driver to board code.
28014
28015     The only board using this driver is the Freescale MPC8610HPCD board.
28016     Removed initialization for the driver from net/eth.c
28017
28018     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28019
28020 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
28021 Author: Ben Warren <biggerbadderben@gmail.com>
28022 Date:   Fri Jul 11 23:15:28 2008 -0700
28023
28024     Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
28025
28026     Added board_eth_init() function to bf537-stamp board.
28027     Removed initialization for the Blackin EMAC driver from net/eth.c
28028
28029     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28030
28031 commit fc363ce35408f348cacced68505f3747a53e3d7c
28032 Author: Ben Warren <biggerbadderben@gmail.com>
28033 Date:   Wed Jul 9 01:04:19 2008 -0700
28034
28035     Moved initialization of GRETH Ethernet driver to CPU directory
28036
28037     Added a cpu_eth_init() function to leon2/leon3 CPU directories and
28038     removed code from net/eth.c
28039
28040     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28041
28042 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
28043 Author: Ben Warren <biggerbadderben@gmail.com>
28044 Date:   Tue Aug 26 22:16:25 2008 -0700
28045
28046     Moved initialization of MCFFEC Ethernet driver to CPU directory
28047
28048     Added a cpu_eth_init() function to coldfire CPU directories and
28049     removed code from net/eth.c
28050
28051     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28052
28053 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
28054 Author: Ben Warren <biggerbadderben@gmail.com>
28055 Date:   Tue Aug 26 22:12:36 2008 -0700
28056
28057     Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
28058
28059     Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
28060     removed code from net/eth.c
28061
28062     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28063
28064 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
28065 Author: Kumar Gala <galak@kernel.crashing.org>
28066 Date:   Tue Aug 26 15:01:38 2008 -0500
28067
28068     FSL DDR: Remove old SPD support from cpu/mpc86xx
28069
28070     All 86xx boards have been converted to the new code so we can
28071     remove the old SPD DDR setup code.
28072
28073     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28074
28075 commit 9bd4e5911b750837515466bc7449087698b88e0e
28076 Author: Kumar Gala <galak@kernel.crashing.org>
28077 Date:   Tue Aug 26 15:01:37 2008 -0500
28078
28079     FSL DDR: Convert SBC8641D to new DDR code.
28080
28081     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28082
28083 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
28084 Author: Jon Loeliger <jdl@freescale.com>
28085 Date:   Tue Aug 26 15:01:36 2008 -0500
28086
28087     FSL DDR: Convert MPC8610HPCD to new DDR code.
28088
28089     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28090     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28091
28092 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
28093 Author: Kumar Gala <galak@kernel.crashing.org>
28094 Date:   Tue Aug 26 15:01:35 2008 -0500
28095
28096     FSL DDR: Convert MPC8641HPCN to new DDR code.
28097
28098     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28099     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28100
28101 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
28102 Author: Kumar Gala <galak@kernel.crashing.org>
28103 Date:   Tue Aug 26 15:01:34 2008 -0500
28104
28105     FSL DDR: Add 86xx specific register setting
28106
28107     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28108
28109 commit 233fdd502a6c227f476212b3097653ad48d7e254
28110 Author: Kumar Gala <galak@kernel.crashing.org>
28111 Date:   Tue Aug 26 15:01:32 2008 -0500
28112
28113     FSL DDR: Add DDR2 DIMM paramter support
28114
28115     Compute DIMM parameters based upon the SPD information.
28116
28117     Signed-off-by: James Yang <James.Yang@freescale.com>
28118     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28119     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28120
28121 commit 05c05a2363a6ac11e0e405926034546ffad71fad
28122 Author: Kumar Gala <galak@kernel.crashing.org>
28123 Date:   Tue Aug 26 15:01:30 2008 -0500
28124
28125     FSL DDR: Add DDR1 DIMM paramter support
28126
28127     Compute DIMM parameters based upon the SPD information in spd.
28128
28129     Signed-off-by: James Yang <James.Yang@freescale.com>
28130     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28131     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28132
28133 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
28134 Author: Kumar Gala <galak@kernel.crashing.org>
28135 Date:   Tue Aug 26 15:01:29 2008 -0500
28136
28137     FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
28138
28139     The main purpose of this rewrite it to be able to share the same
28140     initialization code on all FSL PowerPC products that have DDR
28141     controllers.  (83xx, 85xx, 86xx).
28142
28143     The code is broken up into the following steps:
28144         GET_SPD
28145         COMPUTE_DIMM_PARMS
28146         COMPUTE_COMMON_PARMS
28147         GATHER_OPTS
28148         ASSIGN_ADDRESSES
28149         COMPUTE_REGS
28150         PROGRAM_REGS
28151
28152     This allows us to share more code an easily allow for board specific code
28153     overrides.
28154
28155     Additionally this code base adds support for >4G of DDR and provides a
28156     foundation for supporting interleaving on processors with more than one
28157     controller.
28158
28159     Signed-off-by: James Yang <James.Yang@freescale.com>
28160     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28161     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28162     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
28163     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28164
28165 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
28166 Author: Kumar Gala <galak@kernel.crashing.org>
28167 Date:   Tue Aug 26 15:01:28 2008 -0500
28168
28169     FSL DDR: Provide a generic set_ddr_laws()
28170
28171     Provide a helper function that will setup the last available
28172     LAWs (upto 2) for DDR.  Useful for SPD/dyanmic DDR setting code.
28173
28174     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28175
28176 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
28177 Author: James Yang <James.Yang@freescale.com>
28178 Date:   Tue Aug 26 15:01:27 2008 -0500
28179
28180     Add proper SPD definitions for DDR1/2/3
28181
28182     Also adds helper functions for DDR1/2 to verify the checksum.
28183
28184     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28185
28186 commit 285db74716c724ae8a0ff177878fd09a74428c7b
28187 Author: Wolfgang Denk <wd@denx.de>
28188 Date:   Wed Aug 27 01:02:48 2008 +0200
28189
28190     Update CHANGELOG
28191
28192     Signed-off-by: Wolfgang Denk <wd@denx.de>
28193
28194 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
28195 Author: Heiko Schocher <hs@denx.de>
28196 Date:   Tue Aug 19 10:08:49 2008 +0200
28197
28198     Add support for muas3001 board (MPC8270)
28199
28200     Signed-off-by: Heiko Schocher <hs@denx.de>
28201
28202 commit 322098bff32410d2a00031649b47c4ec90a66d9a
28203 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
28204 Date:   Tue Aug 19 08:31:18 2008 +0530
28205
28206     common/cmd_load.c cleanup - remove unused variables
28207
28208     - Remove unused global variable os_data_count.
28209     - Remove unused variable z.
28210
28211     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
28212
28213 commit 306620b762a4f9fa6678568ad2e8772dec145208
28214 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
28215 Date:   Mon Aug 18 13:35:27 2008 +0200
28216
28217     remove MVS1 board
28218
28219     MVS1 board has reached end-of-life and can be removed completely.
28220
28221     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
28222
28223 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
28224 Author: Kumar Gala <galak@kernel.crashing.org>
28225 Date:   Fri Aug 15 08:24:45 2008 -0500
28226
28227     bootm: refactor do_reset and os boot function args
28228
28229     There is no need for each OS specific function to call do_reset() we
28230     can just do it once in bootm. This means its feasible on an error for
28231     the OS boot function to return.
28232
28233     Also, remove passing in cmd_tbl_t as its not needed by the OS boot
28234     functions.  flag isn't currently used but might be in the future so
28235     we left it alone.
28236
28237     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28238
28239 commit 40afac22a9c602e55c501c800f1c064324711b56
28240 Author: Kumar Gala <galak@kernel.crashing.org>
28241 Date:   Fri Aug 15 08:24:44 2008 -0500
28242
28243     fdt: Added resize command
28244
28245     Resize the fdt to size + padding to 4k boundary
28246
28247     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28248
28249 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
28250 Author: Kumar Gala <galak@kernel.crashing.org>
28251 Date:   Fri Aug 15 08:24:43 2008 -0500
28252
28253     fdt: refactor initrd related code
28254
28255     Created a new fdt_initrd() to deal with setting the initrd properties
28256     in the device tree and fixing up the mem reserve.  We can use this
28257     both in the choosen node handling and lets us remove some duplicated
28258     code when we fixup the initrd info in bootm on PPC.
28259
28260     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28261
28262 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
28263 Author: Kumar Gala <galak@kernel.crashing.org>
28264 Date:   Fri Aug 15 08:24:42 2008 -0500
28265
28266     fdt: refactor fdt resize code
28267
28268     Move the fdt resizing code out of ppc specific boot code and into
28269     common fdt support code.
28270
28271     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28272
28273 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
28274 Author: Kumar Gala <galak@kernel.crashing.org>
28275 Date:   Fri Aug 15 08:24:41 2008 -0500
28276
28277     bootm: refactor image detection and os load steps
28278
28279     Created a bootm_start() that handles the parsing and detection of all
28280     the images that will be used by the bootm command (OS, ramdisk, fdt).
28281     As part of this we now tract all the relevant image offsets in the
28282     bootm_headers_t struct. This will allow us to have all the needed
28283     state for future sub-commands and lets us reduce a bit of arch
28284     specific code on SPARC.
28285
28286     Created a bootm_load_os() that deals with decompression and loading
28287     the OS image.
28288
28289     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28290
28291 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
28292 Author: Kumar Gala <galak@kernel.crashing.org>
28293 Date:   Fri Aug 15 08:24:40 2008 -0500
28294
28295     bootm: move lmb into the bootm_headers_t structure
28296
28297     To allow for persistent state between future bootm subcommands we
28298     need the lmb to exist in a global state.
28299     Moving it into the bootm_headers_t allows us to do that.
28300
28301     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28302
28303 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
28304 Author: Kumar Gala <galak@kernel.crashing.org>
28305 Date:   Fri Aug 15 08:24:39 2008 -0500
28306
28307     bootm: Set working fdt address as part of the bootm flow
28308
28309     Set the fdt working address so "fdt FOO" commands can be used as part
28310     of the bootm flow.  Also set an the environment variable "fdtaddr"
28311     with the value.
28312
28313     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28314
28315 commit 06a09918f3903450313e2047a9cc258bf5872f46
28316 Author: Kumar Gala <galak@kernel.crashing.org>
28317 Date:   Fri Aug 15 08:24:38 2008 -0500
28318
28319     bootm: refactor fdt locating and relocation code
28320
28321     Move the code that handles finding a device tree blob and relocating
28322     it (if needed) into common code so all arch's have access to it.
28323
28324     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28325
28326 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
28327 Author: Kumar Gala <galak@kernel.crashing.org>
28328 Date:   Fri Aug 15 08:24:37 2008 -0500
28329
28330     bootm: refactor ramdisk locating code
28331
28332     Move determing if we have a ramdisk and where its located into the
28333     common code. Keep track of the ramdisk start and end in the
28334     bootm_headers_t image struct.
28335
28336     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28337
28338 commit c160a9544743e80e8889edb2275538e7764ce334
28339 Author: Kumar Gala <galak@kernel.crashing.org>
28340 Date:   Fri Aug 15 08:24:36 2008 -0500
28341
28342     bootm: refactor entry point code
28343
28344     Move entry point code out of each arch and into common code.
28345     Keep the entry point in the bootm_headers_t images struct.
28346
28347     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28348
28349 commit 20220d22b9f41446288588cd2e457e0077a18bed
28350 Author: Randy Vinson <rvinson@mvista.com>
28351 Date:   Wed Aug 13 11:44:57 2008 -0700
28352
28353     mpc7448hpc2: Fix PCI I/O space mapping.
28354
28355     PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
28356     PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
28357     space such that 0xFA000000 in the processor's address space maps to 0
28358     on the PCI I/O bus.
28359
28360     Signed-off-by Randy Vinson <rvinson@mvista.com>
28361     Acked-by: Roy Zang <tie-fei.zang@freescale.com>
28362
28363 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
28364 Author: Guennadi Liakhovetski <lg@denx.de>
28365 Date:   Wed Aug 13 18:10:26 2008 +0200
28366
28367     i.MX31: Specify maintainers for i.MX31-based boards
28368
28369     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28370     Signed-off-by: Wolfgang Denk <wd@denx.de>
28371
28372 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
28373 Author: Wolfgang Denk <wd@denx.de>
28374 Date:   Tue Aug 26 15:01:28 2008 +0200
28375
28376     ADS5121: adjust image addresses in RAM and flash
28377
28378     Use the same mapping in flash as used by Linux
28379
28380     Signed-off-by: Wolfgang Denk <wd@denx.de>
28381
28382 commit 19f101412c16edee9fd55db4039e1d68a833b28b
28383 Author: Wolfgang Denk <wd@denx.de>
28384 Date:   Tue Aug 26 13:14:34 2008 +0200
28385
28386     cmd_mem.c: Fix help message alignment
28387
28388     Bug was introced by "Big white-space cleanup" (53677ef1)
28389
28390     Signed-off-by: Wolfgang Denk <wd@denx.de>
28391
28392 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
28393 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
28394 Date:   Wed Aug 20 11:11:52 2008 +0200
28395
28396     change mvBL-M7 default env and move to vendor subdir
28397
28398     fix mvBL-M7 config and move to matrix_vision subdir
28399
28400     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
28401     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28402
28403 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
28404 Author: Nick Spence <nick.spence@freescale.com>
28405 Date:   Fri Aug 22 23:52:40 2008 -0700
28406
28407     MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
28408
28409     This patch adds elements to the 83xx sysconf structure and #define values that are used
28410     by mpc83xx family devices.
28411
28412     Signed-off-by: Nick Spence <nick.spence@freescale.com>
28413     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28414
28415 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
28416 Author: Ira W. Snyder <iws@ovro.caltech.edu>
28417 Date:   Fri Aug 22 11:00:15 2008 -0700
28418
28419     MPC8349EMDS: Add PCI Agent (PCISLAVE) support
28420
28421     Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
28422     PCI card rather than a host computer.
28423
28424     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
28425     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28426
28427 commit 4ff9aea9d6b5602683a920951ef896996438af62
28428 Author: Ira W. Snyder <iws@ovro.caltech.edu>
28429 Date:   Fri Aug 22 11:00:14 2008 -0700
28430
28431     mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
28432
28433     This adds a helper function to unlock the PCI configuration bit, so that
28434     any extra PCI setup (such as outbound windows, etc.) can be done after
28435     using the 83XX_GENERIC_PCI code to set up the PCI bus.
28436
28437     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
28438     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28439
28440 commit 162338e1fcde231ca4d562e5ebd7859456731691
28441 Author: Ira W. Snyder <iws@ovro.caltech.edu>
28442 Date:   Fri Aug 22 11:00:13 2008 -0700
28443
28444     MPC8349EMDS: use 83XX_GENERIC_PCI setup code
28445
28446     Change the MPC8349EMDS board to use the generic PCI initialization code
28447     for the mpc83xx cpu.
28448
28449     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
28450     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28451
28452 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
28453 Author: Kim Phillips <kim.phillips@freescale.com>
28454 Date:   Mon Aug 25 14:53:09 2008 -0500
28455
28456     fix out of tree building
28457
28458     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28459
28460 commit a49d10cf027d059ee15c262010a05cdaec0961e1
28461 Author: Wolfgang Denk <wd@denx.de>
28462 Date:   Mon Aug 25 23:45:41 2008 +0200
28463
28464     Minor coding style cleanup, updte CHANGELOG
28465
28466     Signed-off-by: Wolfgang Denk <wd@denx.de>
28467
28468 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
28469 Author: Stefan Roese <sr@denx.de>
28470 Date:   Wed Aug 20 20:29:38 2008 +0200
28471
28472     RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
28473
28474     This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
28475     to combine both config options into one line. This even allows defining
28476     both options and not generating the target object twice.
28477
28478     Signed-off-by: Stefan Roese <sr@denx.de>
28479
28480 commit 079edb913dbae147b50a488cf02e03f473fc5f28
28481 Author: Jens Gehrlein <sew_s@tqs.de>
28482 Date:   Fri Jul 4 16:50:05 2008 +0200
28483
28484     MX31: fix bit masks in function mx31_decode_pll()
28485
28486     Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
28487
28488     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
28489
28490 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
28491 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
28492 Date:   Mon Aug 25 11:11:34 2008 +0200
28493
28494     Correct ARM Versatile Timer Initialization
28495
28496      - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
28497        -- Timer Value Register @ TIMER Base + 4 is Read-only.
28498        -- Prescale Value (Bits 3-2 of TIMER Control register)
28499         can only be one of 00,01,10. 11 is undefined.
28500        -- CFG_HZ for Versatile board is set to
28501         #define CFG_HZ          (1000000 / 256)
28502         So Prescale bits is set to indicate
28503         - 8 Stages of Prescale, Clock divided by 256
28504      - The Timer Control Register has one Undefined/Shouldn't Use Bit
28505        So we should do read/modify/write Operation
28506
28507     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
28508
28509 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
28510 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
28511 Date:   Mon Aug 25 11:30:29 2008 +0200
28512
28513     Add ARM AMBA PL031 RTC Support
28514
28515     Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
28516
28517 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
28518 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
28519 Date:   Tue Aug 19 16:21:03 2008 -0400
28520
28521     ARM DaVinci: Removed redundant NAND initialization code.
28522
28523     ARM DaVinci: Removed redundant NAND initialization code.
28524
28525     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
28526
28527 commit b3fb663b20d995ca41327db877ddb168279b3f62
28528 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
28529 Date:   Tue Aug 19 16:21:00 2008 -0400
28530
28531     ARM DaVinci: Fix compilation error with new MTD code.
28532
28533     ARM DaVinci: Fix compilation error with new MTD code.
28534
28535     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
28536
28537 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
28538 Author: Gerald Van Baren <vanbaren@cideas.com>
28539 Date:   Fri Aug 22 14:37:05 2008 -0400
28540
28541     Add note on dereferencing /aliases pointers
28542
28543     Replace the "must quote special characters" note with a hint on
28544     how to dereference /aliases pointers by omitting the leading "/".
28545     This feature was introduced by Kumar Gala as a libfdt enhancement
28546     in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
28547
28548     Example:
28549
28550     => fdt print /aliases
28551     aliases {
28552             ethernet0 = "/qe@e0100000/ucc@2000";
28553             ethernet1 = "/qe@e0100000/ucc@3000";
28554             serial0 = "/soc8360@e0000000/serial@4500";
28555             serial1 = "/soc8360@e0000000/serial@4600";
28556             pci0 = "/pci@e0008500";
28557     };
28558     => fdt print ethernet0
28559     ucc@2000 {
28560             device_type = "network";
28561             compatible = "ucc_geth";
28562             cell-index = <0x1>;
28563             reg = <0x2000 0x200>;
28564             interrupts = <0x20>;
28565             interrupt-parent = <0x2>;
28566             local-mac-address = [00 00 00 00 00 00];
28567             rx-clock-name = "none";
28568             tx-clock-name = "clk9";
28569             phy-handle = <0x3>;
28570             phy-connection-type = "rgmii-id";
28571             pio-handle = <0x4>;
28572     };
28573
28574     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
28575
28576 commit feeca3f578b7f53c032ba203698751c982f8bf5a
28577 Author: Kumar Gala <galak@kernel.crashing.org>
28578 Date:   Thu Aug 14 08:28:19 2008 -0500
28579
28580     libfdt: Add support for using aliases in fdt_path_offset()
28581
28582     If the path doesn't start with '/' check to see if it matches some alias
28583     under "/aliases" and substitute the matching alias value in the path
28584     and retry the lookup.
28585
28586     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28587     Acked-by: David Gibson <david@gibson.dropbear.id.au>
28588     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
28589
28590 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
28591 Author: David Gibson <david@gibson.dropbear.id.au>
28592 Date:   Wed Aug 6 14:50:49 2008 +1000
28593
28594     libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
28595
28596     As well as fdt_subnode_offset(), libfdt includes an
28597     fdt_subnode_offset_namelen() function that takes the subnode name to
28598     look up not as a NUL-terminated string, but as a string with an
28599     explicit length.  This can be useful when the caller has the name as
28600     part of a longer string, such as a full path.
28601
28602     However, we don't have corresponding 'namelen' versions for
28603     fdt_get_property() and fdt_getprop().  There are less obvious use
28604     cases for these variants on property names, but there are
28605     circumstances where they can be useful e.g. looking up property names
28606     which need to be parsed from a longer string buffer such as user input
28607     or a configuration file, or looking up an alias in a path with
28608     IEEE1275 style aliases.
28609
28610     So, since it's very easy to implement such variants, this patch does
28611     so.  The original NUL-terminated variants are, of course, implemented
28612     in terms of the namelen versions.
28613
28614     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
28615
28616 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
28617 Author: David Gibson <david@gibson.dropbear.id.au>
28618 Date:   Tue Jul 29 14:51:22 2008 +1000
28619
28620     libfdt: Forgot one function when cleaning the namespace
28621
28622     In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
28623     libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
28624     chance of collisions with things from whatever package libfdt is
28625     embedded in, pulled into the libfdt build via that environment's
28626     libfdt_env.h.
28627
28628     Except... I missed one.  This patch applies the same treatment to
28629     _stringlist_contains().  While we're at it, also make it static since
28630     it's only used in the same file.
28631
28632     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
28633
28634 commit 46390da15411351fc3b498bd8c1615f78fe80df0
28635 Author: Wolfram Sang <w.sang@pengutronix.de>
28636 Date:   Wed Jul 9 11:22:44 2008 +0200
28637
28638     libfdt: Improve documentation in libfdt.h
28639
28640     Fix a few typos and mistakes.
28641
28642     Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
28643     Acked-by: David Gibson <david@gibson.dropbear.id.au>
28644
28645 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
28646 Author: David Gibson <david@gibson.dropbear.id.au>
28647 Date:   Wed Jul 9 14:10:24 2008 +1000
28648
28649     libfdt: Increase namespace-pollution paranoia
28650
28651     libfdt is supposed to easy to embed in projects all and sundry.
28652     Often, it won't be practical to separate the embedded libfdt's
28653     namespace from that of the surrounding project.  Which means there can
28654     be namespace conflicts between even libfdt's internal/static functions
28655     and functions or macros coming from the surrounding project's headers
28656     via libfdt_env.h.
28657
28658     This patch, therefore, renames a bunch of libfdt internal functions
28659     and macros and makes a few other chances to reduce the chances of
28660     namespace collisions with embedding projects.  Specifically:
28661         - Internal functions (even static ones) are now named _fdt_*()
28662
28663         - The type and (static) global for the error table in
28664               fdt_strerror() gain an fdt_ prefix
28665
28666         - The unused macro PALIGN is removed
28667
28668         - The memeq and streq macros are removed and open-coded in the
28669               users (they were only used once each)
28670
28671         - Other macros gain an FDT_ prefix
28672
28673         - To save some of the bulk from the previous change, an
28674               FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
28675               FDT_ALIGN(x, FDT_TAGSIZE)
28676
28677     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
28678
28679 commit c66830263af19831f2b7db307f79d1943febf7f9
28680 Author: David Gibson <david@gibson.dropbear.id.au>
28681 Date:   Mon Jul 7 10:14:15 2008 +1000
28682
28683     dtc: Enable and fix -Wcast-qual warnings
28684
28685     Enabling -Wcast-qual warnings in dtc shows up a number of places where
28686     we are incorrectly discarding a const qualification.  There are also
28687     some places where we are intentionally discarding the 'const', and we
28688     need an ugly cast through uintptr_t to suppress the warning.  However,
28689     most of these are pretty well isolated with the *_w() functions.  So
28690     in the interests of maximum safety with const qualifications, this
28691     patch enables the warnings and fixes the existing complaints.
28692
28693     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
28694     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
28695
28696 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
28697 Author: David Gibson <david@gibson.dropbear.id.au>
28698 Date:   Mon Jul 7 10:10:48 2008 +1000
28699
28700     dtc: Enable and fix -Wpointer-arith warnings
28701
28702     This patch turns on the -Wpointer-arith option in the dtc Makefile,
28703     and fixes the resulting warnings due to using (void *) in pointer
28704     arithmetic.  While convenient, pointer arithmetic on void * is not
28705     portable, so it's better that we avoid it, particularly in libfdt.
28706
28707     Also add necessary definition of uintptr_t needed by David Gibson's
28708     changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
28709     comes from stdint.h, which u-boot doesn't have). -- gvb
28710
28711     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
28712     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
28713
28714 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
28715 Author: Tirumala R Marri <tmarri@amcc.com>
28716 Date:   Thu Aug 21 21:54:53 2008 -0700
28717
28718     ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
28719
28720     During recent PCI-E tests it has been found that current
28721     driverl level and de-emphasis values are not set correctly.
28722     After sweeping throgh all de-ephasis values, it was found that
28723     0x130 is a right value. Where 0x13 is driver level and 0 is
28724     de-emphasis.
28725
28726     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
28727     Signed-off-by: Stefan Roese <sr@denx.de>
28728
28729 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
28730 Author: Remy Bohmer <linux@bohmer.net>
28731 Date:   Wed Aug 20 20:46:56 2008 +0200
28732
28733     Make the YAFFS filesystem work
28734
28735     Recently the YAFFS filesystem support has been added to U-boot.
28736     However, just enabling CONFIG_YAFFS2 is not enough to get it working.
28737
28738     ymount will generate an exception (when dereferencing mtd->readoob()), because
28739     the genericDevice is a null pointer. Further, a lot of logging is produced
28740     while using YAFFS fs, so logging should also be disabled.
28741     Both issues are solved by this patch.
28742
28743     With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
28744     in U-boot, as well as in Linux.
28745
28746     Tested on a Atmel AT91SAM9261EK board.
28747
28748     Signed-off-by: Remy Bohmer <linux@bohmer.net>
28749     Acked-by: William Juul <william.juul@tandberg.com>
28750     Signed-off-by: Scott Wood <scottwood@freescale.com>
28751
28752 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
28753 Author: Kyungmin Park <kmpark@infradead.org>
28754 Date:   Tue Aug 19 08:42:53 2008 +0900
28755
28756     Fix OneNAND read_oob/write_oob functions compatability
28757
28758     Also sync with kernel OneNAND codes
28759
28760     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
28761     Signed-off-by: Scott Wood <scottwood@freescale.com>
28762
28763 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
28764 Author: Scott Wood <scottwood@freescale.com>
28765 Date:   Mon Aug 18 17:11:20 2008 -0500
28766
28767     NAND: Remove delay from nand_boot_fsl_elbc.c.
28768
28769     It was for debugging purposes, and shouldn't have been left in.
28770
28771     Signed-off-by: Scott Wood <scottwood@freescale.com>
28772
28773 commit f556483734126793522fb7a8cf36af90da78f084
28774 Author: Stefan Roese <sr@denx.de>
28775 Date:   Thu Aug 21 11:05:03 2008 +0200
28776
28777     ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
28778
28779     This patch fixes some minor issues introduced with the patch:
28780     ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
28781
28782     - Rework memory-queue and PLB arbiter optimization code, that the
28783       local variable is not needed anymore. This removes one #ifdef.
28784     - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
28785       of XXX+ 0x01). This was not introduced by Prodyut, just a
28786       copy-paste problem.
28787
28788     Signed-off-by: Stefan Roese <sr@denx.de>
28789
28790 commit 079589bcfb24ba11068460276a3cc9549ab5346f
28791 Author: Prodyut  Hazarika <phazarika@amcc.com>
28792 Date:   Wed Aug 20 09:38:51 2008 -0700
28793
28794     ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
28795         PPC405EX and PPC460EX/GT/SX
28796
28797     - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
28798       processors
28799     - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
28800       across processors (405 and 440/460)
28801     - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
28802       processors
28803     - Add register bit definitions for Memory Queue Configuration registers
28804
28805     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
28806     Signed-off-by: Stefan Roese <sr@denx.de>
28807
28808 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
28809 Author: Kumar Gala <galak@kernel.crashing.org>
28810 Date:   Tue Aug 19 15:41:18 2008 -0500
28811
28812     fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
28813
28814     Move to using the environment variables 'ethaddr', 'eth1addr', etc..
28815     instead of bd->bi_enetaddr, bi_enet1addr, etc.
28816
28817     This makes the code a bit more flexible to the number of ethernet
28818     interfaces.
28819
28820     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28821
28822 commit 4cacf7c64609839f809e2f9c45873f1d65861703
28823 Author: Stefan Roese <sr@denx.de>
28824 Date:   Tue Aug 19 14:57:55 2008 +0200
28825
28826     hush: Fix printf debug macro in hush.c so that it usable in U-Boot
28827
28828     This patch changes the debug_printf() marco for U-Boot in hush.c and
28829     moves the definition of DEBUG_SHELL to a place that is actually compiled
28830     under U-Boot.
28831
28832     Signed-off-by: Stefan Roese <sr@denx.de>
28833
28834 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
28835 Author: Heiko Schocher <hs@denx.de>
28836 Date:   Tue Aug 19 09:57:41 2008 +0200
28837
28838     cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
28839
28840     Commit      00b1883a4cac59d97cd297b1a3a398db85982865
28841     missed a few boards:
28842         include/configs/M5253DEMO.h
28843         include/configs/ml507.h
28844         include/configs/redwood.h
28845
28846     This patch fixes this.
28847
28848     Signed-off-by: Heiko Schocher <hs@denx.de>
28849
28850 commit 0768b7a872964085eece8d5e9fec9175e9deb161
28851 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28852 Date:   Mon Aug 18 13:41:27 2008 +0200
28853
28854     Consolidate strmhz() implementation
28855
28856     ARM, i386, m68k and ppc all have identical implementations of strmhz().
28857     Other architectures don't provide this function at all.
28858
28859     This patch moves strmhz() into lib_generic, reducing code duplication
28860     and providing a more unified API across architectures.
28861
28862     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28863
28864 commit a928d0df211f1d829308d335d19be3ca42558dfc
28865 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
28866 Date:   Mon Aug 18 12:02:51 2008 +0200
28867
28868     fix mvbc_p board build warnings
28869
28870     fix build warnings @ mvBC-P board by using correct types, i.e. change
28871     out_be32 to out_be16 and out_8 accordingly.
28872
28873     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
28874
28875 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
28876 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28877 Date:   Sat Aug 16 18:54:27 2008 +0200
28878
28879     Makefile: fix posix support on find
28880
28881     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28882
28883 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
28884 Author: Axel Beierlein <belatronix@web.de>
28885 Date:   Sat Aug 16 00:30:48 2008 +0200
28886
28887     Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
28888
28889     Tested with TQM5200S on STK52XX.200 Board
28890
28891     Signed-off-by: Axel Beierlein <belatronix@web.de>
28892
28893 commit 0800707b6d5041a840a65d556032c15c584b55f8
28894 Author: Peter Tyser <ptyser@xes-inc.com>
28895 Date:   Fri Aug 15 14:36:32 2008 -0500
28896
28897     mod_i2c_mem() bugfix
28898
28899     The last used chip, address, and address length were not being
28900     stored for the imm and imn commands.
28901
28902     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28903
28904 commit 4afbef967275b2f636abae86f91b81becee7ad03
28905 Author: Steven A. Falco <sfalco@harris.com>
28906 Date:   Fri Aug 15 15:37:31 2008 -0400
28907
28908     Fix typo in spelling of ATAPI.
28909
28910     Correct a small spelling mistake.
28911
28912     Signed-off-by: Steven A. Falco <sfalco@harris.com>
28913
28914 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
28915 Author: Steven A. Falco <sfalco@harris.com>
28916 Date:   Fri Aug 15 15:34:10 2008 -0400
28917
28918     Add a hook to allow board-specific PIO mode setting.
28919
28920     This patch adds a hook whereby a board-specific routine can be called to
28921     configure hardware for a PIO mode.  The prototype for the board-specific
28922     routine is:
28923
28924         int inline ide_set_piomode(int pio_mode)
28925
28926     ide_set_piomode should be prepared to configure hardware for a pio_mode
28927     between 0 and 6, inclusive.  It should return 0 on success or 1 on failure.
28928
28929     Signed-off-by: Steven A. Falco <sfalco@harris.com>
28930
28931 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
28932 Author: Steven A. Falco <sfalco@harris.com>
28933 Date:   Fri Aug 15 15:29:12 2008 -0400
28934
28935     Replace enums in ata.h with an include of libata.h
28936
28937     This patch removes some enums from ata.h and replaces them with an
28938     include of libata.h.  This way, we eliminate duplicated code, and
28939     prevent errors whereby the different versions could be out of sync.
28940
28941     Signed-off-by: Steven A. Falco <sfalco@harris.com>
28942
28943 commit 0de0afbca865ecf482b4d2b635236746def8518f
28944 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28945 Date:   Fri Aug 15 18:32:41 2008 +0200
28946
28947     coldfire: fix CFI drivers activation with new macro
28948
28949     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
28950
28951     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28952
28953 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
28954 Author: Kumar Gala <galak@kernel.crashing.org>
28955 Date:   Fri Aug 15 08:24:35 2008 -0500
28956
28957     fdt: fdt addr w/o any args reports back the current working address
28958
28959     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28960
28961 commit f953d99fd528a496b400a706b511eaf8e3ea66af
28962 Author: Kumar Gala <galak@kernel.crashing.org>
28963 Date:   Fri Aug 15 08:24:34 2008 -0500
28964
28965     fdt: added the ability to set initrd start/end via chosen command
28966
28967     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28968
28969 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
28970 Author: Kumar Gala <galak@kernel.crashing.org>
28971 Date:   Fri Aug 15 08:24:33 2008 -0500
28972
28973     Add command to enable/disable interrupts
28974
28975     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28976
28977 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
28978 Author: Nick Spence <nick.spence@freescale.com>
28979 Date:   Tue Aug 19 22:21:16 2008 -0700
28980
28981     CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
28982
28983     This patch fixes a missing vendor code in the flash_real_protect() function.
28984
28985     Signed-off-by: Nick Spence <nick.spence@freescale.com>
28986     Signed-off-by: Stefan Roese <sr@denx.de>
28987
28988 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
28989 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28990 Date:   Tue Aug 19 16:53:39 2008 +0000
28991
28992     CFI: Fix AMD Legacy sector protect
28993
28994     New implement sector lock and unlock or softlock commands
28995     do not exist in AMD legacy flash. Thus, causing issue
28996     when erasing AMD legacy flash (such as lv040)
28997
28998     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28999     Signed-off-by: Stefan Roese <sr@denx.de>
29000
29001 commit 492671404140f09d5b21b3d2ce4e362c0692c069
29002 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29003 Date:   Wed Aug 20 09:40:16 2008 +0200
29004
29005     hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
29006
29007     CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
29008
29009     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29010
29011 commit 33eac2b3d946fc998a09245dfe54d017079b9056
29012 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29013 Date:   Wed Aug 20 09:28:36 2008 +0200
29014
29015     hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
29016
29017     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29018
29019 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
29020 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29021 Date:   Wed Aug 20 09:27:37 2008 +0200
29022
29023     favr-32-ezkit: Fix printf format warnings
29024
29025     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29026
29027 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
29028 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29029 Date:   Fri Aug 15 12:04:25 2008 +0200
29030
29031     MAINTAINERS: Sort avr32 section alphabetically
29032
29033     The rest of the MAINTAINERS file appears to be sorted
29034     almost-alphabetically, but entries for the newly added AVR32 boards were
29035     added somewhat randomly. This patch sorts the list alphabetically again.
29036
29037     Also update my e-mail address. The old one still works, but it may not
29038     work forever.
29039
29040     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29041
29042 commit 13b50fe3bc065c48911fa373231421280855a9d6
29043 Author: Mark Jackson <mpfj@mimc.co.uk>
29044 Date:   Wed Jul 30 13:07:27 2008 +0100
29045
29046     avr32: Add MIMC200 board
29047
29048     The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
29049     8MByte FLASH and 128KByte FRAM.
29050
29051     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
29052     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29053
29054 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
29055 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29056 Date:   Wed Jul 9 21:07:34 2008 +0900
29057
29058     rtl8169: add support for RTL8110SCL
29059
29060     This patch fixes a problem that RTL8110SCL started transfer
29061     with an incorrect memory address.
29062
29063     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29064     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29065
29066 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
29067 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29068 Date:   Wed Jun 25 15:48:52 2008 -0500
29069
29070     Fix dm9000 receive status and len little endian issue
29071
29072     The received status and len was in little endian
29073     format and caused the ethernet unable to proceed
29074     further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
29075
29076     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29077     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29078
29079 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
29080 Author: Kumar Gala <galak@kernel.crashing.org>
29081 Date:   Fri Aug 15 08:24:32 2008 -0500
29082
29083     Clean up usage of icache_disable/dcache_disable
29084
29085     There is no point in disabling the icache on 7xx/74xx/86xx parts and not
29086     also flushing the icache.  All callers of invalidate_l1_instruction_cache()
29087     call icache_disable() right after.  Make it so icache_disable() calls
29088     invalidate_l1_instruction_cache() for us.
29089
29090     Also, dcache_disable() already calls dcache_flush() so there is no point
29091     in the explicit calls of dcache_flush().
29092
29093     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29094
29095 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
29096 Author: Kumar Gala <galak@kernel.crashing.org>
29097 Date:   Fri Aug 15 08:24:31 2008 -0500
29098
29099     Update linux bootm to support ePAPR client interface
29100
29101     The ePAPR spec has some subtle differences from the current device
29102     tree based boot interface to the powerpc linux kernel. The powerpc
29103     linux kernel currently ignores the differences that ePAPR specifies.
29104
29105     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29106
29107 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
29108 Author: Wolfgang Denk <wd@denx.de>
29109 Date:   Mon Aug 18 23:50:20 2008 +0200
29110
29111     Minor code cleanup: keep lists sorted.
29112
29113     Signed-off-by: Wolfgang Denk <wd@denx.de>
29114
29115 commit d0039d4ed275e6ca09fb417895024ad02be118c4
29116 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
29117 Date:   Wed Jul 23 19:10:14 2008 +0200
29118
29119     Add support for ADT7460 I2C monitor chip
29120
29121     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
29122
29123 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
29124 Author: Michal Simek <monstr@monstr.eu>
29125 Date:   Mon Jul 14 19:45:45 2008 +0200
29126
29127     video: Clean drivers/video/Makefile
29128
29129     Signed-off-by: Michal Simek <monstr@monstr.eu>
29130
29131 commit 871c18dd301752270e1f74328c846c3104be1e2e
29132 Author: Michal Simek <monstr@monstr.eu>
29133 Date:   Mon Jul 14 19:45:37 2008 +0200
29134
29135     rtc: Clean drivers/rtc/Makefile
29136
29137     Signed-off-by: Michal Simek <monstr@monstr.eu>
29138
29139 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
29140 Author: Michal Simek <monstr@monstr.eu>
29141 Date:   Mon Jul 14 19:45:35 2008 +0200
29142
29143     i2c: Clean drivers/i2c/ Makefile
29144
29145     Signed-off-by: Michal Simek <monstr@monstr.eu>
29146
29147 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
29148 Author: Harald Welte <laforge@openmoko.org>
29149 Date:   Wed Jul 9 22:30:30 2008 +0800
29150
29151     Add 'license' command to U-Boot command line
29152
29153     The 'license' command includes the U-Boot license (GPLv2) into the
29154     actual bootloader binary. The license text can be shown interactively
29155     at the U-Boot commandline.
29156
29157     For products where the commandline can actually be accessed by the
29158     end user, this helps to prevent inadvertent GPL violations, since the
29159     GPLv2 license text can no longer be 'forgotten' to be included into
29160     the product.
29161
29162     The 'license' command can be enabled by CONFIG_CMD_LICENSE.
29163
29164     Signed-off-by: Harald Welte <laforge@openmoko.org>
29165
29166 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
29167 Author: Harald Welte <laforge@gnumonks.org>
29168 Date:   Sun Jul 6 15:56:38 2008 +0800
29169
29170     add 'unzip' command to u-boot commandline
29171
29172     [PATCH] add new 'unzip' command to u-boot commandline
29173
29174     common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
29175     memory to memory, and option CONFIG_CMD_UNZIP to enable it
29176
29177     Signed-off-by: Werner Almesberger <werner@openmoko.org>
29178     Signed-off-by: Harald Welte <laforge@openmoko.org>
29179
29180 commit 07efc9e321619c3dec213310c32e011aa6f02783
29181 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29182 Date:   Wed Aug 6 19:37:17 2008 -0500
29183
29184     Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
29185
29186     The CFG_ENV_SIZE is not suitable used for SPI flash erase
29187     sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
29188     Add condition check if CFG_ENV_SIZE is larger than
29189     CFG_ENV_SECT_SIZE, calculate the right number of sectors for
29190     erasing.
29191
29192     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29193
29194 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
29195 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29196 Date:   Mon Aug 11 15:54:25 2008 +0000
29197
29198     ColdFire: Multiple fixes for M5282EVB
29199
29200     Incorrect CFG_HZ value, change 1000000 to 1000.
29201     Rename #waring to #warning. RAMBAR1 uses twice
29202     in start.S, rename the later to FLASHBAR. Insert
29203     nop for DRAM setup. And, env_offset in linker file.
29204
29205     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29206
29207 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
29208 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29209 Date:   Mon Aug 11 15:26:43 2008 +0000
29210
29211     ColdFire: Move m5282evb from board to board/freescale
29212
29213     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29214
29215 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
29216 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29217 Date:   Mon Aug 11 15:25:07 2008 +0000
29218
29219     ColdFire: Move m5272c3 from board to board/freescale
29220
29221     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29222
29223 commit 659e9bad629a480f606b286d5703aef7159edf98
29224 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29225 Date:   Mon Aug 11 15:23:16 2008 +0000
29226
29227     ColdFire: Move m5271evb from board to board/freescale
29228
29229     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29230
29231 commit 05316f8ece8206339a208ec052f039cd0f7ca922
29232 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29233 Date:   Mon Aug 11 13:41:49 2008 +0000
29234
29235     ColdFire: Add M54451EVB platform support for MCF5445x
29236
29237     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29238
29239 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
29240 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29241 Date:   Wed Aug 6 19:14:08 2008 -0500
29242
29243     ColdFire: Add Serial Flash support for M54455EVB
29244
29245     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29246
29247 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
29248 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29249 Date:   Wed Jul 23 20:38:53 2008 -0500
29250
29251     ColdFire: Implement SBF feature for M5445EVB
29252
29253     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29254
29255 commit a7323bba229203aae2604afde131ab47bad4eadc
29256 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29257 Date:   Wed Jul 23 17:53:36 2008 -0500
29258
29259     ColdFire: Add SSPI feature for MCF5445x
29260
29261     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29262
29263 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
29264 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29265 Date:   Wed Jul 23 17:37:10 2008 -0500
29266
29267     ColdFire: Use CFI Flash driver for M54455EVB
29268
29269     Remove non-common flash driver in
29270     board/freescale/m54455evb/flash.c. The non-cfi flash will
29271     use CONFIG_FLASH_CFI_LEGACY to configure the flash
29272     attribute.
29273
29274     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29275
29276 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
29277 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29278 Date:   Wed Jul 23 17:11:47 2008 -0500
29279
29280     ColdFire: Add M5253DEMO platform support for MCF5253
29281
29282     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29283
29284 commit 80ba61fd82569af40e04d4a089257b81881884f2
29285 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29286 Date:   Wed Aug 6 14:17:09 2008 -0500
29287
29288     ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
29289
29290     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29291
29292 commit d361307e73ce1f6fc68760123f37d4876f851f3e
29293 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29294 Date:   Wed Aug 6 14:11:36 2008 -0500
29295
29296     ColdFire: Fix M5253EVB dram bring up issue
29297
29298     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29299
29300 commit 4b0708093e15b412296328bf81325cf9b69fe512
29301 Author: Wolfgang Denk <wd@denx.de>
29302 Date:   Thu Aug 14 14:41:06 2008 +0200
29303
29304     Coding Style cleanup, update CHANGELOG
29305
29306     Signed-off-by: Wolfgang Denk <wd@denx.de>
29307
29308 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
29309 Author: Scott Wood <scottwood@freescale.com>
29310 Date:   Wed Aug 13 18:24:05 2008 -0500
29311
29312     socrates: Update NAND driver to new API.
29313
29314     Also, fix some minor formatting issues, and simplify the handling of
29315     "state" for writes.
29316
29317     Signed-off-by: Scott Wood <scottwood@freescale.com>
29318
29319 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
29320 Author: Scott Wood <scottwood@freescale.com>
29321 Date:   Wed Aug 13 18:03:40 2008 -0500
29322
29323     quad100hd: Update NAND driver to new API.
29324
29325     Signed-off-by: Scott Wood <scottwood@freescale.com>
29326
29327 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
29328 Author: Scott Wood <scottwood@freescale.com>
29329 Date:   Wed Aug 13 17:53:48 2008 -0500
29330
29331     m5373evb: Update NAND driver to new API.
29332
29333     Signed-off-by: Scott Wood <scottwood@freescale.com>
29334
29335 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
29336 Author: Scott Wood <scottwood@freescale.com>
29337 Date:   Wed Aug 13 17:04:30 2008 -0500
29338
29339     s3c24x0: Update NAND driver to new API.
29340
29341     Signed-off-by: Scott Wood <scottwood@freescale.com>
29342
29343 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
29344 Author: Scott Wood <scottwood@freescale.com>
29345 Date:   Wed Aug 13 15:56:00 2008 -0500
29346
29347     at91: Update board NAND drivers to current API.
29348
29349     Signed-off-by: Scott Wood <scottwood@freescale.com>
29350
29351 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
29352 Author: Kyungmin Park <kmpark@infradead.org>
29353 Date:   Wed Aug 13 09:11:02 2008 +0900
29354
29355     Fix OneNAND build break
29356
29357     Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
29358     - fix bufferram management at erase operation
29359     This patch includes the NAND/OneNAND state filed too.
29360
29361     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
29362     Signed-off-by: Scott Wood <scottwood@freescale.com>
29363
29364 commit 9483df6408c25f16060432de3868901e352e23bc
29365 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29366 Date:   Wed Aug 13 01:40:43 2008 +0200
29367
29368     drivers/mtd/nand_legacy: Move conditional compilation to Makefile
29369
29370     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29371
29372 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
29373 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29374 Date:   Wed Aug 13 01:40:43 2008 +0200
29375
29376     drivers/mtd/nand: Move conditional compilation to Makefile
29377
29378     rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
29379
29380     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29381
29382 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
29383 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29384 Date:   Wed Aug 13 01:40:42 2008 +0200
29385
29386     drivers/mtd/onenand: Move conditional compilation to Makefile
29387
29388     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29389
29390 commit 00b1883a4cac59d97cd297b1a3a398db85982865
29391 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29392 Date:   Wed Aug 13 01:40:42 2008 +0200
29393
29394     drivers/mtd: Move conditional compilation to Makefile
29395
29396     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
29397
29398     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29399
29400 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
29401 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29402 Date:   Wed Aug 13 01:40:41 2008 +0200
29403
29404     drivers/qe: Move conditional compilation to Makefile
29405
29406     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29407
29408 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
29409 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29410 Date:   Wed Aug 13 01:40:40 2008 +0200
29411
29412     drivers/pci: Move conditional compilation to Makefile
29413
29414     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29415
29416 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
29417 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29418 Date:   Wed Aug 13 01:40:40 2008 +0200
29419
29420     drivers/misc: Move conditional compilation to Makefile
29421
29422     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29423
29424 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
29425 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29426 Date:   Wed Aug 13 01:40:40 2008 +0200
29427
29428     drivers/input: Move conditional compilation to Makefile
29429
29430     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29431
29432 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
29433 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29434 Date:   Wed Aug 13 01:40:39 2008 +0200
29435
29436     drivers/dma: Move conditional compilation to Makefile
29437
29438     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29439
29440 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
29441 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29442 Date:   Wed Aug 13 01:40:39 2008 +0200
29443
29444     drivers/block: Move conditional compilation to Makefile
29445
29446     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29447
29448 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
29449 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29450 Date:   Wed Aug 13 01:40:39 2008 +0200
29451
29452     serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
29453
29454     move also conditional compilation to Makefile
29455
29456     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29457
29458 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
29459 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29460 Date:   Wed Aug 13 01:40:38 2008 +0200
29461
29462     serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
29463
29464     move also conditional compilation to Makefile
29465
29466     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29467
29468 commit d6e9ee92e890f67594ab150689510df361133ead
29469 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29470 Date:   Wed Aug 13 01:40:38 2008 +0200
29471
29472     common: Move conditional compilation to Makefile
29473
29474     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29475
29476 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
29477 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29478 Date:   Wed Aug 13 01:40:09 2008 +0200
29479
29480     mx31: move freescale's mx31 boards to vendor board dir
29481
29482     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29483
29484 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
29485 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29486 Date:   Sat Jul 5 23:11:11 2008 +0200
29487
29488     at91: move arch-at91sam9 to arch-at91
29489
29490     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29491
29492 commit 195ccfc5991d48764b2519941e3507f693851d5d
29493 Author: Fathi BOUDRA <fabo@debian.org>
29494 Date:   Wed Aug 6 10:06:20 2008 +0200
29495
29496     OneNAND: Fill in MTD function pointers for OneNAND.
29497
29498     onenand_print_device_info():
29499      - Now returns a string to be placed in mtd->name,
29500        rather than calling printf.
29501      - Remove verbose parameter as it becomes useless.
29502
29503     Signed-off-by: Fathi Boudra <fabo@debian.org>
29504     Signed-off-by: Scott Wood <scottwood@freescale.com>
29505
29506 commit aa646643b6bc250cb3a4966bf728876e0c10d329
29507 Author: Guennadi Liakhovetski <lg@denx.de>
29508 Date:   Wed Aug 6 21:42:07 2008 +0200
29509
29510     nand_spl: Support page-aligned read in nand_load, use chipselect
29511
29512     Supporting page-aligned reads doesn't incure any sinificant overhead, just
29513     a small change in the algorithm. Also replace in_8 with readb, since there
29514     is no in_8 on ARM.
29515
29516     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29517     Signed-off-by: Scott Wood <scottwood@freescale.com>
29518
29519 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
29520 Author: Scott Wood <scottwood@freescale.com>
29521 Date:   Tue Aug 5 11:15:59 2008 -0500
29522
29523     NAND boot: Update large page support for current API.
29524
29525     Also, remove the ctrl variable in favor of passing the constants
29526     directly, and remove redundant (u8) casts.
29527
29528     Signed-off-by: Scott Wood <scottwood@freescale.com>
29529
29530 commit e4c09508545d1c45617ba45391c03c03cbc360b9
29531 Author: Scott Wood <scottwood@freescale.com>
29532 Date:   Mon Jun 30 14:13:28 2008 -0500
29533
29534     NAND boot: MPC8313ERDB support
29535
29536     Note that with older board revisions, NAND boot may only work after a
29537     power-on reset, and not after a warm reset.  I don't have a newer board
29538     to test on; if you have a board with a 33MHz crystal, please let me know
29539     if it works after a warm reset.
29540
29541     Signed-off-by: Scott Wood <scottwood@freescale.com>
29542
29543 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
29544 Author: Scott Wood <scottwood@freescale.com>
29545 Date:   Thu Jun 26 14:06:52 2008 -0500
29546
29547     mpc8313erdb: Enable NAND in config.
29548
29549     Signed-off-by: Scott Wood <scottwood@freescale.com>
29550
29551 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
29552 Author: Guennadi Liakhovetski <lg@denx.de>
29553 Date:   Thu Jul 31 12:38:26 2008 +0200
29554
29555     NAND: Do not write or read a whole block if it is larger than the environment
29556
29557     Environment can be smaller than NAND block size, do not need to read a whole
29558     block and minimum for writing is one page. Also remove an unused variable.
29559
29560     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29561     Signed-off-by: Scott Wood <scottwood@freescale.com>
29562
29563 commit eafcabd15f00c142156235c519fcc55b10993241
29564 Author: Marcel Ziswiler <marcel@ziswiler.com>
29565 Date:   Sun Jun 22 16:30:06 2008 +0200
29566
29567     NAND: chip->state does not always get set.
29568
29569     Fixes an issue with chip->state not always being set causing troubles.
29570
29571     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
29572     Signed-off-by: Scott Wood <scottwood@freescale.com>
29573
29574 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
29575 Author: Ilya Yanok <yanok@emcraft.com>
29576 Date:   Mon Jun 30 15:34:40 2008 +0200
29577
29578     NAND: Scan bad blocks lazily.
29579
29580     Rather than scanning on boot, scan upon the first attempt to check the
29581     badness of a block.  This speeds up boot when not using NAND, and reduces
29582     the likelihood of needing to reflash via JTAG if NAND becomes
29583     nonfunctional.
29584
29585     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29586     Signed-off-by: Scott Wood <scottwood@freescale.com>
29587
29588 commit dfbf617ff055e4216f78d358b0867c548916d14b
29589 Author: Scott Wood <scottwood@freescale.com>
29590 Date:   Thu Jun 12 13:20:16 2008 -0500
29591
29592     NAND read/write fix
29593
29594     Implement block-skipping read/write, based on a patch from
29595     Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
29596
29597     Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
29598     Signed-off-by: Scott Wood <scottwood@freescale.com>
29599
29600 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
29601 Author: Scott Wood <scottwood@freescale.com>
29602 Date:   Thu Jun 12 13:13:23 2008 -0500
29603
29604     NAND: Always skip blocks on read/write/boot.
29605
29606     Use of the non-skipping versions was almost always (if not always)
29607     an error, and no valid use case has been identified.
29608
29609     Signed-off-by: Scott Wood <scottwood@freescale.com>
29610
29611 commit e1c3dbada349992875934575c97b328ab2cb33ca
29612 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29613 Date:   Thu Jun 12 11:10:21 2008 -0500
29614
29615     nand: fsl_upm: convert to updated MTD NAND infrastructure
29616
29617     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29618     Signed-off-by: Scott Wood <scottwood@freescale.com>
29619
29620 commit 300253306acc72b1b2e9faf0987f86551151d7cf
29621 Author: Scott Wood <scottwood@freescale.com>
29622 Date:   Thu May 22 15:02:46 2008 -0500
29623
29624     fsl_elbc_nand: Hard-code the FBAR/FPAR split.
29625
29626     The hardware has separate registers for block and page-within-block,
29627     but the division between the two has no apparent relation to the
29628     actual erase block size of the NAND chip.
29629
29630     Signed-off-by: Scott Wood <scottwood@freescale.com>
29631
29632 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
29633 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29634 Date:   Fri Mar 28 22:10:54 2008 +0300
29635
29636     fsl_elbc_nand: workaround for hangs during nand write
29637
29638     Using current driver elbc sometimes hangs during nand write. Reading back
29639     last byte helps though (thanks to Scott Wood for the idea).
29640
29641     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29642     Signed-off-by: Scott Wood <scottwood@freescale.com>
29643
29644 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
29645 Author: Scott Wood <scottwood@freescale.com>
29646 Date:   Fri Mar 21 16:12:51 2008 -0500
29647
29648     Freescale eLBC FCM NAND driver
29649
29650     This is a driver for the Flash Control Machine of the enhanched Local Bus
29651     Controller found on some Freescale chips (such as the mpc8313 and the
29652     mpc8379).
29653
29654     Signed-off-by: Scott Wood <scottwood@freescale.com>
29655
29656 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
29657 Author: Scott Wood <scottwood@freescale.com>
29658 Date:   Tue Mar 18 15:29:14 2008 -0500
29659
29660     Don't panic if a controller driver does ecc its own way.
29661
29662     Some hardware, such as the enhanced local bus controller used on some
29663     mpc83xx chips, does ecc transparently when reading and writing data, rather
29664     than providing a generic calculate/correct mechanism that can be exported to
29665     the nand subsystem.
29666
29667     The subsystem should not BUG() when calculate, correct, or hwctl are
29668     missing, if the methods that call them have been overridden.
29669
29670     Signed-off-by: Scott Wood <scottwood@freescale.com>
29671
29672 commit e52b34d40a8a646e3d11638ea8797e96398dba13
29673 Author: Stefan Roese <sr@denx.de>
29674 Date:   Thu Jan 10 18:47:33 2008 +0100
29675
29676     NAND: Make NAND driver less verbose per default
29677
29678     This patch turns off printing of bad blocks per default upon bootup.
29679     This can always be shown via the "nand bad" command later.
29680
29681     Signed-off-by: Stefan Roese <sr@denx.de>
29682
29683 commit fe56a2772e5c59577df906163d0d4b29b056140e
29684 Author: Sergey Kubushyn <ksi@koi8.net>
29685 Date:   Wed Jan 9 15:36:20 2008 +0100
29686
29687     NAND: Davinci driver updates
29688
29689     Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
29690     don't have hardware handy so I can not test it at the moment but changes are
29691     rather trivial so it should work. It would be nice if somebody with a
29692     hardware checked it anyways.
29693
29694     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
29695
29696 commit deac913effd8d80535c9ff4687b6fcdff540c554
29697 Author: Stefan Roese <sr@denx.de>
29698 Date:   Sat Jan 5 16:50:32 2008 +0100
29699
29700     NAND: Fix compilation warning and small coding style issue
29701
29702     Signed-off-by: Stefan Roese <sr@denx.de>
29703
29704 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
29705 Author: Stefan Roese <sr@denx.de>
29706 Date:   Sat Jan 5 16:49:37 2008 +0100
29707
29708     NAND: Update nand_spl driver to match updated nand subsystem
29709
29710     This patch changes the NAND booting driver nand_spl/nand_boot.c to match
29711     the new infrastructure from the updated NAND subsystem. This NAND
29712     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
29713     subsystem.
29714
29715     Signed-off-by: Stefan Roese <sr@denx.de>
29716
29717 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
29718 Author: Stefan Roese <sr@denx.de>
29719 Date:   Sat Jan 5 16:47:58 2008 +0100
29720
29721     NAND: Update 4xx NDFC driver to match updated nand subsystem
29722
29723     This patch changes the 4xx NAND driver ndfc.c to match the new
29724     infrastructure from the updated NAND subsystem. This NAND
29725     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
29726     subsystem.
29727
29728     Tested successfully on AMCC Sequoia and Bamboo.
29729
29730     Signed-off-by: Stefan Roese <sr@denx.de>
29731
29732 commit 12072264528eba33737bc9674e19f0e925ffda23
29733 Author: Stefan Roese <sr@denx.de>
29734 Date:   Sat Jan 5 16:43:25 2008 +0100
29735
29736     NAND: Change nand_wait_ready() to not call nand_wait()
29737
29738     This patch changes nand_wait_ready() to not just call nand_wait(),
29739     since this will send a new command to the NAND chip. We just want to
29740     wait for the chip to become ready here.
29741
29742     Signed-off-by: Stefan Roese <sr@denx.de>
29743
29744 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
29745 Author: William Juul <william.juul@datarespons.no>
29746 Date:   Fri Dec 14 16:33:45 2007 +0100
29747
29748     make nand dump and nand dump.oob work
29749
29750     Signed-off-by: William Juul <william.juul@tandberg.com>
29751     Signed-off-by: Scott Wood <scottwood@freescale.com>
29752
29753 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
29754 Author: William Juul <william.juul@datarespons.no>
29755 Date:   Mon Nov 19 14:46:00 2007 +0100
29756
29757     moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
29758
29759     Signed-off-by: William Juul <william.juul@tandberg.com>
29760
29761 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
29762 Author: William Juul <william.juul@tandberg.com>
29763 Date:   Tue Jun 10 16:18:13 2008 -0500
29764
29765     Clean out unneeded files
29766
29767     Signed-off-by: William Juul <william.juul@tandberg.com>
29768
29769 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
29770 Author: William Juul <william.juul@datarespons.no>
29771 Date:   Fri Nov 16 08:44:27 2007 +0100
29772
29773     Create symlinks from yaffs2/direct to yaffs2
29774
29775     Signed-off-by: William Juul <william.juul@tandberg.com>
29776
29777 commit 90ef117b68387d66763291af0117677644166611
29778 Author: William Juul <william.juul@datarespons.no>
29779 Date:   Thu Nov 15 12:23:57 2007 +0100
29780
29781     Incorporate yaffs2 into U-boot
29782
29783     To use YAFFS2 define CONFIG_YAFFS2
29784
29785     Signed-off-by: William Juul <william.juul@tandberg.com>
29786     Signed-off-by: Scott Wood <scottwood@freescale.com>
29787
29788 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
29789 Author: William Juul <william.juul@datarespons.no>
29790 Date:   Thu Nov 15 11:13:05 2007 +0100
29791
29792     YAFFS2 import
29793
29794     Direct import of yaffs as a tarball as of 20071113 from their public
29795     CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
29796
29797     The code can also be imported on the command line with:
29798     export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
29799     (Hit return when asked for a password)
29800     cvs checkout yaffs2
29801
29802     Signed-off-by: William Juul <william.juul@tandberg.com>
29803     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
29804
29805 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
29806 Author: William Juul <william.juul@datarespons.no>
29807 Date:   Wed Nov 14 14:28:11 2007 +0100
29808
29809     Whitespace cleanup and marking broken code.
29810
29811     Changes requested by maintainer Stefan Roese after
29812     posting patch to U-boot mailing list.
29813
29814     Signed-off-by: William Juul <william.juul@tandberg.com>
29815     Signed-off-by: Scott Wood <scottwood@freescale.com>
29816
29817 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
29818 Author: William Juul <william.juul@datarespons.no>
29819 Date:   Fri Nov 9 13:32:30 2007 +0100
29820
29821     Fixing coding style issues
29822
29823      - Fixing leading white spaces
29824      - Fixing indentation where 4 spaces are used instead of tab
29825      - Removing C++ comments (//), wherever I introduced them
29826
29827     Signed-off-by: William Juul <william.juul@tandberg.com>
29828     Signed-off-by: Scott Wood <scottwood@freescale.com>
29829
29830 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
29831 Author: William Juul <william.juul@datarespons.no>
29832 Date:   Thu Nov 8 10:39:53 2007 +0100
29833
29834     Remove white space at end.
29835
29836     Signed-off-by: William Juul <william.juul@tandberg.com>
29837     Signed-off-by: Scott Wood <scottwood@freescale.com>
29838
29839 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
29840 Author: William Juul <william.juul@datarespons.no>
29841 Date:   Wed Oct 31 13:53:06 2007 +0100
29842
29843     Update MTD to that of Linux 2.6.22.1
29844
29845     A lot changed in the Linux MTD code, since it was last ported from
29846     Linux to U-Boot. This patch takes U-Boot NAND support to the level
29847     of Linux 2.6.22.1 and will enable support for very large NAND devices
29848     (4KB pages) and ease the compatibility between U-Boot and Linux
29849     filesystems.
29850
29851     This patch is tested on two custom boards with PPC and ARM
29852     processors running YAFFS in U-Boot and Linux using gcc-4.1.2
29853     cross compilers.
29854
29855     MAKEALL ppc/arm has some issues:
29856      * DOC/OneNand/nand_spl is not building (I have not tried porting
29857        these parts, and since I do not have any HW and I am not familiar
29858        with this code/HW I think its best left to someone else.)
29859
29860     Except for the issues mentioned above, I have ported all drivers
29861     necessary to run MAKEALL ppc/arm without errors and warnings. Many
29862     drivers were trivial to port, but some were not so trivial. The
29863     following drivers must be examined carefully and maybe rewritten to
29864     some degree:
29865      cpu/ppc4xx/ndfc.c
29866      cpu/arm926ejs/davinci/nand.c
29867      board/delta/nand.c
29868      board/zylonite/nand.c
29869
29870     Signed-off-by: William Juul <william.juul@tandberg.com>
29871     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
29872     Signed-off-by: Scott Wood <scottwood@freescale.com>
29873
29874 commit cd82919e6c8a73b363a26f34b734923844e52d1c
29875 Author: Wolfgang Denk <wd@denx.de>
29876 Date:   Tue Aug 12 16:08:38 2008 +0200
29877
29878     Coding style cleanup, update CHANGELOG, prepare release
29879
29880     Signed-off-by: Wolfgang Denk <wd@denx.de>
29881
29882 commit 17e900b8c0f38d922da47073246219dce2a847f2
29883 Author: Wolfgang Denk <wd@denx.de>
29884 Date:   Tue Aug 12 14:54:04 2008 +0200
29885
29886     MVBC_P: fix compile problem
29887
29888     Signed-off-by: Wolfgang Denk <wd@denx.de>
29889
29890 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
29891 Author: Wolfgang Denk <wd@denx.de>
29892 Date:   Tue Aug 12 12:10:11 2008 +0200
29893
29894     MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
29895
29896     Signed-off-by: Wolfgang Denk <wd@denx.de>
29897
29898 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
29899 Author: Wolfgang Denk <wd@denx.de>
29900 Date:   Tue Aug 12 00:36:53 2008 +0200
29901
29902     ads5121: fix compiler warnings (unused variables)
29903
29904     Signed-off-by: Wolfgang Denk <wd@denx.de>
29905
29906 commit 902ca09246039964d59bbcb519b1e1b5aed01308
29907 Author: Kumar Gala <galak@kernel.crashing.org>
29908 Date:   Mon Aug 11 11:29:28 2008 -0500
29909
29910     85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
29911
29912     Use CONFIG_NUM_CPUS to match existing define used by 86xx.
29913
29914     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29915     Acked-by: Jon Loeliger <jdl@freescale.com>
29916
29917 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
29918 Author: Kumar Gala <galak@kernel.crashing.org>
29919 Date:   Mon Aug 11 09:20:53 2008 -0500
29920
29921     Fix fallout from autostart revert
29922
29923     The autostart revert caused a bit of duplicated code as well as
29924     code that was using images->autostart that needs to get removed so
29925     we can build again.
29926
29927     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29928
29929 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
29930 Author: Kumar Gala <galak@kernel.crashing.org>
29931 Date:   Mon Aug 11 09:16:25 2008 -0500
29932
29933     Fix compile error related to r8a66597-hcd & usb
29934
29935     When building the 8544DS board we get this error:
29936
29937     In file included from r8a66597-hcd.c:22:
29938     u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
29939     make[1]: *** [r8a66597-hcd.o] Error 1
29940
29941     The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
29942     is set.
29943
29944     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29945
29946 commit 2d0daa03612338a813e3c9d22680e54eabfea378
29947 Author: Becky Bruce <becky.bruce@freescale.com>
29948 Date:   Mon Aug 4 14:02:26 2008 -0500
29949
29950     POWERPC 86xx: Move BAT setup code to C
29951
29952     This is needed because we will be possibly be locating
29953     devices at physical addresses above 32bits, and the asm
29954     preprocessing does not appear to deal with ULL constants
29955     properly. We now call write_bat in lib_ppc/bat_rw.c.
29956
29957     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
29958     Acked-by: Jon Loeliger <jdl@freescale.com>
29959
29960 commit 9de67149db576c91b9c2a0a182652331e7e44211
29961 Author: Becky Bruce <becky.bruce@freescale.com>
29962 Date:   Mon Aug 4 14:01:53 2008 -0500
29963
29964     POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
29965
29966     Perform sync/isync as required by the architecture.
29967
29968     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
29969     Acked-by: Jon Loeliger <jdl@freescale.com>
29970
29971 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
29972 Author: Becky Bruce <becky.bruce@freescale.com>
29973 Date:   Mon Aug 4 14:01:16 2008 -0500
29974
29975     POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
29976
29977     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
29978     Acked-by: Jon Loeliger <jdl@freescale.com>
29979
29980 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
29981 Author: Magnus Lilja <lilja.magnus@gmail.com>
29982 Date:   Sun Aug 3 21:44:10 2008 +0200
29983
29984     i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
29985
29986     Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
29987     contacts instead of only the first 256 ones as is the case prior to
29988     this patch.
29989
29990     Add missing MUX_* macros and update board files to use the new macros.
29991
29992     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
29993
29994 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
29995 Author: Magnus Lilja <lilja.magnus@gmail.com>
29996 Date:   Sun Aug 3 21:43:37 2008 +0200
29997
29998     i.MX31: Fix IOMUX related typos
29999
30000     Correct the names of some IOMUX macros.
30001
30002     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
30003
30004 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
30005 Author: Steve Sakoman <steve@sakoman.com>
30006 Date:   Mon Aug 11 20:26:16 2008 +0200
30007
30008     OneNAND: Remove unused parameters to onenand_verify_page
30009
30010     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.
30011
30012     Signed-off-by: Steve Sakoman <steve@sakoman.com>
30013     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
30014
30015 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
30016 Author: Anatolij Gustschin <agust@denx.de>
30017 Date:   Fri Aug 8 18:00:40 2008 +0200
30018
30019     video: fix bug in cfb_console code
30020
30021     FILL_15BIT_555RGB macro extension for pixel swapping
30022     by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
30023     introduced a bug in cfb_console:
30024
30025     Bitmaps with odd-numbered width won't be rendered
30026     correctly and even U-Boot crashes are observed on
30027     some platforms while repeated rendering of such
30028     bitmaps with "bmp display". Also if a bitmap is
30029     rendered to an odd-numbered x starting position,
30030     the same problem occurs. This patch is an attempt
30031     to fix it.
30032
30033     Signed-off-by: Anatolij Gustschin <agust@denx.de>
30034
30035 commit d9015f6a50d7258125349ef5c2af836458a0029a
30036 Author: Anatolij Gustschin <agust@denx.de>
30037 Date:   Fri Aug 8 18:00:39 2008 +0200
30038
30039     video: fix bug in logo_plot
30040
30041     If logo_plot() should ever be called with x starting
30042     position other than zero and for pixel depths greater
30043     than 8bpp, logo colors distortion will be observed.
30044     This patch fixes the issue.
30045
30046     Signed-off-by: Anatolij Gustschin <agust@denx.de>
30047
30048 commit 406819ae94f79f5b59e01d163380ca7d83709251
30049 Author: Wolfgang Denk <wd@denx.de>
30050 Date:   Mon Aug 11 00:17:52 2008 +0200
30051
30052     MAINTAINERS: sort entries
30053
30054     Signed-off-by: Wolfgang Denk <wd@denx.de>
30055
30056 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
30057 Author: Roy Zang <tie-fei.zang@freescale.com>
30058 Date:   Thu Aug 7 18:19:28 2008 +0800
30059
30060     Add mpc7448hpc2 maintainer information
30061
30062     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
30063
30064 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
30065 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
30066 Date:   Thu Aug 7 13:13:27 2008 +0530
30067
30068     common/cmd_load.c - Minor code & Coding Style cleanup
30069
30070     - os_data_header Variable is a carry over feature
30071        & unused. So removed all instance of this variable
30072      - Minor Code Style Update
30073
30074     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
30075     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30076
30077 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
30078 Author: Magnus Lilja <lilja.magnus@gmail.com>
30079 Date:   Wed Aug 6 19:32:33 2008 +0200
30080
30081     Update the U-Boot wiki URL.
30082
30083     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
30084
30085 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
30086 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
30087 Date:   Sun Aug 10 17:56:36 2008 +0200
30088
30089     OneNAND: Remove base address offset usage
30090
30091     While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
30092     using OneNAND and some using NAND, we found some differences in OneNAND and
30093     NAND command address handling.
30094
30095     As this might confuse users (it already confused us), we like to align OneNAND
30096     and NAND address handling.
30097
30098     The issue is that cmd_onenand.c subtracts the onenand base address from the
30099     addresses you type into the u-boot command line so, unlike nand, you can't
30100     use addresses relative to the start of the onenand part e.g. this won't work:
30101
30102     onenand read 82000000 280000 400000
30103
30104     you have to use:
30105
30106     onenand read 82000000 20280000 400000
30107
30108     Looking at recent git, the only board currently using OneNAND is Apollon, and
30109     for this the OneNAND base address is 0 (apollon.h)
30110
30111     #define     CFG_ONENAND_BASE        0x00000000
30112
30113     so patch below won't break any existing boards and will align OneNAND and NAND
30114     handling on boards where OneNAND base address is != 0.
30115
30116     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
30117     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
30118     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
30119
30120 commit c11528083ef6e55e76df742228c26e39d151813d
30121 Author: Kumar Gala <galak@kernel.crashing.org>
30122 Date:   Thu Aug 7 09:28:20 2008 -0500
30123
30124     mpc85xx: workaround old binutils bug
30125
30126     The recent change to move the .bss outside of the image gives older
30127     binutils (ld from eldk4.1/binutils-2.16) some headache:
30128
30129     ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
30130     ppc_85xx-ld: final link failed: Bad value
30131
30132     We workaround it by being explicit about the program headers and not
30133     assigning the .bss to a program header.
30134
30135     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30136
30137 commit 0bf202ec586d4466c900e987720fa635c594d689
30138 Author: Wolfgang Denk <wd@denx.de>
30139 Date:   Sun Aug 10 01:26:26 2008 +0200
30140
30141     Revert "[new uImage] Add autostart flag to bootm_headers structure"
30142
30143     This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
30144
30145     The commit was based on a misunderstanding of the (documented)
30146     meaning of the 'autostart' environment variable. It might cause
30147     boards to hang if 'autostart' was used, with the potential to brick
30148     them. Go back to the documented behaviour.
30149
30150     Conflicts:
30151
30152         common/cmd_bootm.c
30153         common/image.c
30154         include/image.h
30155
30156     Signed-off-by: Wolfgang Denk <wd@denx.de>
30157
30158 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
30159 Author: Wolfgang Denk <wd@denx.de>
30160 Date:   Sat Aug 9 23:17:32 2008 +0200
30161
30162     TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
30163
30164     - enable CFI driver where this was forgotten
30165     - enable mtdparts support
30166     - adjust default environment
30167     etc.
30168
30169     Signed-off-by: Wolfgang Denk <wd@denx.de>
30170
30171 commit 41266c9b5a5f873df3ec891bb0907616958b5602
30172 Author: Peter Tyser <ptyser@xes-inc.com>
30173 Date:   Tue Aug 5 10:51:57 2008 -0500
30174
30175     FIT: Fix handling of images without ramdisks
30176
30177     boot_get_ramdisk() should not treat the case when a FIT image does
30178     not contain a ramdisk as an error.
30179
30180     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30181     Acked-by: Michal Simek <monstr@monstr.eu>
30182
30183 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
30184 Author: Sergey Lapin <slapin@ossfans.org>
30185 Date:   Sat Aug 9 01:39:09 2008 +0400
30186
30187     DataFlash: AT45DB021 fix and AT45DB081 support
30188
30189     Fix for page size of AT45DB021. Also adding bigger AT45DB081
30190     which comes with some newer boards.
30191
30192     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
30193
30194 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
30195 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
30196 Date:   Fri Aug 8 16:30:23 2008 +0900
30197
30198     sh: Update sh7763rdp config
30199
30200     Add sh_eth support to sh7763rdp.
30201
30202     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
30203
30204 commit 21f971ec265f6042ec21636d55d06a6bc0751077
30205 Author: Wolfgang Denk <wd@denx.de>
30206 Date:   Mon Jul 7 01:22:29 2008 +0200
30207
30208     TQM823L: re-enable logo support; update LCD_INFO text
30209
30210     Signed-off-by: Wolfgang Denk <wd@denx.de>
30211
30212 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
30213 Author: Wolfgang Denk <wd@denx.de>
30214 Date:   Fri Aug 8 16:41:56 2008 +0200
30215
30216     TQM8xxL: fix support for second flash bank
30217
30218     When switching the TQM8xxL modules to use the CFI flash driver,
30219     support for the second flash bank was broken because the CFI driver
30220     did not support dynamically sized banks. This gets fixed now.
30221
30222     Signed-off-by: Wolfgang Denk <wd@denx.de>
30223
30224 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
30225 Author: Wolfgang Denk <wd@denx.de>
30226 Date:   Fri Aug 8 16:39:54 2008 +0200
30227
30228     CFI: allow for dynamically determined flash sizes and addresses
30229
30230     The CFI driver allowed only for static initializers in the
30231     CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
30232     several flash banks contiguously if the bank sizes were not known in
30233     advance, which kind of violates U-Boot's design philosophy.
30234
30235     (will be used for example by the TQM8xxL boards)
30236
30237     Signed-off-by: Wolfgang Denk <wd@denx.de>
30238
30239 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
30240 Author: Ben Warren <biggerbadderben@gmail.com>
30241 Date:   Thu Aug 7 23:26:35 2008 -0700
30242
30243     QE UEC: Fix compiler warnings
30244
30245     Moved static functions earlier in file so forward declarations are not needed.
30246
30247     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30248
30249 commit d5d28fe4aad5f4535400647a5617c11039506467
30250 Author: David Saada <David.Saada@ecitele.com>
30251 Date:   Mon Mar 31 02:37:38 2008 -0700
30252
30253     QE UEC: Add MII Commands
30254
30255     Add MII commands to the UEC driver. Note that once a UEC device is selected,
30256     any device on its MDIO bus can be addressed.
30257
30258     Signed-off-by: David Saada <david.saada@ecitele.com>
30259     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30260
30261 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
30262 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
30263 Date:   Wed Jul 9 21:07:38 2008 +0900
30264
30265     usb: add support for R8A66597 usb controller
30266
30267     add support for Renesas R8A66597 usb controller.
30268     This patch supports USB Host mode.
30269
30270     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
30271     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
30272
30273 commit 1d10dcd041aaeae9fd7c821005692898a0303382
30274 Author: Hunter, Jon <jon-hunter@ti.com>
30275 Date:   Sat Jul 26 18:59:16 2008 -0500
30276
30277     Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
30278
30279     Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
30280
30281     Signed-off-by: Jon Hunter <jon-hunter@ti.com>
30282     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
30283
30284 commit eab1007334b93a6209f1ec33615e26ef5311ede7
30285 Author: Steven A. Falco <sfalco@harris.com>
30286 Date:   Wed Aug 6 15:42:52 2008 -0400
30287
30288     ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
30289
30290     The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
30291     configuration to match the schematic, and also sets the SDR0_PFC1 register to
30292     select the corresponding mode for the UARTs.
30293
30294     Signed-off-by: Steven A. Falco <sfalco@harris.com>
30295     Signed-off-by: Stefan Roese <sr@denx.de>
30296
30297 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
30298 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
30299 Date:   Wed Aug 6 14:42:13 2008 +0200
30300
30301     avr32: add support for EarthLCD Favr-32 board
30302
30303     This patch adds support for the Favr-32 board made by EarthLCD.
30304
30305     This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
30306     has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
30307     Ethernet, audio out, USB device, SD-card slot, USART and various other
30308     connectors for cennecting stuff to SPI, I2C, GPIO, etc.
30309
30310     Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
30311     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30312
30313 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
30314 Author: Rafael Campos <rafael.campos@hanscan.com>
30315 Date:   Thu Jul 31 10:22:20 2008 +0200
30316
30317     cfi-flash: Added support to flash_real_protect for Atmel flash devices
30318
30319     Some of the flash memories produced by ATMEL start in read-only mode.
30320     We need to unprotect it. This patch allows the AT49BV6416 to work with
30321     cfi_flash memories. Tested in the at91rm9200ek board.
30322
30323     Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
30324     Signed-off-by: Stefan Roese <sr@denx.de>
30325
30326 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
30327 Author: Guennadi Liakhovetski <lg@denx.de>
30328 Date:   Tue Aug 5 15:36:39 2008 +0200
30329
30330     cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
30331
30332     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30333     Signed-off-by: Stefan Roese <sr@denx.de>
30334
30335 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
30336 Author: Stefan Roese <sr@denx.de>
30337 Date:   Wed Aug 6 14:06:03 2008 +0200
30338
30339     Fix merge problems
30340
30341     Signed-off-by: Stefan Roese <sr@denx.de>
30342
30343 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
30344 Author: Stefan Roese <sr@denx.de>
30345 Date:   Wed Aug 6 14:05:38 2008 +0200
30346
30347     Fix merge problems
30348
30349     Signed-off-by: Stefan Roese <sr@denx.de>
30350
30351 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
30352 Author: Kenneth Johansson <kenneth@southpole.se>
30353 Date:   Tue Jul 15 12:13:38 2008 +0200
30354
30355     mpc5121: Move iopin features from board specific to common files.
30356
30357     And in the process eliminate some duplicate register defines.
30358
30359     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
30360
30361 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
30362 Author: John Rigby <jrigby@freescale.com>
30363 Date:   Tue Aug 5 17:38:57 2008 -0600
30364
30365     mpc5121: squash some fdt fixup errors
30366
30367     On ADS5121 when booting linux the following errors are seen:
30368         Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
30369         Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
30370         Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
30371
30372     This is caused by ft_cpu_setup trying to deal with
30373     both old and new soc node naming.  This patch
30374     fixes this by being smarter about what to
30375     fixup.
30376
30377     Also do soc node fixups by compatible instead of by path.
30378     A new board config called OF_SOC_COMPAT defined
30379     to be "fsl,mpc5121-immr" replaces the old
30380     OF_SOC node path that was defined to be "soc@80000000".
30381
30382     Old device trees still work, but the compatiblity
30383     is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
30384     which is on by default in include/configs/ads5121.h.
30385
30386     Signed-off-by: John Rigby <jrigby@freescale.com>
30387
30388 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
30389 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30390 Date:   Sat Aug 2 23:48:30 2008 +0200
30391
30392     drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
30393
30394     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30395
30396 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
30397 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30398 Date:   Sat Aug 2 23:48:32 2008 +0200
30399
30400     nios2/sysid: fix printf warning
30401
30402     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30403
30404 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
30405 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30406 Date:   Sat Aug 2 23:48:33 2008 +0200
30407
30408     Fix remaining build issues with MPC8xx FADS boards.
30409
30410     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30411
30412 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
30413 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30414 Date:   Sat Aug 2 23:48:31 2008 +0200
30415
30416     nios2: fix phys_addr_t and phys_size_t support
30417
30418     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30419
30420 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
30421 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30422 Date:   Sat Aug 2 23:48:34 2008 +0200
30423
30424     mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
30425
30426     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30427
30428 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
30429 Author: Mark Jackson <mpfj@mimc.co.uk>
30430 Date:   Fri Aug 1 09:48:29 2008 +0100
30431
30432     Fix bitmap display for atmel lcd controller
30433
30434     The current lcd_display_bitmap() function does not work properly
30435     for the Atmel LCD controller.
30436
30437     2 fixes need to be done:-
30438
30439     (a) when setting the colour map, use the lcd_setcolreg() function
30440         as provided by the Atmel driver
30441     (b) the data is never actually written to the lcd framebuffer !!
30442
30443     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
30444
30445 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
30446 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30447 Date:   Fri Aug 1 08:40:34 2008 +0200
30448
30449     qemu_mips: update README to follow qemu update about default machine
30450
30451     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30452
30453 commit ac169d645f5f0e0b9a232563099209e92a355d8e
30454 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30455 Date:   Thu Jul 31 19:53:21 2008 -0500
30456
30457     ColdFire: Fix compilation issue caused by a missing function
30458
30459     Implement usec2ticks() which is used by fsl_i2c.c in
30460     lib_m68k/time.c
30461
30462     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30463
30464 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
30465 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30466 Date:   Thu Jul 31 19:53:06 2008 -0500
30467
30468     Fix compilation error for TASREG
30469
30470     TASREG is ColdFire platform, the include ppc4xx.h in
30471     board/esd/common/flash.c causes conflict.
30472
30473     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30474
30475 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
30476 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30477 Date:   Thu Jul 31 19:52:36 2008 -0500
30478
30479     Fix compilation error for MCF5275
30480
30481     Rename OBJ to COBJ in board/platform/Makefile
30482
30483     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30484
30485 commit 5c40548f01218360a1f1395198c50ff45f3035b5
30486 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30487 Date:   Thu Jul 31 19:52:28 2008 -0500
30488
30489     Fix compile error caused by incorrect function return type
30490
30491     Rename int mii_init(void) to void mii_init(void) for idmr
30492     ColdFire platform
30493
30494     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30495
30496 commit a58c78067c928976c082c758d3987e89ead5b191
30497 Author: Wolfgang Denk <wd@denx.de>
30498 Date:   Fri Aug 1 12:06:22 2008 +0200
30499
30500     Fix build issues with MPC8xx FADS boards.
30501
30502     Signed-off-by: Wolfgang Denk <wd@denx.de>
30503
30504 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
30505 Author: Wolfgang Denk <wd@denx.de>
30506 Date:   Thu Jul 31 17:54:03 2008 +0200
30507
30508     Prepare v1.3.4-rc2: update CHANGELOG
30509
30510     Signed-off-by: Wolfgang Denk <wd@denx.de>
30511
30512 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
30513 Author: Mark Jackson <mpfj@mimc.co.uk>
30514 Date:   Thu Jul 31 16:09:00 2008 +0100
30515
30516     Add gzipped logo support
30517
30518     The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
30519
30520       If this option is set, additionally to standard BMP
30521       images, gzipped BMP images can be displayed via the
30522       splashscreen support or the bmp command.
30523
30524     However, the splashscreen function *only* supports standard BMP images.
30525
30526     This patch adds the documented gzip support.
30527
30528     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
30529
30530 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
30531 Author: Mark Jackson <mpfj@mimc.co.uk>
30532 Date:   Thu Jul 31 15:56:48 2008 +0100
30533
30534     Fix Atmel LCD controller endianess for AVR32 processors
30535
30536     The Atmel lcd controller is used on Atmel's AT91 (little endian) and
30537     AVR32 (big endian) platforms.
30538
30539     As such, the controller can handle both big and little endian memory.
30540
30541     This patch fixes the driver for the AVR32 platform.
30542
30543     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
30544
30545 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
30546 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30547 Date:   Thu Jul 31 15:56:01 2008 +0200
30548
30549     apollon: fix build out of tree
30550
30551     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30552
30553 commit 2e752be39d3e398d4ab89ffa6634c397df298297
30554 Author: Guennadi Liakhovetski <lg@denx.de>
30555 Date:   Thu Jul 31 12:35:04 2008 +0200
30556
30557     Uncompressed images loaded to their start address shall set load_end too
30558
30559     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30560     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
30561
30562 commit c37207d7f51e19c17f859966f314e27cc1231801
30563 Author: Wolfgang Denk <wd@denx.de>
30564 Date:   Wed Jul 16 16:38:59 2008 +0200
30565
30566     Fix printf() format problems with configurable prompts
30567
30568     U-Boot allows for configurable prompt strings using the
30569     CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
30570     the assumption was that any such user defined problts would contain
30571     exactly one "%d" format specifier. But some boards did not.
30572
30573     To allow for flexible boot prompts without adding too complex code we
30574     now allow to specify the whole list of printf() arguments in the user
30575     definition. This is powerful, but requires a responsible user who
30576     really understands what he is doing, as he needs to know for exanple
30577     which variables are available in the respective context.
30578
30579     Signed-off-by: Wolfgang Denk <wd@denx.de>
30580
30581 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
30582 Author: Wolfgang Denk <wd@denx.de>
30583 Date:   Thu Jul 31 17:02:14 2008 +0200
30584
30585     TQM85xx: fix typo introduce by commit ffbb5cb9
30586
30587     Signed-off-by: Wolfgang Denk <wd@denx.de>
30588
30589 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
30590 Author: Wolfgang Denk <wd@denx.de>
30591 Date:   Thu Jul 31 15:27:01 2008 +0200
30592
30593     mvbc_p board: fix most build warnings.
30594
30595     Signed-off-by: Wolfgang Denk <wd@denx.de>
30596
30597 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
30598 Author: Wolfgang Denk <wd@denx.de>
30599 Date:   Thu Jul 31 13:57:20 2008 +0200
30600
30601     E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
30602
30603     Avoid "integer constant is too large for 'long' type" warnings.
30604     And simplify the code.
30605
30606     Signed-off-by: Wolfgang Denk <wd@denx.de>
30607
30608 commit 9196b44334c330cc13de2464c59181e4db71f549
30609 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
30610 Date:   Wed Jul 30 23:21:19 2008 +0400
30611
30612     8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
30613
30614     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
30615
30616 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
30617 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
30618 Date:   Wed Jul 30 23:20:32 2008 +0400
30619
30620     PPC: Add pci_clk in the global_data for CPM2 processors
30621
30622     This patch adds pci_clk field to the global_data structure for the
30623     processors which have CPM2 module in case the CONFIG_PCI is defined.
30624
30625     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
30626
30627 commit f0ff885ca64655bee6540eb8a25eed90b1152686
30628 Author: Kumar Gala <galak@kernel.crashing.org>
30629 Date:   Wed Jul 30 14:13:30 2008 -0500
30630
30631     mpc85xx: Update linker scripts for Freescale boards
30632
30633     * Move to using absolute addressing always.  Makes the scripts a bit more
30634       portable and common
30635     * Moved .bss after the end of the image.  These allows us to have more
30636       room in the resulting binary image for code and data.
30637     * Removed .text object files that aren't really needed
30638     * Make sure _end is 4-byte aligned as the .bss init code expects this.
30639       (Its possible that the end of .bss isn't 4-byte aligned)
30640
30641     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30642
30643 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
30644 Author: Kumar Gala <galak@kernel.crashing.org>
30645 Date:   Wed Jul 30 08:01:15 2008 -0500
30646
30647     Fix compile warnings in dlmalloc
30648
30649     The origional code was using on odd reference to get to the first
30650     real element in av_[].  The first two elements of the array are
30651     not used for actual bins, but for house keeping.  If we are more
30652     explicit about how use the first few elements we can get rid of the
30653     warnings:
30654
30655     dlmalloc.c: In function 'malloc_extend_top':
30656     dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
30657     dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
30658     dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
30659     ...
30660
30661     The logic of how this code came to be is:
30662         bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
30663
30664     SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
30665         bin_at(0) = &(av_[0])
30666
30667     Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
30668
30669     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30670
30671 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
30672 Author: Stefan Roese <sr@denx.de>
30673 Date:   Wed Jul 30 10:21:01 2008 +0200
30674
30675     ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
30676
30677     Signed-off-by: Stefan Roese <sr@denx.de>
30678
30679 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
30680 Author: Stefan Roese <sr@denx.de>
30681 Date:   Wed Jul 30 09:59:51 2008 +0200
30682
30683     cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
30684
30685     A recent patch used '#if (CONFIG_CMD_USB)' instead of
30686     '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
30687     common/bootm.c compile again.
30688
30689     Signed-off-by: Stefan Roese <sr@denx.de>
30690     Acked-by: Markus Klotzbuecher <mk@denx.de>
30691
30692 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
30693 Author: Kyungmin Park <kmpark@infradead.org>
30694 Date:   Tue Jul 22 08:01:43 2008 +0900
30695
30696     Remove unused I2C at apollon board
30697
30698     There are no I2C devices on this board.
30699
30700     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30701
30702 commit 3c95960e526b3b026da20201db64526f46faf14b
30703 Author: Wolfgang Denk <wd@denx.de>
30704 Date:   Thu Jul 31 10:12:09 2008 +0200
30705
30706     at91rm9200dk, csb637: fix NAND related build problems
30707
30708     Tried fixing NAND support for the at91rm9200dk board; untested.
30709     Disabled NAND support in the csb637 board config file.
30710
30711     Signed-off-by: Wolfgang Denk <wd@denx.de>
30712
30713 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
30714 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
30715 Date:   Wed Jul 30 12:39:28 2008 +0200
30716
30717     ppc4xx: ML507: Environment in flash and MTD Support
30718
30719     - Relocate the location of U-Boot in the flash
30720     - Save the environment in one sector of the flash memory
30721     - MTD Support
30722
30723     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
30724     Signed-off-by: Stefan Roese <sr@denx.de>
30725
30726 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
30727 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
30728 Date:   Tue Jul 29 17:16:10 2008 +0200
30729
30730     ppc4xx: ML507: Use of get_ram_size in board ml507
30731
30732     - Change suggested by WD
30733
30734     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
30735     Signed-off-by: Stefan Roese <sr@denx.de>
30736
30737 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
30738 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
30739 Date:   Mon Jul 21 20:30:07 2008 +0200
30740
30741     ppc4xx: ML507: U-Boot in flash and System ACE
30742
30743     This patch allows booting from FLASH the ML507 board by Xilinx.
30744     Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
30745
30746     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
30747     Signed-off-by: Stefan Roese <sr@denx.de>
30748
30749 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
30750 Author: Julien May <mailinglist@miromico.ch>
30751 Date:   Mon Jun 23 13:57:52 2008 +0200
30752
30753     Add support for the hammerhead (AVR32) board
30754
30755     The Hammerhead platform is built around a AVR32 32-bit microcontroller
30756     from Atmel.  It offers versatile peripherals, such as ethernet, usb
30757     device, usb host etc.
30758
30759     The board also incooperates a power supply and is a Power over Ethernet
30760     (PoE) Powered Device (PD).
30761
30762     Additonally, a Cyclone III FPGA from Altera is integrated on the board.
30763     The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
30764     DDR2 SDRAM interfaces, which will cover even the most exceptional need
30765     of memory bandwidth. Together with the onboard video decoder the board
30766     is ready for video processing.
30767
30768     For more information see: http:///www.miromico.com/hammerhead
30769
30770     Signed-off-by: Julien May <mailinglist@miromico.ch>
30771     [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
30772     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30773
30774 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
30775 Author: Kumar Gala <galak@kernel.crashing.org>
30776 Date:   Tue Jul 29 12:23:49 2008 -0500
30777
30778     fsl_i2c: Use timebase timer functions instead of get_timer()
30779
30780     The current implementation of get_timer() is only really useful after we
30781     have relocated u-boot to memory.  The i2c code is used before that as part
30782     of the SPD DDR setup.
30783
30784     We actually have a bug when using the get_timer() code before relocation
30785     because the .bss hasn't been setup and thus we could be reading/writing
30786     a random location (probably in flash).
30787
30788     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30789
30790 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
30791 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
30792 Date:   Tue Jul 29 14:49:31 2008 +0200
30793
30794     Adder8xx: Fix CFG_MONITOR_LEN
30795
30796     Due to increased space usage, U-Boot can no longer be stored in three sectors.
30797     The current U-Boot use just over three flash sectors (197k), and U-Boot will
30798     become corrupt after saving environment variables. This patch adds another 64k
30799     to CFG_MONITOR_LEN.
30800
30801     Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
30802
30803 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
30804 Author: Kyungmin Park <kmpark@infradead.org>
30805 Date:   Tue Jul 29 08:47:57 2008 +0900
30806
30807     Add OneNAND IPL related files to gitignore
30808
30809     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30810
30811 commit 8d87589e8e874df7120a3d9667f051bc33bac250
30812 Author: Rafal Jaworowski <raj@semihalf.com>
30813 Date:   Mon Jul 28 20:38:25 2008 +0200
30814
30815     API: Teach the storage layer about SATA and MMC options.
30816
30817     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
30818     Acked-by: Rafal Jaworowski <raj@semihalf.com>
30819
30820 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
30821 Author: Rafal Jaworowski <raj@semihalf.com>
30822 Date:   Mon Jul 28 20:37:48 2008 +0200
30823
30824     API: Dump contents of sector 0 in the demo application.
30825
30826     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
30827     Acked-by: Rafal Jaworowski <raj@semihalf.com>
30828
30829 commit 13ca6305f2eba49c175f6370c35286141059c789
30830 Author: Rafal Jaworowski <raj@semihalf.com>
30831 Date:   Mon Jul 28 20:37:10 2008 +0200
30832
30833     API: Correct storage enumeration routine, other minor fixes in API storage area.
30834
30835     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
30836     Acked-by: Rafal Jaworowski <raj@semihalf.com>
30837
30838 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
30839 Author: Rafal Jaworowski <raj@semihalf.com>
30840 Date:   Mon Jul 28 20:36:19 2008 +0200
30841
30842     API: Fix compilation warnings in api_examples/demo.c.
30843
30844     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
30845
30846 commit c14eefcc48212af2f3314809605698dd8393a90a
30847 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30848 Date:   Sun Jul 27 17:09:43 2008 +0200
30849
30850     Fix more printf() format warnings
30851
30852     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30853
30854 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
30855 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30856 Date:   Fri Jul 25 15:18:16 2008 +0200
30857
30858     Fix remaining CFG_CMD_ define, ifdef and comments
30859
30860     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30861
30862 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
30863 Author: Stefano Babic <sbabic@denx.de>
30864 Date:   Fri Jul 25 08:57:40 2008 +0200
30865
30866     Add include for config.h in command.h.
30867
30868     Because the cmd_tbl_s structure depends on the configuration file, it
30869     must be assured that config.h is included before the structure is
30870     evaluated by the compiler. If this is not certain, it could happen
30871     that the compiler generates structures of different size, depending
30872     on the fact if the source file includes <config.h> before or after
30873     <command.h>.
30874
30875     The effect is that u-boot crashes when tries to relocate the command
30876     table (for ppc) or try to access to the command table for other
30877     architectures.
30878
30879     The problem can happen on board-depending commands. All general
30880     commands under /common are unaffected, because they include already
30881     config.h before command.h.
30882
30883     Signed-off-by: Stefano Babic <sbabic@denx.de>
30884
30885 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
30886 Author: Scott Wood <scottwood@freescale.com>
30887 Date:   Wed Jul 23 13:16:06 2008 -0500
30888
30889     NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
30890
30891     This fixes building out-of-tree.
30892
30893     Signed-off-by: Scott Wood <scottwood@freescale.com>
30894
30895 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
30896 Author: Heiko Schocher <hs@denx.de>
30897 Date:   Wed Jul 23 07:30:46 2008 +0200
30898
30899     Fix warnings if compiling with IDE support.
30900
30901     cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
30902     cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
30903
30904     Signed-off-by: Heiko Schocher <hs@denx.de>
30905
30906 commit 7610db17fd4d59c51d825488526d85ede2f06767
30907 Author: Adrian Filipi <adrian.filipi@eurotech.com>
30908 Date:   Tue Jul 22 14:28:11 2008 -0400
30909
30910     Removed support for the adsvix board.
30911
30912     Support for the adsvix was originally provided by Applied Data
30913     Systems (ADS), inc., now EuroTech, Inc.
30914     The board never shipped aside from some sample boards.
30915
30916     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
30917
30918 commit f96b44cef897bd372beb86dde1b33637c119d84d
30919 Author: Remy Bohmer <linux@bohmer.net>
30920 Date:   Tue Jul 22 16:22:11 2008 +0200
30921
30922     ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
30923
30924     If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
30925     never set, because relocation to RAM is actually never done by U-boot
30926     itself. However, several pieces of code check if this flag is set at
30927     some time.
30928
30929     So, to make sure this flag is set on boards skipping relocation, this
30930     is added to the initialisation of U-boot at a moment where it is safe
30931     to do so.
30932
30933     Signed-off-by: Remy Bohmer <linux@bohmer.net>
30934
30935 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
30936 Author: Timur Tabi <timur@freescale.com>
30937 Date:   Mon Jul 21 14:26:23 2008 -0500
30938
30939     fsl-i2c: fix writes to data segment before relocation
30940
30941     Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
30942     relocation.  Commit d8c82db4 added the ability for i2c_init() to program the
30943     I2C bus speed and save the value in i2c_bus_speed[], which is a global
30944     variable.  It is an error to write to the data segment before relocation,
30945     which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
30946
30947     Signed-off-by: Timur Tabi <timur@freescale.com>
30948
30949 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
30950 Author: Wolfgang Ocker <weo@reccoware.de>
30951 Date:   Mon Jul 28 16:56:51 2008 +0200
30952
30953     mips: Fix baudrate divisor computation on alchemy cpus
30954
30955     Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
30956     on alchemy cpus.
30957
30958     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
30959     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30960
30961 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
30962 Author: Ben Warren <biggerbadderben@gmail.com>
30963 Date:   Sat Jul 5 00:08:48 2008 -0700
30964
30965     Moved initialization of AVR32 Ethernet controllers to board_eth_init()
30966
30967     Renamed initialization functions for atngw100 and atstk1000.
30968     Removed initializations for these boards from net/eth.c
30969
30970     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30971     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30972
30973 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
30974 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30975 Date:   Wed Jul 23 10:55:46 2008 +0200
30976
30977     spi flash: Fix printf() format warnings
30978
30979     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30980
30981 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
30982 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30983 Date:   Wed Jul 23 10:55:31 2008 +0200
30984
30985     atmel_mci: Fix printf() format warnings
30986
30987     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30988
30989 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
30990 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30991 Date:   Wed Jul 23 10:55:15 2008 +0200
30992
30993     avr32: Fix printf() format warnings
30994
30995     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30996
30997 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
30998 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30999 Date:   Wed Jul 23 10:52:19 2008 +0200
31000
31001     avr32: asm/io.h needs asm/types.h
31002
31003     map_physmem() takes a phys_addr_t as parameter. This type is defined in
31004     asm/types.h, so we need to include that file.
31005
31006     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31007
31008 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
31009 Author: Michal Simek <monstr@monstr.eu>
31010 Date:   Thu Jul 17 12:25:46 2008 +0200
31011
31012     microblaze: Fix printf() format issues
31013
31014     Signed-off-by: Michal Simek <monstr@monstr.eu>
31015
31016 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
31017 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
31018 Date:   Thu Jul 17 07:27:51 2008 +0530
31019
31020     Remove unused code from lib_arm/bootm.c
31021
31022     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
31023
31024 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
31025 Author: Detlev Zundel <dzu@denx.de>
31026 Date:   Wed Jul 16 18:56:45 2008 +0200
31027
31028     tqm85xx: Demystify 'DK: !!!' comment
31029
31030     Signed-off-by: Detlev Zundel <dzu@denx.de>
31031
31032 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
31033 Author: Detlev Zundel <dzu@denx.de>
31034 Date:   Wed Jul 16 18:56:44 2008 +0200
31035
31036     83xx/85xx/86xx: Add LTEDR local bus definitions
31037
31038     Signed-off-by: Detlev Zundel <dzu@denx.de>
31039
31040 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
31041 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31042 Date:   Wed Jul 16 16:22:32 2008 +0200
31043
31044     serial_xuartlite.c: fix compiler warnings
31045
31046     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31047     Acked-by: Grant Likely <grant.likely@secretlab.ca>
31048
31049 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
31050 Author: Stefan Roese <sr@denx.de>
31051 Date:   Fri Jul 18 11:03:35 2008 +0200
31052
31053     POST: Add disable interrupts in some of the missing CPU POST tests
31054
31055     Some CPU POST tests did not disable the interrupts while running. This
31056     seems to be necessary to protect this self modifying code.
31057
31058     Signed-off-by: Stefan Roese <sr@denx.de>
31059
31060 commit 97a3bf268d096e0e97e54048448c35114edcf557
31061 Author: Stefan Roese <sr@denx.de>
31062 Date:   Fri Jul 18 10:43:24 2008 +0200
31063
31064     ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
31065
31066     This is needed for boards that define CFG_64BIT_STRTOUL but don't define
31067     CFG_64BIT_LBA.
31068
31069     Signed-off-by: Stefan Roese <sr@denx.de>
31070
31071 commit 0043ac55024963295fc79b39af85b6dc3b261e17
31072 Author: Niklaus Giger <niklaus.giger@netstal.com>
31073 Date:   Fri Jul 18 11:22:23 2008 +0200
31074
31075     POST PPC4xx/spr IVPR only if PPC440
31076
31077     The SPR IVPR register is only present (as far as I know) for
31078     processors with a PPC440 core.
31079
31080     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
31081     Acked-by: Stefan Roese <sr@denx.de>
31082
31083 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
31084 Author: Stefan Roese <sr@denx.de>
31085 Date:   Fri Jul 18 10:42:29 2008 +0200
31086
31087     ppc4xx: Enable 64bit printf format on 440/460 platforms
31088
31089     This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
31090     440/460 platforms. This may be needed since those platforms support
31091     36bit physical address space.
31092
31093     Signed-off-by: Stefan Roese <sr@denx.de>
31094
31095 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
31096 Author: Stefan Roese <sr@denx.de>
31097 Date:   Fri Jul 18 15:57:23 2008 +0200
31098
31099     ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
31100
31101     This patch fixes a problem with incorrect MODTx (On Die Termination)
31102     setup for a configuration with multiple DIMM's and multiple ranks.
31103     Without this change Katmai was unable to boot Linux with DDR2 frequency
31104     >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
31105     with DDR2 frequency = 640MHz and mem=4GB.
31106
31107     Signed-off-by: Stefan Roese <sr@denx.de>
31108
31109 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
31110 Author: Stefan Roese <sr@denx.de>
31111 Date:   Fri Jul 18 12:24:41 2008 +0200
31112
31113     ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
31114
31115     Signed-off-by: Stefan Roese <sr@denx.de>
31116
31117 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
31118 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31119 Date:   Thu Jul 17 12:47:09 2008 +0200
31120
31121     ppc4xx: ML507 Board Support
31122
31123     The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
31124         among others:
31125         -Virtex 5 FX FPGA (With a ppc440x5 in it)
31126         -256MB of SDRAM2
31127         -32MB of Flash
31128         -I2C Eeprom
31129         -System ACE chip
31130         -Serial ATA connectors
31131         -RS232 Level Conversors
31132         -Ethernet Transceiver
31133
31134     This patch gives support to a standard design produced by EDK for this
31135     board: ppc440, uartlite, xilinx_int and flash
31136
31137     - Includes Changes propossed by Stefan Roese and Michal Simek
31138
31139     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31140     Acked-by: Stefan Roese <sr@denx.de>
31141
31142 commit d865fd09809a3a18669f35f970781820af40e4de
31143 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31144 Date:   Thu Jul 17 11:44:12 2008 +0200
31145
31146     ppc4xx: CPU PPC440x5 on Virtex5 FX
31147
31148     -This patchs gives support for the embbedded ppc440
31149      on the Virtex5 FPGAs
31150     -interrupts.c divided in uic.c and interrupts.c
31151     -xilinx_irq.c for xilinx interrupt controller
31152     -Include modifications propossed by  Stefan Roese
31153
31154     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31155     Acked-by: Stefan Roese <sr@denx.de>
31156
31157 commit 340ccb260f21516be360745d5c5e3bd0657698df
31158 Author: Sebastian Siewior <bigeasy@linutronix.de>
31159 Date:   Wed Jul 16 20:04:49 2008 +0200
31160
31161     cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
31162
31163     This got broken by commits 93c56f212c
31164      [cfi_flash: support of long cmd in U-boot.]
31165
31166     That command needs to be in little endian format on BE machines
31167     with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
31168     gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
31169     the cmdbuf in case portwidth = chipwidth = 8bit.
31170
31171     Cc: Alexey Korolev <akorolev@infradead.org>
31172     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
31173     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
31174
31175 commit 11188d55bc16dd907451c00282e00a038f73dd62
31176 Author: Stefan Roese <sr@denx.de>
31177 Date:   Thu Jul 17 10:40:51 2008 +0200
31178
31179     ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
31180
31181     Signed-off-by: Stefan Roese <sr@denx.de>
31182
31183 commit 021f6df6e96af5b387810cf96d24848da1faa55c
31184 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
31185 Date:   Thu Jul 10 17:20:51 2008 +0400
31186
31187     83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
31188
31189     The thinko was quite silly indeed, I messed with !ptr. Normally this
31190     would trigger some fault, but in U-Boot NULL pointer is equal to phys
31191     0, so the code was working still, just didn't actually test mpc8315erdb
31192     environment variable value. Heh.
31193
31194     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
31195     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31196
31197 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
31198 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
31199 Date:   Tue Jul 8 21:00:04 2008 +0400
31200
31201     83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
31202
31203     Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
31204     support, or without TSEC1 but with USB ULPI PHY support in addition.
31205     With this patch user can specify desired USB PHY.
31206
31207     Also, it seems that we can't distinguish the two boards in software, so
31208     user have to set `mpc8315erdb' environment variable to either 'tsec1'
31209     (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
31210     Linux will not probe for TSEC1.
31211
31212     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
31213     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31214
31215 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
31216 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
31217 Date:   Tue Jul 8 20:59:43 2008 +0400
31218
31219     fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
31220
31221     Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
31222     MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
31223     (connected to the four-ports hub, usb host only).
31224
31225     This patch implements support for passing Dual-Role USB controller's
31226     device tree property phy_type through the usb_phy_type environment
31227     variable.
31228
31229     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
31230     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
31231     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31232
31233 commit 699f05125509249072a0b865c8d35520d97cd501
31234 Author: Wolfgang Denk <wd@denx.de>
31235 Date:   Tue Jul 15 22:22:44 2008 +0200
31236
31237     Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
31238
31239     Signed-off-by: Wolfgang Denk <wd@denx.de>
31240
31241 commit bcab74baa6b1b1c969038ab6f64a186239180405
31242 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
31243 Date:   Tue Jul 15 11:23:02 2008 -0400
31244
31245     Round the serial port clock divisor value returned by calc_divisor()
31246
31247     Round the serial port clock divisor value returned by
31248     calc_divisor()
31249
31250     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
31251     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
31252
31253 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
31254 Author: Robin Getz <rgetz@blackfin.uclinux.org>
31255 Date:   Tue Jul 15 21:44:46 2008 +0200
31256
31257     Fix DHCP protocol so U-Boot does not respond too early
31258     on the network with it's offered IP number; it should not reply until
31259     after it has received a DHCP ACK message. Also ensures that U-Boot
31260     does it's DHCPREQUEST as broadcast (per RFC 2131).
31261
31262     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
31263     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31264     Signed-off-by: Wolfgang Denk <wd@denx.de>
31265
31266 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
31267 Author: Sebastian Siewior <bigeasy@linutronix.de>
31268 Date:   Tue Jul 15 13:35:23 2008 +0200
31269
31270     cfi_flash: make the command u32 only
31271
31272     This got changed by commit 93c56f212c
31273     [cfi_flash: support of long cmd in U-boot.]
31274
31275     Long is the wrong type because it will behave differently on 64bit
31276     machines in a way that is probably not expected. u32 should be
31277     enough.
31278
31279     Cc: Alexey Korolev <akorolev@infradead.org>
31280     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
31281     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
31282
31283 commit 31cfe57491b183acae575d486729e158f016c27b
31284 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31285 Date:   Mon Jul 14 23:48:41 2008 +0200
31286
31287     tools/gitignore: update to all generated files
31288
31289     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31290
31291 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
31292 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
31293 Date:   Wed Jul 9 18:30:44 2008 +0200
31294
31295     mpc5xxx: Add MVBC_P board support
31296
31297     The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
31298     controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
31299
31300     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
31301     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31302
31303 commit e2d31fb3450653115452144363d5bde4e5e3e693
31304 Author: Timur Tabi <timur@freescale.com>
31305 Date:   Thu Jun 19 17:56:11 2008 -0500
31306
31307     Update Freescale sys_eeprom.c to handle CCID formats
31308
31309     Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats.  The
31310     NXID format replaces the older CCID format, but it's important to support both
31311     since most boards out there still use the CCID format.  This change is in
31312     preparation for using one file to handle both formats.  This will also unify
31313     EEPROM support for all Freescale 85xx and 86xx boards.
31314
31315     Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
31316     instead of ID_EEPROM_ADDR.
31317
31318     Signed-off-by: Timur Tabi <timur@freescale.com>
31319
31320 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
31321 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
31322 Date:   Fri Jul 11 17:22:43 2008 +0900
31323
31324     pci: sh: Add pci_skip_dev and pci_print_dev function
31325
31326     Add function of new PCI, pci_skip_dev and pci_print_dev.
31327
31328     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
31329     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31330
31331 commit 1107014e835ec9d46c0333f4211d104f77442db0
31332 Author: Andy Fleming <afleming@freescale.com>
31333 Date:   Mon Jul 14 20:29:07 2008 -0500
31334
31335     Clean up INIT_RAM options
31336
31337     The L2_INIT_RAM option was unused, and recent changes to the TLB code
31338     meant that the INIT_RAM TLBs weren't being cleared out.  In order to reduce
31339     the amount of mapped space attached to nothing, we change things so the TLBs
31340     get cleared.
31341
31342     Signed-off-by: Andy Fleming <afleming@freescale.com>
31343
31344 commit 4524561820a9327e89107854b3a7187800ccf719
31345 Author: Andy Fleming <afleming@freescale.com>
31346 Date:   Mon Jul 14 20:26:57 2008 -0500
31347
31348     Remove fake flash bank from 8544 DS
31349
31350     The fake flash bank was generating errors for anyone who didn't have a
31351     PromJET hooked up to the board.  As that constitutes the vast majority of
31352     users, we remove it.
31353
31354     Signed-off-by: Andy Fleming <afleming@freescale.com>
31355
31356 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
31357 Author: Kumar Gala <galak@kernel.crashing.org>
31358 Date:   Mon Jul 14 14:07:03 2008 -0500
31359
31360     MPC8544DS: Add ATI Video card support
31361
31362     Add support for using a PCIe ATI Video card on PCIe2.
31363
31364     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31365
31366 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
31367 Author: Kumar Gala <galak@kernel.crashing.org>
31368 Date:   Mon Jul 14 14:07:02 2008 -0500
31369
31370     85xx: Add some L1/L2 SPR register definitions
31371
31372     Add new L1/L2 SPRs related to e500mc cache config and control.
31373
31374     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31375
31376 commit e5852787f0c3c442a276262f13d91ca450605ac0
31377 Author: Kumar Gala <galak@kernel.crashing.org>
31378 Date:   Mon Jul 14 14:07:01 2008 -0500
31379
31380     MPC8544DS: Report board id, board version and fpga version.
31381
31382     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31383
31384 commit 73f15a060f67a2462551c334215bd20fac6b81d1
31385 Author: Kumar Gala <galak@kernel.crashing.org>
31386 Date:   Mon Jul 14 14:07:00 2008 -0500
31387
31388     85xx: Cleanup L2 cache size detection
31389
31390     The L2 size detection code was a bit confusing and we kept having to add
31391     code to it to handle new processors.  Change the sense of detection so we
31392     look for the older processors that aren't changing.
31393
31394     Also added support for 1M cache size on 8572.
31395
31396     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31397
31398 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
31399 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
31400 Date:   Fri Jul 11 15:33:08 2008 -0400
31401
31402     sbc8560: enable CONFIG_OF_LIBFDT by default
31403
31404     Make the default build for the sbc8560 board be powerpc
31405     capable with libfdt support.
31406
31407     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
31408
31409 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
31410 Author: Andy Fleming <afleming@freescale.com>
31411 Date:   Mon Jul 14 20:04:40 2008 -0500
31412
31413     Fix indentation for default boot environment variables
31414
31415     This was proposed by Paul Gortmaker in response to Wolfgang's comments on
31416     similar #defines in sbc8560.h.
31417
31418     Signed-off-by: Andy Fleming <afleming@freescale.com>
31419
31420 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
31421 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
31422 Date:   Fri Jul 11 15:33:07 2008 -0400
31423
31424     sbc8560: add default fdt values
31425
31426     Add in the default fdt settings and the typical EXTRA_ENV
31427     settings as borrowed from the mpc8560ads.  Fix a couple
31428     of stale references to the mpc8560ads dating back to the
31429     original clone/fork.
31430
31431     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
31432     Signed-off-by: Andy Fleming <afleming@freescale.com>
31433
31434 commit d04e76edf92f7f89696989e8702b97e020455af3
31435 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
31436 Date:   Fri Jul 11 15:33:06 2008 -0400
31437
31438     sbc8560: add in ft_board_setup()
31439
31440     Add in for the sbc8560, the ft_board_setup() routine, based on what is
31441     in use for the Freescale MPC8560ADS board.
31442
31443     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
31444
31445 commit c158bcaca3b31cbe38c4143812e6170e38a57393
31446 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
31447 Date:   Fri Jul 11 15:33:05 2008 -0400
31448
31449     sbc8560: define eth0 and eth1 instead of eth1 and eth2
31450
31451     The existing config doesn't define CONFIG_HAS_ETH0, and so the
31452     fdt support doesn't update the zeros in the dtb local-mac with
31453     real data from the u-boot env.  Since the existing config is
31454     tailored to just two interfaces, get rid of the ETH2 definitions
31455     at the same time.
31456
31457     Also don't include any end user specific data into the environment
31458     by default -- things like MAC address, network parameters etc. need
31459     to come from the end user.
31460
31461     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
31462     Signed-off-by: Andy Fleming <afleming@freescale.com>
31463
31464 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
31465 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
31466 Date:   Fri Jul 11 15:33:04 2008 -0400
31467
31468     sbc8560: properly set cs0_bnds for 512MB
31469
31470     The sbc8560 board ships with 512MB of memory installed,
31471     but the current cs0_bnds is hard coded for 256MB.  Set the
31472     value based on CFG_SDRAM_SIZE.
31473
31474     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
31475
31476 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
31477 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
31478 Date:   Fri Jul 11 15:33:03 2008 -0400
31479
31480     sbc8560: proper definitions for TSEC.
31481
31482     The definitions for the TSEC have become out of date.  There is no
31483     longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
31484     Update to match those of other boards, like the MPC8560ADS.
31485
31486     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
31487     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31488
31489 commit 71074abbe0c76429577aff58aeff0a24ad210b23
31490 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
31491 Date:   Wed Jul 9 13:23:05 2008 -0400
31492
31493     8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
31494
31495     Some boards that have external 16550 UARTs don't have a direct
31496     tie between bi_busfreq and the clock used for the UARTs.  Boards
31497     that do have such a tie should set CFG_NS16550_CLK to be
31498     get_bus_freq(0) -- which most of them do already.
31499
31500     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
31501     Acked-by: Kim Phillips <kim.phillips@freescale.com>
31502
31503 commit 24ef76f320fbadf074105229826514db140f939f
31504 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
31505 Date:   Wed Jul 2 07:03:53 2008 -0700
31506
31507     Change the temp map to ROM to align addresses to page size.
31508
31509     With a page size of BOOKE_PAGESZ_16M, both the real and effective
31510     addresses must be multiples of 16MB.  The hardware silently truncates
31511     them so the code happens to work.  This patch clarifies the situation
31512     by establishing addresses that the hardware doesn't need to truncate.
31513
31514     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
31515     Signed-off-by: Andy Fleming <afleming@freescale.com>
31516
31517 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
31518 Author: Kim Phillips <kim.phillips@freescale.com>
31519 Date:   Tue Jun 17 17:45:22 2008 -0500
31520
31521     mpc85xx: use IS_E_PROCESSOR macro
31522
31523     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31524
31525 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
31526 Author: Kim Phillips <kim.phillips@freescale.com>
31527 Date:   Mon Jun 16 15:55:53 2008 -0500
31528
31529     fdt: add crypto node handling for MPC8{3, 5}xxE processors
31530
31531     Delete the crypto node if not on an E-processor.  If on 8360 or 834x family,
31532     check rev and up-rev crypto node (to SEC rev. 2.4 property values)
31533     if on an 'EA' processor, e.g. MPC8349EA.
31534
31535     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31536
31537 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
31538 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
31539 Date:   Fri Jul 11 15:10:11 2008 -0400
31540
31541     ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
31542
31543     ARM DaVinci: Remove extern phy_t declaration by moving
31544     code to proper place.
31545
31546     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
31547
31548 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
31549 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
31550 Date:   Fri Jul 11 15:10:10 2008 -0400
31551
31552     ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
31553
31554     ARM DaVinci: Remove duplicate definitions of MACH_TYPE
31555     and prototype of i2c_init().
31556
31557     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
31558
31559 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
31560 Author: Kumar Gala <galak@kernel.crashing.org>
31561 Date:   Mon Jul 14 14:03:02 2008 -0500
31562
31563     Fix some more printf() format problems.
31564
31565     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31566
31567 commit 45b16d22c64674ccd8c4637456a987463609141c
31568 Author: Wolfgang Denk <wd@denx.de>
31569 Date:   Mon Jul 14 22:38:42 2008 +0200
31570
31571     Fix coding style; make code better parsable by external tools
31572
31573     Signed-off-by: Wolfgang Denk <wd@denx.de>
31574
31575 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
31576 Author: Wolfgang Denk <wd@denx.de>
31577 Date:   Mon Jul 14 21:19:08 2008 +0200
31578
31579     cpu/i386/serial.c: Fix syntax errors
31580
31581     Signed-off-by: Wolfgang Denk <wd@denx.de>
31582
31583 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
31584 Author: Wolfgang Denk <wd@denx.de>
31585 Date:   Mon Jul 14 20:41:35 2008 +0200
31586
31587     elppc board: Coding style cleanup.
31588
31589     Signed-off-by: Wolfgang Denk <wd@denx.de>
31590
31591 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
31592 Author: Wolfgang Denk <wd@denx.de>
31593 Date:   Mon Jul 14 20:40:22 2008 +0200
31594
31595     elppc board: fix syntax error.
31596
31597     Signed-off-by: Wolfgang Denk <wd@denx.de>
31598
31599 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
31600 Author: Wolfgang Denk <wd@denx.de>
31601 Date:   Mon Jul 14 20:38:26 2008 +0200
31602
31603     EB+MCF-EV123 board: fix coding style (alingment)
31604
31605     Signed-off-by: Wolfgang Denk <wd@denx.de>
31606
31607 commit 6841785a0bb0f38175456a923edd634fb7dd6947
31608 Author: Wolfgang Denk <wd@denx.de>
31609 Date:   Mon Jul 14 20:36:44 2008 +0200
31610
31611     EB+MCF-EV123 board: fix syntx error
31612
31613     Signed-off-by: Wolfgang Denk <wd@denx.de>
31614
31615 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
31616 Author: Andy Fleming <afleming@freescale.com>
31617 Date:   Mon Jul 7 18:02:08 2008 -0500
31618
31619     Remove LBC_CACHE_BASE from 8544 DS
31620
31621     The 8544 DS doesn't have any cacheable Local Bus memories set up.  By mapping
31622     space for some anyway, we were allowing speculative loads into unmapped space,
31623     which would cause an exception (annoying, even if ultimately harmless).
31624     Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
31625     problem.
31626
31627     Signed-off-by: Andy Fleming <afleming@freescale.com>
31628
31629 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
31630 Author: Wolfgang Denk <wd@denx.de>
31631 Date:   Mon Jul 14 15:19:07 2008 +0200
31632
31633     Code cleanup: fix old style assignment ambiguities like "=-" etc.
31634
31635     Signed-off-by: Wolfgang Denk <wd@denx.de>
31636
31637 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
31638 Author: Wolfgang Denk <wd@denx.de>
31639 Date:   Mon Jul 14 15:10:53 2008 +0200
31640
31641     AmigaOneG3SE: remove dead and incomplete files
31642
31643     Signed-off-by: Wolfgang Denk <wd@denx.de>
31644
31645 commit b64f190b7a34224df09b559ca111eb1b733f00ad
31646 Author: Wolfgang Denk <wd@denx.de>
31647 Date:   Mon Jul 14 15:06:35 2008 +0200
31648
31649     Fix printf() format issues with sizeof_t types by using %zu
31650
31651     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31652     Signed-off-by: Wolfgang Denk <wd@denx.de>
31653
31654 commit f354b73e16a86f9e9085471a830605f74f84ea5d
31655 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31656 Date:   Mon Jul 14 14:11:45 2008 +0200
31657
31658     vsprintf: add z and t options
31659
31660     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31661
31662 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
31663 Author: Wolfgang Denk <wd@denx.de>
31664 Date:   Sun Jul 13 23:07:35 2008 +0200
31665
31666     Fix some more printf() format issues.
31667
31668     Signed-off-by: Wolfgang Denk <wd@denx.de>
31669
31670 commit d5996dd555edf52721b7691a4c59de016251ed39
31671 Author: Wolfgang Denk <wd@denx.de>
31672 Date:   Sun Jul 13 19:51:00 2008 +0200
31673
31674     Fix some more printf() format problems.
31675
31676     Signed-off-by: Wolfgang Denk <wd@denx.de>
31677
31678 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
31679 Author: Wolfgang Denk <wd@denx.de>
31680 Date:   Sun Jul 13 19:48:26 2008 +0200
31681
31682     ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
31683
31684     Signed-off-by: Wolfgang Denk <wd@denx.de>
31685
31686 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
31687 Author: Anatolij Gustschin <agust@denx.de>
31688 Date:   Sat Jul 12 17:31:36 2008 +0200
31689
31690     Fix bug in Lime video driver
31691
31692     We need to wait while drawing engine clears frame
31693     buffer before any further software accesses to frame
31694     buffer will be initiated. Otherwise software drawn
31695     parts could be partially destroyed by the drawing
31696     engine or even GDC chip freeze could occur (as
31697     observed on socrates board).
31698
31699     Signed-off-by: Anatolij Gustschin <agust@denx.de>
31700
31701 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
31702 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31703 Date:   Sat Jul 12 14:36:34 2008 +0200
31704
31705     Fix some more printf() format issues.
31706
31707     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31708
31709 commit 18c8a28aad49803780bd8d52432ded528e37e701
31710 Author: Michal Simek <monstr@monstr.eu>
31711 Date:   Fri Jul 11 15:11:57 2008 +0200
31712
31713     hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
31714
31715     Signed-off-by: Michal Simek <monstr@monstr.eu>
31716     Acked-by: Stefan Roese <sr@denx.de>
31717
31718 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
31719 Author: Michal Simek <monstr@monstr.eu>
31720 Date:   Fri Jul 11 11:50:53 2008 +0200
31721
31722     hwmon: Cleaning hwmon devices
31723
31724     Clean Makefile
31725     Move device specific values to driver for better reading
31726
31727     Signed-off-by: Michal Simek <monstr@monstr.eu>
31728     Acked-by: Stefan Roese <sr@denx.de>
31729
31730 commit c78fce699c7ff467ecd841da6a79f065180bf578
31731 Author: Michal Simek <monstr@monstr.eu>
31732 Date:   Fri Jul 11 10:43:13 2008 +0200
31733
31734     FIS: repare incorrect return value with ramdisk handling
31735
31736     Microblaze and PowerPC use boot_get_ramdisk for loading
31737     ramdisk to memory with checking return value.
31738     Return 0 means success. Return 1 means failed.
31739     Here is correspond part of code from bootm.c which check
31740     return code.
31741
31742     ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
31743                 &rd_data_start, &rd_data_end);
31744     if (ret)
31745         goto error;
31746
31747     Signed-off-by: Michal Simek <monstr@monstr.eu>
31748
31749 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
31750 Author: Michal Simek <monstr@monstr.eu>
31751 Date:   Fri Jul 11 10:10:32 2008 +0200
31752
31753     microblaze: Remove useless ancient headers
31754
31755     Signed-off-by: Michal Simek <monstr@monstr.eu>
31756
31757 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
31758 Author: Michal Simek <monstr@monstr.eu>
31759 Date:   Fri Jul 11 10:10:31 2008 +0200
31760
31761     microblaze: Clean uartlite driver
31762
31763     Redesign uartlite driver to in_be32 and out_be32 macros
31764     Fix missing header in io.h
31765
31766     Signed-off-by: Michal Simek <monstr@monstr.eu>
31767     Acked-by: Grant Likely <grant.likely@secretlab.ca>
31768
31769 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
31770 Author: Marcel Ziswiler <marcel@ziswiler.com>
31771 Date:   Fri Jul 11 02:39:14 2008 +0200
31772
31773     Enable passing of ATAGs required by latest Linux kernel.
31774
31775 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
31776 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
31777 Date:   Fri Jul 11 10:24:15 2008 -0400
31778
31779     Fix integer overflow warning in calc_divisor()
31780
31781     which happened when rounding the serial port clock divisor
31782
31783     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
31784
31785 commit 6b760189d77f001684e3160b355c185ca3804961
31786 Author: Marcel Ziswiler <marcel@ziswiler.com>
31787 Date:   Fri Jul 11 01:09:59 2008 +0200
31788
31789     Fix build time warnings in function mmc_decode_csd()
31790
31791     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
31792
31793 commit c15947d6ce0d59925c97fdfac692476af6e262d0
31794 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
31795 Date:   Thu Jul 10 10:46:33 2008 -0400
31796
31797     ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
31798
31799     caused by missing dcache status/enable/disable functions.
31800
31801     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
31802
31803 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
31804 Author: Stefan Roese <sr@denx.de>
31805 Date:   Thu Jul 10 13:53:31 2008 +0200
31806
31807     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
31808
31809     This patch removes some ft_board_setup() functions from some 4xx boards.
31810     This can be done since we now have a default weak implementation for this
31811     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
31812     implementation like canyonlands need their own version.
31813
31814     Signed-off-by: Stefan Roese <sr@denx.de>
31815
31816 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
31817 Author: Wolfgang Denk <wd@denx.de>
31818 Date:   Sun Jul 13 14:58:16 2008 +0200
31819
31820     Add last known maintainer for orphaned boards; reformat.
31821
31822     Signed-off-by: Wolfgang Denk <wd@denx.de>
31823
31824 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
31825 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31826 Date:   Thu Jul 10 13:16:04 2008 +0200
31827
31828     Remove kharris@nexus-tech.net from MAINTAINERS
31829
31830     Mail to kharris@nexus-tech.net bounces because the user doesn't exist
31831     anymore. You can't be a maintainer without a valid e-mail address, so
31832     move all boards that used to be maintained by Kyle Harris to the
31833     "orphaned" list.
31834
31835     Currently, only PowerPC has a list of orphaned boards, so this patch
31836     creates one for ARM as well.
31837
31838     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31839
31840 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
31841 Author: Anatolij Gustschin <agust@denx.de>
31842 Date:   Thu Jul 10 01:15:10 2008 +0200
31843
31844     at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
31845
31846     On the at91sam9260ep development board there is an EEPROM
31847     connected to the TWI interface (PA23, PA24 Peripheral A
31848     multiplexing), so we cannot use these pins as ETX2, ETX3.
31849     This patch configures PA10, PA11 pins for ETX2, ETX3
31850     instead of PA23, PA24 pins.
31851
31852     Signed-off-by: Anatolij Gustschin <agust@denx.de>
31853     Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
31854
31855 commit f889265753ddf4465d9d580827bb9289bfac55d6
31856 Author: Kenneth Johansson <kenneth@southpole.se>
31857 Date:   Sat Jul 12 13:18:34 2008 -0600
31858
31859     fix DIU for small screens
31860
31861     The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
31862     so it was not possible to set a slow pixel clock and thus prevented
31863     display on small screens.
31864
31865     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
31866     Acked-by: John Rigby <jrigby@freescale.com>
31867
31868 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
31869 Author: John Rigby <jrigby@freescale.com>
31870 Date:   Fri Jul 11 14:44:09 2008 -0600
31871
31872     ADS5121 cleanup compile warnings
31873
31874     board/ads5121/iopin.c
31875         Replace bit fields in struct iopin_t with a single
31876         field and intialize it via plain old macros.
31877         This fixes the type pun warnings and makes the code
31878         more readable.
31879
31880     board/ads5121/ads5121.c
31881         Add include iopin.h to ads5121.c for the iopin_initialize
31882         prototype.
31883
31884         Add an extern void ads5121_diu_init(void)
31885
31886     Signed-off-by: John Rigby <jrigby@freescale.com>
31887
31888 commit bde63587622c4b830a27d1ddf7265843de9e994f
31889 Author: Wolfgang Denk <wd@denx.de>
31890 Date:   Fri Jul 11 22:56:11 2008 +0200
31891
31892     Fix some more printf() format issues.
31893
31894     Signed-off-by: Wolfgang Denk <wd@denx.de>
31895
31896 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
31897 Author: Wolfgang Denk <wd@denx.de>
31898 Date:   Fri Jul 11 22:55:31 2008 +0200
31899
31900     Fixed some out-of-tree build issues
31901
31902     Signed-off-by: Wolfgang Denk <wd@denx.de>
31903
31904 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
31905 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31906 Date:   Wed Jul 9 16:20:23 2008 -0500
31907
31908     ColdFire: Fix FB CS not setup properly for Mcf5282
31909
31910     Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
31911     CFG_CSn_RO is defined as 0, the chipselect will not
31912     be assigned.
31913
31914     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31915
31916 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
31917 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31918 Date:   Wed Jul 9 15:47:27 2008 -0500
31919
31920     ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
31921
31922     Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
31923     clock module in cpu/<cf arch>/cpu_init.c
31924
31925     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31926
31927 commit f94945b517f10e01927101679c62361e03d4e837
31928 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31929 Date:   Wed Jul 9 15:25:01 2008 -0500
31930
31931     ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
31932
31933     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31934
31935 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
31936 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31937 Date:   Wed Jul 9 15:21:44 2008 -0500
31938
31939     Fix compile error caused by missing timer function
31940
31941     Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
31942
31943     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31944
31945 commit c37ea031175b807c54e6bad9b270e9bede6c0078
31946 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31947 Date:   Wed Jul 9 15:14:25 2008 -0500
31948
31949     Fix compile error caused by incorrect function return type
31950
31951     Rename int mii_init(void) to void mii_init(void)
31952
31953     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31954
31955 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
31956 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31957 Date:   Wed Jun 18 19:27:23 2008 -0500
31958
31959     ColdFire: Fix power up issue for MCF5235
31960
31961     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31962
31963 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
31964 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31965 Date:   Wed Jun 18 19:19:07 2008 -0500
31966
31967     ColdFire: Fix compiling error for MCF5275
31968
31969     The compiling error was caused by missing a closed parentheses
31970     in speed.c
31971
31972     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31973
31974 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
31975 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31976 Date:   Wed Jun 18 19:14:01 2008 -0500
31977
31978     ColdFire: Fix timer issue for MCF5272
31979
31980     The timer was assigned to wrong timer memory mapped which
31981     caused udelay() and timer() not working properly.
31982
31983     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31984
31985 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
31986 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31987 Date:   Wed Jun 18 19:12:13 2008 -0500
31988
31989     ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
31990
31991     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
31992
31993 commit 8371dc2066136be21e10b7b9293e469297d77298
31994 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31995 Date:   Wed Jun 18 19:05:23 2008 -0500
31996
31997     ColdFire: Add -got=single param for new linux v4e toolchains
31998
31999     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
32000
32001 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
32002 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32003 Date:   Wed Jun 18 13:21:19 2008 -0500
32004
32005     ColdFire: Fix code flash configuration for M547x/M548x boards
32006
32007     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
32008
32009 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
32010 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32011 Date:   Tue Jun 24 12:12:16 2008 -0500
32012
32013     ColdFire: Fix warning messages by passing correct data type in board.c
32014
32015     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32016
32017 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
32018 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32019 Date:   Thu May 29 12:21:54 2008 -0500
32020
32021     ColdFire: Fix UART baudrate formula
32022
32023     The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
32024     can generate the wrong divisor due to integer division truncation.
32025     Round the calculated divisor value by adding 1/2 the baudrate
32026     before dividing by the baudrate.
32027
32028     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32029     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
32030
32031 commit b578fb471444cbd7db1285701ba51343baaf73fb
32032 Author: Stefan Roese <sr@denx.de>
32033 Date:   Thu Jul 10 11:38:26 2008 +0200
32034
32035     ppc4xx: Fix include sequence in 4xx_pcie.c
32036
32037     This patch now moves common.h to the top of the inlcude list. This
32038     is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
32039     the phys_size_t/phys_addr_t are defined to the correct size in this
32040     driver.
32041
32042     Signed-off-by: Stefan Roese <sr@denx.de>
32043
32044 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
32045 Author: Stefan Roese <sr@denx.de>
32046 Date:   Fri Jul 11 13:10:56 2008 +0200
32047
32048     ppc4xx: Fix compile warning in 44x_spd_ddr2.c
32049
32050     Signed-off-by: Stefan Roese <sr@denx.de>
32051
32052 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
32053 Author: Stefan Roese <sr@denx.de>
32054 Date:   Fri Jul 11 11:40:13 2008 +0200
32055
32056     ppc4xx: Fix small korat merge problem
32057
32058     Signed-off-by: Stefan Roese <sr@denx.de>
32059
32060 commit 1d0554736a0a1dd59718acda660871ce56b69e18
32061 Author: Stefan Roese <sr@denx.de>
32062 Date:   Fri Jul 11 11:34:52 2008 +0200
32063
32064     ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
32065
32066     Signed-off-by: Stefan Roese <sr@denx.de>
32067
32068 commit 3a82113ed5934d498f25080441a8261fc9454b15
32069 Author: Stefan Roese <sr@denx.de>
32070 Date:   Thu Jul 10 16:37:09 2008 +0200
32071
32072     ppc4xx: Add 460SX UIC defines
32073
32074     Only the really needed ones are added (cascading and EMAC/MAL).
32075
32076     Signed-off-by: Stefan Roese <sr@denx.de>
32077
32078 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
32079 Author: Stefan Roese <sr@denx.de>
32080 Date:   Mon Jun 30 14:11:07 2008 +0200
32081
32082     ppc4xx: Continue cleanup of ppc440.h
32083
32084     This patch continues the ppc440.h cleanup by removing some of the unused
32085     defines.
32086
32087     Signed-off-by: Stefan Roese <sr@denx.de>
32088
32089 commit d9056b7913ed6a228d2f33671d916efedee541dd
32090 Author: Stefan Roese <sr@denx.de>
32091 Date:   Mon Jun 30 14:05:05 2008 +0200
32092
32093     ppc4xx: Cleanup Katmai & Yucca PCIe register usage
32094
32095     This patch cleans up the 440SPe PCIe register usage. Now only defines
32096     from the include/asm-ppc/4xx_pcie.h are used.
32097
32098     Signed-off-by: Stefan Roese <sr@denx.de>
32099
32100 commit 5de851403b01489b493fa83137ad990b8ce60d1c
32101 Author: Stefan Roese <sr@denx.de>
32102 Date:   Thu Jun 26 17:36:39 2008 +0200
32103
32104     ppc4xx: Rework 440GX UIC handling
32105
32106     This patch reworks the 440GX interrupt handling so that the common 4xx
32107     code can be used. The 440GX is an exception to all other 4xx variants
32108     by having the cascading interrupt vectors not on UIC0 but on a special
32109     UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
32110     the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
32111     handling is simpler without any 440GX special cases.
32112
32113     Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
32114
32115     Signed-off-by: Stefan Roese <sr@denx.de>
32116
32117 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
32118 Author: Stefan Roese <sr@denx.de>
32119 Date:   Thu Jun 26 13:40:57 2008 +0200
32120
32121     ppc4xx: Consolidate PPC4xx UIC defines
32122
32123     This 2nd patch now removes all UIC mask bit definition. They should be
32124     generated from the vectors by using the UIC_MASK() macro from now on.
32125     This way only the vectors need to get defined for new PPC's.
32126
32127     Also only the really used interrupt vectors are now defined. This makes
32128     definitions for new PPC versions easier and less error prone.
32129
32130     Another part of this patch is that the 4xx emac driver got a little
32131     cleanup, since now the usage of the interrupts is clearer.
32132
32133     Signed-off-by: Stefan Roese <sr@denx.de>
32134
32135 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
32136 Author: Stefan Roese <sr@denx.de>
32137 Date:   Wed Jun 25 10:59:22 2008 +0200
32138
32139     ppc4xx: Consolidate PPC4xx UIC defines
32140
32141     This patch is the first step to consolidate the UIC related defines in the
32142     4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
32143     asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
32144     steps.
32145
32146     Signed-off-by: Stefan Roese <sr@denx.de>
32147
32148 commit 7ee2619c20ccecd57966d74d844e6329e141261c
32149 Author: Stefan Roese <sr@denx.de>
32150 Date:   Tue Jun 24 17:18:50 2008 +0200
32151
32152     ppc4xx: Consolidate PPC4xx EBC defines
32153
32154     This patch removes all EBC related defines from the PPC4xx headers
32155     ppc405.h and ppc440.h and introduces a new header
32156
32157     include/asm-ppc/ppc4xx-ebc.h
32158
32159     with all those defines.
32160
32161     Signed-off-by: Stefan Roese <sr@denx.de>
32162
32163 commit e321801bed5a6d896d298c00fd20046f039d5d66
32164 Author: Stefan Roese <sr@denx.de>
32165 Date:   Thu Jul 10 13:52:44 2008 +0200
32166
32167     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
32168
32169     This patch removes some ft_board_setup() functions from some 4xx boards.
32170     This can be done since we now have a default weak implementation for this
32171     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
32172     implementation like canyonlands need their own version.
32173
32174     Signed-off-by: Stefan Roese <sr@denx.de>
32175
32176 commit 08250eb2edbd96514d049602d9e134110ac3185f
32177 Author: Stefan Roese <sr@denx.de>
32178 Date:   Thu Jul 10 15:32:32 2008 +0200
32179
32180     ppc4xx: Fix merge problems in 44x_spd_ddr2.c
32181
32182     Signed-off-by: Stefan Roese <sr@denx.de>
32183
32184 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
32185 Author: Grant Erickson <gerickson@nuovations.com>
32186 Date:   Tue Jul 8 08:35:00 2008 -0700
32187
32188     ppc4xx: Add MII mode support to the EMAC RGMII Bridge
32189
32190     This patch adds support for placing the RGMII bridge on the
32191     PPC405EX(r) into MII/GMII mode and allows a board-specific
32192     configuration to specify the bridge mode at compile-time.
32193
32194     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
32195     Signed-off-by: Stefan Roese <sr@denx.de>
32196
32197 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
32198 Author: Grant Erickson <gerickson@nuovations.com>
32199 Date:   Wed Jul 9 16:46:35 2008 -0700
32200
32201     ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
32202
32203     This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
32204     controller registers (MODT and INITPLR) used by the
32205     PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
32206     peer values used for the INITPLR MR and EMR registers,
32207     respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
32208
32209     With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
32210     Kilauea are replaced by equivalent mnemonics to make it easier to
32211     compare and contrast other 405EX(r)-based boards (e.g. during board
32212     bring-up).
32213
32214     Finally, unified the SDRAM controller register dump routine such that
32215     it can be used across all processor variants that utilize the IBM DDR2
32216     SDRAM controller core. It produces output of the form:
32217
32218         PPC4xx IBM DDR2 Register Dump:
32219                 ...
32220                 SDRAM_MB0CF[40] = 0x00006701
32221                 ...
32222
32223     which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
32224     since it is not uncommon that the DCR values in header files get mixed
32225     up and it helps to validate, at a glance, they match what is printed
32226     in the user manual.
32227
32228     Tested on:
32229       AMCC Kilauea/Haleakala:
32230       - NFS Linux Boot: PASSED
32231       - NAND Linux Boot: PASSED
32232
32233     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
32234     Signed-off-by: Stefan Roese <sr@denx.de>
32235
32236 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
32237 Author: Grant Erickson <gerickson@nuovations.com>
32238 Date:   Wed Jul 9 16:31:59 2008 -0700
32239
32240     ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
32241
32242     Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
32243     revision ID DCR based on 405EX, and add field mnemonics for bus error
32244     status and ECC error status registers.
32245
32246     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
32247     Signed-off-by: Stefan Roese <sr@denx.de>
32248
32249 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
32250 Author: Grant Erickson <gerickson@nuovations.com>
32251 Date:   Wed Jul 9 16:31:36 2008 -0700
32252
32253     ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
32254
32255     This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
32256
32257     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
32258     Signed-off-by: Stefan Roese <sr@denx.de>
32259
32260 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
32261 Author: Grant Erickson <gerickson@nuovations.com>
32262 Date:   Wed Jul 9 11:55:46 2008 -0700
32263
32264     PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
32265
32266     While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
32267     controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
32268     the 405EX(r), SDRAM_MCSTAT has a different DCR value.
32269
32270     Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
32271     which causes SDRAM initialization to periodically fail since it can
32272     prematurely indicate SDRAM ready status.
32273
32274     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
32275     Signed-off-by: Stefan Roese <sr@denx.de>
32276
32277 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
32278 Author: Feng Kan <fkan@amcc.com>
32279 Date:   Tue Jul 8 22:48:42 2008 -0700
32280
32281     ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
32282
32283     Add AMCC Redwood reference board that uses the latest
32284     PPC 464 CPU processor combined with a rich mix of peripheral
32285     controllers. The board will support PCIe, mutiple Gig ethernet
32286     ports, advanced hardware RAID assistance and IEEE 1588.
32287
32288     Signed-off-by: Feng Kan <fkan@amcc.com>
32289     Signed-off-by: Stefan Roese <sr@denx.de>
32290
32291 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
32292 Author: Feng Kan <fkan@amcc.com>
32293 Date:   Tue Jul 8 22:48:07 2008 -0700
32294
32295     ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
32296
32297     Signed-off-by: Feng Kan <fkan@amcc.com>
32298     Signed-off-by: Stefan Roese <sr@denx.de>
32299
32300 commit 7d30793685efcada183891c78fc892e6c9ba50c7
32301 Author: Feng Kan <fkan@amcc.com>
32302 Date:   Tue Jul 8 22:47:31 2008 -0700
32303
32304     ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
32305
32306     Signed-off-by: Feng Kan <fkan@amcc.com>
32307     Signed-off-by: Stefan Roese <sr@denx.de>
32308
32309 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
32310 Author: Wolfgang Denk <wd@denx.de>
32311 Date:   Fri Jul 11 01:16:00 2008 +0200
32312
32313     Fix some more print() format errors.
32314
32315     Signed-off-by: Wolfgang Denk <wd@denx.de>
32316
32317 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
32318 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32319 Date:   Thu Jul 10 20:57:54 2008 +0200
32320
32321     MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
32322
32323     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32324
32325 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
32326 Author: Sergey Lapin <slapin@ossfans.org>
32327 Date:   Thu Jun 5 11:06:29 2008 +0400
32328
32329     DataFlash AT45DB021 support
32330
32331     Some boards based on AT91SAM926X-EK use smaller DF chips to keep
32332     bootstrap, u-boot and its environment, using NAND or other external
32333     storage for kernel and rootfs. This patch adds support for
32334     small 1024x263 chip.
32335
32336     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
32337
32338 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
32339 Author: Kim Phillips <kim.phillips@freescale.com>
32340 Date:   Thu Jul 10 14:00:15 2008 -0500
32341
32342     silence misc printf formatting compiler warnings
32343
32344     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32345
32346 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
32347 Author: Markus KlotzbĂ¼cher <mk@denx.de>
32348 Date:   Thu Jul 10 14:47:09 2008 +0200
32349
32350     USB: shutdown USB before booting
32351
32352     This patch fixes a potentially serious issue related to USB which was
32353     discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
32354     ARM920T. Martin wrote:
32355
32356       Turn off USB to prevent the host controller from writing to the
32357       SDRAM while Linux is booting. This could happen, because the HCCA
32358       (Host Controller Communication Area) lies within the SDRAM and the
32359       host controller writes continously to this area (as busmaster!), for
32360       example to increase the HccaFrameNumber variable, which happens
32361       every 1 ms.
32362
32363     This is a slightly modified version of the patch in order to shutdown
32364     USB when booting on all architectures.
32365
32366     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
32367
32368 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
32369 Author: Martha Marx <mmarx@silicontkx.com>
32370 Date:   Thu May 29 14:23:25 2008 -0400
32371
32372     Configuration changes for ADS5121 Rev 3
32373
32374     ADS5121 Rev 3 board is now the default config
32375
32376     config targets are now
32377
32378     ads5121_config
32379         Rev 3 board with
32380         PCI
32381         M41T62 on board RTC
32382         512MB DRAM
32383
32384     ads5121_rev2_config
32385         Rev 2 board with
32386         No PCI
32387         256MB DRAM
32388
32389     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
32390     Acked-by: Grant Likely <grant.likely@secretlab.ca>
32391     Acked-by: John Rigby <jrigby@freescale.com>
32392
32393 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
32394 Author: Martha Marx <mmarx@silicontkx.com>
32395 Date:   Thu May 29 15:37:21 2008 -0400
32396
32397     Consolidate ADS5121 IO Pin configuration
32398
32399     Consolidate ADS5121 IO Pin configuration to one file
32400     board/ads5121/iopin.c.
32401
32402     Remove pin config from cpu/mpc512x/fec.c
32403
32404     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
32405     Acked-by: Grant Likely <grant.likely@secretlab.ca>
32406     Acked-by: John Rigby <jrigby@freescale.com>
32407
32408 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
32409 Author: Christian Eggers <christian@p2400.wgnetz.xx>
32410 Date:   Fri Jun 27 19:46:51 2008 +0200
32411
32412     Fix "usb part" command
32413
32414     Only print partition for selected device if user supplied the <dev>
32415     arg with the "usb part [dev]" command.
32416
32417     Signed-off-by: Christian Eggers <ceggers@gmx.de>
32418     Acked-by: Markus Klotzbuecher <mk@denx.de>
32419
32420 commit cc83b27217f7380041fea386ddb6d6d9b261617d
32421 Author: Harald Welte <laforge@gnumonks.org>
32422 Date:   Mon Jul 7 00:58:05 2008 +0800
32423
32424     fix USB devices with multiple configurations
32425
32426     This patch fixes bugs in usbdcore*.c related to the use of devices
32427     with multiple configurations.
32428
32429     The original code made mistakes about the meaning of configuration value and
32430     configuration index, and the resulting off-by-one errors resulted in:
32431
32432     * SET_CONFIGURATION always selected the first configuration, no matter what
32433       wValue is being passed.
32434     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
32435       configuration (index 0).
32436
32437     Signed-off-by: Harald Welte <laforge@openmoko.org>
32438     Acked-by: Markus Klotzbuecher <mk@denx.de>
32439
32440 commit 06c53beae1a726e707971c555613f09b270a2461
32441 Author: Wolfgang Denk <wd@denx.de>
32442 Date:   Thu Jul 10 13:16:09 2008 +0200
32443
32444     Fix some more print() format errors.
32445
32446     Signed-off-by: Wolfgang Denk <wd@denx.de>
32447
32448 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
32449 Author: Christian Eggers <christian@p2400.wgnetz.xx>
32450 Date:   Fri Jun 27 19:46:51 2008 +0200
32451
32452     Fix "usb part" command
32453
32454     Only print partition for selected device if user supplied the <dev>
32455     arg with the "usb part [dev]" command.
32456
32457     Signed-off-by: Christian Eggers <ceggers@gmx.de>
32458     Acked-by: Markus Klotzbuecher <mk@denx.de>
32459
32460 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
32461 Author: Harald Welte <laforge@gnumonks.org>
32462 Date:   Mon Jul 7 00:58:05 2008 +0800
32463
32464     fix USB devices with multiple configurations
32465
32466     This patch fixes bugs in usbdcore*.c related to the use of devices
32467     with multiple configurations.
32468
32469     The original code made mistakes about the meaning of configuration value and
32470     configuration index, and the resulting off-by-one errors resulted in:
32471
32472     * SET_CONFIGURATION always selected the first configuration, no matter what
32473       wValue is being passed.
32474     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
32475       configuration (index 0).
32476
32477     Signed-off-by: Harald Welte <laforge@openmoko.org>
32478     Acked-by: Markus Klotzbuecher <mk@denx.de>
32479
32480 commit e870690bdca154943ecadd5212d2d59c1b9d391b
32481 Author: Stefan Roese <sr@denx.de>
32482 Date:   Thu Jul 10 10:10:54 2008 +0200
32483
32484     MTD/NAND: Fix printf format warning in nand code
32485
32486     This patch fixes NAND related printf format warning. Those warnings are
32487     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
32488     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
32489     really helpful.
32490
32491     Signed-off-by: Stefan Roese <sr@denx.de>
32492
32493 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
32494 Author: Stefan Roese <sr@denx.de>
32495 Date:   Thu Jul 10 10:00:45 2008 +0200
32496
32497     rtc: Fix printf format warning in m41t60.c
32498
32499     Signed-off-by: Stefan Roese <sr@denx.de>
32500
32501 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
32502 Author: Stefan Roese <sr@denx.de>
32503 Date:   Tue Jul 8 12:01:47 2008 +0200
32504
32505     pci: Move PCI device configuration check into a separate weak function
32506
32507     This patch moves the check, if a device should be skipped in PCI PNP
32508     configuration into the function pci_skip_dev(). This function is defined
32509     as weak so that it can be overwritten by a platform specific one if
32510     needed. The check if the device should get printed in the PCI summary upon
32511     bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
32512     pci_print_dev() which is also defined as weak too.
32513
32514     Signed-off-by: Stefan Roese <sr@denx.de>
32515
32516 commit b002144e1dc21374b1ef5281fe6b5d014af96650
32517 Author: Stefan Roese <sr@denx.de>
32518 Date:   Thu Jul 10 09:58:06 2008 +0200
32519
32520     ppc4xx: Fix printf format warnings now visible with the updated format check
32521
32522     This patch fixes ppc4xx related printf format warning. Those warnings are
32523     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
32524     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
32525     really helpful.
32526
32527     Signed-off-by: Stefan Roese <sr@denx.de>
32528
32529 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
32530 Author: Stefan Roese <sr@denx.de>
32531 Date:   Wed Jul 9 17:33:57 2008 +0200
32532
32533     ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
32534
32535     Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
32536     To support such configurations, we "only" map the first 2GB via the TLB's. We
32537     need some free virtual address space for the remaining peripherals like, SoC
32538     devices, FLASH etc.
32539
32540     Note that ECC is currently not supported on configurations with more than 2GB
32541     SDRAM. This is because we only map the first 2GB on such systems, and therefore
32542     the ECC parity byte of the remaining area can't be written.
32543
32544     Signed-off-by: Stefan Roese <sr@denx.de>
32545
32546 commit cf1c2ed91df26903b956948f37f82de9e1158a89
32547 Author: Larry Johnson <lrj@acm.org>
32548 Date:   Sat Jun 14 17:02:49 2008 -0400
32549
32550     ppc4xx: Remove implementation of testdram() from Korat board support
32551
32552     Signed-off-by: Larry Johnson <lrj@acm.org>
32553     Signed-off-by: Stefan Roese <sr@denx.de>
32554
32555 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
32556 Author: Larry Johnson <lrj@acm.org>
32557 Date:   Sat Jun 14 16:53:02 2008 -0400
32558
32559     ppc4xx: Update and add FDT to Korat board support
32560
32561     Signed-off-by: Larry Johnson <lrj@acm.org>
32562     Signed-off-by: Stefan Roese <sr@denx.de>
32563
32564 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
32565 Author: Wolfgang Denk <wd@denx.de>
32566 Date:   Thu Jul 10 01:13:30 2008 +0200
32567
32568     Minor coding style cleanup; update CHANGELOG
32569
32570     Signed-off-by: Wolfgang Denk <wd@denx.de>
32571
32572 commit 8915f1189c1d29d8be7f4de325702d90a8988219
32573 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
32574 Date:   Wed Jul 9 17:50:45 2008 -0400
32575
32576     e1000: add support for 82545GM 64bit PCI-X copper variant
32577
32578     This PCI-X e1000 variant works by just adding in the correct
32579     PCI IDs in the appropriate places.
32580
32581     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
32582
32583 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
32584 Author: Daniel Hellstrom <daniel@gaisler.com>
32585 Date:   Wed Jul 9 12:34:11 2008 +0000
32586
32587     SPARC: Build error fix
32588
32589     (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
32590
32591     This patch makes SPARC targets build again. It is caused by
32592     phys_addr_t and phys_size_t being defined in the wrong header
32593     file. include/lmb.h need those typedefs to build.
32594
32595     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32596
32597 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
32598 Author: Marcel Ziswiler <marcel@ziswiler.com>
32599 Date:   Wed Jul 9 08:17:15 2008 +0200
32600
32601     Many spelling fixes in README.
32602
32603     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
32604
32605 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
32606 Author: Marcel Ziswiler <marcel@ziswiler.com>
32607 Date:   Wed Jul 9 08:17:06 2008 +0200
32608
32609     Minor spelling fix in comment.
32610
32611     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
32612
32613 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
32614 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32615 Date:   Tue Jul 8 14:54:58 2008 -0400
32616
32617     Round the serial port clock divisor value returned by calc_divisor()
32618
32619     Round the serial port clock divisor value returned by
32620     calc_divisor().
32621
32622     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32623     Signed-off-by: John Roberts <john.roberts@pwav.com>
32624
32625 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
32626 Author: Scott Wood <scottwood@freescale.com>
32627 Date:   Wed Jul 9 17:47:52 2008 -0500
32628
32629     NAND: ifdef-protect most of nand.h when using legacy NAND.
32630
32631     Some macros such as NAND_CTL_SETALE conflict between current and legacy
32632     NAND, being defined by the subsystem in the former case and the board
32633     config file in the latter.
32634
32635     Signed-off-by: Scott Wood <scottwood@freescale.com>
32636
32637 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
32638 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32639 Date:   Tue Jul 8 11:02:05 2008 -0400
32640
32641     ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
32642
32643     ARM: Fix for incorrect version of patch applied when
32644     adding support for the Lyrtech SFF-SDR board.
32645
32646     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32647     Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
32648
32649 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
32650 Author: Kyungmin Park <kmpark@infradead.org>
32651 Date:   Tue Jul 8 09:08:40 2008 +0900
32652
32653     Remove useless print message at apollon
32654
32655     Remove useless print message at apollon
32656
32657     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
32658
32659 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
32660 Author: Andy Fleming <afleming@freescale.com>
32661 Date:   Mon Jul 7 14:24:39 2008 -0500
32662
32663     Fix LMB type issues
32664
32665     The LMB code now uses phys_addr_t and phys_size_t.  Also, there were a couple
32666     of casting problems in the bootm code that called the LMB functions.
32667
32668     Signed-off-by: Andy Fleming <afleming@freescale.com>
32669
32670 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
32671 Author: Kumar Gala <galak@kernel.crashing.org>
32672 Date:   Mon Jul 7 09:39:06 2008 -0500
32673
32674     Fix compiler warnings
32675
32676     gcc-4.3.x generates the following:
32677
32678     bootm.c: In function 'do_bootm_linux':
32679     bootm.c:208: warning: cast from pointer to integer of different size
32680     bootm.c:215: warning: cast from pointer to integer of different size
32681
32682     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32683
32684 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
32685 Author: Harald Welte <laforge@gnumonks.org>
32686 Date:   Mon Jul 7 15:40:39 2008 +0800
32687
32688     Remove code duplication for setting the default environment
32689
32690     common/env_common.c (default_env): new function that resets the environment to
32691                     the default value
32692     common/env_common.c (env_relocate): use default_env instead of own copy
32693     common/env_nand.c (env_relocate_spec): use default_env instead of own copy
32694     include/environment.h: added default_env prototype
32695
32696     Signed-off-by: Werner Almesberger <werner@openmoko.org>
32697     Signed-off-by: Harald Welte <laforge@openmoko.org>
32698
32699 commit 99c2b434d37863df5dda5207a53760c6506fc2be
32700 Author: Marcel Ziswiler <marcel@ziswiler.com>
32701 Date:   Sun Jun 22 16:13:46 2008 +0200
32702
32703     NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
32704
32705     The writeenv() and readenv() calls introduced by the recently added bad block
32706     management for environment variables were missing casts therefore producing
32707     compile time warnings.
32708     While at it fixing some typo in a comment and indentation.
32709
32710     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
32711     Signed-off-by: Scott Wood <scottwood@freescale.com>
32712
32713 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
32714 Author: Scott Wood <scottwood@freescale.com>
32715 Date:   Fri Jun 20 12:38:57 2008 -0500
32716
32717     NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
32718
32719     This is particularly problematic now that non-NAND-specific code is
32720     including <nand.h>, and thus all debugging code is being compiled
32721     regardless of whether it was requested, as reported by Scott McNutt
32722     <smcnutt@psyent.com>.
32723
32724     Signed-off-by: Scott Wood <scottwood@freescale.com>
32725
32726 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
32727 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32728 Date:   Thu Jun 12 19:27:58 2008 +0200
32729
32730     mmc: Move atmel_mci driver into drivers/mmc
32731
32732     This makes it easier to use the driver on other platforms.
32733
32734     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32735     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32736
32737 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
32738 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32739 Date:   Thu Jun 12 19:27:57 2008 +0200
32740
32741     avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
32742
32743     After we move the atmel_mci driver into drivers/mmc, we can't select
32744     it with CONFIG_MMC anymore. Introduce a new symbol specifically for
32745     this driver so that there's no ambiguity.
32746
32747     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32748     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32749
32750 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
32751 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32752 Date:   Thu Jun 12 19:27:56 2008 +0200
32753
32754     Create drivers/mmc subdirectory
32755
32756     In order to consolidate more of the various MMC drivers around the
32757     tree, we must first have a common place to put them.
32758
32759     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32760     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32761
32762 commit b502611b51f02718c2d1117d4981dabceb5af6de
32763 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
32764 Date:   Sun Jul 6 12:30:09 2008 +0200
32765
32766     Change env_get_char from a global function ptr to a function
32767
32768     This avoids an early global data reference.
32769
32770     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
32771
32772 commit 27269417ade432189b234d9fbac98b54e37b978c
32773 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
32774 Date:   Sun Jul 6 13:57:58 2008 +0400
32775
32776     Some copy-n-paste fixes in printf usage
32777
32778     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
32779
32780 commit 0e6989b9faf1588e8723535539e88a0df3c71356
32781 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
32782 Date:   Sun Jul 6 13:57:00 2008 +0400
32783
32784     FDT memory and pci node fixes for MPC8260ADS
32785
32786     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
32787
32788 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
32789 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
32790 Date:   Mon Jul 7 06:41:14 2008 -0700
32791
32792     Fix printf errors.
32793
32794     The compiler will help find mismatches between printf formats and
32795     arguments if you let it.  This patch adds the necessary attributes to
32796     declarations in include/common.h, then begins to correct the resulting
32797     compiler warnings.  Some of these were bugs, e.g., "$d" instead of
32798     "%d" and incorrect arguments.  Others were just annoying, like
32799     int-long mismatches on a system where both are 32 bits.  It's worth
32800     fixing the annoying errors to catch the real ones.
32801
32802     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
32803
32804 commit 417faf285b2527acb2de24c5cd3e2621d385408c
32805 Author: Becky Bruce <becky.bruce@freescale.com>
32806 Date:   Wed Jul 9 11:09:41 2008 -0500
32807
32808     Allow print_size to print in GB
32809
32810     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
32811
32812 commit e7c374529c87525c9aa463e0557c287887ae4e9e
32813 Author: Jason McMullan <mcmullan@netapp.com>
32814 Date:   Sun Jun 8 23:56:00 2008 -0400
32815
32816     mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
32817
32818     Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
32819     they are set in the U-Boot environment.
32820
32821     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
32822     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
32823
32824 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
32825 Author: Stefan Roese <sr@denx.de>
32826 Date:   Tue Jul 8 12:57:14 2008 +0200
32827
32828     jedec_flash: Fix AM29DL800BB device ID
32829
32830     As pointed out by Jerry Hicks, this patch corrects the device ID of
32831     the Spansion AM29DL800BB NOR device. Verified against latest Spansion
32832     datasheet (rev C4 from Dezember 2006).
32833
32834     Signed-off-by: Stefan Roese <sr@denx.de>
32835
32836 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
32837 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32838 Date:   Mon Jul 7 11:22:37 2008 +0900
32839
32840     sh: Fix compile error sh7763rdp board
32841
32842     Disable SH ether driver.
32843
32844     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32845
32846 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
32847 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32848 Date:   Tue Jul 8 12:03:24 2008 +0900
32849
32850     sh: Fix SH-boards compile error
32851
32852     By Cleanup out-or-tree building for some boards (.depend)
32853     (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
32854     because filse ware changed, some SH-boards have compile error.
32855     I revised this problem.
32856
32857     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32858
32859 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
32860 Author: Jason Jin <Jason.jin@freescale.com>
32861 Date:   Tue May 13 11:50:36 2008 +0800
32862
32863     Feed the watchdog in u-boot for 8610 board.
32864
32865     The watchdog on 8610 board is enabled by setting sw[6]
32866     to on. Once enabled, the watchdog can not be disabled
32867     by software. So feed the dog in u-boot is necessary for
32868     normal operation.
32869
32870     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
32871
32872 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
32873 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32874 Date:   Wed Jun 18 12:10:33 2008 -0400
32875
32876     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
32877
32878     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
32879
32880     Remove duplicate code in a if/else block in
32881     cpu/arm926ejs/davinci/lxt972.c.
32882     Fixed style issues.
32883
32884     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32885     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32886
32887 commit fec61431a003f5778bafa2624073a571af8bec9f
32888 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32889 Date:   Wed Jun 18 12:10:31 2008 -0400
32890
32891     Remove duplicate definitions in include/lxt971a.h.
32892
32893     Remove duplicate definitions in include/lxt971a.h.
32894
32895     Remove duplicate registers and bits definitions in
32896     include/lxt971a.h for standard MII registers, and
32897     use values in include/miiphy.h instead.
32898
32899     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32900     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32901
32902 commit 9751ee0990f467941da0b095a4e995f863672d7a
32903 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32904 Date:   Wed Jun 11 21:05:00 2008 +0900
32905
32906     net: sh: Renesas SH7763 Ethernet device support
32907
32908     Renesas SH7763 has 2 channel Ethernet device.
32909     This is 10/100/1000 Base support.
32910     But this patch check 10/100 Base only.
32911
32912     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32913     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32914
32915 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
32916 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32917 Date:   Tue Jun 17 16:28:05 2008 +0900
32918
32919     sh: Update Renesas R2DPlus board
32920
32921     New NOR Flash board support and remove old type flash board config.
32922     And Remove network setting from config file.
32923
32924     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32925     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32926
32927 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
32928 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32929 Date:   Tue Jun 17 16:28:01 2008 +0900
32930
32931     sh: Update Renesas R7780MP board
32932
32933     New NOR Flash board support and remove network setting from config file.
32934
32935     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32936     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32937
32938 commit c001cd604e9f133743effbddb1c215b48e761c5a
32939 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32940 Date:   Tue Jun 17 16:27:56 2008 +0900
32941
32942     sh: Update Renesas Migo-R board
32943
32944     Remove network setting from config file.
32945
32946     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32947     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32948
32949 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
32950 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32951 Date:   Tue Jun 17 16:27:52 2008 +0900
32952
32953     sh: Update Hitachi MS7722SE board
32954
32955     Remove network setting from config file.
32956
32957     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32958     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32959
32960 commit 26209e48e8791670c93108029a5c31a30016c6df
32961 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32962 Date:   Tue Jun 17 16:27:48 2008 +0900
32963
32964     sh: Cleanup source code of SH7763RDP
32965
32966     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32967     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32968
32969 commit 5cd5b2c96ef0025762931349d350287aec03ab47
32970 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32971 Date:   Tue Jun 17 16:27:44 2008 +0900
32972
32973     sh: Cleanup source code of R2DPlus
32974
32975     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32976     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32977
32978 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
32979 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32980 Date:   Tue Jun 17 16:27:41 2008 +0900
32981
32982     sh: Cleanup source code of R7780MP
32983
32984     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32985     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32986
32987 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
32988 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32989 Date:   Tue Jun 17 16:27:38 2008 +0900
32990
32991     sh: Cleanup source code of MS7722SE
32992
32993     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32994     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32995
32996 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
32997 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32998 Date:   Tue Jun 17 16:27:34 2008 +0900
32999
33000     sh: Cleanup source code of MS7720SE
33001
33002     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33003     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33004
33005 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
33006 Author: Wolfgang Denk <wd@denx.de>
33007 Date:   Mon Jul 7 00:45:03 2008 +0200
33008
33009     SH: fix out of tree building
33010
33011     Signed-off-by: Wolfgang Denk <wd@denx.de>
33012
33013 commit 9047bfa1e737d787be460387dd6f45737eeceb10
33014 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33015 Date:   Thu Jul 3 23:16:06 2008 +0900
33016
33017     net: smc911x: Fix typo
33018
33019     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33020
33021 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
33022 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
33023 Date:   Wed Jul 2 18:54:08 2008 +0200
33024
33025     update mvBL-M7 board config
33026
33027     update mvBL-M7 config file to use UBOOT_VERSION and define
33028     CONFIG_HIGH_BATS.
33029
33030     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
33031
33032 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
33033 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33034 Date:   Mon Jun 30 17:45:01 2008 +0900
33035
33036     net: fix compile problem in smc911x driver.
33037
33038     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33039     Acked-by: Ben Warren <biggerbadderben@gmail.com>
33040
33041 commit 9fea65a6c469b1b474b27446feb58738baba2d31
33042 Author: Michal Simek <monstr@monstr.eu>
33043 Date:   Tue Jun 24 09:54:09 2008 +0200
33044
33045     ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
33046
33047     This change helps with better handling with others
33048     Xilinx based platform.
33049
33050     Signed-off-by: Michal Simek <monstr@monstr.eu>
33051     Acked-by: Stefan Roese <sr@denx.de>
33052
33053 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
33054 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33055 Date:   Tue Jun 17 13:07:11 2008 +0900
33056
33057     net: ne2000: Move dev_addr variable from grobal to local.
33058
33059     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33060     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33061
33062 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
33063 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33064 Date:   Tue Jun 17 13:07:15 2008 +0900
33065
33066     net: ne2000: Fix compile error of NE2000
33067
33068     If enable DEBUG, can not compile ne2000 driver.
33069
33070     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33071     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33072
33073 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
33074 Author: Ben Warren <biggerbadderben@gmail.com>
33075 Date:   Mon Jun 23 22:57:27 2008 -0700
33076
33077     Add mechanisms for CPU and board-specific Ethernet initialization
33078
33079     This patch is the first step in cleaning up net/eth.c, by moving Ethernet
33080     initialization to CPU or board-specific code.  Initial implementation is
33081     only on the Freescale TSEC controller, but others will be added soon.
33082
33083     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33084
33085 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
33086 Author: Wolfgang Denk <wd@denx.de>
33087 Date:   Sun Jul 6 01:21:46 2008 +0200
33088
33089     include/sha256.h: fix file permissions.
33090
33091     Signed-off-by: Wolfgang Denk <wd@denx.de>
33092
33093 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
33094 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
33095 Date:   Tue May 27 11:15:29 2008 +0200
33096
33097     [AT91SAM9] Fix NAND FLASH timings
33098
33099     Fix NAND FLASH timings for at91sam9x evaluation kits.
33100
33101     New timings are based on application note
33102     "NAND Flash Support on AT91SAM9 Microcontrollers" available at
33103     http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
33104
33105     Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
33106     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33107     Acked-by: Stelian Pop <stelian@popies.net>
33108
33109 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
33110 Author: Stelian Pop <stelian@popies.net>
33111 Date:   Thu May 22 00:15:40 2008 +0200
33112
33113     Fix boot from NOR due to incorrect reset delay.
33114
33115     AT91 RSTC registers are battery-backuped, so their values
33116     are not reset across power cycles. One of those registers,
33117     the AT91_RSTC_MR register, is being modified by U-Boot, in
33118     the ethernet initialisation routine, to generate a 500ms
33119     user reset.
33120
33121     Unfortunately, this value is not being restored afterwards,
33122     causing subsequent resets to also last for 500ms.
33123
33124     This long reset sequence causes problems (at least) in the
33125     boot sequence from NOR: by the time the CPU tries to load
33126     a program from the NOR flash, the latter is still in reset
33127     and not yet available.
33128
33129     Additionaly, this patch fixes a bug in the original code which
33130     caused the reset delay to last for 2s instead of 500ms.
33131
33132     Signed-off-by: Stelian Pop <stelian@popies.net>
33133     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33134
33135 commit f492dd636fbbae529e17533995bc6e5813c007f6
33136 Author: Wolfgang Denk <wd@denx.de>
33137 Date:   Fri Jul 4 20:11:49 2008 +0200
33138
33139     Update CHANGELOG
33140
33141     Signed-off-by: Wolfgang Denk <wd@denx.de>
33142
33143 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
33144 Author: Wolfgang Denk <wd@denx.de>
33145 Date:   Fri Jul 4 20:07:35 2008 +0200
33146
33147     CCM/SCM boards: fix out of tree building
33148
33149     Signed-off-by: Wolfgang Denk <wd@denx.de>
33150
33151 commit ab4c3a490df9a964711556d2a05b0c787db45fde
33152 Author: Wolfgang Denk <wd@denx.de>
33153 Date:   Thu Jul 3 23:22:27 2008 +0200
33154
33155     SCM board: fix build errors.
33156
33157     Signed-off-by: Wolfgang Denk <wd@denx.de>
33158
33159 commit a566466f17ba0e2d2b6c250e77da678fb932470d
33160 Author: Wolfgang Denk <wd@denx.de>
33161 Date:   Thu Jul 3 23:06:36 2008 +0200
33162
33163     IAD210 board: fix ``"ALIGN" redefined'' warning.
33164
33165     Signed-off-by: Wolfgang Denk <wd@denx.de>
33166
33167 commit ad756314797c16fa5dca23e115aab881011f164f
33168 Author: Wolfgang Denk <wd@denx.de>
33169 Date:   Thu Jul 3 23:00:24 2008 +0200
33170
33171     CCM board: fix build errors.
33172
33173     Signed-off-by: Wolfgang Denk <wd@denx.de>
33174
33175 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
33176 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
33177 Date:   Wed Jul 2 18:54:08 2008 +0200
33178
33179     update mvBL-M7 board config
33180
33181     update mvBL-M7 config file to use UBOOT_VERSION.
33182
33183     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
33184     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33185
33186 commit ced209c50e80c25f13c083099b05044048d21f4f
33187 Author: Wolfgang Denk <wd@denx.de>
33188 Date:   Thu Jul 3 22:39:21 2008 +0200
33189
33190     sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
33191
33192     Signed-off-by: Wolfgang Denk <wd@denx.de>
33193
33194 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
33195 Author: Wolfgang Denk <wd@denx.de>
33196 Date:   Thu Jul 3 22:34:08 2008 +0200
33197
33198     Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
33199
33200     Signed-off-by: Wolfgang Denk <wd@denx.de>
33201
33202 commit 730f298485984b011b6ee8f4acb511cb45a843dd
33203 Author: Wolfgang Denk <wd@denx.de>
33204 Date:   Thu Jul 3 22:04:17 2008 +0200
33205
33206     lmb: fix "implicit declaration of function 'lmb_free'" warning
33207
33208     Signed-off-by: Wolfgang Denk <wd@denx.de>
33209
33210 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
33211 Author: Wolfgang Denk <wd@denx.de>
33212 Date:   Wed Jul 2 23:53:23 2008 +0200
33213
33214     Cleanup: remove redundant deleting on *~ files
33215
33216     Signed-off-by: Wolfgang Denk <wd@denx.de>
33217
33218 commit c8a3b109f07f02342d097b30908965f7261d9f15
33219 Author: Wolfgang Denk <wd@denx.de>
33220 Date:   Wed Jul 2 23:49:18 2008 +0200
33221
33222     Cleanup out-or-tree building for some boards (.depend)
33223
33224     Signed-off-by: Wolfgang Denk <wd@denx.de>
33225
33226 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
33227 Author: Wolfgang Denk <wd@denx.de>
33228 Date:   Wed Jul 2 23:38:50 2008 +0200
33229
33230     Cleanup: fix out-of-tree building for some boards
33231
33232     Signed-off-by: Wolfgang Denk <wd@denx.de>
33233
33234 commit 461fa68d20861811487944d22291db5a13410e20
33235 Author: Wolfgang Denk <wd@denx.de>
33236 Date:   Wed Jul 2 23:00:14 2008 +0200
33237
33238     Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
33239
33240     Signed-off-by: Wolfgang Denk <wd@denx.de>
33241
33242 commit 5981ebd32017e062b08aa6747cf591276f2db779
33243 Author: Detlev Zundel <dzu@denx.de>
33244 Date:   Fri Jun 20 22:26:24 2008 +0200
33245
33246     fdt: Fix typo in variable name.
33247
33248     Signed-off-by: Detlev Zundel <dzu@denx.de>
33249
33250 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
33251 Author: Gary Jennejohn <garyj@denx.de>
33252 Date:   Thu Jun 19 11:11:19 2008 +0200
33253
33254     Add logos for RRvision board
33255
33256     Signed-off-by: Gary Jennejohn <garyj@denx.de>
33257
33258 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
33259 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
33260 Date:   Wed Jun 18 11:03:57 2008 +0200
33261
33262     mpc8260: add fdt_fixup_ethernet support
33263
33264     Add support for updating mac-address and local-mac-address in fdt for
33265     all MPC8260 targets.
33266
33267     Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
33268
33269 commit f6a69559d64498a04e1e0b087a9b920e5775f866
33270 Author: Steven A. Falco <sfalco@harris.com>
33271 Date:   Thu Jun 12 13:24:42 2008 -0400
33272
33273     cmd_nvedit.c: clean up syntax highlighting
33274
33275     My text-editor (vim) has a bit of trouble syntax-highlighting the
33276     cmd_nvedit.c file, because it apparently does not parse C
33277     ifdef/else/endif. The following patch does not change the behavior of
33278     the code at all, but does allow the editor to properly
33279     syntax-highlight the file.
33280
33281     Signed-off-by: Steve Falco <sfalco@harris.com>
33282
33283 commit 75678c807a6272ecc5541eb32898c93887f08400
33284 Author: Steven A. Falco <sfalco@harris.com>
33285 Date:   Thu Jun 12 13:22:12 2008 -0400
33286
33287     Make setenv() return status
33288
33289     Currently, the setenv function does not return an error code.
33290     This patch allows to test for errors.
33291
33292     Signed-off-by: Steve Falco <sfalco@harris.com>
33293
33294 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
33295 Author: Kumar Gala <galak@kernel.crashing.org>
33296 Date:   Wed Jun 11 10:14:06 2008 -0500
33297
33298     PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
33299
33300     fls64, __ilog2_u64, ffs64 are variants that work on an u64,
33301     and fls is used to implement them.
33302
33303     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33304
33305 commit 83002a77cbdf383015ca384eff5fa31722d8e571
33306 Author: Magnus Lilja <lilja.magnus@gmail.com>
33307 Date:   Mon Jun 9 22:58:48 2008 +0200
33308
33309     i.MX31: Cleanup comments in lowlevel_init.S.
33310
33311     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
33312
33313 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
33314 Author: Ben Warren <biggerbadderben@gmail.com>
33315 Date:   Sun Jun 8 23:28:33 2008 -0700
33316
33317     Move conditional compilation of MPC8XXX SPI driver to Makefile
33318
33319     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33320
33321 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
33322 Author: Juergen Kilb <J.Kilb@gmx.de>
33323 Date:   Sun Jun 8 17:59:53 2008 +0200
33324
33325     i.MX31: fixed CTRL-C detection
33326
33327     The Register URXD contains status information in bits [15..8].
33328     With status bit 15 set, CTRL-C was reported as 0x8003 instead
33329     of 0x03. Therefore CTRL-C was not detected.
33330     To solve this, bits [15..8] were masked out now.
33331
33332     Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
33333     Acked-by: Felix Radensky <felix@embedded-sol.com>
33334
33335 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
33336 Author: Stefan Roese <sr@denx.de>
33337 Date:   Tue Jul 1 17:03:19 2008 +0200
33338
33339     ppc4xx: Fix 460EX/GT PCIe port initialization
33340
33341     This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
33342     configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
33343     this out.
33344
33345     Signed-off-by: Stefan Roese <sr@denx.de>
33346
33347 commit b571afde0295b007a45055ee49f8822c753a5651
33348 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33349 Date:   Sat Jun 7 12:29:52 2008 +0200
33350
33351     add SHA256 support
33352
33353     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33354     Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
33355
33356 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
33357 Author: Marian Balakowicz <m8@semihalf.com>
33358 Date:   Fri Jun 6 23:07:40 2008 +0200
33359
33360     Delay FIT format check on sector based devices
33361
33362     Global FIT image operations like format check cannot be performed on
33363     a first sector data, defer them to the point when whole FIT image was
33364     uploaded to a system RAM.
33365
33366     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
33367     Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
33368     NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
33369
33370 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
33371 Author: Dave Liu <r63238@freescale.com>
33372 Date:   Tue Jun 3 17:38:19 2008 +0800
33373
33374     sata: wait for device updating signature to host
33375
33376     The driver need wait for the device updating signature to host.
33377     If we don't wait for it, the driver can not detect the device(disk)
33378     when the system powers up.
33379
33380     Signed-off-by: Dave Liu <daveliu@freescale.com>
33381
33382 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
33383 Author: Stefan Roese <sr@denx.de>
33384 Date:   Sat Jun 28 14:56:17 2008 +0200
33385
33386     ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
33387
33388     This patch implements a fix provided by AMCC so that the lockup upon
33389     simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
33390     anymore:
33391
33392     Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
33393     (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
33394     USB 2.0 host and SATA.
33395
33396     This errata is not officially available yet. I'll update the comment
33397     to add the errata number later.
33398
33399     Signed-off-by: Stefan Roese <sr@denx.de>
33400
33401 commit 8b616edb118e37d05f6401389eaee1c636b22828
33402 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
33403 Date:   Mon Jun 2 16:42:19 2008 -0400
33404
33405     serial_pl010.c: add watchdog support
33406
33407     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
33408
33409 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
33410 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
33411 Date:   Mon Jun 2 16:40:08 2008 -0400
33412
33413     jffs2_1pass.c: add watchdog support
33414
33415     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
33416
33417 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
33418 Author: Sascha Laue <sascha.laue@liebherr.com>
33419 Date:   Fri May 30 09:48:14 2008 +0200
33420
33421     Configure DSP POST; add watchdog reset to diag command
33422
33423     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
33424
33425 commit f13526517859bf6b573e23ff47199e107d1009b5
33426 Author: Tor Krill <tor@excito.com>
33427 Date:   Thu May 29 10:40:17 2008 +0200
33428
33429     Add sata sil3114 support
33430
33431     Signed-off-by: Tor Krill <tor@excito.com>
33432
33433 commit e093a247628228100f405b6d7f6b1bfc16141938
33434 Author: Wolfgang Denk <wd@denx.de>
33435 Date:   Sat Jun 28 23:34:37 2008 +0200
33436
33437     Coding Style Cleanup
33438
33439     Signed-off-by: Wolfgang Denk <wd@denx.de>
33440
33441 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
33442 Author: Wolfgang Denk <wd@denx.de>
33443 Date:   Sat Jun 28 23:16:01 2008 +0200
33444
33445     Update CHANGELOG
33446
33447     Signed-off-by: Wolfgang Denk <wd@denx.de>
33448
33449 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
33450 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33451 Date:   Wed May 21 13:58:41 2008 -0400
33452
33453     ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
33454
33455     This patch adds support for the Lyrtech SFF-SDR board,
33456     based on the TI DaVinci architecture (ARM926EJS).
33457
33458     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33459     Signed-off-by: Philip Balister <philip@balister.org>
33460     Signed-off-by: Wolfgang Denk <wd@denx.de>
33461
33462 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
33463 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33464 Date:   Thu May 22 11:09:59 2008 +0200
33465
33466     MMC: Consolidate MMC/SD command definitions
33467
33468     This moves the MMC and SD Card command definitions from
33469     include/asm/arch/mmc.h into include/mmc.h. These definitions are
33470     given by the MMC and SD Card standards, not by any particular
33471     architecture.
33472
33473     There's a lot more room for consolidation in the MMC drivers which
33474     I'm hoping to get done eventually, but this patch is a start.
33475
33476     Compile-tested for all avr32 boards as well as lpc2292sodimm and
33477     lubbock. This should cover all three mmc drivers in the tree.
33478
33479     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33480
33481 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
33482 Author: Kyungmin Park <kmpark@infradead.org>
33483 Date:   Wed May 21 14:38:08 2008 +0900
33484
33485     Use better Ethernet timings for apollon board
33486
33487     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33488
33489 commit 41c5eaa7253ed82bbae1eda5667755872c615164
33490 Author: Andy Fleming <afleming@freescale.com>
33491 Date:   Mon Jun 16 13:58:56 2008 -0500
33492
33493     Resize device tree to allow space for board changes and the chosen node
33494
33495     Current code requires that a compiled device tree have space added to the end to
33496     leave room for extra nodes added by board code (and the chosen node).  This
33497     requires that device tree creators anticipate how much space U-Boot will add to
33498     the tree, which is absurd.  Ideally, the code would resize and/or relocate the
33499     tree when it needed more space, but this would require a systemic change to the
33500     fdt code, which is non-trivial.  Instead, we resize the tree inside
33501     boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
33502     where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
33503
33504     Signed-off-by: Andy Fleming <afleming@freescale.com>
33505
33506 commit 7570a9941fc565922078679a72d246fe208d696d
33507 Author: Andy Fleming <afleming@freescale.com>
33508 Date:   Mon Jun 16 13:58:55 2008 -0500
33509
33510     Fix an underflow bug in __lmb_alloc_base
33511
33512     __lmb_alloc_base can underflow if it fails to find free space.  This was fixed
33513     in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc.  This patch
33514     merely updates __lmb_alloc_base to resemble the current version in Linux.
33515
33516     Signed-off-by: Andy Fleming <afleming@freescale.com>
33517
33518 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
33519 Author: Andy Fleming <afleming@freescale.com>
33520 Date:   Mon Jun 16 13:58:54 2008 -0500
33521
33522     Add lmb_free
33523
33524     lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
33525     lmb_reserve to temporarily reserve some memory.
33526
33527     Signed-off-by: Andy Fleming <afleming@freescale.com>
33528
33529 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
33530 Author: Andy Fleming <afleming@freescale.com>
33531 Date:   Mon Jun 16 13:58:53 2008 -0500
33532
33533     Add ALIGN() macro
33534
33535     ALIGN() returns the smallest aligned value greater than the passed
33536     in address or size.  Taken from Linux.
33537
33538     Signed-off-by: Andy Fleming <afleming@freescale.com>
33539
33540 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
33541 Author: Stefan Roese <sr@denx.de>
33542 Date:   Tue Jun 24 17:15:22 2008 +0200
33543
33544     ppc4xx: Fix compilation problems with phys_size_t
33545
33546     This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
33547     board specific files where it has been missing.
33548
33549     Signed-off-by: Stefan Roese <sr@denx.de>
33550
33551 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
33552 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
33553 Date:   Mon May 19 12:26:38 2008 +0200
33554
33555     Conditionally add -fno-stack-protector to CFLAGS
33556
33557     When compile-testing on powerpc, I get errors like this:
33558
33559     net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
33560
33561     This seems to be because -fstack-protector is on by default, so
33562     let's explicitly disable it on all architectures that support the
33563     option.
33564
33565     The Ubuntu toolchain is affected by this problem, and according to
33566     Mike Frysinger, Gentoo has been running with SSP enabled for years.
33567     More and more distros are turning SSP on by default, so this problem
33568     is likely to get worse in the future.
33569
33570     Also, powerpc just happens to be one of the arches I do
33571     compile-testing on. There may be other arches affected by this too.
33572
33573     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
33574
33575 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
33576 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33577 Date:   Sun May 18 19:09:52 2008 +0200
33578
33579     pcmcia/ti_pci1410a: Move compile condition to the Makefile
33580
33581     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33582
33583 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
33584 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33585 Date:   Sun May 18 19:09:51 2008 +0200
33586
33587     pxa_pcmcia: Move compile condition to the Makefile
33588
33589     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33590
33591 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
33592 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33593 Date:   Sun May 18 19:09:50 2008 +0200
33594
33595     marabun_pcmcia: Move compile condition to the Makefile
33596
33597     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33598
33599 commit 6a19c46cae43c16c528eddefae3db97134f1915d
33600 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
33601 Date:   Mon Jun 23 13:25:34 2008 +0200
33602
33603     fix non-working mvBL-M7
33604
33605     Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
33606
33607     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
33608     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33609
33610 commit 846f1574ddddeda2bc227655e687308695f41cdc
33611 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
33612 Date:   Mon Jun 23 11:40:56 2008 +0200
33613
33614     fix system config overwrite @ MPC834x and MPC8313
33615
33616     During 83xx setup the "System I/O configuration register high" gets
33617     overwritten with user defined value if CFG_SICRH is defined.
33618
33619     Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
33620     must keep their reset value regardless of configuration.
33621
33622     On my board (using RGMII) those bits are set after reset - yet it's
33623     unclear where they come from.
33624
33625     The patch keeps both bits on MPC834x and MPC8313.
33626
33627     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
33628     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33629
33630 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
33631 Author: Kim Phillips <kim.phillips@freescale.com>
33632 Date:   Tue Jun 17 17:45:27 2008 -0500
33633
33634     mpc83xx: move CPU_TYPE_ENTRY over to processor.h
33635
33636     to avoid this:
33637
33638     cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
33639     In file included from cpu.c:33:
33640     /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
33641
33642     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33643
33644 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
33645 Author: Stefan Roese <sr@denx.de>
33646 Date:   Mon Jun 23 11:15:09 2008 +0200
33647
33648     ppc4xx: Fix problem in gpio_config()
33649
33650     As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
33651     left by one. So the additional shift is bogus.
33652
33653     Signed-off-by: Stefan Roese <sr@denx.de>
33654
33655 commit 40777812316fc252c941665c0f60c148fd79d50f
33656 Author: Detlev Zundel <dzu@denx.de>
33657 Date:   Fri Jun 20 22:24:05 2008 +0200
33658
33659     fdt: Fix typo in variable name.
33660
33661     Signed-off-by: Detlev Zundel <dzu@denx.de>
33662
33663 commit 5f723a3b98c630bde33de74351f2121691fdef14
33664 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33665 Date:   Fri Jun 20 10:41:05 2008 +0200
33666
33667     avr32: Enable SPI flash support on ATNGW100
33668
33669     The ATNGW100 has 8MB DataFlash on board. Give users access to it through
33670     the new SPI flash framework.
33671
33672     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33673
33674 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
33675 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33676 Date:   Fri Jun 20 12:44:28 2008 +0200
33677
33678     avr32: Fix SPI portmux initialization
33679
33680     Use the new GPIO manipulation functions to set up the chip select lines,
33681     and make sure both busses use GPIO for chip select control.
33682
33683     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33684
33685 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
33686 Author: Peter Ma <pma@mediamatech.com>
33687 Date:   Sun Jun 1 22:59:24 2008 -0700
33688
33689     avr32: Add GPIO manipulation functions
33690
33691     Adds GPIO manipulation functions for AVR32 AP7 platform.
33692
33693     Signed-off-by: Peter Ma <pma@mediamatech.com>
33694     [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
33695     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33696
33697 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
33698 Author: Wolfgang Grandegger <wg@grandegger.com>
33699 Date:   Thu Jun 5 13:02:30 2008 +0200
33700
33701     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
33702
33703     This patch is based on the following patch sent a few minutes ago:
33704     "NAND FSL UPM: driver re-write using the hwcontrol callback"
33705     It is untested, of course. Anton, could you please give it a try.
33706
33707     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
33708     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33709
33710 commit 96026d42fa4e646d28318c0a1438aac4b2017909
33711 Author: Anatolij Gustschin <agust@denx.de>
33712 Date:   Thu Jun 12 12:40:11 2008 +0200
33713
33714     Fix 4xx build issue
33715
33716     Building for 4xx doesn't work since commit 4dbdb768:
33717
33718     In file included from 4xx_pcie.c:28:
33719     include/asm/processor.h:971: error: expected ')' before 'ver'
33720     make[1]: *** [4xx_pcie.o] Error 1
33721
33722     This patch fixes the problem.
33723
33724     Signed-off-by: Anatolij Gustschin <agust@denx.de>
33725     Acked-by: Stefan Roese <sr@denx.de>
33726     Acked-by: Kumar Gala <galak@kernel.crashing.org>
33727
33728 commit a036b0443657fe0f4773786de9092251869f08ac
33729 Author: Kumar Gala <galak@kernel.crashing.org>
33730 Date:   Thu Jun 19 01:45:50 2008 -0500
33731
33732     MPC8610HPCD: Report board id, board version and fpga version.
33733
33734     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33735
33736 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
33737 Author: Kumar Gala <galak@kernel.crashing.org>
33738 Date:   Thu Jun 19 01:45:27 2008 -0500
33739
33740     MPC8641HPCN: Report board id, board version and fpga version.
33741
33742     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33743
33744 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
33745 Author: Stefan Roese <sr@denx.de>
33746 Date:   Mon Jun 16 10:40:02 2008 +0200
33747
33748     cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
33749
33750     This patch simplifies flash_toggle() (AMD commandset), which is used to
33751     detect if a FLASH device is still busy with erase/program operations. On
33752     800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
33753     did not detect the busy state reliably, resulting in non erased sectors
33754     etc. This patch now simplifies this function by "just" comparing the
33755     complete data-word instead of ANDing it with the command-word (0x40)
33756     before the compatison. It is done the same way in the Linux implementation
33757     chip_ready() in cfi_cmdset_0002.c.
33758
33759     Signed-off-by: Stefan Roese <sr@denx.de>
33760
33761 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
33762 Author: Philip Balister <philip@balister.org>
33763 Date:   Mon Jun 16 08:58:07 2008 -0400
33764
33765     NAND: Add missing declaration to non-redundant saveenv().
33766
33767     Signed-off-by: Scott Wood <scottwood@freescale.com>
33768
33769 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
33770 Author: Wolfgang Grandegger <wg@grandegger.com>
33771 Date:   Mon Jun 2 15:09:55 2008 +0200
33772
33773     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
33774
33775     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
33776     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33777     Signed-off-by: Scott Wood <scottwood@freescale.com>
33778
33779 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
33780 Author: Stefan Roese <sr@denx.de>
33781 Date:   Tue Jun 10 15:34:11 2008 +0200
33782
33783     ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
33784
33785     This patch disables the square wave output of the M41T62 RTC used on
33786     Canyonlands & Glacier. Here the explanation:
33787
33788     The serial real-time clock part used in the design is an
33789     STMicro M41T62. This part has a full-time 32KHz square wave
33790     output that is connected to the TmrClk input to the
33791     processor. The default state for this square wave output is
33792     enabled so the output runs continuously when the board is
33793     powered normally and also from the battery. The TmrClk input
33794     to the processor goes to ground when the power is removed
33795     from the board/processor, and therefore the running square
33796     wave output is driving ground which drains the battery quickly.
33797
33798     Signed-off-by: Stefan Roese <sr@denx.de>
33799
33800 commit a94f22f08f280905926219e568568964cb9eeb9d
33801 Author: Andy Fleming <afleming@freescale.com>
33802 Date:   Wed Jun 11 18:10:20 2008 -0500
33803
33804     Fix build issue with string.h and linux/string.h
33805
33806     This commit:
33807     commit 338cc038461a6c7709c5b86fd9a240209338a1ae
33808     Author: Wolfgang Denk <wd@denx.de>
33809     Date:   Fri Jun 6 14:28:14 2008 +0200
33810
33811         tools/mkimage: fix compiler warnings on some systems.
33812
33813     Broke building on some systems, because the host's string.h was interfering
33814     with u-boot's linux/string.h.  It doesn't look like we need the u-boot one if
33815     we're building for the host, so now we only include when building inside
33816     u-boot.
33817
33818     Signed-off-by: Andy Fleming <afleming@freescale.com>
33819
33820 commit 9973e3c614721bbf169882ffc3be266a6611cd60
33821 Author: Becky Bruce <becky.bruce@freescale.com>
33822 Date:   Mon Jun 9 16:03:40 2008 -0500
33823
33824     Change initdram() return type to phys_size_t
33825
33826     This patch changes the return type of initdram() from long int to phys_size_t.
33827     This is required for a couple of reasons: long int limits the amount of dram
33828     to 2GB, and u-boot in general is moving over to phys_size_t to represent the
33829     size of physical memory.  phys_size_t is defined as an unsigned long on almost
33830     all current platforms.
33831
33832     This patch *only* changes the return type of the initdram function (in
33833     include/common.h, as well as in each board's implementation of initdram).  It
33834     does not actually modify the code inside the function on any of the platforms;
33835     platforms which wish to support more than 2GB of DRAM will need to modify
33836     their initdram() function code.
33837
33838     Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
33839     MPC8641HPCN.
33840
33841     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
33842
33843 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
33844 Author: Becky Bruce <becky.bruce@freescale.com>
33845 Date:   Mon Jun 9 20:37:18 2008 -0500
33846
33847     Change lmb to use phys_size_t/phys_addr_t
33848
33849     This updates the lmb code to use phys_size_t
33850     and phys_addr_t instead of unsigned long.  Other code
33851     which interacts with this code, like getenv_bootm_size()
33852     is also updated.
33853
33854     Booted on MPC8641HPCN, build-tested ppc, arm, mips.
33855
33856     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
33857
33858 commit 61b09fc2952dc636017df4e7970e3de132276ba1
33859 Author: Becky Bruce <becky.bruce@freescale.com>
33860 Date:   Mon Jun 9 20:37:17 2008 -0500
33861
33862     Change print_size to take phys_size_t
33863
33864     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
33865
33866 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
33867 Author: Becky Bruce <becky.bruce@freescale.com>
33868 Date:   Mon Jun 9 20:37:16 2008 -0500
33869
33870     Change bd/gd memsize/ram_size to be phys_size_t.
33871
33872     Currently, both are defined as an unsigned long, but
33873     should be phys_size_t. This should result in no real change,
33874     since phys_size_t is currently an unsigned long for all the
33875     default configs.  Also add print_lnum to cmd_bdinfo to deal
33876     with the potentially wider memsize.
33877
33878     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
33879
33880 commit ba04f7010958e88a8910f2a123fee53fdc72e013
33881 Author: Kumar Gala <galak@kernel.crashing.org>
33882 Date:   Tue Jun 10 16:16:02 2008 -0500
33883
33884     FSL LAW: Add new interface to use the last free LAW
33885
33886     LAWs have the concept of priority so its useful to be able to allocate
33887     the lowest (highest number) priority.  We will end up using this with the
33888     new DDR code.
33889
33890     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33891
33892 commit 859a86a25c569d3665ff413d1d923394b8a961f3
33893 Author: Kumar Gala <galak@kernel.crashing.org>
33894 Date:   Wed Jun 11 00:51:45 2008 -0500
33895
33896     85xx/86xx: Move to dynamic mgmt of LAWs
33897
33898     With the new LAW interface (set_next_law) we can move to letting the
33899     system allocate which LAWs are used for what purpose.  This makes life
33900     a bit easier going forward with the new DDR code.
33901
33902     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33903     Signed-off-by: Andy Fleming <afleming@freescale.com>
33904     Acked-by: Jon Loeliger <jdl@freescale.com>
33905     Acked-by: Becky Bruce <becky.bruce@freescale.com>
33906
33907 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
33908 Author: Kumar Gala <galak@kernel.crashing.org>
33909 Date:   Wed Jun 11 00:44:10 2008 -0500
33910
33911     FSL LAW: Keep track of LAW allocations
33912
33913     Make it so we keep track of which LAWs have allocated and provide
33914     a function (set_next_law) which can allocate a LAW for us if one is
33915     free.
33916
33917     In the future we will move to doing more "dynamic" LAW allocation
33918     since the majority of users dont really care about what LAW number
33919     they are at.
33920
33921     Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
33922
33923     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33924     Signed-off-by: Andy Fleming <afleming@freescale.com>
33925
33926 commit ddde74a159caa6e18b481fec01d40b885aebb566
33927 Author: Kumar Gala <galak@kernel.crashing.org>
33928 Date:   Mon Jun 9 22:31:57 2008 -0500
33929
33930     85xx: remove dummy board_early_init_f
33931
33932     A number of board ports have empty version of board_early_init_f
33933     for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
33934
33935     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33936
33937 commit 81e56e9af0d43712db8efb843606a8d62eab454f
33938 Author: Kumar Gala <galak@kernel.crashing.org>
33939 Date:   Mon Jun 9 18:55:38 2008 -0500
33940
33941     MPC8544DS: Update config.h
33942
33943     * Enable flash progress
33944     * remove CLEAR_LAW0 since we dont really use it
33945
33946     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33947
33948 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
33949 Author: Kumar Gala <galak@kernel.crashing.org>
33950 Date:   Mon Jun 9 13:37:24 2008 -0500
33951
33952     85xx: Remove unused and unconfigured memory test code.
33953
33954     Remove unused and unconfigured DDR test code from FSL 85xx boards.
33955     Besides, other common code exists.
33956
33957     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33958
33959 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
33960 Author: Sergei Poselenov <sposelenov@emcraft.com>
33961 Date:   Fri Jun 6 15:42:45 2008 +0200
33962
33963     Socrates: Added FPGA base address update in FDT.
33964
33965     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
33966
33967 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
33968 Author: Sergei Poselenov <sposelenov@emcraft.com>
33969 Date:   Fri Jun 6 15:42:44 2008 +0200
33970
33971     Socrates: NAND support added. Changed the U-Boot base address and
33972
33973     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
33974
33975 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
33976 Author: Sergei Poselenov <sposelenov@emcraft.com>
33977 Date:   Fri Jun 6 15:42:43 2008 +0200
33978
33979     NAND: Added support for 128-bit OOB, adapted
33980
33981     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
33982
33983 commit 31ca0208612f2eb57690110d7c2815953650e47b
33984 Author: Sergei Poselenov <sposelenov@emcraft.com>
33985 Date:   Fri Jun 6 15:42:42 2008 +0200
33986
33987     Socrates: added missed file with UPMA configuration data.
33988
33989     Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
33990
33991 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
33992 Author: Sergei Poselenov <sposelenov@emcraft.com>
33993 Date:   Fri Jun 6 15:42:41 2008 +0200
33994
33995     Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
33996
33997     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
33998
33999 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
34000 Author: Sergei Poselenov <sposelenov@emcraft.com>
34001 Date:   Fri Jun 6 15:42:40 2008 +0200
34002
34003     Added the upmconfig() function for 85xx.
34004
34005     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
34006     Signed-off-by: Andy Fleming <afleming@freescale.com>
34007
34008 commit d39e68514ff943930ee692cff3fde03532eb7fec
34009 Author: Sergei Poselenov <sposelenov@emcraft.com>
34010 Date:   Fri Jun 6 15:42:39 2008 +0200
34011
34012     Socrates: config file cleanup.
34013
34014     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
34015
34016 commit e8cc3f04b124f757af4528206e60d8eb715ae083
34017 Author: Wolfgang Grandegger <wg@grandegger.com>
34018 Date:   Thu Jun 5 13:12:10 2008 +0200
34019
34020     TQM85xx: Change memory map to support Flash memory > 128 MiB
34021
34022     Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
34023     memory. The current memory map only supports up to 128 MiB Flash.
34024     This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
34025     set, up to 1 GiB flash is supported. To achieve this, the memory
34026     map has to be adjusted in great parts (for example the CCSRBAR is
34027     moved from 0xE0000000 to 0xA0000000).
34028
34029     If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
34030     memory map also has to be considered in the kernel (changed
34031     CCSRBAR address, changed PCI IO base address, ...). Please use
34032     an appropriate Flat Device Tree blob (tqm8548.dtb).
34033
34034     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34035     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34036
34037 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
34038 Author: Wolfgang Grandegger <wg@grandegger.com>
34039 Date:   Thu Jun 5 13:12:09 2008 +0200
34040
34041     TQM85xx: NAND support via local bus UPMB
34042
34043     This patch adds support for NAND FLASH on the TQM8548. It is disabled by
34044     default and can be enabled for the TQM8548 modules. It is now based on
34045     the re-written FSL NAND UPM driver. A patch has been posted earlier today
34046     with the subject:
34047
34048     "NAND FSL UPM: driver re-write using the hwcontrol callback"
34049
34050     Note that the R/B pin is not supported by that module requiring to use
34051     the specified maximum delay time.
34052
34053     Note: With NAND support enabled the size of the U-Boot image exceeds
34054     256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
34055     doubling the image size :-(.
34056
34057     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
34058     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34059
34060 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
34061 Author: Wolfgang Grandegger <wg@grandegger.com>
34062 Date:   Thu Jun 5 13:12:08 2008 +0200
34063
34064     TQM8548: PCI express support
34065
34066     This patch adds support for PCI express cards. The board support
34067     now uses common FSL PCI init code, for both, PCI and PCIe on all
34068     TQM85xx modules.
34069
34070     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
34071     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34072
34073 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
34074 Author: Wolfgang Grandegger <wg@grandegger.com>
34075 Date:   Thu Jun 5 13:12:07 2008 +0200
34076
34077     TQM8548: Basic support for the TQM8548 modules
34078
34079     This patch adds basic support for the TQM8548 module from TQ-Components
34080     (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
34081     eTSEC 3 and 4
34082
34083     Furthermore Flash buffer write has been enabled to speed up output to
34084     the Flash by approx. a factor of 10.
34085
34086     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
34087     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34088
34089 commit 25991353204c78b094c3c1fec90182dcd607ab8f
34090 Author: Wolfgang Grandegger <wg@grandegger.com>
34091 Date:   Thu Jun 5 13:12:06 2008 +0200
34092
34093     TQM85xx: Support for Flat Device Tree
34094
34095     This patch adds support for Linux kernels using the Flat Device Tree.
34096     It also re-defines the default environment settings for booting Linux
34097     with the FDT blob.
34098
34099     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34100
34101 commit d9ee843d54c54776e1fdb86336ce554906a87331
34102 Author: Wolfgang Grandegger <wg@grandegger.com>
34103 Date:   Thu Jun 5 13:12:05 2008 +0200
34104
34105     TQM85xx: Support for Intel 82527 compatible CAN controller
34106
34107     This patch adds initialization of the UPMC RAM to support up to two
34108     Intel 82527 compatible CAN controller on the TQM85xx modules.
34109
34110     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
34111     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34112
34113 commit 518d5cfe72916323c746af1647764459914f555f
34114 Author: Wolfgang Grandegger <wg@grandegger.com>
34115 Date:   Thu Jun 5 13:12:04 2008 +0200
34116
34117     TQM85xx: Bugfix in the SDRAM initialisation
34118
34119     The CS0_BNDS register is now set according to the detected
34120     memory size.
34121
34122     Signed-off-by Martin Krause <martin.krause@tqs.de>
34123
34124 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
34125 Author: Wolfgang Grandegger <wg@grandegger.com>
34126 Date:   Thu Jun 5 13:12:03 2008 +0200
34127
34128     TQM85xx: Fix chip select configuration for second FLASH bank
34129
34130     This patch fixes the re-calculation of the automatic chip select
34131     configuration for boards with two populated FLASH banks.
34132
34133     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34134
34135 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
34136 Author: Wolfgang Grandegger <wg@grandegger.com>
34137 Date:   Thu Jun 5 13:12:02 2008 +0200
34138
34139     TQM85xx: Support for Spansion 'N' type flashes added
34140
34141     The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
34142     than the formerly used 'M' types (S29GLxxxM series), so the flash layout
34143     needs to be changed -> new start address of the environment. The macro
34144     definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
34145     defined for boards with 'N' type flashes.
34146
34147     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34148     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34149
34150 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
34151 Author: Wolfgang Grandegger <wg@grandegger.com>
34152 Date:   Thu Jun 5 13:12:01 2008 +0200
34153
34154     TQM85xx: Fix CPM port pin configuration
34155
34156     Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
34157     board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
34158     as serial interface anyway. Worse, on some board variants configuring the
34159     pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
34160
34161     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34162
34163 commit b99ba1679e8cd51b023e67098c89e606e47137d2
34164 Author: Wolfgang Grandegger <wg@grandegger.com>
34165 Date:   Thu Jun 5 13:12:00 2008 +0200
34166
34167     TQM85xx: Various coding style fixes
34168
34169     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34170
34171 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
34172 Author: Gerald Van Baren <vanbaren@cideas.com>
34173 Date:   Tue Jun 10 22:15:58 2008 -0400
34174
34175     libfdt: Move the working_fdt pointer to cmd_fdt.c
34176
34177     The working_fdt pointer was declared in common/fdt_support.c but was
34178     not used there.  Move it to common/cmd_fdt.c where it is used (it is
34179     also used in lib_ppc/bootm.c).
34180
34181     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34182
34183 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
34184 Author: Kim Phillips <kim.phillips@freescale.com>
34185 Date:   Tue Jun 10 11:06:17 2008 -0500
34186
34187     fdt: unshadow global working fdt variable
34188
34189     differentiate with local variables of the same name by renaming the
34190     global 'fdt' variable 'working_fdt'.
34191
34192     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34193
34194 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
34195 Author: Andy Fleming <afleming@freescale.com>
34196 Date:   Tue Jun 10 18:49:34 2008 -0500
34197
34198     socrates: Fix PCI clk fix patch
34199
34200     The submitted patch seems to have been more up-to-date, but an older patch was
34201     already in the repository.  This patch encompasses the differences
34202
34203     Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
34204
34205     Signed-off-by: Andy Fleming <afleming@freescale.com>
34206
34207 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
34208 Author: Wolfgang Grandegger <wg@grandegger.com>
34209 Date:   Thu Jun 5 13:02:29 2008 +0200
34210
34211     NAND FSL UPM: driver re-write using the hwcontrol callback
34212
34213     This is a re-write of the NAND FSL UPM driver using the more universal
34214     hwcontrol callback (instead of the cmdfunc callback). Here is a brief
34215     list of furher modifications:
34216
34217     - For the time being, the UPM setup writing the UPM array has been
34218       removed from the driver and must now be done by the board specific
34219       code.
34220
34221     - The bus width definition in "struct fsl_upm_nand" is now in bits to
34222       comply with the corresponding Linux driver and 8, 16 and 32 bit
34223       accesses are supported.
34224
34225     - chip->dev_read is only set if fun->dev_ready != NULL, which is
34226       required for boards not connecting the R/B pin.
34227
34228     - A few issue have been fixed with MxMR bit manipulation like in the
34229       corresponding Linux driver.
34230
34231     Note: I think the "io_addr" field of "struct fsl_upm" could be removed
34232           as well, because the address is already determined by
34233           "nand->IO_ADDR_[RW]", but I'm not 100% sure.
34234
34235     This patch has been tested on a TQM8548 modules with the NAND chip
34236     Micron MT29F8G08FABWP.
34237
34238     This patch is based on the following patches posted to this list a few
34239     minutes ago:
34240
34241       PPC: add accessor macros to clear and set bits in one shot
34242       83xx/85xx/86xx: add more MxMR local bus definitions
34243
34244     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34245     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34246
34247 commit 6beecfbb542992eede5831240cd58678274683a9
34248 Author: Wolfgang Grandegger <wg@grandegger.com>
34249 Date:   Thu Jun 5 13:11:59 2008 +0200
34250
34251     MPC85xx: Beautify boot output of L2 cache configuration
34252
34253     The boot output is now aligned poperly with other boot output
34254     lines, e.g.:
34255
34256       FLASH: 128 MB
34257       L2:    512 KB enabled
34258
34259     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34260
34261 commit 398415114f0a705163a14543e9fef03f734b1ffa
34262 Author: Wolfgang Grandegger <wg@grandegger.com>
34263 Date:   Wed Jun 4 12:45:22 2008 +0200
34264
34265     PPC: add accessor macros to clear and set bits in one shot
34266
34267     PPC: add accessor macros to clear and set bits in one shot
34268
34269     This patch adds macros from linux/include/asm-powerpc/io.h to clear and
34270     set bits in one shot using the in_be32, out_be32, etc. accessor functions.
34271     They are very handy to manipulate bits it I/O registers.
34272
34273     This patch is required for my forthcoming FSL NAND UPM driver re-write and
34274     the support for the TQM8548 module.
34275
34276     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34277
34278 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
34279 Author: Wolfgang Grandegger <wg@grandegger.com>
34280 Date:   Wed Jun 4 13:52:17 2008 +0200
34281
34282     TQM: move TQM boards to board/tqc
34283
34284     Move all TQM board directories to the vendor specific directory "tqc"
34285     for modules from TQ-Components GmbH (http://www.tqc.de).
34286
34287     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34288
34289 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
34290 Author: Wolfgang Grandegger <wg@grandegger.com>
34291 Date:   Mon Jun 2 12:09:30 2008 +0200
34292
34293     83xx/85xx/86xx: add more MxMR local bus definitions
34294
34295     83xx/85xx/86xx: add more MxMR local bus definitions
34296
34297     This patch adds more macro definitions for the UPM Machine Mode Registers
34298     They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
34299     common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
34300     required for my forthcoming FSL NAND UPM driver re-write and the support
34301     for the TQM8548 module.
34302
34303     This patch is based on the following two patches from Anton Vorontsov:
34304
34305     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
34306     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
34307
34308     I leave coding style violation fixes, code beautification and name
34309     corrections to somebody else ;-(.
34310
34311     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34312
34313 commit c8c5fc266e4499e283c293ccb972863156aa4134
34314 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34315 Date:   Thu May 29 18:14:56 2008 +0400
34316
34317     83xx/85xx: further localbus cleanups
34318
34319     Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
34320     from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
34321
34322     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34323
34324 commit 42dbd667c88d496882d53e22656e89b654205492
34325 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34326 Date:   Wed May 28 18:20:15 2008 +0400
34327
34328     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
34329
34330     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
34331     use it on MPC85xx and MPC86xx processors.
34332
34333     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34334
34335 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
34336 Author: Kumar Gala <galak@kernel.crashing.org>
34337 Date:   Thu May 29 11:22:06 2008 -0500
34338
34339     85xx: Add setting of cache props in the device tree.
34340
34341     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34342
34343 commit 4dbdb7681e243431530df0725627192a0c4aefda
34344 Author: Kumar Gala <galak@kernel.crashing.org>
34345 Date:   Tue Jun 10 16:53:46 2008 -0500
34346
34347     85xx: expose cpu identification
34348
34349     The current cpu identification code is used just to return the name
34350     of the processor at boot.  There are some other locations that the name
34351     is useful (device tree setup).  Expose the functionality to other bits
34352     of code.
34353
34354     Also, drop the 'E' suffix and add it on by looking at the SVR version
34355     when we print this out.  This is mainly to allow the most flexible use
34356     of the name.  The device tree code tends to not care about the 'E' suffix.
34357
34358     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34359
34360 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
34361 Author: Kim Phillips <kim.phillips@freescale.com>
34362 Date:   Tue Jun 10 13:25:24 2008 -0500
34363
34364     mpc83xx: MVBLM7: minor build fixups
34365
34366     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34367
34368 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
34369 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
34370 Date:   Tue Jun 10 09:14:05 2008 +0200
34371
34372     add MPC8343 based board mvBlueLYNX-M7 (board+make files)
34373
34374     Add MPC8343 based board mvBlueLYNX-M7.
34375     It's a single board stereo camera system.
34376     Please read doc/README.mvblm7 for details.
34377
34378     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
34379     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34380
34381 commit c005b93925ba49f07da2aa748527996d927e172f
34382 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
34383 Date:   Tue Jun 10 09:13:16 2008 +0200
34384
34385     add MPC8343 based board mvBlueLYNX-M7 (doc+config)
34386
34387     Add MPC8343 based board mvBlueLYNX-M7.
34388     It's a single board stereo camera system.
34389     Please read doc/README.mvblm7 for details.
34390
34391     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
34392     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34393
34394 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
34395 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34396 Date:   Thu May 29 18:14:56 2008 +0400
34397
34398     83xx/85xx: further localbus cleanups
34399
34400     move the BRx_* and ORx_* left behind in mpc85xx.h
34401
34402     The same is needed for mpc8xx.h and mpc8260.h (defines are almost
34403     the same, just few differences which needs some attention though).
34404
34405     But the bad news for mpc8xx and mpc8260 is that there are a lot of users
34406     of these defines. So this cleanup I'll leave for the "better times".
34407
34408     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34409     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34410
34411 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
34412 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34413 Date:   Wed May 28 18:20:15 2008 +0400
34414
34415     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
34416
34417     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
34418     use it on MPC85xx and MPC86xx processors.
34419
34420     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34421     Acked-by: Andy Fleming <afleming@freescale.com>
34422     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34423
34424 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
34425 Author: Tor Krill <tor@excito.com>
34426 Date:   Mon Jun 2 15:09:30 2008 +0200
34427
34428     Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
34429
34430     Signed-off-by: Tor Krill <tor@excito.com>
34431     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34432
34433 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
34434 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34435 Date:   Mon Jun 9 23:37:44 2008 +0900
34436
34437     net: Conditional COBJS inclusion of network drivers
34438
34439     Replace COBJS-y with appropriate driver config names.
34440
34441     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34442     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34443
34444 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
34445 Author: Gerald Van Baren <vanbaren@cideas.com>
34446 Date:   Mon Jun 9 21:02:17 2008 -0400
34447
34448     Use strncmp() for the fdt command
34449
34450     Cleaner than doing multiple conditionals on characters.
34451
34452     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34453
34454 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
34455 Author: Gerald Van Baren <vanbaren@cideas.com>
34456 Date:   Sat Jun 7 12:25:05 2008 -0400
34457
34458     The fdt boardsetup command criteria was not unique
34459
34460     It was checking just for "b", which is not unique with respect to the
34461     "boot" command.  Change to check for "boa"[rdsetup].
34462
34463     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34464
34465 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
34466 Author: David Gibson <david@gibson.dropbear.id.au>
34467 Date:   Tue May 20 17:19:11 2008 +1000
34468
34469     libfdt: Several cleanups to parameter checking
34470
34471     This patch makes a couple of small cleanups to parameter checking of
34472     libfdt functions.
34473
34474         - In several functions which take a node offset, we use an
34475     idiom involving fdt_next_tag() first to check that we have indeed been
34476     given a node offset.  This patch adds a helper function
34477     _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
34478
34479         - In fdt_rw.c in several places we have the expanded version
34480     of the RW_CHECK_HEADER() macro for no particular reason.  This patch
34481     replaces those instances with an invocation of the macro; that's what
34482     it's for.
34483
34484         - In fdt_sw.c we rename the check_header_sw() function to
34485     sw_check_header() to match the analgous function in fdt_rw.c, and we
34486     provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
34487     functions in fdt_rw.c
34488
34489     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34490
34491 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
34492 Author: Gerald Van Baren <vanbaren@cideas.com>
34493 Date:   Tue Jun 3 20:34:45 2008 -0400
34494
34495     Remove the deprecated CONFIG_OF_FLAT_TREE
34496
34497     Use CONFIG_OF_LIBFDT instead to support flattened device trees.  It is
34498     cleaner, has better functionality, and is better supported.
34499
34500     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34501
34502 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
34503 Author: Gerald Van Baren <vanbaren@cideas.com>
34504 Date:   Tue Jun 3 20:26:29 2008 -0400
34505
34506     Change the stxxst to CONFIG_OF_LIBFDT
34507
34508     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
34509     to CONFIG_OF_LIBFDT.
34510
34511     WARNING: It appears that this board lost its ability to boot via a
34512     flattened device tree prior to this changeset.
34513
34514     WARNING: This conversion was untested because I do not have a board to
34515     test it on.
34516
34517     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34518
34519 commit 589c04271d129729a8b01391453851ab9cc4069c
34520 Author: Gerald Van Baren <vanbaren@cideas.com>
34521 Date:   Tue Jun 3 20:24:58 2008 -0400
34522
34523     Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
34524
34525     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
34526     to CONFIG_OF_LIBFDT.
34527
34528     WARNING: This conversion is untested because I do not have a board to
34529     test it on.
34530
34531     NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
34532     /aliases/ethernet1 property for the ethernet to work.
34533
34534     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34535
34536 commit ee1e35bede91debc8bff9b02f75574486033b652
34537 Author: Kumar Gala <galak@kernel.crashing.org>
34538 Date:   Thu May 29 01:21:24 2008 -0500
34539
34540     85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
34541
34542     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34543
34544 commit 3b9519fc50802436e417c839e69df7b2016cade5
34545 Author: Becky Bruce <becky.bruce@freescale.com>
34546 Date:   Wed May 14 13:10:04 2008 -0500
34547
34548     MPC85xx: Change traps.c to not reference non-addressable memory
34549
34550     Currently, END_OF_RAM is used by the trap code to determine if
34551     we should attempt to access the stack pointer or not. However,
34552     on systems with a lot of RAM, only a subset of the RAM is
34553     guaranteed to be mapped in and accessible.  Change END_OF_RAM
34554     to use get_effective_memsize() instead of using the raw ram
34555     size out of the bd.
34556
34557     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
34558
34559 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
34560 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34561 Date:   Mon Jun 9 13:39:57 2008 +0900
34562
34563     sh: Renesas Solutions SH7763RDP board support
34564
34565     SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
34566     In this patch, support SCIF, NOR Flash, and Ethernet.
34567
34568     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34569     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34570
34571 commit 60179098a95eaa972007d7ec58e4c1588029720f
34572 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34573 Date:   Fri Jun 6 16:24:13 2008 +0900
34574
34575     sh: Add support Renesas SH7763
34576
34577     Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
34578     This patch supprts CPU register's header file.
34579
34580     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34581     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34582
34583 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
34584 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34585 Date:   Fri Jun 6 16:16:08 2008 +0900
34586
34587     sh: SH7763 SCIF support
34588
34589     SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
34590     but only SCIF2 is different. This patch work all SCIF channel.
34591
34592     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34593     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34594
34595 commit 79b51ff8205f0354d5300570614c1d2db499679c
34596 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34597 Date:   Sat Jun 7 20:51:59 2008 +0900
34598
34599     [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
34600
34601     Also get rid of some #ifdefs in *.c files.
34602
34603     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34604
34605 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
34606 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34607 Date:   Sat Jun 7 20:51:56 2008 +0900
34608
34609     [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
34610
34611     CONFIG_SOC_AU1X00
34612
34613       Common Alchemy Au1x00 stuff. All Alchemy processor based machines
34614       need to have this config as a system type specifier.
34615
34616     CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
34617     CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
34618
34619       Machine type specifiers. Each port should have one of aboves.
34620
34621     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34622
34623 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
34624 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
34625 Date:   Fri May 30 16:05:28 2008 -0400
34626
34627     env_nand.c: Added bad block management for environment variables
34628
34629     Modified to check for bad blocks and to skipping over them when
34630     CFG_ENV_RANGE has been defined.
34631     CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
34632     flash block size.
34633
34634     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
34635     Signed-off-by: Scott Wood <scottwood@freescale.com>
34636
34637 commit 279726bd00558e80263d44581c44167625b7fb9a
34638 Author: Becky Bruce <becky.bruce@freescale.com>
34639 Date:   Wed May 14 13:09:58 2008 -0500
34640
34641     MPC86xx: Change traps.c to not reference non-addressable memory
34642
34643     Currently, END_OF_RAM is used by the trap code to determine if
34644     we should attempt to access the stack pointer or not. However,
34645     on systems with a lot of RAM, only a subset of the RAM is
34646     guaranteed to be mapped in and accessible.  Change END_OF_RAM
34647     to use get_effective_memsize() instead of using the raw ram
34648     size out of the bd to prevent us from trying to access
34649     non-mapped memory.
34650
34651     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
34652
34653 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
34654 Author: Wolfgang Denk <wd@denx.de>
34655 Date:   Fri Jun 6 14:28:14 2008 +0200
34656
34657     tools/mkimage: fix compiler warnings on some systems.
34658
34659     Signed-off-by: Wolfgang Denk <wd@denx.de>
34660
34661 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
34662 Author: Stefan Roese <sr@denx.de>
34663 Date:   Fri Jun 6 16:10:41 2008 +0200
34664
34665     ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
34666
34667     We use upper case letters for the AMCC processor defines (like
34668     CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
34669     not CONFIG_440SPe. This patch fixes the last misspelled config options.
34670
34671     Signed-off-by: Stefan Roese <sr@denx.de>
34672
34673 commit 72675dc6c06a48846d180106161d49dd714383cc
34674 Author: Stefan Roese <sr@denx.de>
34675 Date:   Fri Jun 6 15:55:21 2008 +0200
34676
34677     ppc4xx: Unify AMCC's board config files (part 3/3)
34678
34679     This patch series unifies the AMCC eval board ports by introducing
34680     a common include header for all AMCC eval boards:
34681
34682     include/configs/amcc-common.h
34683
34684     This header now includes all common configuration options/defines which
34685     are removed from the board specific headers.
34686
34687     The reason for this is ease of maintenance and unified look and feel
34688     of all AMCC boards.
34689
34690     Signed-off-by: Stefan Roese <sr@denx.de>
34691
34692 commit 490f204096d6e2c9940f67816f154a8125bab116
34693 Author: Stefan Roese <sr@denx.de>
34694 Date:   Fri Jun 6 15:55:03 2008 +0200
34695
34696     ppc4xx: Unify AMCC's board config files (part 2/3)
34697
34698     This patch series unifies the AMCC eval board ports by introducing
34699     a common include header for all AMCC eval boards:
34700
34701     include/configs/amcc-common.h
34702
34703     This header now includes all common configuration options/defines which
34704     are removed from the board specific headers.
34705
34706     The reason for this is ease of maintenance and unified look and feel
34707     of all AMCC boards.
34708
34709     Signed-off-by: Stefan Roese <sr@denx.de>
34710
34711 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
34712 Author: Stefan Roese <sr@denx.de>
34713 Date:   Fri Jun 6 15:54:31 2008 +0200
34714
34715     ppc4xx: Unify AMCC's board config files (part 1/3)
34716
34717     This patch series unifies the AMCC eval board ports by introducing
34718     a common include header for all AMCC eval boards:
34719
34720     include/configs/amcc-common.h
34721
34722     This header now includes all common configuration options/defines which
34723     are removed from the board specific headers.
34724
34725     The reason for this is ease of maintenance and unified look and feel
34726     of all AMCC boards.
34727
34728     Signed-off-by: Stefan Roese <sr@denx.de>
34729
34730 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
34731 Author: Remy Bohmer <linux@bohmer.net>
34732 Date:   Thu Jun 5 13:03:36 2008 +0200
34733
34734     DM9000 fix status check fail 0x6d error for trizeps board
34735
34736     According to the Application Notes of the DM9000, only the 2 bits 0:1 of
34737     the status byte need to be checked to identify a valid packet in the fifo
34738
34739     But, The several different Application Notes do not all speak the same
34740     language on these bits. They do not disagree, but only 1 Application Note
34741     noted explicitly that only these 2 bits need to be checked.
34742     Even the datasheets do not mention anything about these 2 bits.
34743
34744     Because the old code, and the kernel check the whole byte, I left this piece
34745     untouched.
34746
34747     However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
34748     it should work.
34749
34750     Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
34751     in the fifo) is much shorter now, compared to the older U-boot driver code,
34752     so that we can maybe run into a hardware condition now that was never seen
34753     before, or maybe was seen very unfrequently.
34754
34755     Additionaly added a cleanup of a stack variable.
34756
34757     Signed-off-by: Remy Bohmer <linux@bohmer.net>
34758     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34759
34760 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
34761 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34762 Date:   Thu Jun 5 22:29:00 2008 +0900
34763
34764     [MIPS] Update <asm/addrspace.h> header
34765
34766     - Fix traditional KSEG names
34767     - Replace PHYSADDR with CPHYSADDR
34768
34769     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34770
34771 commit f0d5a6f060d00358b85c62a921a423ea8df71184
34772 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34773 Date:   Thu Jun 5 22:29:00 2008 +0900
34774
34775     [MIPS] mips_config.mk: Misc fixes
34776
34777     - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
34778     - Modify comments
34779
34780     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34781
34782 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
34783 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34784 Date:   Thu Jun 5 22:29:00 2008 +0900
34785
34786     [MIPS] Kill unused <version.h> inclusions
34787
34788     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34789
34790 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
34791 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34792 Date:   Thu Jun 5 22:29:00 2008 +0900
34793
34794     [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
34795
34796     MIPS port has two problems in timer routines. One is now we assume CFG_HZ
34797     equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
34798     in the U-Boot system.
34799
34800     The other is we don't have a proper time management counter like timestamp
34801     other ARCHs have. We need the 32-bit millisecond clock counter.
34802
34803     This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
34804     32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
34805     of calculated CP0 counter cycles in a CFG_HZ.
34806
34807     STRATEGY:
34808
34809     * Fix improper CFG_HZ value to have 1000
34810
34811     * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
34812
34813     * timer_init: initialize timestamp and set up the first timer expiration.
34814       Note that we don't need to initialize CP0 count/compare registers here
34815       as they have been already zeroed out on the system reset. Leave them as
34816       they are.
34817
34818     * get_timer: calculate how many timestamps have been passed, then return
34819       base-relative timestamp. Make sure we can easily count missed timestamps
34820       regardless of CP0 count/compare value.
34821
34822     * get_ticks: return the current timestamp, that is get_timer(0).
34823
34824     Most parts are from good old Linux v2.6.16 kernel.
34825
34826     v2:
34827     - Remove FIXME comments as they turned out to be trivial.
34828     - Use CP0 compare register as a global variable for expirelo.
34829     - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
34830       instead.
34831
34832     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34833
34834 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
34835 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34836 Date:   Thu Jun 5 22:29:00 2008 +0900
34837
34838     [MIPS] lib_mips/time.c: Fix udelay
34839
34840     What we have to do is just to wait for given micro-seconds. No need to
34841     take into account current time, get_timer and CFG_HZ.
34842
34843     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34844
34845 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
34846 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34847 Date:   Thu Jun 5 22:28:59 2008 +0900
34848
34849     [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
34850
34851     We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
34852     This patch replaces mips_{compare,count}_set and mips_count_get with
34853     existing macros.
34854
34855     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34856
34857 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
34858 Author: Remy Bohmer <linux@bohmer.net>
34859 Date:   Tue Jun 3 15:48:17 2008 +0200
34860
34861     Get rid of annoying/superfluous bad-checksum warning message
34862
34863     U-boot can complain a lot about 'checksum bad' when it is attached to the network.
34864     It is annoying for ordinary users who start to doubt the network connection
34865     in general when they see messages like this.
34866
34867     This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
34868     than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
34869     now before checking the checksum.
34870
34871     Signed-off-by: Remy Bohmer <linux@bohmer.net>
34872     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34873
34874 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
34875 Author: Remy Bohmer <linux@bohmer.net>
34876 Date:   Wed Jun 4 10:47:25 2008 +0200
34877
34878     Fix order for reading rx-status registers in 32bit mode of DM9000
34879
34880     A last minute cleanup before submitting the DM9000A patch series yesterday introduced
34881     a bug in reading the rx-status registers in 32bit mode only.
34882     This patch repairs this.
34883
34884     Signed-off-by: Remy Bohmer <linux@bohmer.net>
34885     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34886
34887 commit 98291e2e689096420465074cce926b226d2e71b4
34888 Author: Remy Bohmer <linux@bohmer.net>
34889 Date:   Tue Jun 3 15:26:26 2008 +0200
34890
34891     DM9000: Some minor code cleanups
34892
34893     Some lines of the U-boot DM9000x driver are longer than 80 characters, or
34894     need some other minor cleanup.
34895
34896     Signed-off-by: Remy Bohmer <linux@bohmer.net>
34897     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34898
34899 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
34900 Author: Remy Bohmer <linux@bohmer.net>
34901 Date:   Tue Jun 3 15:26:25 2008 +0200
34902
34903     DM9000: Make driver work properly for DM9000A
34904
34905     The DM9000A network controller does not work with the U-boot DM9000x driver.
34906     Analysis showed that many incoming packets are lost.
34907
34908     The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
34909     check for a valid rx packet be done on the interrupt status register, not
34910     directly by performing the dummy read and the rx status check as is currently
34911     the case in the u-boot driver.
34912
34913     When the recommended poll is done as suggested the driver starts working
34914     correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
34915     can be more than 1 package in the fifo at the same time.
34916
34917     The driver must perform the rx-status check in a loop and read and handle all
34918     packages until there is no more left _after_ the interrupt RX flag is set.
34919
34920     This change has been tested with DM9000A, DM9000E, DM9000EP.
34921
34922     Signed-off-by: Remy Bohmer <linux@bohmer.net>
34923     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34924
34925 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
34926 Author: Remy Bohmer <linux@bohmer.net>
34927 Date:   Tue Jun 3 15:26:24 2008 +0200
34928
34929     DM9000: Improve eth_reset() routine
34930
34931     According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
34932     reset procedure must be done twice to properly reset the DM9000 by means of software.
34933     This errata is not needed anymore for the DM9000A, but it does not bother it.
34934
34935     This change has been tested with DM9000A, DM9000E, DM9000EP.
34936
34937     Signed-off-by: Remy Bohmer <linux@bohmer.net>
34938     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34939
34940 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
34941 Author: Remy Bohmer <linux@bohmer.net>
34942 Date:   Tue Jun 3 15:26:23 2008 +0200
34943
34944     DM9000: improve eth_send() routine
34945
34946     The eth_send routine of the U-boot DM9000x driver does not match the
34947     DM9000 or DM9000A application notes/programming guides.
34948
34949     This change improves the stability of the DM9000A network controller.
34950
34951     This change has been tested with DM9000A, DM9000E, DM9000EP.
34952
34953     Signed-off-by: Remy Bohmer <linux@bohmer.net>
34954     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34955
34956 commit 134e266253c02a7832560da59d394989c4f64453
34957 Author: Remy Bohmer <linux@bohmer.net>
34958 Date:   Tue Jun 3 15:26:22 2008 +0200
34959
34960     DM9000: repair debug logging
34961
34962     It seems that the debugging code of the DM9000x driver in U-boot has not been
34963     compiled for a long time, because it cannot compile...
34964
34965     Also rearranged some loglines to get more useful info while debugging.
34966
34967     Signed-off-by: Remy Bohmer <linux@bohmer.net>
34968     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34969
34970 commit a101361bfe23c120321e45d114c0603b8e0763e9
34971 Author: Remy Bohmer <linux@bohmer.net>
34972 Date:   Tue Jun 3 15:26:21 2008 +0200
34973
34974     DM9000: Add data bus-width auto detection.
34975
34976     The U-boot DM9000x driver contains a compile time bus-width definition for
34977     the databus connected to the network controller.
34978
34979     This compile check makes the code unclear, inflexible and is unneccessary.
34980     It can be asked to the network controller what its bus-width is by reading bits
34981     6 and 7 of the interrupt status register.
34982
34983     The linux kernel already uses a runtime mechanism to determine this bus-width,
34984     so the implementation below looks somewhat like that implementation.
34985
34986     This change has been tested with DM9000A, DM9000E, DM9000EP.
34987
34988     Signed-off-by: Remy Bohmer <linux@bohmer.net>
34989     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34990
34991 commit 63a0afa0c32e5f4ea98a9439542870072437404d
34992 Author: Stefan Roese <sr@denx.de>
34993 Date:   Wed Jun 4 19:19:20 2008 +0200
34994
34995     ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
34996
34997     This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
34998     introduced by the commit:
34999
35000     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
35001
35002     With this patch SDRAM will get initialized again and booting from NAND
35003     is working again.
35004
35005     Signed-off-by: Stefan Roese <sr@denx.de>
35006     Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
35007
35008 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
35009 Author: Wolfgang Denk <wd@denx.de>
35010 Date:   Tue May 27 14:19:30 2008 +0200
35011
35012     Socrates: Fix PCI bus frequency report
35013
35014     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35015
35016 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
35017 Author: Tor Krill <tor@excito.com>
35018 Date:   Thu May 29 11:10:30 2008 +0200
35019
35020     Fix incorrect switch for IF_TYPE in part.c
35021
35022     Use correct field in block_dev_desc_t when writing interface type in
35023     dev_print. Error introduced in 574b3195.
35024
35025     Also added fix from Martin Krause
35026
35027     Signed-off-by: Tor Krill <tor@excito.com>
35028
35029 commit b64b8a0bd310935b70af69ac970952f2b364ae56
35030 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
35031 Date:   Tue May 27 10:25:39 2008 +0200
35032
35033     Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
35034
35035     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
35036
35037 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
35038 Author: Peter Tyser <ptyser@xes-inc.com>
35039 Date:   Thu May 22 18:56:52 2008 -0500
35040
35041     Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
35042
35043     Removed unneeded command line history initialization.  Also, the original
35044     code would access the 'initted' variable before relocation to SDRAM
35045     which resulted in erratic behavior since the bss is not initialized when
35046     executing from flash.
35047
35048     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35049
35050 commit 22f371b63038a4ecab04068877c1089e51a01ba1
35051 Author: Grant Erickson <gerickson@nuovations.com>
35052 Date:   Wed May 21 13:28:30 2008 -0700
35053
35054     PPC4xx: Simplified post_word_{load, store}
35055
35056     This patch simplifies post_word_{load,store} by using the preprocessor
35057     to eliminate redundant, copy-and-pasted code.
35058
35059     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
35060
35061 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
35062 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
35063 Date:   Wed May 7 21:25:33 2008 +0400
35064
35065     cfi_flash: enable M18 flash chips family support.
35066
35067     Added new command set ID. Buffered write command processing is changed
35068     in order to support M18 flash chips family.
35069
35070     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
35071     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
35072
35073 commit 93c56f212ccdadc182018f0769cb284426b88f1d
35074 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
35075 Date:   Wed May 7 21:24:44 2008 +0400
35076
35077     cfi_flash: support of long cmd in U-boot.
35078
35079     Some NOR flash chips needs support of commands with length grether than max
35080     value size of uchar. For example all M18 family chips use 0x1ff command in
35081     buffered write mode as value of program loops count.
35082
35083     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
35084     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
35085
35086 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
35087 Author: Stefan Roese <sr@denx.de>
35088 Date:   Fri May 16 11:06:06 2008 +0200
35089
35090     DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
35091
35092     On AD7414 the first value upon bootup is not read correctly.
35093     This is most likely because of the 800ms update time of the
35094     temp register in normal update mode. To get current values
35095     each time we issue the "dtt" command including upon powerup
35096     we switch into one-short mode.
35097
35098     This patch fixes the problem on AD7414 equipped boards (Sequoia,
35099     Canyonlands etc), that temp value printed in the bootup log was
35100     incorrect.
35101
35102     Signed-off-by: Stefan Roese <sr@denx.de>
35103
35104 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
35105 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35106 Date:   Fri May 30 16:55:06 2008 +0200
35107
35108     ppc4xx: Cleanup CPCI405 variant's config file
35109
35110     This patch removes some dead code from CPCI405 board's
35111     config files. JFFS2 support is also removed. It's not used and
35112     CPCI4052 does not build anymore without some size reduction.
35113
35114     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35115
35116 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
35117 Author: Kenneth Johansson <kenneth@southpole.se>
35118 Date:   Thu May 29 16:32:33 2008 +0200
35119
35120     Remove shell variable UNDEF_SYM.
35121
35122     UNDEF_SYM is a shell variable in the main Makefile used to force the
35123     linker to add all u-boot commands to the final image. It has no use here.
35124
35125     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
35126
35127 commit 8c66497e06bf803489c589df58ee591d71033274
35128 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35129 Date:   Fri May 16 11:10:35 2008 +0200
35130
35131     Add support for environment in SPI flash
35132
35133     This is pretty incomplete...it doesn't handle reading the environment
35134     before relocation, it doesn't support redundant environment, and it
35135     doesn't support embedded environment. But apart from that, it does
35136     seem to work.
35137
35138     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35139
35140 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
35141 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35142 Date:   Fri May 16 11:10:34 2008 +0200
35143
35144     SPI Flash: Add "sf" command
35145
35146     This adds a new command, "sf" which can be used to manipulate SPI
35147     flash. Currently, initialization, reading, writing and erasing is
35148     supported.
35149
35150     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35151
35152 commit d25ce7d24cc0f93881559f4009175ea305af65e8
35153 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35154 Date:   Fri May 16 11:10:33 2008 +0200
35155
35156     SPI Flash subsystem
35157
35158     This adds a new SPI flash subsystem.
35159
35160     Currently, only AT45 DataFlash in non-power-of-two mode is supported,
35161     but some preliminary support for other flash types is in place as
35162     well.
35163
35164     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35165
35166 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
35167 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
35168 Date:   Fri May 16 11:10:32 2008 +0200
35169
35170     atmel_spi: Driver for the Atmel SPI controller
35171
35172     This adds a driver for the SPI controller found on most AT91 and AVR32
35173     chips, implementing the new SPI API.
35174
35175     Changed in v4:
35176       - Update to new API
35177       - Handle zero-length transfers appropriately. The user may send a
35178         zero-length SPI transfer with SPI_XFER_END set in order to
35179         deactivate the chip select after a series of transfers with chip
35180         select active. This is useful e.g. when polling the status
35181         register of DataFlash.
35182
35183     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
35184
35185 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
35186 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
35187 Date:   Fri May 16 11:10:31 2008 +0200
35188
35189     SPI API improvements
35190
35191     This patch gets rid of the spi_chipsel table and adds a handful of new
35192     functions that makes the SPI layer cleaner and more flexible.
35193
35194     Instead of the spi_chipsel table, each board that wants to use SPI
35195     gets to implement three hooks:
35196       * spi_cs_activate(): Activates the chipselect for a given slave
35197       * spi_cs_deactivate(): Deactivates the chipselect for a given slave
35198       * spi_cs_is_valid(): Determines if the given bus/chipselect
35199         combination can be activated.
35200
35201     Not all drivers may need those extra functions however. If that's the
35202     case, the board code may just leave them out (assuming they know what
35203     the driver needs) or rely on the linker to strip them out (assuming
35204     --gc-sections is being used.)
35205
35206     To set up communication parameters for a given slave, the driver needs
35207     to call spi_setup_slave(). This returns a pointer to an opaque
35208     spi_slave struct which must be passed as a parameter to subsequent SPI
35209     calls. This struct can be freed by calling spi_free_slave(), but most
35210     driver probably don't want to do this.
35211
35212     Before starting one or more SPI transfers, the driver must call
35213     spi_claim_bus() to gain exclusive access to the SPI bus and initialize
35214     the hardware. When all transfers are done, the driver must call
35215     spi_release_bus() to make the bus available to others, and possibly
35216     shut down the SPI controller hardware.
35217
35218     spi_xfer() behaves mostly the same as before, but it now takes a
35219     spi_slave parameter instead of a spi_chipsel function pointer. It also
35220     got a new parameter, flags, which is used to specify chip select
35221     behaviour. This may be extended with other flags in the future.
35222
35223     This patch has been build-tested on all powerpc and arm boards
35224     involved. I have not tested NIOS since I don't have a toolchain for it
35225     installed, so I expect some breakage there even though I've tried
35226     fixing up everything I could find by visual inspection.
35227
35228     I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
35229     DataFlash drivers posted as a follow-up. I'd like some help testing
35230     other boards that use the existing SPI API.
35231
35232     But most of all, I'd like some comments on the new API. Is this stuff
35233     usable for everyone? If not, why?
35234
35235     Changed in v4:
35236       - Build fixes for various boards, drivers and commands
35237       - Provide common struct spi_slave definition that can be extended by
35238         drivers
35239       - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
35240       - Make default bus and mode build-time configurable
35241       - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
35242
35243     Changed in v3:
35244       - Add opaque struct spi_slave for controller-specific data associated
35245         with a slave.
35246       - Add spi_claim_bus() and spi_release_bus()
35247       - Add spi_free_slave()
35248       - spi_setup() is now called spi_setup_slave() and returns a
35249         struct spi_slave
35250       - soft_spi now supports four SPI modes (CPOL|CPHA)
35251       - Add bus parameter to spi_setup_slave()
35252       - Convert the new i.MX32 SPI driver
35253       - Convert the new MC13783 RTC driver
35254
35255     Changed in v2:
35256       - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
35257         new API.
35258
35259     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
35260     Tested-by: Guennadi Liakhovetski <lg@denx.de>
35261
35262 commit 289011207d999b2e4085150d2aa30d547ad9b800
35263 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35264 Date:   Fri May 16 11:10:30 2008 +0200
35265
35266     Move definition of container_of() to common.h
35267
35268     AVR32 and AT91SAM9 both have their own identical definitions of
35269     container_of() taken from the Linux kernel. Move it to common.h so
35270     that all architectures can use it.
35271
35272     container_of() is already used by some drivers, and will be used
35273     extensively by the new and improved SPI API.
35274
35275     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35276
35277 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
35278 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35279 Date:   Fri May 16 11:08:11 2008 +0200
35280
35281     soft_i2c: Pull SDA high before reading
35282
35283     Spotted by Dean Capindale.
35284
35285     Systems that support open-drain GPIO properly are allowed provide an
35286     empty I2C_TRISTATE define. However, this means that we need to be
35287     careful not to drive SDA low when the slave is expected to respond.
35288
35289     This patch adds a missing I2C_SDA(1) to read_byte() required to
35290     tristate the SDA line on systems that support open-drain GPIO.
35291
35292     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35293
35294 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
35295 Author: Stefan Roese <sr@denx.de>
35296 Date:   Mon May 19 11:34:53 2008 +0200
35297
35298     ppc4xx: Remove implementations of testdram()
35299
35300     This patch removes the used testdram() implementations of the board
35301     that are maintained by myself.
35302
35303     Signed-off-by: Stefan Roese <sr@denx.de>
35304
35305 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
35306 Author: Stefan Roese <sr@denx.de>
35307 Date:   Mon Jun 2 17:37:28 2008 +0200
35308
35309     ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
35310
35311     Historically the 405 U-Boot port had a dram_init() call in early init
35312     stage. This function was still called from start.S and most of the time
35313     coded in assembler. This is not needed anymore (since a long time) and
35314     boards should implement the common initdram() function in C instead.
35315
35316     This patch now removed the dram_init() call from start.S and removes the
35317     empty implementations that are scattered through most of the 405 board
35318     ports. Some older board ports really implement this dram_init() though.
35319     These are:
35320
35321     csb272
35322     csb472
35323     ERIC
35324     EXBITGEN
35325     W7OLMC
35326     W7OLMG
35327
35328     I changed those boards to call this assembler dram_init() function now
35329     from their board specific initdram() instead. This *should* work, but please
35330     test again on those platforms. And it is perhaps a good idea that those
35331     boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
35332     some time. So further patches welcome here.
35333
35334     Signed-off-by: Stefan Roese <sr@denx.de>
35335
35336 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
35337 Author: Stefan Roese <sr@denx.de>
35338 Date:   Mon Jun 2 17:22:11 2008 +0200
35339
35340     ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
35341
35342     Signed-off-by: Stefan Roese <sr@denx.de>
35343
35344 commit 39b32be18cd33b53a84065edcd4e465165cc5564
35345 Author: Stefan Roese <sr@denx.de>
35346 Date:   Mon Jun 2 17:20:03 2008 +0200
35347
35348     ppc4xx: Fix common ECC generation code for 440GP style platforms
35349
35350     This patch makes the common 4xx ECC code really usable on 440GP style
35351     platforms.
35352
35353     Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
35354     compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
35355     we need to make some processor dependant defines used later on by the
35356     driver.
35357
35358     Signed-off-by: Stefan Roese <sr@denx.de>
35359
35360 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
35361 Author: Stefan Roese <sr@denx.de>
35362 Date:   Mon Jun 2 17:13:55 2008 +0200
35363
35364     ppc4xx: Change Kilauea to use the common DDR2 init function
35365
35366     This patch changes the kilauea and kilauea_nand (for NAND booting)
35367     board port to not use a board specific DDR2 init routine anymore. Now
35368     the common code from cpu/ppc4xx is used.
35369
35370     Thanks to Grant Erickson for all his basic work on this 405EX early
35371     bootup.
35372
35373     Signed-off-by: Stefan Roese <sr@denx.de>
35374
35375 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
35376 Author: Stefan Roese <sr@denx.de>
35377 Date:   Mon Jun 2 14:59:21 2008 +0200
35378
35379     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
35380
35381     This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
35382     ppc4xx related SDRAM/DDR/DDR2 controller defines.
35383
35384     Signed-off-by: Stefan Roese <sr@denx.de>
35385
35386 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
35387 Author: Stefan Roese <sr@denx.de>
35388 Date:   Mon Jun 2 14:57:41 2008 +0200
35389
35390     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
35391
35392     This patch removes all SDRAM related defines from the PPC4xx headers
35393     ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
35394     the same SDRAM controller as 440 systems do (like 405EX and 440SP).
35395
35396     It also introduces new defines for the equipped SDRAM controller based on
35397     which PPC variant is used. There new defines are:
35398
35399     used on 405GR/CR/EP and some Xilinx Virtex boards.
35400
35401     used on 440GP/GX/EP/GR.
35402
35403     used on 440EPx/GRx.
35404
35405     used on 405EX/r/440SP/SPe/460EX/GT.
35406
35407     Signed-off-by: Stefan Roese <sr@denx.de>
35408
35409 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
35410 Author: Stefan Roese <sr@denx.de>
35411 Date:   Mon Jun 2 14:35:44 2008 +0200
35412
35413     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
35414
35415     This patch consolidates the 405 and 440 parts of the NAND booting code
35416     selected via CONFIG_NAND_SPL. Now common code is used to initialize the
35417     SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
35418     Only *after* running from this location, nand_boot() is called.
35419
35420     Please note that the initsdram() call is now moved from nand_boot.c
35421     to start.S. I experienced problems with some boards like Kilauea
35422     (405EX), which don't have internal SRAM (OCM) and relocation needs to
35423     be done to SDRAM before the NAND controller can get accessed. When
35424     initdram() is called later on in nand_boot(), this can lead to problems
35425     with variables in the bss sections like nand_ecc_pos[].
35426
35427     Signed-off-by: Stefan Roese <sr@denx.de>
35428     Acked-by: Scott Wood <scottwood@freescale.com>
35429
35430 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
35431 Author: Grant Erickson <gerickson@nuovations.com>
35432 Date:   Thu May 22 14:44:24 2008 -0700
35433
35434     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
35435
35436     This patch (Part 2 of 2):
35437
35438     * Rolls up a suite of changes to enable correct primordial stack and
35439       global data handling when the data cache is used for such a purpose
35440       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
35441
35442     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
35443       eliminating redundant ECC initialization implementations and moving
35444       redundant SDRAM initialization out of board code into shared 4xx
35445       code.
35446
35447     * Enables MCSR visibility on the 405EX(r).
35448
35449     * Enables the use of the data cache for initial RAM on
35450       both AMCC's Kilauea and Makalu and removes a redundant
35451       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
35452
35453       - Removed, per Stefan Roese's request, defunct memory.c file for
35454         Makalu and rolled sdram_init from it into makalu.c.
35455
35456     With respect to the 4xx DDR initialization and ECC unification, there
35457     is certainly more work that can and should be done (file renaming,
35458     etc.). However, that can be handled at a later date on a second or
35459     third pass. As it stands, this patch moves things forward in an
35460     incremental yet positive way for those platforms that utilize this
35461     code and the features associated with it.
35462
35463     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
35464     Signed-off-by: Stefan Roese <sr@denx.de>
35465
35466 commit c821b5f120bedf73867513466412587c6912a8f8
35467 Author: Grant Erickson <gerickson@nuovations.com>
35468 Date:   Thu May 22 14:44:14 2008 -0700
35469
35470     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
35471
35472     This patch (Part 1 of 2):
35473
35474     * Rolls up a suite of changes to enable correct primordial stack and
35475       global data handling when the data cache is used for such a purpose
35476       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
35477
35478     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
35479       eliminating redundant ECC initialization implementations and moving
35480       redundant SDRAM initialization out of board code into shared 4xx
35481       code.
35482
35483     * Enables MCSR visibility on the 405EX(r).
35484
35485     * Enables the use of the data cache for initial RAM on
35486       both AMCC's Kilauea and Makalu and removes a redundant
35487       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
35488
35489       - Removed, per Stefan Roese's request, defunct memory.c file for
35490         Makalu and rolled sdram_init from it into makalu.c.
35491
35492     With respect to the 4xx DDR initialization and ECC unification, there
35493     is certainly more work that can and should be done (file renaming,
35494     etc.). However, that can be handled at a later date on a second or
35495     third pass. As it stands, this patch moves things forward in an
35496     incremental yet positive way for those platforms that utilize this
35497     code and the features associated with it.
35498
35499     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
35500     Signed-off-by: Stefan Roese <sr@denx.de>
35501
35502 commit a439680019e06171d4a5694b7992accce87f590e
35503 Author: Grant Erickson <gerickson@nuovations.com>
35504 Date:   Wed May 21 13:28:30 2008 -0700
35505
35506     PPC4xx: Simplified post_word_{load, store}
35507
35508     This patch simplifies post_word_{load,store} by using the preprocessor
35509     to eliminate redundant, copy-and-pasted code.
35510
35511     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
35512
35513 commit f979690ee337450b2030aba128f95b7a8d9881c0
35514 Author: Kumar Gala <galak@kernel.crashing.org>
35515 Date:   Thu May 15 15:13:08 2008 -0500
35516
35517     Fix warnings from gcc-4.3.0 build on a ppc host
35518
35519     * The cfi_flash.c memset fix actual allows the board to boot so there is
35520       a bit more going on here than just resolving warnings associated with
35521       uninitialized variables.
35522
35523     * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
35524       inline function 'ext2_find_next_zero_bit' which is not static
35525
35526     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35527
35528 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
35529 Author: Becky Bruce <becky.bruce@freescale.com>
35530 Date:   Wed May 14 13:09:51 2008 -0500
35531
35532     MPC512x: Change traps.c to not reference non-addressable memory
35533
35534     Currently, END_OF_RAM is used by the trap code to determine if
35535     we should attempt to access the stack pointer or not. However,
35536     on systems with a lot of RAM, only a subset of the RAM is
35537     guaranteed to be mapped in and accessible.  Change END_OF_RAM
35538     to use get_effective_memsize() instead of using the raw ram
35539     size out of the bd.
35540
35541     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
35542
35543 commit 81673e9ae14b771cd13faf19947192599cae3959
35544 Author: Kumar Gala <galak@kernel.crashing.org>
35545 Date:   Tue May 13 19:01:54 2008 -0500
35546
35547     Make sure common.h is the first include.
35548
35549     If common.h isn't first we can get CONFIG_ options defined in the
35550     board config file ignored.  This can cause an issue if any of those
35551     config options impact the size of types of data structures
35552     (eg CONFIG_PHYS_64BIT).
35553
35554     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35555
35556 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
35557 Author: Marian Balakowicz <m8@semihalf.com>
35558 Date:   Tue May 13 15:53:29 2008 +0200
35559
35560     Avoid initrd and logbuffer area overlaps
35561
35562     Add logbuffer to reserved LMB areas to prevent initrd allocation
35563     from overlaping with it.
35564
35565     Make sure to use correct logbuffer base address.
35566
35567     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35568
35569 commit 6956d53d9934862507f83f0e3255dfd4662e7482
35570 Author: Sascha Laue <sascha.laue@liebherr.com>
35571 Date:   Tue May 13 13:29:54 2008 +0200
35572
35573     lwmon5: add memory-pattern-test to FPGA POST.
35574
35575 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
35576 Author: Becky Bruce <becky.bruce@freescale.com>
35577 Date:   Thu May 8 19:02:51 2008 -0500
35578
35579     PPC: 86xx Add bat registers to reginfo command
35580
35581     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
35582
35583 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
35584 Author: Becky Bruce <becky.bruce@freescale.com>
35585 Date:   Fri May 9 15:41:35 2008 -0500
35586
35587     PPC: Add print_bats() to lib_ppc/bat_rw.c
35588
35589     This function prints the values of all the BAT register
35590     pairs - I needed this for debug earlier this week; adding it to
35591     lib_ppc so others can use it (and add it to reginfo commands
35592     if so desired).
35593
35594     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
35595
35596 commit c148f24c15743a02e855636e6bed013bd121f7f2
35597 Author: Becky Bruce <becky.bruce@freescale.com>
35598 Date:   Thu May 15 21:29:04 2008 -0500
35599
35600     PPC: Change lib_ppc/bat_rw.c to use high bats
35601
35602     Currently, this code only deals with BATs 0-3, which makes
35603     it useless on systems that support BATs 4-7.  Add the
35604     support for these registers.
35605
35606     Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
35607
35608 commit 31d826722434931e1152a09d140187dcf72f8aac
35609 Author: Becky Bruce <becky.bruce@freescale.com>
35610 Date:   Thu May 8 19:02:12 2008 -0500
35611
35612     PPC: Create and use CONFIG_HIGH_BATS
35613
35614     Change all code that conditionally operates on high bat
35615     registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
35616     instead of the myriad ways this is done now.  Define the option
35617     for every config for which high bats are supported (and
35618     enabled by early boot, on parts where they're not always
35619     enabled)
35620
35621     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
35622
35623 commit aa3b8bf9c30065bb2ea852799d32db5020598495
35624 Author: Wolfgang Grandegger <wg@grandegger.com>
35625 Date:   Wed May 28 19:55:19 2008 +0200
35626
35627     E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
35628
35629     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35630     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35631
35632 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
35633 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
35634 Date:   Wed May 28 13:06:25 2008 -0500
35635
35636     ColdFire: Add 10 base ethernet support for mcf5445x
35637
35638     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
35639     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35640
35641 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
35642 Author: Jason McMullan <mcmullan@netapp.com>
35643 Date:   Fri May 30 00:53:38 2008 +0900
35644
35645     mips: Add an 'include/asm/errno.h', like all other architectures
35646
35647     All other u-boot architectures have an include/asm/errno.h, so
35648     this change adds it to the mips include/asm-mips headers also.
35649
35650     Stolen from Linux 2.6.25.
35651
35652     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
35653
35654 commit e2ad8426624bac457acc6925b6ff408e9bf20466
35655 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35656 Date:   Fri May 30 00:53:38 2008 +0900
35657
35658     [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
35659
35660     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35661
35662 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
35663 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35664 Date:   Fri May 30 00:53:38 2008 +0900
35665
35666     [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
35667
35668     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35669
35670 commit bf462ae450a7f2eeeddc699ed345b391e3263540
35671 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35672 Date:   Fri May 30 00:53:37 2008 +0900
35673
35674     [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
35675
35676     No functional changes.
35677
35678     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35679
35680 commit 89a1550ec6b74452274a7a23127936e2c7eec711
35681 Author: Jason McMullan <mcmullan@netapp.com>
35682 Date:   Fri May 30 00:53:37 2008 +0900
35683
35684     mips: If CONFIG_CMD_SPI is defined, call spi_init()
35685
35686     The mips architecture currently does not call 'spi_init()' in the generic
35687     board initialization routine is CONFIG_CMD_SPI is defined.
35688
35689     This patch rectifies that problem.
35690
35691     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
35692     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35693
35694 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
35695 Author: Jason McMullan <mcmullan@netapp.com>
35696 Date:   Fri May 30 00:53:37 2008 +0900
35697
35698     [MIPS] lib_mips/board.c: Add nand_init
35699
35700     This patch adds the standard 'nand_init()' call to the mips generic
35701     'board_init_r()' call, bringing MIPS in line with the other architectures.
35702
35703     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
35704     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35705
35706 commit d6ac2ed893c2168738aee01579d6283af8d37045
35707 Author: Scott Wood <scottwood@freescale.com>
35708 Date:   Thu May 22 10:49:46 2008 -0500
35709
35710     Remove prototypes of nand_init() in favor of including nand.h.
35711
35712     Likewise with onenand_init().
35713
35714     Signed-off-by: Scott Wood <scottwood@freescale.com>
35715
35716 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
35717 Author: Scott Wood <scottwood@freescale.com>
35718 Date:   Thu May 22 10:49:00 2008 -0500
35719
35720     Make onenand_uboot.h self-sufficient.
35721
35722     Don't assume types are provided by previously included headers.
35723
35724     Signed-off-by: Scott Wood <scottwood@freescale.com>
35725
35726 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
35727 Author: Dirk Behme <dirk.behme@gmail.com>
35728 Date:   Wed Jan 16 14:26:59 2008 +0100
35729
35730     nand: Correct NAND erase percentage output
35731
35732     For NAND erase sizes smaller than one NAND erase block, erase
35733     percentage output becomes grater than 100% e.g.
35734
35735     -- cut --
35736       > nand info
35737     Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
35738       > nand erase 0x100000 0x2000
35739     NAND erase: device 0 offset 0x100000, size 0x2000
35740     Erasing at 0x100000 -- 200% complete.
35741     OK
35742       >
35743     -- cut --
35744
35745     Correct this and give user a warning that more is erased than specified:
35746
35747     -- cut --
35748       > nand erase 0x100000 0x2000
35749     NAND erase: device 0 offset 0x100000, size 0x2000
35750     Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
35751                Erasing 0x00004000 instead
35752     Erasing at 0x100000 -- 100% complete.
35753     OK
35754       >
35755     -- cut --
35756
35757     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
35758
35759 commit 5922db6c0948506be91e0de44e7a6863a18a417f
35760 Author: Stelian Pop <stelian@popies.net>
35761 Date:   Tue May 13 17:31:24 2008 +0200
35762
35763     Cleanup nand_info[] declaration.
35764
35765     The nand_info array is declared as extern in several .c files.
35766     Those days, nand.h contains a reference to the array, so there is
35767     no need to declare it elsewhere.
35768
35769     Signed-off-by: Stelian Pop <stelian@popies.net>
35770     Signed-off-by: Scott Wood <scottwood@freescale.com>
35771
35772 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
35773 Author: Scott Wood <scottwood@freescale.com>
35774 Date:   Mon May 19 09:30:43 2008 -0500
35775
35776     NAND: Provide a sane default for NAND_MAX_CHIPS.
35777
35778     This allows the header to be included regardless of whether a board's
35779     config file provides NAND-related defininitions.
35780
35781     Signed-off-by: Scott Wood <scottwood@freescale.com>
35782
35783 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
35784 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35785 Date:   Mon May 26 12:19:10 2008 +0200
35786
35787     avr32: Fix theoretical race in udelay()
35788
35789     If the specified delay is very short, the cycle counter may go past the
35790     "end" time we are waiting for before we get around to reading it.
35791
35792     Fix it by checking the different between the cycle count "now" and the
35793     cycle count at the beginning. This will work as long as the delay
35794     measured in number of cycles is below 2^31.
35795
35796     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35797
35798 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
35799 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35800 Date:   Wed May 21 13:01:09 2008 +0200
35801
35802     avr32: Compile atmel_mci.o conditionally
35803
35804     Remove #ifdef CONFIG_MMC from the source file and use conditional
35805     compilation in the Makefile instead.
35806
35807     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35808
35809 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
35810 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35811 Date:   Thu May 22 12:28:25 2008 +0200
35812
35813     avr32: Fix wrong error flags in atmel_mci driver
35814
35815     Make sure we check for CRC errors when sending commands that use CRC
35816     checking.
35817
35818     Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
35819     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35820
35821 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
35822 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35823 Date:   Wed May 21 11:10:59 2008 +0200
35824
35825     avr32: Fix two warnings in atmel_mci.c
35826
35827     The warnings are harmless but annoying. Let's fix them.
35828
35829     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35830
35831 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
35832 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35833 Date:   Mon May 19 11:36:28 2008 +0200
35834
35835     avr32: Rework SDRAM initialization code
35836
35837     This cleans up the SDRAM initialization and related code a bit, and
35838     allows faster booting.
35839
35840       * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
35841       * Remove memory test from sdram_init() and make caller responsible
35842         for verifying the SDRAM and determining its size.
35843       * Remove base_address member from struct sdram_config (was sdram_info)
35844       * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
35845       * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
35846
35847     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35848
35849 commit 95107b7c028806919630bf02c653aa8f4f867c94
35850 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35851 Date:   Mon May 19 11:27:37 2008 +0200
35852
35853     avr32: Do stricter stack checking in the exception handler
35854
35855     Don't do a stack dump if the stack pointer is outside the memory area
35856     reserved for stack.
35857
35858     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35859
35860 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
35861 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35862 Date:   Fri May 2 15:32:57 2008 +0200
35863
35864     avr32: Use the same entry point for reset and exception handling
35865
35866     Since the reset vector is always aligned to a very large boundary, we
35867     can save a couple of KB worth of alignment padding by placing the
35868     exception vectors at the same address.
35869
35870     Deciding which one it is is easy: If we're handling an exception, the
35871     CPU is in Exception mode. If we're starting up after reset, the CPU is
35872     in Supervisor mode. So this adds a very minimal overhead to the reset
35873     path (only executed once) and the exception handling path (normally
35874     never executed at all.)
35875
35876     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35877
35878 commit 0c16eed2189a190bd5655b33c029f809a9b31128
35879 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35880 Date:   Fri May 2 15:24:22 2008 +0200
35881
35882     avr32: Put memset in its own section
35883
35884     All C code is compiled with -ffunction-sections -fdata-sections.
35885     Assembly functions should get their own sections as well so that
35886     everything looks consistent.
35887
35888     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35889
35890 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
35891 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35892 Date:   Fri May 2 15:21:40 2008 +0200
35893
35894     avr32: Rename pm_init() as clk_init() and make SoC-specific
35895
35896     pm_init() was always more about clock initialization than anything
35897     else. Dealing with PLLs, clock gating and such is also inherently
35898     SoC-specific, so move it into a SoC-specific directory.
35899
35900     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35901
35902 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
35903 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35904 Date:   Wed Apr 30 16:15:57 2008 +0200
35905
35906     avr32: Use new-style Makefile for the at32ap platform
35907
35908     This makes it easier to avoid compiling certain files later.
35909
35910     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35911
35912 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
35913 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35914 Date:   Wed Apr 30 14:36:47 2008 +0200
35915
35916     avr32: Remove unused file cpu/at32ap/pm.c
35917
35918     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35919
35920 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
35921 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35922 Date:   Wed Apr 30 14:19:28 2008 +0200
35923
35924     avr32: Clean up the HMATRIX code
35925
35926     Rework the HMATRIX configuration interface so that it becomes easier
35927     to configure the HMATRIX for boards with special needs, and add new
35928     parts.
35929
35930     The HMATRIX header file has been split into a general,
35931     chip-independent part with register definitions, etc. and a
35932     chip-specific part with SFR bitfield definitions and master/slave
35933     identifiers.
35934
35935     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35936
35937 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
35938 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35939 Date:   Thu Nov 22 12:14:11 2007 +0100
35940
35941     avr32: Add support for the ATSTK1006 board
35942
35943     This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
35944     board. It's currently in production and will be available soon.
35945
35946     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35947
35948 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
35949 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35950 Date:   Tue Apr 29 12:53:05 2008 +0200
35951
35952     avr32: Get rid of the .flashprog section
35953
35954     The .flashprog section was only needed back when we were running
35955     directly from flash, and it's even more useless on NGW100 since it
35956     uses the CFI flash driver which never used this workaround in the
35957     first place.
35958
35959     Remove it on STK1000 as well, and get rid of all the associated code and
35960     annotations.
35961
35962     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35963
35964 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
35965 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35966 Date:   Wed Apr 30 13:09:56 2008 +0200
35967
35968     avr32: Use correct condition around macb clock accessors
35969
35970     get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
35971     the chip has a MACB controller, not when it has a USART.
35972
35973     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35974
35975 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
35976 Author: David Brownell <david-b@pacbell.net>
35977 Date:   Wed Apr 16 22:57:58 2008 -0700
35978
35979     avr32: Disable the AP7000 internal watchdog on startup
35980
35981     This patch forces the watchdog off in all cases.  That will at least
35982     get rid of the constant reboot cycle, though it won't let the watchdog
35983     actually run in the new kernels:  its probe() comes up with a polite
35984     warning.
35985
35986     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35987
35988 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
35989 Author: David Brownell <david-b@pacbell.net>
35990 Date:   Fri Feb 22 12:54:39 2008 -0800
35991
35992     avr32: stk1002 and ngw100 convergence
35993
35994     Make STK1002 and NGW100 boards act more alike:
35995       - STK boards can use as many arguments as NGW
35996       - STK boards don't need to manage FPGAs either
35997       - NGW commands should match STK ones
35998
35999     Also spell U-Boot right in prompts for STK1002 and NGW100.
36000
36001     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
36002     [haavard.skinnemoen@atmel.com: update STK100[34] as well]
36003     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36004
36005 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
36006 Author: Sergei Poselenov <sposelenov@emcraft.com>
36007 Date:   Tue May 27 13:47:00 2008 +0200
36008
36009     Socrates: Fix PCI bus frequency report
36010
36011     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36012
36013 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
36014 Author: Sergei Poselenov <sposelenov@emcraft.com>
36015 Date:   Tue May 27 11:49:13 2008 +0200
36016
36017     Socrates: Added USB support.
36018
36019     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36020
36021 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
36022 Author: Sergei Poselenov <sposelenov@emcraft.com>
36023 Date:   Tue May 27 11:35:02 2008 +0200
36024
36025     USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
36026
36027     In case of several PCI USB controllers on a board this variable
36028     specifys which controller to use.
36029     See doc/README.generic_usb_ohci for details.
36030
36031     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36032
36033 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
36034 Author: Sergei Poselenov <sposelenov@emcraft.com>
36035 Date:   Tue May 27 10:36:07 2008 +0200
36036
36037     Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
36038
36039     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36040
36041 commit 83e9d7a2614d4006b92690afa3390c291734267e
36042 Author: Sergei Poselenov <sposelenov@emcraft.com>
36043 Date:   Mon May 26 18:16:04 2008 +0200
36044
36045     Socrates: Config file cleanup.
36046
36047     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36048
36049 commit 602cac1389b755b223272f2328a47e6f8c240848
36050 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36051 Date:   Sat May 24 12:47:46 2008 +0200
36052
36053     MAKEALL: add at91 list
36054
36055     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36056
36057 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
36058 Author: Ron Madrid <ron_madrid@sbcglobal.net>
36059 Date:   Fri May 23 15:37:05 2008 -0700
36060
36061     Add Marvell 88E1118 support for TSEC
36062
36063     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
36064     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36065
36066 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
36067 Author: Jens Gehrlein <sew_s@tqs.de>
36068 Date:   Mon May 5 14:06:11 2008 +0200
36069
36070     smc911x: add 16 bit support
36071
36072     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
36073     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36074
36075 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
36076 Author: Christian Eggers <ceggers@gmx.de>
36077 Date:   Wed May 21 21:29:10 2008 +0200
36078
36079     Fix endianess conversion in usb_ohci.c
36080
36081     Sorry, I forgot this line:
36082
36083     Signed-off-by: Christian Eggers <ceggers@gmx.de>
36084
36085     I think this must be swapped (result may be equal).
36086
36087 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
36088 Author: Christian Eggers <ceggers@gmx.de>
36089 Date:   Wed May 21 22:12:00 2008 +0200
36090
36091     USB: replace old swap_ with proper endianess conversion macros
36092
36093     Signed-off-by: Christian Eggers <ceggers@gmx.de>
36094     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
36095
36096 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
36097 Author: Christian Eggers <ceggers@gmx.de>
36098 Date:   Wed May 21 21:29:10 2008 +0200
36099
36100     Fix endianess conversion in usb_ohci.c
36101
36102     Signed-off-by: Christian Eggers <ceggers@gmx.de>
36103     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
36104
36105 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
36106 Author: Sergei Poselenov <sposelenov@emcraft.com>
36107 Date:   Thu May 22 01:15:53 2008 +0200
36108
36109     USB: add support for multiple PCI OHCI controllers
36110
36111     Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
36112     In case of several PCI USB controllers on a board this variable
36113     specifys which controller to use.
36114
36115     Also add USB support for sokrates board.
36116
36117     See doc/README.generic_usb_ohci for details.
36118
36119     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36120     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
36121
36122 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
36123 Author: Wolfgang Denk <wd@denx.de>
36124 Date:   Wed May 21 16:56:08 2008 +0200
36125
36126     Fix some whitespace issues
36127
36128     introduced by 53677ef18 "Big white-space cleanup."
36129
36130     Signed-off-by: Wolfgang Denk <wd@denx.de>
36131
36132 commit 4416603aeb06861b468b06a981e52c3ff805db7b
36133 Author: York Sun <yorksun@freescale.com>
36134 Date:   Mon May 12 14:36:39 2008 -0500
36135
36136     Make ads5121 out-of-tree compiling safe
36137
36138     Reuse the existing DIU driver in board/freescale/common.
36139
36140     Signed-off-by: York Sun <yorksun@freescale.com>
36141
36142 commit 0e1bad47cd345c76c91a64caf41011e431b62599
36143 Author: York Sun <yorksun@freescale.com>
36144 Date:   Mon May 5 10:20:01 2008 -0500
36145
36146     Adding DIU support for Freescale 5121ADS
36147
36148     Add DIU and cfb console support to FSL 5121ADS board.
36149
36150     Use #define CONFIG_VIDEO in config file to enable fb console.
36151
36152     Signed-off-by: York Sun <yorksun@freescale.com>
36153
36154 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
36155 Author: York Sun <yorksun@freescale.com>
36156 Date:   Mon May 5 10:20:00 2008 -0500
36157
36158     Replace DPRINTF with debug
36159
36160     Remove DPRINTF macro and replace it with generic debug macro.
36161
36162     Signed-off-by: York Sun <yorksun@freescale.com>
36163
36164 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
36165 Author: York Sun <yorksun@freescale.com>
36166 Date:   Mon May 5 10:19:59 2008 -0500
36167
36168     Move pixel clock setting to board file
36169
36170     The clock divider has different format in 5121 and 8610. This patch moves it to
36171     board specific code.
36172
36173     Signed-off-by: York Sun <yorksun@freescale.com>
36174
36175 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
36176 Author: Wolfgang Denk <wd@denx.de>
36177 Date:   Tue May 20 16:00:29 2008 +0200
36178
36179     Big white-space cleanup.
36180
36181     This commit gets rid of a huge amount of silly white-space issues.
36182     Especially, all sequences of SPACEs followed by TAB characters get
36183     removed (unless they appear in print statements).
36184
36185     Also remove all embedded "vim:" and "vi:" statements which hide
36186     indentation problems.
36187
36188     Signed-off-by: Wolfgang Denk <wd@denx.de>
36189
36190 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
36191 Author: Sergei Poselenov <sposelenov@emcraft.com>
36192 Date:   Thu May 8 17:46:23 2008 +0200
36193
36194     socrates: fix second TSEC configuration (it is actually TSEC3)
36195
36196     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36197
36198 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
36199 Author: Sergei Poselenov <sposelenov@emcraft.com>
36200 Date:   Thu May 8 14:17:08 2008 +0200
36201
36202     Fixed reset for socrates
36203
36204     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36205
36206 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
36207 Author: Sergei Poselenov <sposelenov@emcraft.com>
36208 Date:   Wed May 7 15:10:49 2008 +0200
36209
36210     socrates: changes to support FDT
36211
36212     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36213     Signed-off-by: Wolfgang Denk <wd@denx.de>
36214
36215 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
36216 Author: Sergei Poselenov <sposelenov@emcraft.com>
36217 Date:   Wed Apr 30 11:42:50 2008 +0200
36218
36219     Initial support for "Socrates" board
36220
36221     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36222
36223 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
36224 Author: Yuri Tikhonov <yur@emcraft.com>
36225 Date:   Thu May 8 15:46:42 2008 +0200
36226
36227     POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
36228
36229     This way we become able to utilize the full post_log_word for POST
36230     activities (overwise, POST ECC, which has 0x8000 ID, could be
36231     erroneously treated as started in post_output_backlog() even if there
36232     was actually no POST ECC run (because of OCM POST failure, for
36233     example).
36234
36235     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36236
36237 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
36238 Author: Yuri Tikhonov <yur@emcraft.com>
36239 Date:   Thu May 8 15:46:02 2008 +0200
36240
36241     POST: mark OCM test as POST_STOP
36242
36243     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
36244
36245 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
36246 Author: Yuri Tikhonov <yur@emcraft.com>
36247 Date:   Thu May 8 15:45:26 2008 +0200
36248
36249     POST: add POST_STOP flag
36250
36251     Don't run futher tests in case of a test fails that is marked as
36252     POST_STOP.
36253
36254     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
36255     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36256
36257 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
36258 Author: Yuri Tikhonov <yur@emcraft.com>
36259 Date:   Thu May 8 15:44:16 2008 +0200
36260
36261     POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
36262
36263     Switch the OCM testid with the codec one. The reason is that current
36264     implementation requires the POST_ROM testid to fit into lower 16
36265     bits, and the codec test will never run with POST_ROM hopefully.
36266
36267     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
36268
36269 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
36270 Author: Yuri Tikhonov <yur@emcraft.com>
36271 Date:   Thu May 8 15:43:28 2008 +0200
36272
36273     lwmon5: enable OCM post test on lwmon5 board
36274
36275     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
36276
36277 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
36278 Author: Yuri Tikhonov <yur@emcraft.com>
36279 Date:   Thu May 8 15:42:47 2008 +0200
36280
36281     POST: OCM test added.
36282
36283     Added OCM test to POST layer. This version runs before all other tests
36284     but doesn't yet interrupt post sequence on failure.
36285
36286     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
36287     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36288
36289 commit 6891260bdd935a382c95d9fa333922b0dfded68a
36290 Author: Yuri Tikhonov <yur@emcraft.com>
36291 Date:   Thu May 8 15:40:39 2008 +0200
36292
36293     POST: typo fix
36294
36295     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
36296
36297 commit 727f63334676e760877d43bfb8f0e9331ac8b101
36298 Author: Hebbar <gururajakr@sanyo.co.in>
36299 Date:   Tue May 20 02:16:36 2008 -0700
36300
36301     common/usb.c: fix incorrect escape sequence
36302
36303     Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
36304
36305 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
36306 Author: York Sun <yorksun@freescale.com>
36307 Date:   Thu May 15 15:26:27 2008 -0500
36308
36309     Fix 8313ERDB board configuration
36310
36311     Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
36312     Correct TSEC1 vs TSEC2 assignment.
36313     Define ETHADDR and ETH1ADDR always.
36314
36315     Signed-off-by: York Sun <yorksun@freescale.com>
36316     Signed-off-by: Timur Tabi <timur@freescale.com>
36317
36318 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
36319 Author: Jon Loeliger <jdl@freescale.com>
36320 Date:   Mon May 19 09:47:25 2008 -0500
36321
36322     mpc86xx: Removed unused and unconfigured memory test code.
36323
36324     Besides, other common code exists.
36325
36326     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36327
36328 commit 180a90abdae72587c0f679edf8991455e559440d
36329 Author: Wolfgang Denk <wd@denx.de>
36330 Date:   Mon May 19 12:47:11 2008 +0200
36331
36332     Release v1.3.3
36333
36334     Update CHANGELOG for release.
36335
36336     Signed-off-by: Wolfgang Denk <wd@denx.de>
36337
36338 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
36339 Author: Stefan Roese <sr@denx.de>
36340 Date:   Mon May 19 07:14:38 2008 +0200
36341
36342     ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
36343
36344     When SATA is selected (via jumper J6) we need to disable the first PCIe
36345     node in the device tree, so that Linux doesn't initialize it. Otherwise
36346     the Linux SATA driver will fail to detect the devices.
36347
36348     The same goes the other way around too. So if PCIe is selected we need
36349     to disable the SATA node in the device tree.
36350
36351     This is because PCIe port 0 and SATA on 460EX share the same pins
36352     (multiplexed) and we have to configure in U-Boot which peripheral is
36353     enabled.
36354
36355     Signed-off-by: Stefan Roese <sr@denx.de>
36356
36357 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
36358 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36359 Date:   Sun May 18 19:09:58 2008 +0200
36360
36361     i386: Fix multiple definitions of __show_boot_progress
36362
36363     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36364
36365 commit 311f3446930c1e64c12026c1cfd00500b05be52d
36366 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36367 Date:   Sun May 18 19:09:57 2008 +0200
36368
36369     sc530_spunk: add missing SOBJS entry
36370
36371     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36372
36373 commit a559317143b4f95927b08cd388707e6f077e95fa
36374 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36375 Date:   Sun May 18 19:09:56 2008 +0200
36376
36377     sc520_spunk: Fix flash
36378
36379     flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
36380     flash.c:398: error: label at end of compound statement
36381
36382     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36383
36384 commit 91f221317af64191ee8caf303ea9305943158691
36385 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36386 Date:   Sun May 18 19:09:49 2008 +0200
36387
36388     drivers/pcmcia: add missing i82365
36389
36390     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36391
36392 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
36393 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36394 Date:   Sun May 18 19:09:47 2008 +0200
36395
36396     i386/bootm: remove unused var
36397
36398     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36399
36400 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
36401 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36402 Date:   Sun May 18 19:09:45 2008 +0200
36403
36404     example/gitignore: update with all generated examples
36405
36406     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36407
36408 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
36409 Author: Wolfgang Denk <wd@denx.de>
36410 Date:   Thu May 15 00:42:45 2008 +0200
36411
36412     TQM8272: fix out-of-tree building
36413
36414     ...and add to MAKEALL script
36415
36416     Signed-off-by: Wolfgang Denk <wd@denx.de>
36417
36418 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
36419 Author: Wolfgang Denk <wd@denx.de>
36420 Date:   Wed May 14 23:34:53 2008 +0200
36421
36422     environment: fix bug introduced by commit a8409f4f1ac8
36423
36424     env_get_char is not a function, but a pointer to one.
36425
36426     Signed-off-by: Wolfgang Denk <wd@denx.de>
36427
36428 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
36429 Author: Gary Jennejohn <garyj@denx.de>
36430 Date:   Wed May 14 13:39:22 2008 +0200
36431
36432     ppc4xx: QUAD100HD: Allow the environment to be put into flash.
36433
36434     After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect.  Also
36435     use a redundant environment.
36436
36437     Signed-off-by: Gary Jennejohn <garyj@denx.de>
36438
36439 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
36440 Author: Wolfgang Denk <wd@denx.de>
36441 Date:   Wed May 14 13:55:30 2008 +0200
36442
36443     Fix config files for out-of-tree building
36444
36445     Several board/<...>/config.mk files include dynamically built (by
36446     the Makefile) config files but used the wrong file name of
36447         $(TOPDIR)/board/$(BOARDDIR)/config.tmp
36448     instead if the correct
36449         $(OBJTREE)/board/$(BOARDDIR)/config.tmp
36450
36451     The bug is nasty because the build result is correct for the (normal)
36452     in-tree builds, and because 'sinclude' is used no errors get raised
36453     even for out-of-tree build tests. But out-of-tree builds use an
36454     incomplete and thus usually incorrect configuration...
36455
36456     Signed-off-by: Wolfgang Denk <wd@denx.de>
36457
36458 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
36459 Author: Stefan Roese <sr@denx.de>
36460 Date:   Wed May 14 13:40:03 2008 +0200
36461
36462     ppc4xx: Fix bogus Canyonlands config.mk
36463
36464     This patch fixes the canyonlands config.mk file to enable correct
36465     out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
36466
36467     Signed-off-by: Stefan Roese <sr@denx.de>
36468
36469 commit fdd1247a66d788a3446244f6fde9955a93c26322
36470 Author: Stefan Roese <sr@denx.de>
36471 Date:   Wed May 14 10:32:32 2008 +0200
36472
36473     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
36474
36475     Canyonlands has a file ddr2_fixed.c which needs special treatment when
36476     building in separate directory. It has to be linked to build directory
36477     otherwise it is not seen.
36478
36479     Signed-off-by: Stefan Roese <sr@denx.de>
36480
36481 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
36482 Author: Wolfgang Denk <wd@denx.de>
36483 Date:   Wed May 14 12:22:49 2008 +0200
36484
36485     environment: cleanup prototype declarations of env functions.
36486
36487     Signed-off-by: Wolfgang Denk <wd@denx.de>
36488
36489 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
36490 Author: Wolfgang Denk <wd@denx.de>
36491 Date:   Wed May 14 12:21:48 2008 +0200
36492
36493     linkstation_HGLAN: Fix out of tree building.
36494
36495     Signed-off-by: Wolfgang Denk <wd@denx.de>
36496
36497 commit 085551c05ca09e6c491ea11a1c6727a36776a545
36498 Author: Stefan Roese <sr@denx.de>
36499 Date:   Wed May 14 10:32:32 2008 +0200
36500
36501     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
36502
36503     Canyonlands has a file ddr2_fixed.c which needs special treatment when
36504     building in separate directory. It has to be linked to build directory
36505     otherwise it is not seen.
36506
36507     Signed-off-by: Stefan Roese <sr@denx.de>
36508
36509 commit 1510b82d50615f344e89d42533e8224cce067dc0
36510 Author: Wolfgang Denk <wd@denx.de>
36511 Date:   Tue May 13 23:15:52 2008 +0200
36512
36513     Makefile: fix "error: version_autogenerated.h: No such file or directory"
36514
36515     Signed-off-by: Wolfgang Denk <wd@denx.de>
36516
36517 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
36518 Author: Stelian Pop <stelian@popies.net>
36519 Date:   Tue May 13 17:31:24 2008 +0200
36520
36521     Cleanup nand_info[] declaration.
36522
36523     The nand_info array is declared as extern in several .c files.
36524     Those days, nand.h contains a reference to the array, so there is
36525     no need to declare it elsewhere.
36526
36527     Signed-off-by: Stelian Pop <stelian@popies.net>
36528     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36529
36530 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
36531 Author: Stefan Roese <sr@denx.de>
36532 Date:   Tue May 13 20:22:01 2008 +0200
36533
36534     ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
36535
36536     Signed-off-by: Stefan Roese <sr@denx.de>
36537
36538 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
36539 Author: Wolfgang Denk <wd@denx.de>
36540 Date:   Mon May 12 01:11:21 2008 +0200
36541
36542     Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
36543
36544     This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
36545     which broke many PowerPC boards.
36546
36547 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
36548 Author: Wolfgang Denk <wd@denx.de>
36549 Date:   Mon May 12 00:56:28 2008 +0200
36550
36551     Revert "Avoid initrd and logbuffer area overlaps"
36552
36553     This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
36554     which breaks building on all PPC boards that don't use a log buffer.
36555
36556 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
36557 Author: Nick Spence <nick.spence@freescale.com>
36558 Date:   Sat May 10 14:02:04 2008 -0700
36559
36560     Fix offset calculation for multi-type legacy images.
36561
36562     Calculation of tail was incorrect when size % 4 == 0.
36563
36564     New code removes the conditional and does the same thing but with arithmetic
36565
36566     Signed-off-by: Nick Spence <nick.spence@freescale.com>
36567
36568 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
36569 Author: Wolfgang Denk <wd@denx.de>
36570 Date:   Mon May 12 00:40:58 2008 +0200
36571
36572     Revert "Change env_get_char from a global function ptr to a function."
36573
36574     This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
36575     which is known to break booting from dataflash and NAND.
36576
36577 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
36578 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36579 Date:   Sun May 11 23:13:57 2008 +0200
36580
36581     API: remove duplicate syscall check
36582
36583     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36584
36585 commit 67e3beb52c320b0a31cf030716c99392cde2d532
36586 Author: Stelian Pop <stelian@popies.net>
36587 Date:   Fri May 9 21:46:51 2008 +0200
36588
36589     AT91: Cleanup unused config header file definitions.
36590
36591     CONFIG_ENV_OVERWRITE is commented out in the config header files,
36592     so let's cleanup the files by removing the whole definition.
36593
36594     Signed-off-by: Stelian Pop <stelian@popies.net>
36595     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36596
36597 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
36598 Author: Stelian Pop <stelian@popies.net>
36599 Date:   Thu May 8 14:52:34 2008 +0200
36600
36601     Support AT91CAP9 revC CPUs
36602
36603     The AT91CAP9 revC CPU has a few differences over the previous,
36604     revB CPU which was distributed in small quantities only (revA was
36605     an internal Atmel product only).
36606
36607     The revC silicon needs a special initialisation sequence to
36608     switch from the internal (imprecise) RC oscillator to the
36609     external 32k clock.
36610
36611     Signed-off-by: Stelian Pop <stelian@popies.net>
36612     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36613
36614 commit 098b7b4b441b12c2a64dd517930f43c793542759
36615 Author: Stelian Pop <stelian@popies.net>
36616 Date:   Thu May 8 14:52:33 2008 +0200
36617
36618     Use custom logo for Atmel boards
36619
36620     This patch adds a custom vendor logo for the Atmel AT91 boards.
36621
36622     Signed-off-by: Stelian Pop <stelian@popies.net>
36623     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36624
36625 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
36626 Author: Stelian Pop <stelian@popies.net>
36627 Date:   Thu May 8 14:52:32 2008 +0200
36628
36629     AT91SAM9RLEK: hook up the ATMEL LCD driver
36630
36631     This patch makes the necessary adaptations (PIO configurations and
36632     defines in config header file) to hook up the Atmel LCD driver to the
36633     AT91SAM9RLEK board.
36634
36635     Signed-off-by: Stelian Pop <stelian@popies.net>
36636     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36637
36638 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
36639 Author: Stelian Pop <stelian@popies.net>
36640 Date:   Thu May 8 14:52:31 2008 +0200
36641
36642     AT91SAM9263EK: hook up the ATMEL LCD driver
36643
36644     This patch makes the necessary adaptations (PIO configurations and
36645     defines in config header file) to hook up the Atmel LCD driver to the
36646     AT91SAM9263EK board.
36647
36648     Signed-off-by: Stelian Pop <stelian@popies.net>
36649     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36650
36651 commit 820f2a958325061a446115f3035e48e4726b3390
36652 Author: Stelian Pop <stelian@popies.net>
36653 Date:   Thu May 8 14:52:30 2008 +0200
36654
36655     AT91SAM9261EK: hook up the ATMEL LCD driver
36656
36657     This patch makes the necessary adaptations (PIO configurations and
36658     defines in config header file) to hook up the Atmel LCD driver to the
36659     AT91SAM9261EK board.
36660
36661     Signed-off-by: Stelian Pop <stelian@popies.net>
36662     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36663
36664 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
36665 Author: Stelian Pop <stelian@popies.net>
36666 Date:   Thu May 8 14:52:29 2008 +0200
36667
36668     AT91CAP9ADK: hook up the ATMEL LCD driver
36669
36670     This patch makes the necessary adaptations (PIO configurations and
36671     defines in config header file) to hook up the Atmel LCD driver to the
36672     AT91CAP9ADK board.
36673
36674     Signed-off-by: Stelian Pop <stelian@popies.net>
36675     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36676
36677 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
36678 Author: Stelian Pop <stelian@popies.net>
36679 Date:   Fri May 9 21:57:18 2008 +0200
36680
36681     Add ATMEL LCD driver
36682
36683     This patch adds support for the ATMEL LCDC driver which is used on some
36684     AT91 and AVR platforms.
36685
36686     Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
36687     AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
36688
36689     Signed-off-by: Stelian Pop <stelian@popies.net>
36690     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36691
36692 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
36693 Author: Stelian Pop <stelian@popies.net>
36694 Date:   Thu May 8 18:52:25 2008 +0200
36695
36696     AT91SAM9RLEK support
36697
36698     This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
36699     board.
36700
36701     Signed-off-by: Stelian Pop <stelian@popies.net>
36702     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36703
36704 commit 8e429b3eee23927c1222679f6b6f53667b21595c
36705 Author: Stelian Pop <stelian@popies.net>
36706 Date:   Thu May 8 18:52:23 2008 +0200
36707
36708     AT91SAM9263EK support
36709
36710     This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
36711     board.
36712
36713     Signed-off-by: Stelian Pop <stelian@popies.net>
36714     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36715
36716 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
36717 Author: Stelian Pop <stelian@popies.net>
36718 Date:   Thu May 8 20:52:22 2008 +0200
36719
36720     AT91SAM9261EK support
36721
36722     This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
36723     board.
36724
36725     Signed-off-by: Stelian Pop <stelian@popies.net>
36726     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36727
36728 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
36729 Author: Stelian Pop <stelian@popies.net>
36730 Date:   Thu May 8 20:52:21 2008 +0200
36731
36732     AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
36733
36734     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
36735     in order to cope with the changes in DataFlash partitionning scheme
36736     (cset c3a60cb3).
36737
36738     Signed-off-by: Stelian Pop <stelian@popies.net>
36739     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36740
36741 commit 96996ac25d5222611a8888968db6e53a6d3726da
36742 Author: Stelian Pop <stelian@popies.net>
36743 Date:   Thu May 8 20:52:20 2008 +0200
36744
36745     AT91SAM9260EK: Normalize BOOTARGS
36746
36747     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
36748     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
36749     variable.
36750
36751     Signed-off-by: Stelian Pop <stelian@popies.net>
36752     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36753
36754 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
36755 Author: Stelian Pop <stelian@popies.net>
36756 Date:   Thu May 8 20:52:19 2008 +0200
36757
36758     AT91SAM9260EK: Normalize SPI timings
36759
36760     This patch changes the SPI timings to closely match the ones
36761     used by the Linux kernel and the Atmel's own bootstrap project.
36762
36763     Signed-off-by: Stelian Pop <stelian@popies.net>
36764     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36765
36766 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
36767 Author: Stelian Pop <stelian@popies.net>
36768 Date:   Thu May 8 20:52:18 2008 +0200
36769
36770     AT91SAM9260EK: Handle 8 or 16 bit NAND
36771
36772     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
36773     makes the support configurable in the board config header file
36774     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
36775
36776     Signed-off-by: Stelian Pop <stelian@popies.net>
36777     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36778
36779 commit ab52640fc01624e208424e527af0b7b3a5a65a12
36780 Author: Stelian Pop <stelian@popies.net>
36781 Date:   Thu May 8 20:52:17 2008 +0200
36782
36783     AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
36784
36785     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
36786     in order to cope with the changes in DataFlash partitionning scheme
36787     (cset c3a60cb3).
36788
36789     Signed-off-by: Stelian Pop <stelian@popies.net>
36790     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36791
36792 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
36793 Author: Stelian Pop <stelian@popies.net>
36794 Date:   Thu May 8 20:52:16 2008 +0200
36795
36796     AT91CAP9ADK: Normalize BOOTARGS
36797
36798     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
36799     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
36800     variable.
36801
36802     Signed-off-by: Stelian Pop <stelian@popies.net>
36803     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36804
36805 commit 93da48b910511911ce110656e17ed733c8ac4c45
36806 Author: Stelian Pop <stelian@popies.net>
36807 Date:   Thu May 8 20:52:15 2008 +0200
36808
36809     AT91CAP9ADK: Normalize SPI timings
36810
36811     This patch changes the SPI timings to closely match the ones
36812     used by the Linux kernel and the Atmel's own bootstrap project.
36813
36814     Signed-off-by: Stelian Pop <stelian@popies.net>
36815     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36816
36817 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
36818 Author: Stelian Pop <stelian@popies.net>
36819 Date:   Thu May 8 20:52:14 2008 +0200
36820
36821     AT91CAP9ADK: Handle 8 or 16 bit NAND
36822
36823     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
36824     makes the support configurable in the board config header file
36825     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
36826
36827     Signed-off-by: Stelian Pop <stelian@popies.net>
36828     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36829
36830 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
36831 Author: Stelian Pop <stelian@popies.net>
36832 Date:   Thu May 8 20:52:13 2008 +0200
36833
36834     Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
36835
36836     All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
36837     below avoids the duplication of u-boot.lds by putting the file in the
36838     cpu directory instead of the board one.
36839
36840     Signed-off-by: Stelian Pop <stelian@popies.net>
36841     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36842
36843 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
36844 Author: Stelian Pop <stelian@popies.net>
36845 Date:   Thu May 8 20:52:12 2008 +0200
36846
36847     Add proper copyright notices in Atmel boards Makefiles
36848
36849     The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
36850     copyright notice. This patch adds the missing pieces.
36851
36852     Signed-off-by: Stelian Pop <stelian@popies.net>
36853     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36854
36855 commit e817a042cef6164bf26fee86f90326f2ec9e6745
36856 Author: Stelian Pop <stelian@popies.net>
36857 Date:   Thu May 8 20:52:11 2008 +0200
36858
36859     Add copyright information in Atmel boards partition.c
36860
36861     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
36862     the new created files. This patch fixes the problem.
36863
36864     Signed-off-by: Stelian Pop <stelian@popies.net>
36865     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36866
36867 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
36868 Author: Stelian Pop <stelian@popies.net>
36869 Date:   Thu May 8 20:52:10 2008 +0200
36870
36871     Update origin and copyright information in arch-at91sam9 header files
36872
36873     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
36874     copied from the Linux kernel sources. This patch explicitly specifies
36875     this origin for all the copied headers, and for those missing copyright
36876     information, adds it.
36877
36878     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
36879     in the latest kernel sources by 'at91sam9_smc.h'.
36880
36881     The copyright information has been confirmed by the AT91 Linux kernel
36882     maintainer, Andrew Victor <avictor.za@gmail.com>.
36883
36884     Signed-off-by: Stelian Pop <stelian@popies.net>
36885     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36886
36887 commit 79dd1712689d6a5031d7cbff54957049680751c7
36888 Author: Markus KlotzbĂ¼cher <mk@denx.de>
36889 Date:   Thu May 8 16:00:55 2008 +0200
36890
36891     ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
36892
36893     When using dhcp/bootp the "netmask" environment variable is not set
36894     because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
36895     desireable, so the following patch adds this this option to the board
36896     config.
36897
36898     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
36899     Signed-off-by: Stefan Roese <sr@denx.de>
36900
36901 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
36902 Author: Stefan Roese <sr@denx.de>
36903 Date:   Sat May 10 10:30:36 2008 +0200
36904
36905     ppc4xx: Update Makalu defconfig to use device-tree booting as default
36906
36907     This patch reworks the default environment on Makalu. Now "net_nfs" for
36908     example uses the device-tree style booting formerly know as "net_nfs_fdt".
36909     Also the addresses in RAM were changed because of the new image booting
36910     support, which check for image overwriting. So the addresses needed to
36911     get adjusted.
36912
36913     Signed-off-by: Stefan Roese <sr@denx.de>
36914
36915 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
36916 Author: Becky Bruce <bgill@freescale.com>
36917 Date:   Wed May 7 13:28:16 2008 -0500
36918
36919     PPC: fix map_physmem build warning
36920
36921     map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
36922     enabled.  This quiets the warning.
36923
36924     Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
36925
36926 commit 36f32675f40292002ee1fed252c180a43022d2d4
36927 Author: Becky Bruce <bgill@freescale.com>
36928 Date:   Wed May 7 13:24:57 2008 -0500
36929
36930     Update pci code to use phys_addr_t
36931
36932     Physical addrs need to be represented by phys_addr_t, not
36933     unsigned long.  Otherwise, systems that use CONFIG_PHYS_64BIT
36934     are going to fail mightily.
36935
36936     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36937
36938 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
36939 Author: Nick Spence <nick.spence@freescale.com>
36940 Date:   Thu May 8 22:32:22 2008 -0700
36941
36942     Support legacy multi-type images without FDT section.
36943
36944     This patch enables legacy multi-type images containing only a Linux kernel
36945     and root file system to be loaded, maintaining compatibility with previous
36946     versions of u-boot.
36947
36948     This is required when using old image files such as a Linux 2.4 kernel /
36949     filesystem.
36950
36951     Signed-off-by: Nick Spence <nick.spence@freescale.com>
36952     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
36953
36954 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
36955 Author: Wolfgang Denk <wd@denx.de>
36956 Date:   Sat May 10 00:38:02 2008 +0200
36957
36958     Update CHANGELOG.
36959
36960     Signed-off-by: Wolfgang Denk <wd@denx.de>
36961
36962 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
36963 Author: Wolfgang Denk <wd@denx.de>
36964 Date:   Sat May 10 00:36:09 2008 +0200
36965
36966     post/cpu/ppc4xx/Makefile: line length cleanup
36967
36968     Signed-off-by: Wolfgang Denk <wd@denx.de>
36969
36970 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
36971 Author: Stelian Pop <stelian@popies.net>
36972 Date:   Thu May 8 22:52:09 2008 +0200
36973
36974     Fix @ -> <at> substitution
36975
36976     When applying the AT91CAP9 patches upstream, something transformed
36977     the '@' character into the ' <at> ' sequence.
36978
36979     The patch below restores the original form in all the places where
36980     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
36981     were copied from AT91CAP9, and a couple of other files where the
36982     ' <at> ' sequence was present).
36983
36984     Signed-off-by: Stelian Pop <stelian@popies.net>
36985
36986 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
36987 Author: Stelian Pop <stelian@popies.net>
36988 Date:   Thu May 8 22:52:10 2008 +0200
36989
36990     Update origin and copyright information in arch-at91sam9 header files
36991
36992     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
36993     copied from the Linux kernel sources. This patch explicitly specifies
36994     this origin for all the copied headers, and for those missing copyright
36995     information, adds it.
36996
36997     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
36998     in the latest kernel sources by 'at91sam9_smc.h'.
36999
37000     The copyright information has been confirmed by the AT91 Linux kernel
37001     maintainer, Andrew Victor <avictor.za@gmail.com>.
37002
37003     Signed-off-by: Stelian Pop <stelian@popies.net>
37004
37005 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
37006 Author: Stelian Pop <stelian@popies.net>
37007 Date:   Thu May 8 22:52:11 2008 +0200
37008
37009     Add copyright information in Atmel boards partition.c
37010
37011     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
37012     the new created files. This patch fixes the problem.
37013
37014     Signed-off-by: Stelian Pop <stelian@popies.net>
37015
37016 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
37017 Author: Guennadi Liakhovetski <lg@denx.de>
37018 Date:   Thu May 8 10:09:27 2008 +0200
37019
37020     mx31ads: fix 32kHz clock handling
37021
37022     According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
37023     oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
37024     Also fix a typo when verifying a jumper configuration. While at it, make
37025     two needlessly global functions static.
37026
37027     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37028
37029 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
37030 Author: Marian Balakowicz <m8@semihalf.com>
37031 Date:   Wed May 7 13:10:04 2008 +0200
37032
37033     Avoid initrd and logbuffer area overlaps
37034
37035     Add logbuffer to reserved LMB areas to prevent initrd allocation
37036     from overlaping with it.
37037
37038     Make sure to use correct logbuffer base address.
37039
37040     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37041
37042 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
37043 Author: Marian Balakowicz <m8@semihalf.com>
37044 Date:   Wed May 7 13:08:54 2008 +0200
37045
37046     ppc: Cleanup get_effective_memsize() use
37047
37048     Removed duplicated effective memory size calculation code.
37049
37050     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37051
37052 commit 273c37d843d5b581090378016cd12dd9c586907b
37053 Author: Marian Balakowicz <m8@semihalf.com>
37054 Date:   Wed May 7 09:03:53 2008 +0200
37055
37056     Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
37057
37058     Recent modifcations to LOGBUFFER handling code were incorrecly
37059     introduced to fit_check_kernel() routine during
37060     "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
37061     commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
37062
37063     This patch cleans up this merge issue.
37064
37065     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37066
37067 commit bc11756daff89a3de09ca80adac962b88cf06e6e
37068 Author: Grant Erickson <gerickson@nuovations.com>
37069 Date:   Tue May 6 20:16:15 2008 -0700
37070
37071     Propagate Error Status to the Shell on fw_printenv Errors
37072
37073     Changed implementation such that fw_printenv returns failure status
37074     when one or more specified variables do not exist or when incorrect
37075     command syntax is used.
37076
37077     This aids scripting fw_printenv such that the script can key of the
37078     return status rather than relying on standard error "scraping".
37079
37080     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
37081     Signed-off-by: Wolfgang Denk <wd@denx.de>
37082
37083 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
37084 Author: Grant Erickson <gerickson@nuovations.com>
37085 Date:   Tue May 6 16:18:00 2008 -0700
37086
37087     Fix Compilation Errors with 'tools/env/fw_printenv'
37088
37089     In the current top-of-tree, 1.3.3.-rc2, the optional tool
37090     'tools/env/fw_printenv' fails to compile for two reasons:
37091
37092     1) The header watchdog.h cannot be found.
37093     2) The header zlib.h is picked up from the tool chain rather than the
37094        project causing a prototype conflict for crc32.
37095
37096     This patch addresses both of these issues.
37097
37098     Platforms Tested On:
37099     - AMCC "Kilauea"
37100
37101     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
37102
37103 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
37104 Author: James Yang <James.Yang@freescale.com>
37105 Date:   Mon May 5 10:22:53 2008 -0500
37106
37107     Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
37108
37109     When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
37110     work before relocating to RAM because command history is written into
37111     a global array that is not writable before relocation.  This patch
37112     defers to the no-editing and no-history code in readline_into_buffer()
37113     if it is called before relocation.
37114
37115     Signed-off-by: James Yang <James.Yang@freescale.com>
37116     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37117
37118 commit 726c0f1e5f108dccea052965123b95837d2bd402
37119 Author: Detlev Zundel <dzu@denx.de>
37120 Date:   Mon May 5 16:11:22 2008 +0200
37121
37122     cosmetic: Adjust coding style for switch statements to be consistent
37123
37124     Signed-off-by: Detlev Zundel <dzu@denx.de>
37125
37126 commit 574b319512b13e10800f0045e39b993f4ca25e42
37127 Author: Detlev Zundel <dzu@denx.de>
37128 Date:   Mon May 5 16:11:21 2008 +0200
37129
37130     Fix disk type output in disk/part.c
37131
37132     Signed-off-by: Detlev Zundel <dzu@denx.de>
37133
37134 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
37135 Author: Vlad Lungu <vlad.lungu@windriver.com>
37136 Date:   Mon May 5 14:20:03 2008 +0300
37137
37138     Mail address change, documentation modified
37139
37140     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
37141
37142 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
37143 Author: Michal Simek <monstr@monstr.eu>
37144 Date:   Sun May 4 15:42:41 2008 +0200
37145
37146     microblaze: Repare intc handling
37147
37148     Signed-off-by: Michal Simek <monstr@monstr.eu>
37149
37150 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
37151 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37152 Date:   Sun May 4 15:17:52 2008 +0200
37153
37154     include/gitignore: update to all architectures
37155
37156     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37157
37158 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
37159 Author: Marcel Ziswiler <marcel@ziswiler.com>
37160 Date:   Mon May 5 02:12:06 2008 +0200
37161
37162     ide: Remove spurious second include of io.h
37163
37164     Removed the second include, with all the #ifdef around as suggested by Wolfgang.
37165
37166     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
37167
37168 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
37169 Author: Adrian Filipi <adrian.filipi@eurotech.com>
37170 Date:   Tue May 6 16:46:37 2008 -0400
37171
37172     Fix some typos
37173
37174     This patch fixes three typos.
37175     The first is a repetition of CONFIG_CMD_BSP.
37176     The second makes the #endif comment match its #if.
37177     The third is a spelling error.
37178
37179     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
37180
37181 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
37182 Author: Grant Erickson <gerickson@nuovations.com>
37183 Date:   Sun May 4 16:45:01 2008 -0700
37184
37185     Recognize 'powerpc' As an Alias for IH_ARCH_PPC
37186
37187     Add support for the recognition of 'powerpc' as an alias for the PowerPC
37188     architecture type since Linux is already trending in that direction,
37189     preferring 'powerpc' to 'ppc'.
37190
37191     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
37192
37193 commit f5a24259190c388c2527bdc49fee34577d862cc7
37194 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
37195 Date:   Fri May 2 13:35:15 2008 -0700
37196
37197     7450 and 86xx L2 cache invalidate bug corrections
37198
37199     The 7610 and related parts have an L2IP bit in the L2CR that is
37200     monitored to signal when the L2 cache invalidate is complete whereas the
37201     7450 and related parts utilize L2I for this purpose. However, the
37202     current code does not account for this difference. Additionally the 86xx
37203     L2 cache invalidate code used an "andi" instruction where an "andis"
37204     instruction should have been used.
37205
37206     This patch addresses both of these bugs.
37207
37208     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
37209     Acked-By: Jon Loeliger <jdl@freescale.com>
37210
37211 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
37212 Author: Wolfgang Denk <wd@denx.de>
37213 Date:   Fri May 9 10:16:13 2008 +0200
37214
37215     Avoid infinite loop "Generating include/autoconf.mk"
37216
37217     Fix a bogus circular dependency that caused an infinite loop of
37218     "Generating include/autoconf.mk" again and again.
37219
37220     Signed-off-by: Wolfgang Denk <wd@denx.de>
37221
37222 commit 567fb852178dbf59529d7301620a3f3732a4b02d
37223 Author: Stelian Pop <stelian@popies.net>
37224 Date:   Thu May 8 22:52:09 2008 +0200
37225
37226     Fix @ -> <at> substitution
37227
37228     When applying the AT91CAP9 patches upstream, something transformed
37229     the '@' character into the ' <at> ' sequence.
37230
37231     The patch below restores the original form in all the places where
37232     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
37233     were copied from AT91CAP9, and a couple of other files where the
37234     ' <at> ' sequence was present).
37235
37236     Signed-off-by: Stelian Pop <stelian@popies.net>
37237     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37238
37239 commit 73ccb3410a0785593cda7aee455dfc51f790e281
37240 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
37241 Date:   Mon Apr 28 14:04:32 2008 +0200
37242
37243     ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
37244
37245     Signed-off-by: Gary Jennejohn <garyj@denx.de>
37246     Signed-off-by: Stefan Roese <sr@denx.de>
37247
37248 commit ef2642625cbfb1c3695e3478d08ae515052a4950
37249 Author: Stefan Roese <sr@denx.de>
37250 Date:   Thu May 8 11:10:46 2008 +0200
37251
37252     ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
37253
37254     Signed-off-by: Stefan Roese <sr@denx.de>
37255
37256 commit a00eccfebc954ad9485161efeca7d9aaf626d530
37257 Author: Stefan Roese <sr@denx.de>
37258 Date:   Thu May 8 11:05:15 2008 +0200
37259
37260     ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
37261
37262     This patch adds fdt (flattened device tree) support to all remaining AMCC
37263     eval boards. Most newer boards already support device tree. With this patch,
37264     all AMCC boards now enable device tree passing from U-Boot to Linux
37265     arch/powerpc kernels.
37266
37267     Signed-off-by: Stefan Roese <sr@denx.de>
37268
37269 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
37270 Author: Stefan Roese <sr@denx.de>
37271 Date:   Thu May 8 11:01:09 2008 +0200
37272
37273     ppc4xx: Add weak default ft_board_setup() routine
37274
37275     This patch adds a default ft_board_setup() routine to the 4xx fdt code.
37276     This routine is defined as weak and can be overwritten by a board specific
37277     one if needed.
37278
37279     Signed-off-by: Stefan Roese <sr@denx.de>
37280
37281 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
37282 Author: Stefan Roese <sr@denx.de>
37283 Date:   Thu May 8 10:48:58 2008 +0200
37284
37285     ppc4xx: acadia: Add fdt support and fix section overlap problem
37286
37287     This patch adds fdt (flattened device tree) support to the AMCC
37288     Acadia eval board. This increases the image size and it doesn't
37289     fit anymore into 256kByte. Since we didn't want to remove features
37290     from the configuration, we decided to increase the U-Boot image size
37291     (add one flash sector).
37292
37293     Also changed the default environment definition to make it
37294     independent of such changes.
37295
37296     Signed-off-by: Stefan Roese <sr@denx.de>
37297
37298 commit 4adb3023de75bc150f088c8935db340930ad38c8
37299 Author: Ira Snyder <iws@ovro.caltech.edu>
37300 Date:   Tue Apr 29 11:18:54 2008 -0700
37301
37302     ppc4xx: Add device tree support to AMCC Yosemite
37303
37304     Add support for booting with a device tree blob. This is needed to boot
37305     ARCH=powerpc kernels. Also add support for setting the eth0 mac address
37306     via the ethaddr variable.
37307
37308     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
37309     Signed-off-by: Stefan Roese <sr@denx.de>
37310
37311 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
37312 Author: Dave Mitchell <dmitchell@amcc.com>
37313 Date:   Wed May 7 09:00:23 2008 -0700
37314
37315     ppc4xx: Fix typos in 460GT/EX FBDV array
37316
37317     Corrected two typos in the 460GT/EX FBDV array.
37318
37319     Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
37320     Signed-off-by: Stefan Roese <sr@denx.de>
37321
37322 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
37323 Author: Andy Fleming <afleming@freescale.com>
37324 Date:   Wed May 7 16:54:31 2008 -0500
37325
37326     85xx: Limit CPU2 workaround to parts that have the errata
37327
37328     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
37329     Signed-off-by: Andy Fleming <afleming@freescale.com>
37330
37331 commit a5fe514e8ace564300d2c1d73846ddff49654243
37332 Author: Lee Nipper <lee.nipper@freescale.com>
37333 Date:   Fri Apr 25 15:44:45 2008 -0500
37334
37335     mpc83xx: system performance settings for MPC8349EMDS.
37336
37337     These same settings are used on MPC8349ITX, and
37338     improve performance on MPC8349EMDS.
37339
37340     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
37341     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37342
37343 commit 49387dba910e485640b575e920ee463b7e611dc3
37344 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37345 Date:   Tue May 6 13:22:52 2008 +0900
37346
37347     [MIPS] cpu/mips/cache.S: Fix build warning
37348
37349     Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
37350     warns illegal global symbol references by bal (and jal also) instruction.
37351     This does not happen with the latest binutils v2.18.
37352
37353     Here's an example on gth2_config:
37354
37355     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
37356     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
37357     c -EB -c -o cache.o cache.S
37358     cache.S: Assembler messages:
37359     cache.S:243: Warning: Pretending global symbol used as branch target is local.
37360     cache.S:250: Warning: Pretending global symbol used as branch target is local.
37361
37362     In principle, gas might be sensitive to global symbol references in PIC
37363     code because they should be processed through GOT (global offset table).
37364     But if `bal' instruction is used, it results in PC-based offset jump.
37365     This is the cause of this warning.
37366
37367     In practice, we know it doesn't matter whether PC-based reference or GOT-
37368     based. As for this case, both will work before/after relocation. But let's
37369     fix the code.
37370
37371     This patch explicitly sets up a target address, then jump there.
37372     Here's an example of disassembled code with/without this patch.
37373
37374      90000668:       1485ffef        bne     a0,a1,90000628 <mips_cache_reset+0x20>
37375      9000066c:       ac80fffc        sw      zero,-4(a0)
37376      90000670:       01402821        move    a1,t2
37377     -90000674:       0411ffba        bal     90000560 <mips_init_icache>
37378     -90000678:       01803021        move    a2,t4
37379     -9000067c:       01602821        move    a1,t3
37380     -90000680:       0411ffcc        bal     900005b4 <mips_init_dcache>
37381     -90000684:       01a03021        move    a2,t5
37382     -90000688:       03000008        jr      t8
37383     -9000068c:       00000000        nop
37384     +90000674:       01803021        move    a2,t4
37385     +90000678:       8f8f83ec        lw      t7,-31764(gp)
37386     +9000067c:       01e0f809        jalr    t7
37387     +90000680:       00000000        nop
37388     +90000684:       01602821        move    a1,t3
37389     +90000688:       01a03021        move    a2,t5
37390     +9000068c:       8f8f81e0        lw      t7,-32288(gp)
37391     +90000690:       01e0f809        jalr    t7
37392     +90000694:       00000000        nop
37393     +90000698:       03000008        jr      t8
37394     +9000069c:       00000000        nop
37395
37396     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37397
37398 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
37399 Author: Vlad Lungu <vlad.lungu@windriver.com>
37400 Date:   Mon May 5 14:04:00 2008 +0300
37401
37402     Allow building mips versions with ELDK 3.1.1
37403
37404     .gpword works only with local symbols on certain binutils versions
37405
37406     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
37407
37408 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
37409 Author: Wolfgang Denk <wd@denx.de>
37410 Date:   Mon May 5 12:52:36 2008 +0200
37411
37412     MAKEALL: add inka4x0 board
37413
37414     Signed-off-by: Wolfgang Denk <wd@denx.de>
37415
37416 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
37417 Author: Wolfgang Denk <wd@denx.de>
37418 Date:   Sun May 4 21:34:23 2008 +0200
37419
37420     kb9202 board: fix build problem.
37421
37422     Signed-off-by: Wolfgang Denk <wd@denx.de>
37423
37424 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
37425 Author: Wolfgang Denk <wd@denx.de>
37426 Date:   Sun May 4 12:10:33 2008 +0200
37427
37428     Prepare for v1.3.3-rc3
37429
37430     Update ChNAGELOG, minor white space cleanup.
37431
37432     Signed-off-by: Wolfgang Denk <wd@denx.de>
37433
37434 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
37435 Author: Wolfgang Denk <wd@denx.de>
37436 Date:   Sun May 4 00:35:15 2008 +0200
37437
37438     drivers/net/tsec.c: Fix typo.
37439
37440     Signed-off-by: Wolfgang Denk <wd@denx.de>
37441
37442 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
37443 Author: Mike Frysinger <vapier@gentoo.org>
37444 Date:   Fri May 2 21:45:12 2008 -0400
37445
37446     version_autogenerated.h: use printf rather than echo -n
37447
37448     Some systems are dumb and do not implement the -n flag to echo (like OS X).
37449     Convert the Makefile to use printf as this should work everywhere.
37450
37451     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37452     Signed-off-by: Wolfgang Denk <wd@denx.de>
37453
37454 commit 4acc2a108ad0a669165924704a6cb083f9138242
37455 Author: Mike Frysinger <vapier@gentoo.org>
37456 Date:   Fri May 2 18:17:50 2008 -0400
37457
37458     fix building when saveenv is disabled in some setups
37459
37460     If you enable environment in the flash, but disable the embedded
37461     option, and you disable the saveenv command, then the #if nested
37462     logic will trigger a compile failure:
37463     env_flash.c: In function 'env_relocate_spec':
37464     env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
37465     The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
37466
37467     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37468
37469 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
37470 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
37471 Date:   Fri May 2 16:10:04 2008 -0400
37472
37473     SBC8548: fix address mask to allow 64M flash
37474
37475     Fix incorrect mask to enable all 64MB of onboard flash.
37476     Previously U-Boot incorrectly mapped only 8MB of flash, this
37477     patch correctly maps all the available flash.
37478
37479     Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
37480
37481 commit 3648085c464c8c22ef76fab006ca4344d3796124
37482 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37483 Date:   Fri May 2 19:48:56 2008 +0200
37484
37485     qemu_mips: add README
37486
37487     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37488
37489 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
37490 Author: Marcel Ziswiler <marcel@ziswiler.com>
37491 Date:   Fri May 2 02:35:59 2008 +0200
37492
37493     Fix misspelled comment
37494
37495     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
37496
37497 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
37498 Author: Mike Frysinger <vapier@gentoo.org>
37499 Date:   Thu May 1 04:13:05 2008 -0400
37500
37501     mkimage: make mmap() checks consistent
37502
37503     The mmap() related code is full of inconsistent casts/constants when
37504     it comes to error checking, and may break when building on some
37505     systems (like ones that do not implicitly define the caddr_t type).
37506     Let's just avoid the whole mess by writing the code nice and clean in
37507     the first place.
37508
37509     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37510
37511 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
37512 Author: Marcel Ziswiler <marcel@ziswiler.com>
37513 Date:   Thu May 1 09:05:34 2008 +0200
37514
37515     Fix defined but not used build warning
37516
37517     - warning: 'srom' defined but not used
37518
37519     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
37520
37521 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
37522 Author: Marcel Ziswiler <marcel@ziswiler.com>
37523 Date:   Thu May 1 09:05:26 2008 +0200
37524
37525     Fix implicit declaration build warnings
37526
37527     - warning: implicit declaration of function â€˜serial_initialize’
37528
37529     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
37530
37531 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
37532 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
37533 Date:   Tue Apr 29 19:18:32 2008 +0200
37534
37535     TSEC: add config options for VSC8601 RGMII PHY
37536
37537     The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
37538     and Tx clock lines. They are configured using 2 bits in extended
37539     register 0x17.
37540     Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
37541     been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
37542
37543     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
37544     Acked-by: Andy Fleming <afleming@freescale.com>
37545     Acked-by: Ben Warren <biggerbadderben@gmail.com>
37546     --
37547
37548      drivers/net/tsec.c |    6 ++++++
37549      drivers/net/tsec.h |    3 +++
37550      2 files changed, 9 insertions(+), 0 deletions(-)
37551
37552 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
37553 Author: Wolfgang Denk <wd@denx.de>
37554 Date:   Sat May 3 23:07:15 2008 +0200
37555
37556     Revert "ColdFire: Get information from the correct GCC"
37557
37558     This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
37559     (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
37560
37561 commit c4e5f52a58d278eebb87f476e353972c5dacea40
37562 Author: Wolfgang Denk <wd@denx.de>
37563 Date:   Sat May 3 22:25:00 2008 +0200
37564
37565     config.mk: use correct (cross) compiler
37566
37567     Some config.mk files reference $(CC) to test for specific tool chain
37568     features, so make sure $(CC) gets set before including any such
37569     config files.
37570
37571     This patch replaces commit b7166e05a5 ("ColdFire: Get information from
37572     the correct GCC").
37573
37574     Signed-off-by: Wolfgang Denk <wd@denx.de>
37575
37576 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
37577 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37578 Date:   Thu May 1 02:13:44 2008 +0200
37579
37580     pxa: fix previous definition on cpu init
37581
37582     start.S:183:1: warning: "ICMR" redefined
37583     In file included from start.S:33:
37584     include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
37585     start.S:187:1: warning: "RCSR" redefined
37586     ...
37587
37588     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37589
37590 commit 6d12e697de794d700767f22f950e3026ccf4daf6
37591 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37592 Date:   Thu May 1 02:13:43 2008 +0200
37593
37594     pxa: fix pcmcia operation on 'i' may be undefined
37595
37596     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37597     Signed-off-by: Wolfgang Denk <wd@denx.de>
37598
37599 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
37600 Author: Kumar Gala <galak@kernel.crashing.org>
37601 Date:   Wed Apr 30 16:24:35 2008 -0500
37602
37603     MPC8610HPCD: Drop -O2 from the build flags
37604
37605     Make the flags use -Os like all other boards
37606
37607     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37608
37609 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
37610 Author: Stefan Roese <sr@denx.de>
37611 Date:   Wed Apr 30 15:50:39 2008 +0200
37612
37613     RTC: Fix month offset by one problem in M41T62 RTC driver
37614
37615     This patch fixes a problem with the month being read and written
37616     incorrectly (offset by one). This only gets visible by also using
37617     the Linux driver (rtc-m41t80).
37618
37619     Tested on AMCC Canyonlands.
37620
37621     Signed-off-by: Stefan Roese <sr@denx.de>
37622
37623 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
37624 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37625 Date:   Sat May 3 13:51:44 2008 +0900
37626
37627     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
37628
37629     Current trick to pick up GNU assembler minor version uses a dot(.) as a
37630     delimiter, and take the second field to obtain minor version number. But
37631     as can be expected, this doesn't work with a version string which has
37632     dots more than needs.
37633
37634     Here's an example:
37635
37636     $ mips-linux-gnu-as --version | grep 'GNU assembler'
37637     GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
37638     $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
37639     2-129) 2
37640     $
37641
37642     This patch restricts the version format to 2.XX.XX... This will work
37643     in most cases.
37644
37645     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
37646     2.18.50.20080215
37647     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
37648     18
37649     $
37650
37651     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37652
37653 commit ea638951acead7f1086c908c0b9f086beab82a22
37654 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37655 Date:   Sat May 3 13:51:28 2008 +0900
37656
37657     [MIPS] cpu/mips/cache.S: Add dcache_enable
37658
37659     Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
37660     "allow ports to override bootelf behavior") requires ports to have this
37661     function.
37662
37663     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37664     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37665
37666 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
37667 Author: Wolfgang Denk <wd@denx.de>
37668 Date:   Thu May 1 21:30:16 2008 +0200
37669
37670     onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
37671
37672     Onenand needs a version of memcpy() which performs 16 bit accesses
37673     only; make sure the name does not conflict with the standard
37674     function.
37675
37676     Signed-off-by: Wolfgang Denk <wd@denx.de>
37677
37678 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
37679 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37680 Date:   Wed Apr 30 22:38:17 2008 +0200
37681
37682     cmd_nand: fix warning: str2long ncompatible pointer type
37683
37684     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37685
37686 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
37687 Author: Timur Tabi <timur@freescale.com>
37688 Date:   Fri Apr 4 11:16:11 2008 -0500
37689
37690     Fix calculation of I2C clock for some 86xx chips
37691
37692     Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
37693     There is no pattern that can be used to determine which chips use which
37694     frequency, so the only way to determine is to look up the actual SOC
37695     designation and use the right value for that SOC.
37696
37697     Signed-off-by: Timur Tabi <timur@freescale.com>
37698
37699 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
37700 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37701 Date:   Wed Apr 30 12:11:19 2008 -0500
37702
37703     ColdFire: Fix ethernet hang issue for mcf547x_8x
37704
37705     The ethernet hang is caused by receiving buffer in DRAM is not
37706     yet ready due to access cycles require longer time in DRAM.
37707     Relocate DMA buffer descriptors from DRAM to internal SRAM.
37708
37709     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37710
37711 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
37712 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37713 Date:   Wed Apr 30 12:10:47 2008 -0500
37714
37715     ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
37716
37717     Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
37718     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37719
37720 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
37721 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37722 Date:   Wed Apr 30 12:10:23 2008 -0500
37723
37724     ColdFire: Get information from the correct GCC
37725
37726     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
37727     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37728
37729 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
37730 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
37731 Date:   Wed Apr 30 18:02:59 2008 +0200
37732
37733     Fix warning in env_nand.c if compiled for DaVinci Schmoogie
37734
37735     Fix warnings
37736
37737     nv_nand.c: In function 'saveenv':
37738     env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
37739     env_nand.c: In function 'env_relocate_spec':
37740     env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
37741
37742     if compiled for davinci_schmoogie_config.
37743
37744     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
37745     Ack by: Sergey Kubushyn <ksi@koi8.net>
37746
37747 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
37748 Author: Anatolij Gustschin <agust@denx.de>
37749 Date:   Wed Apr 30 13:34:40 2008 +0200
37750
37751     Fix warnings while compiling net/net.c for MPC8610HPCD board
37752
37753     MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
37754     causing overriding default -Os option. New gcc (ver. 4.2.2)
37755     produces warnings while compiling net/net.c file with -O2
37756     option. The patch is an attempt to fix this.
37757
37758     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37759
37760 commit 58b575e575c25fdf8c88141e145db201f3092149
37761 Author: Sascha Laue <Sascha.Laue@gmx.biz>
37762 Date:   Wed Apr 30 15:23:38 2008 +0200
37763
37764     lwmon5: fix offset error in sysmon0 POST
37765
37766     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
37767     Signed-off-by: Wolfgang Denk <wd@denx.de>
37768
37769 commit e7419b243a373de4ee042f7d4f45f66de787240d
37770 Author: Sascha Laue <Sascha.Laue@gmx.biz>
37771 Date:   Wed Apr 30 15:16:35 2008 +0200
37772
37773     lwmon5: fix manual merge error in POST
37774
37775     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
37776
37777 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
37778 Author: Wolfgang Denk <wd@denx.de>
37779 Date:   Wed Apr 30 17:46:26 2008 +0200
37780
37781     cmd_nand.c: fix another 'incompatible pointer type' warning.
37782
37783     Signed-off-by: Wolfgang Denk <wd@denx.de>
37784
37785 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
37786 Author: Wolfgang Denk <wd@denx.de>
37787 Date:   Wed Apr 30 17:25:07 2008 +0200
37788
37789     Makefile: fix parallel builds
37790
37791     This problem shows up with parallel builds only; it results in
37792     somewhat cryptic error messages like
37793
37794         $ JOBS=-j6 MAKEALL netstar
37795         Configuring for netstar board...
37796         arm-linux-ld: cannot find -lgeneric
37797         make[1]: *** [eeprom.srec] Error 1
37798
37799     A few boards (like netstar and voiceblue) need some libraries for
37800     building; however, the board Makefile does not contain any such
37801     dependencies which may cause problems with parallel builds. Adding
37802     such dependencies is difficult as we would also have to provide build
37803     rules, which already exist in the respective library Makefiles.
37804
37805     To solve this, we make sure that all libraries get built before the
37806     board code.
37807
37808     Signed-off-by: Wolfgang Denk <wd@denx.de>
37809
37810 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
37811 Author: Stefan Roese <sr@denx.de>
37812 Date:   Wed Apr 30 14:51:36 2008 +0200
37813
37814     ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
37815
37816     This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
37817     used for NAND booting to match the values needed for the new 512MB
37818     DIMM modules shipped with the productions boards:
37819
37820     Crucial: CT6464AC667.8FB
37821
37822     Signed-off-by: Stefan Roese <sr@denx.de>
37823
37824 commit ea9202a659dc75996facf1475f1866a19a9d3129
37825 Author: Stefan Roese <sr@denx.de>
37826 Date:   Wed Apr 30 10:49:43 2008 +0200
37827
37828     ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
37829
37830     This patch fixes a problem with DIMMs that have 8 banks. Now the
37831     MCIF0_MBxCF register will be setup correctly for this setup too.
37832
37833     This was noticed with the 512MB DIMM on Canyonlands/Glacier.
37834
37835     Signed-off-by: Stefan Roese <sr@denx.de>
37836
37837 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
37838 Author: Wolfgang Denk <wd@denx.de>
37839 Date:   Tue Apr 29 23:41:06 2008 +0200
37840
37841     Prepare v1.3.3-rc2, again.
37842
37843     Signed-off-by: Wolfgang Denk <wd@denx.de>
37844
37845 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
37846 Author: Wolfgang Denk <wd@denx.de>
37847 Date:   Tue Apr 29 23:35:24 2008 +0200
37848
37849     Prepare v1.3.3-rc2
37850
37851     Signed-off-by: Wolfgang Denk <wd@denx.de>
37852
37853 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
37854 Author: Wolfgang Denk <wd@denx.de>
37855 Date:   Tue Apr 29 23:32:20 2008 +0200
37856
37857     common/env_nand.c: fix one more incompatible pointer type issue
37858
37859     Signed-off-by: Wolfgang Denk <wd@denx.de>
37860
37861 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
37862 Author: Wolfgang Denk <wd@denx.de>
37863 Date:   Tue Apr 29 21:33:08 2008 +0200
37864
37865     post/board/lwmon5/sysmon.c: fix manual merge error.
37866
37867     Signed-off-by: Wolfgang Denk <wd@denx.de>
37868
37869 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
37870 Author: Kumar Gala <galak@kernel.crashing.org>
37871 Date:   Tue Apr 29 12:54:59 2008 -0500
37872
37873     85xx: Add -mno-spe to e500/85xx builds
37874
37875     Newer gcc's might be configured to enable autovectorization by default.
37876     If we happen to build with one of those compilers we will get SPE
37877     instructions in random code.
37878
37879     -mno-spe disables the compiler for automatically generating SPE
37880     instructions without our knowledge.
37881
37882     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37883
37884 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
37885 Author: Kumar Gala <galak@kernel.crashing.org>
37886 Date:   Tue Apr 29 10:18:34 2008 -0500
37887
37888     Update .gitignore for zlib.h
37889
37890     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37891
37892 commit 45239cf4152109caa925145ccd433529902df887
37893 Author: Kumar Gala <galak@kernel.crashing.org>
37894 Date:   Tue Apr 29 10:27:08 2008 -0500
37895
37896     85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
37897
37898     All the 85xx and 86xx UM describe the register as timing_cfg_3
37899     not as ext_refrec.
37900
37901     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37902
37903 commit ef7d30b14394e4c4a153118f5845760cadada02a
37904 Author: Kumar Gala <galak@kernel.crashing.org>
37905 Date:   Tue Apr 29 10:28:34 2008 -0500
37906
37907     85xx/86xx: Rename DDR init address and init extended address register
37908
37909     Rename init_addr and init_ext_addr to match the docs between
37910     85xx and 86xx.  Both now use 'init_addr' and 'init_ext_addr'.
37911
37912     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37913
37914 commit cf6cc014270549684873a5972d2595052c468cb6
37915 Author: Kumar Gala <galak@kernel.crashing.org>
37916 Date:   Mon Apr 28 02:24:04 2008 -0500
37917
37918     85xx: Additional fixes and cleanup of MP code
37919
37920     * adjust __spin_table alignment to match ePAPR v0.94 spec
37921     * loop over all cpus when determing who is up.  This fixes an issue if
37922       the "boot cpu" isn't core0.  The "boot cpu" will already be in the
37923       cpu_up_mask so there is no harm
37924     * Added some protection in the code to ensure proper behavior.  These
37925       changes are explicitly needed but don't hurt:
37926       - Added eieio to ensure the "hot word" of the table is written after
37927         all other table updates have occurred.
37928       - Added isync to ensure we don't prefetch loading of table entries
37929         until we a released
37930
37931     These issues we raised by Dave Liu.
37932
37933     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37934
37935 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
37936 Author: Yuri Tikhonov <yur@emcraft.com>
37937 Date:   Tue Apr 29 15:06:41 2008 +0200
37938
37939     lwmon5: minor clean-up to include/configs/lwmon5.h
37940
37941     LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
37942     the CFG_DSPIC_TEST_ADDR definition more readable.
37943
37944     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
37945
37946 commit f4c4d21a885ccc222fd0acdf653b683249e85117
37947 Author: Stefan Roese <sr@denx.de>
37948 Date:   Tue Apr 29 16:08:05 2008 +0200
37949
37950     ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
37951
37952     Signed-off-by: Stefan Roese <sr@denx.de>
37953
37954 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
37955 Author: Yuri Tikhonov <yur@emcraft.com>
37956 Date:   Tue Apr 29 13:32:45 2008 +0200
37957
37958     ppc flush_cache: add watch-dog triggering into the loops.
37959
37960     Some boards (e.g. lwmon5) need rather a frequent watch-dog
37961     kicking. Since the time it takes for the flush_cache() function
37962     to complete its job depends on the size of data being flushed, one
37963     may encounter watch-dog resets on such boards when, for example,
37964     download big files over ethernet.
37965
37966     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
37967
37968 commit cab99d6f3281ab6784feccf98b9b425daa58418a
37969 Author: Stefan Roese <sr@denx.de>
37970 Date:   Tue Apr 29 14:44:54 2008 +0200
37971
37972     ppc4xx: Fix compilation warning in denali_spd_ddr2.c
37973
37974     Signed-off-by: Stefan Roese <sr@denx.de>
37975
37976 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
37977 Author: Stefan Roese <sr@denx.de>
37978 Date:   Tue Apr 29 14:12:07 2008 +0200
37979
37980     ppc4xx: Fix Katmai CFG_MONITOR_LEN
37981
37982     Signed-off-by: Stefan Roese <sr@denx.de>
37983
37984 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
37985 Author: Stefan Roese <sr@denx.de>
37986 Date:   Tue Apr 29 13:57:07 2008 +0200
37987
37988     ppc4xx: Complete remove bogus dflush()
37989
37990     Since the current dflush() implementation is know to have some problems
37991     (as seem on lwmon5 ECC init) this patch removes it completely and replaces
37992     it by using clean_dcache_range().
37993
37994     Tested on Katmai with ECC DIMM.
37995
37996     Signed-off-by: Stefan Roese <sr@denx.de>
37997
37998 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
37999 Author: Stefan Roese <sr@denx.de>
38000 Date:   Tue Apr 29 13:36:51 2008 +0200
38001
38002     ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
38003
38004     As it seems the "old" ECC initialization routine by using dflush() didn't
38005     write all lines in the dcache back to memory on lwmon5. This could lead
38006     to ECC error upon Linux booting. This patch changes the program_ecc()
38007     routine to now use clean_dcache_range() instead of dflush().
38008     clean_dcache_range() uses dcbst which is exactly what we want in this
38009     case.
38010
38011     Since dflush() is known is cause problems, this routine will be
38012     removed completely and replaced by clean_dcache_range() with an
38013     additional patch.
38014
38015     Signed-off-by: Stefan Roese <sr@denx.de>
38016
38017 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
38018 Author: Yuri Tikhonov <yur@emcraft.com>
38019 Date:   Mon Apr 28 18:19:34 2008 +0200
38020
38021     POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
38022
38023     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38024
38025 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
38026 Author: Markus Brunner <super.firetwister@googlemail.com>
38027 Date:   Mon Apr 28 08:47:47 2008 +0200
38028
38029     ppc4xx: Fixup ebc clock in FDT for 405GP/EP
38030
38031     On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
38032     and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
38033     doesn't exist.
38034
38035     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
38036
38037 commit 2ef7503a593c77a80c2a054011970227c4b62774
38038 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38039 Date:   Thu Apr 24 07:57:17 2008 +0200
38040
38041     NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
38042
38043     Move non-inlied functions into specific drivers file
38044     Set get_prom as weak
38045
38046     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38047     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
38048     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38049
38050 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
38051 Author: Guennadi Liakhovetski <lg@denx.de>
38052 Date:   Thu Apr 3 17:04:19 2008 +0200
38053
38054     net: make ARP timeout configurable
38055
38056     Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
38057     On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
38058     to the boards get lost, which typically are ARP replies. By configuring
38059     the timeout to a lower value we significantly improve the first network
38060     transfer time on this board. The timeout is specified in milliseconds,
38061     later internally it is converted to deciseconds, because it has to be
38062     converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
38063     different boards.
38064
38065     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
38066     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38067
38068 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
38069 Author: Guennadi Liakhovetski <lg@denx.de>
38070 Date:   Thu Apr 3 13:36:18 2008 +0200
38071
38072     minor cs8900 driver clean up
38073
38074     Remove a redundant register definition, clean up some coding style
38075     violations.
38076
38077     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
38078     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38079
38080 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
38081 Author: Wolfgang Denk <wd@denx.de>
38082 Date:   Mon Apr 28 22:01:04 2008 +0200
38083
38084     jffs2_1pass.c: fix incompatible pointer type warning
38085
38086     Signed-off-by: Wolfgang Denk <wd@denx.de>
38087
38088 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
38089 Author: Sascha Laue <Sascha.Laue@gmx.biz>
38090 Date:   Tue Apr 1 10:10:18 2008 +0200
38091
38092     lwmon5: update dsPIC POST spezification
38093
38094     The specification for the lwmon5 board dsPIC POST got changed.
38095     Also add defines for the temperatures  and voltages.
38096
38097     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
38098
38099 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
38100 Author: Sascha Laue <Sascha.Laue@gmx.biz>
38101 Date:   Tue Apr 1 15:13:03 2008 +0200
38102
38103     Fix watchdog POST for lwmon5
38104
38105     If the hardware watchdog detects a voltage error, the watchdog sets
38106     GPIO62 to low. The watchdog POST has to detect this low level.
38107
38108     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
38109     Signed-off-by: Wolfgang Denk <wd@denx.de>
38110
38111 commit dd5748bcd669f46aeb6686c1b341323843738ccc
38112 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38113 Date:   Mon Apr 28 14:37:14 2008 +0200
38114
38115     rtl8169: fix compiler warnings
38116
38117     Fix multiple compiler warnings related to argument type mismatch.
38118
38119     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38120
38121 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
38122 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38123 Date:   Mon Apr 28 14:36:06 2008 +0200
38124
38125     IDE: fix compiler warnings
38126
38127     The IDE driver can use 32-bit addresses in LBA mode, in which case it
38128     spits multiple warnings during compilation. Fix them.
38129
38130     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38131
38132 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
38133 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38134 Date:   Mon Apr 28 14:35:57 2008 +0200
38135
38136     LinkStation: fix compiler warning, add a maintainer
38137
38138     out_8 wants a pointer to an unsigned as the first argument. Add a
38139     maintainer for Linkstation boards.
38140
38141     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38142
38143 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
38144 Author: Wolfgang Denk <wd@denx.de>
38145 Date:   Mon Apr 28 14:55:12 2008 +0200
38146
38147     cmd_nand.c: fix "differ in signedness" problem
38148
38149     Signed-off-by: Wolfgang Denk <wd@denx.de>
38150
38151 commit f2c288a35341ad02ac03b1563d786763c9c8f159
38152 Author: Wolfgang Denk <wd@denx.de>
38153 Date:   Mon Apr 28 12:48:47 2008 +0200
38154
38155     pcnet.c: fix a merge issue
38156
38157     Signed-off-by: Wolfgang Denk <wd@denx.de>
38158
38159 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
38160 Author: Wolfgang Denk <wd@denx.de>
38161 Date:   Mon Apr 28 12:08:18 2008 +0200
38162
38163     NAND: fix some strict-aliasing compiler warnings
38164
38165     Signed-off-by: Wolfgang Denk <wd@denx.de>
38166
38167 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
38168 Author: Stefan Roese <sr@denx.de>
38169 Date:   Mon Apr 28 11:37:14 2008 +0200
38170
38171     ppc4xx: Fix compile warning of hcu4 board
38172
38173     Signed-off-by: Stefan Roese <sr@denx.de>
38174
38175 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
38176 Author: Wolfgang Denk <wd@denx.de>
38177 Date:   Mon Apr 28 11:31:23 2008 +0200
38178
38179     MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
38180
38181     Signed-off-by: Wolfgang Denk <wd@denx.de>
38182
38183 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
38184 Author: Guennadi Liakhovetski <lg@denx.de>
38185 Date:   Mon Apr 28 00:25:32 2008 +0200
38186
38187     mx31ads: fix loadaddr environment variable define
38188
38189     Arithmetic expressions do not get evaluated under stringification. Remove
38190     default network configuration, add DHCP command support. Thanks to Felix
38191     Radensky for reporting.
38192
38193     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
38194
38195 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
38196 Author: Wolfgang Denk <wd@denx.de>
38197 Date:   Mon Apr 28 10:55:24 2008 +0200
38198
38199     katmai: fix section overlap problem
38200
38201     Since we didn't want to remove features from the configuration, we
38202     decided to increase the U-Boot image size (add one flash sector).
38203
38204     Also changed the default environment definition to make it
38205     independent of such changes.
38206
38207     Signed-off-by: Wolfgang Denk <wd@denx.de>
38208     Acked-by: Stefan Roese <sr@denx.de>
38209
38210 commit 941d696d25624e3cc65ebf924199541acf52d74e
38211 Author: Wolfgang Denk <wd@denx.de>
38212 Date:   Mon Apr 28 10:55:24 2008 +0200
38213
38214     katmai: fix section overlap problem
38215
38216     Since we didn't want to remove features from the configuration, we
38217     decided to increase the U-Boot image size (add one flash sector).
38218
38219     Also changed the default environment definition to make it
38220     independent of such changes.
38221
38222     Signed-off-by: Wolfgang Denk <wd@denx.de>
38223     Acked-by: Stefan Roese <sr@denx.de>
38224
38225 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
38226 Author: Kumar Gala <galak@kernel.crashing.org>
38227 Date:   Sat Apr 26 11:44:44 2008 -0500
38228
38229     post: Fix building with O=
38230
38231     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38232
38233 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
38234 Author: Wolfgang Denk <wd@denx.de>
38235 Date:   Sat Apr 26 01:55:00 2008 +0200
38236
38237     Prepare v1.3.3-rc1
38238
38239     Signed-off-by: Wolfgang Denk <wd@denx.de>
38240
38241 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
38242 Author: Wolfgang Denk <wd@denx.de>
38243 Date:   Sat Apr 26 01:25:39 2008 +0200
38244
38245     post/Makefile: make sure to use the correct flags
38246
38247     ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
38248     messages to be printed.
38249
38250     Signed-off-by: Wolfgang Denk <wd@denx.de>
38251
38252 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
38253 Author: Wolfgang Denk <wd@denx.de>
38254 Date:   Sat Apr 26 00:34:42 2008 +0200
38255
38256     Coding Style cleanup, update CHANGELOG
38257
38258     Signed-off-by: Wolfgang Denk <wd@denx.de>
38259
38260 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
38261 Author: Magnus Lilja <lilja.magnus@gmail.com>
38262 Date:   Sun Apr 20 10:38:12 2008 +0200
38263
38264     i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
38265
38266     This patch enables SPI and MC13783/RTC support for the Litekit board.
38267
38268     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
38269
38270 commit f97abbfb47d9e407354e157cae3f6369e460cd37
38271 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38272 Date:   Fri Apr 25 01:08:32 2008 -0500
38273
38274     MPC8544DS: decode pcie3 end-point configuration correctly.
38275
38276     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38277     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38278
38279 commit 292188e15523c165c4269403fdcd33c26d89176e
38280 Author: Roy Zang <tie-fei.zang@freescale.com>
38281 Date:   Fri Apr 25 00:55:09 2008 -0500
38282
38283     MPC8544DS: Removes the unknown flash message information
38284
38285     This patch removes the unknown flash message information:
38286     '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
38287     This unknown flash message is caused by PromJet.
38288     Some of the board user is unhappy with this information.
38289
38290     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
38291     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38292
38293 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
38294 Author: Kim Phillips <kim.phillips@freescale.com>
38295 Date:   Thu Apr 24 14:07:38 2008 -0500
38296
38297     mpc83xx: bump loadaddr over fdtaddr to 0x500000
38298
38299     this seems as a good compromise between human memory, typing,
38300     and last but not least, to accommodate for current and future kernel bloat.
38301
38302     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38303     Acked-by: Dave Liu <daveliu@freescale.com>
38304
38305 commit be5a7190265a34d968578ff266549c60f6f57654
38306 Author: Dave Liu <r63238@freescale.com>
38307 Date:   Tue Apr 15 13:12:23 2008 +0800
38308
38309     mpc83xx: clean up the readme for 83xx boards
38310
38311     1. correct the typo
38312     2. correct the memory map for 837xerdb board
38313
38314     Signed-off-by: Dave Liu <daveliu@freescale.com>
38315
38316 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
38317 Author: Dave Liu <r63238@freescale.com>
38318 Date:   Tue Apr 15 13:11:11 2008 +0800
38319
38320     mpc83xx: remove the unused CPM's stuff
38321
38322     The MPC83xx family never have CPM block, so remove it from 83xx.
38323
38324     Signed-off-by: Dave Liu <daveliu@freescale.com>
38325
38326 commit c63ad6325a8ac0097a54b418a3288926b0484b18
38327 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38328 Date:   Fri Apr 18 16:29:40 2008 +0200
38329
38330     cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
38331
38332     This patch adds a configurable flash auto protection list that can be used
38333     to make U-Boot protect flash regions in flash_init().
38334
38335     The idea has been discussed on the u-boot mailing list starting
38336     on Nov 18th, 2007.
38337
38338     Even this patch brings a new feature it is used as a bugfix for 4xx
38339     platforms where flash_init() does not completely protect the
38340     monitor's flash range in all situations.
38341
38342     U-Boot protects the flash range from CFG_MONITOR_BASE to
38343     (CFG_MONITOR_BASE + monitor_flash_len  - 1) by default. This does not
38344     include the reset vector at 0xfffffffc.
38345
38346     Example:
38347     #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
38348
38349     This config option will auto protect the last 512k of flash that
38350     contains the bootloader on board like APC405 and PMC405.
38351
38352     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38353
38354 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
38355 Author: Stefan Roese <sr@denx.de>
38356 Date:   Fri Apr 25 13:59:03 2008 +0200
38357
38358     ppc4xx: Remove double defines in lwmon5.h
38359
38360     introduced with latest lwmon5/POST merge
38361
38362     Signed-off-by: Stefan Roese <sr@denx.de>
38363
38364 commit 7590378fb9c686709492ceb142825cd058255956
38365 Author: Bartlomiej Sieka <tur@semihalf.com>
38366 Date:   Fri Apr 25 13:54:02 2008 +0200
38367
38368     Use watchdog-aware functions when calculating hashes of images - take two
38369
38370     Some files didn't get updated properly with the "Use watchdog-aware
38371     functions when calculating hashes of images" commit, this commit
38372     fixes this.
38373
38374     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
38375     Signed-off-by: Wolfgang Denk <wd@denx.de>
38376
38377 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
38378 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38379 Date:   Fri Apr 25 12:01:39 2008 +0200
38380
38381     ppc4xx: Add bootcount limit handling for APC405 boards
38382
38383     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38384
38385 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
38386 Author: Bartlomiej Sieka <tur@semihalf.com>
38387 Date:   Fri Apr 25 12:10:09 2008 +0200
38388
38389     Use watchdog-aware functions when calculating hashes of images
38390
38391     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
38392
38393 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
38394 Author: Wolfgang Denk <wd@denx.de>
38395 Date:   Fri Apr 25 12:44:08 2008 +0200
38396
38397     USB: fix more GCC 4.2.x aliasing warnings
38398
38399     Signed-off-by: Wolfgang Denk <wd@denx.de>
38400     Acked-by: Markus Klotzbuecher <mk@denx.de>
38401
38402 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
38403 Author: Wolfgang Denk <wd@denx.de>
38404 Date:   Fri Apr 25 12:41:53 2008 +0200
38405
38406     lib_generic/crc32.c: add missing #include <watchdog.h>
38407
38408     Signed-off-by: Wolfgang Denk <wd@denx.de>
38409
38410 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
38411 Author: Wolfgang Denk <wd@denx.de>
38412 Date:   Fri Apr 25 11:52:21 2008 +0200
38413
38414     lib_generic/crc32.c: fix compile problem
38415
38416     Signed-off-by: Wolfgang Denk <wd@denx.de>
38417
38418 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
38419 Author: Stefan Roese <sr@denx.de>
38420 Date:   Tue Apr 22 12:20:32 2008 +0200
38421
38422     ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
38423
38424     The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
38425     environment variable will now get passed to the Linux kernel by setting
38426     the device_type property of the PCIe device tree node. For normal root-
38427     complex configuration it will keep its defaults value of "pci" and for
38428     endpoint configuration it will get changed to "pci-endpoint".
38429
38430     Signed-off-by: Stefan Roese <sr@denx.de>
38431
38432 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
38433 Author: Yuri Tikhonov <yur@emcraft.com>
38434 Date:   Thu Apr 24 10:30:53 2008 +0200
38435
38436     lwmon5: watchdog POST fix
38437
38438     Use the GPT0_MASKx registers as the temporary storage for watch-dog
38439     timer POST test instead of GPT0_COMPx. The latter
38440     (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
38441
38442     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38443     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38444
38445 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
38446 Author: Kim Phillips <kim.phillips@freescale.com>
38447 Date:   Mon Apr 21 18:10:14 2008 -0500
38448
38449     lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
38450
38451     This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
38452     proven problematic getting right from the start at least on 83xx and
38453     4xx.
38454
38455     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38456
38457 commit a99715b8ebfc500f3f40e01b36b64d473938443d
38458 Author: Detlev Zundel <dzu@denx.de>
38459 Date:   Fri Apr 18 14:50:01 2008 +0200
38460
38461     Realining some header definitions.
38462
38463     Signed-off-by: Detlev Zundel <dzu@denx.de>
38464
38465 commit 4acbc6c7f993cae409c424615415a3e76820f13d
38466 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38467 Date:   Thu Apr 24 07:57:16 2008 +0200
38468
38469     NE2000: coding style cleanup
38470
38471     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38472
38473 commit b4aff1ffaf7120032c653357c007faa14f74d29d
38474 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38475 Date:   Wed Apr 23 00:11:47 2008 +0900
38476
38477     qemu-mips.h: Add CFI support
38478
38479     CONFIG_ENV_OVERWRITE is also added.
38480
38481     This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
38482
38483     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38484     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38485
38486 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
38487 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38488 Date:   Tue Apr 22 22:47:27 2008 +0900
38489
38490     doc/README.mips: Add MIPS notes
38491
38492     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38493
38494 commit 215b01bba8bc662d35f72b084700b192d367dfb4
38495 Author: Bartlomiej Sieka <tur@semihalf.com>
38496 Date:   Tue Apr 22 12:27:56 2008 +0200
38497
38498     Add support for calculating hashes with watchdog triggering
38499
38500     Implement watchodg-aware variants of hash calculation functions:
38501     - crc32_wd()
38502     - md5_wd()
38503     - sha1_csum_wd()
38504     The above functions calculate the hash of the input buffer in chunks,
38505     triggering the watchdog after processing each chunk. The chunk size
38506     is given as a function call parameter.
38507
38508     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
38509
38510 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
38511 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
38512 Date:   Wed Apr 23 11:02:12 2008 +0900
38513
38514     qemu-mips: Cleanup whitespace, indentation, etc.
38515
38516     No functional change.
38517
38518     This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
38519     Then I re-created from scratch, and changed more lines than the original.
38520
38521     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38522     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38523
38524 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
38525 Author: Vlad Lungu <vlad@comsys.ro>
38526 Date:   Wed Oct 10 23:02:09 2007 +0300
38527
38528     Fixed pcnet io_base
38529
38530     Bus and phys address are not always the same
38531
38532     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
38533
38534 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
38535 Author: Wolfgang Denk <wd@denx.de>
38536 Date:   Thu Apr 24 23:44:26 2008 +0200
38537
38538     drivers/net/pcnet.c: Coding Style cleanup.
38539
38540     Signed-off-by: Wolfgang Denk <wd@denx.de>
38541
38542 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
38543 Author: Vlad Lungu <vlad@comsys.ro>
38544 Date:   Wed Oct 10 23:04:23 2007 +0300
38545
38546     Added Am79C970A chip id to pcnet
38547
38548     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
38549
38550 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
38551 Author: Magnus Lilja <lilja.magnus@gmail.com>
38552 Date:   Sun Apr 20 10:35:03 2008 +0200
38553
38554     i.MX31: Fix architecture numbers for ADS and Litekit boards
38555
38556     Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
38557
38558     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
38559
38560 commit e7ae84d6c7288790e88639f57cb60daf89c11369
38561 Author: Magnus Lilja <lilja.magnus@gmail.com>
38562 Date:   Sun Apr 20 10:36:36 2008 +0200
38563
38564     i.MX31: Use symbolic names for Litekit membases.
38565
38566     Use symbolic names instead of hard coded addresses for Litekit membases.
38567
38568     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
38569
38570 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
38571 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38572 Date:   Sat Apr 19 17:59:20 2008 +0200
38573
38574     Fix show_boot_progress prototype
38575
38576     in commit fad634071 "make show_boot_progress () weak."
38577     show_boot_progress is supposed to be declared as weak but declared as
38578     inline instead.
38579
38580     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38581
38582 commit edbed247a14d70b94958010f736621212285de91
38583 Author: Bartlomiej Sieka <tur@semihalf.com>
38584 Date:   Fri Apr 18 12:39:23 2008 +0200
38585
38586     Memory footprint optimizations
38587
38588     As suggested by Wolfgang Denk:
38589     - image printing functions:
38590       - remove wrappers
38591       - remove indentation prefix from functions' signatures
38592     - merge getenv_verify and getenv_autostart into one parametrized function
38593
38594     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
38595
38596 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
38597 Author: Guennadi Liakhovetski <lg@denx.de>
38598 Date:   Tue Apr 15 13:33:11 2008 +0200
38599
38600     MX31ADS environment variable update, spi and rtc support
38601
38602     Update MX31ADS default environment to better match the flash layout and
38603     the memory map, support SPI and RTC.
38604
38605     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
38606
38607 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
38608 Author: Kumar Gala <galak@kernel.crashing.org>
38609 Date:   Mon Apr 21 09:28:36 2008 -0500
38610
38611     85xx: Round up frequency calculations to get reasonable output
38612
38613     eg. because of rounding error we can get 799Mhz instead of 800Mhz.
38614
38615     Introduced DIV_ROUND_UP and roundup taken from linux kernel.
38616
38617     Signed-off-by: Dejan Minic <minic@freescale.com>
38618     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
38619     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38620     Acked-by: Andy Fleming <afleming@freescale.com>
38621
38622 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
38623 Author: Kumar Gala <galak@kernel.crashing.org>
38624 Date:   Wed Apr 23 16:58:04 2008 -0500
38625
38626     fsl_pci: Only modify registers if we have them
38627
38628     pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
38629
38630     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38631
38632 commit 83fe32334337def160b302aa9d152d808bfcc68e
38633 Author: Markus KlotzbĂ¼cher <mk@denx.de>
38634 Date:   Wed Apr 23 10:57:33 2008 +0200
38635
38636     USB: remove a cpu bug workaround for an unsupported architecture.
38637
38638     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
38639
38640 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
38641 Author: Markus KlotzbĂ¼cher <mk@denx.de>
38642 Date:   Wed Apr 23 10:53:23 2008 +0200
38643
38644     USB: fix those pesky aliasing warnings issued by gcc-4.2
38645
38646     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
38647     Signed-off-by: Detlev Zundel <dzu@denx.de>
38648
38649 commit 89cdab788f3716b335fefb60b836ebcf975aceab
38650 Author: Mike Frysinger <vapier@gentoo.org>
38651 Date:   Mon Mar 31 11:02:01 2008 -0400
38652
38653     crc32: use uint32_t rather than unsigned long
38654
38655     The envcrc.c does sizeof(unsigned long) when calculating the crc, but
38656     this is done with the build toolchain instead of the target tool
38657     chain, so if the build is a 64bit system but the target is 32bits,
38658     the size will obviously be wrong. This converts all unsigned long
38659     stuff related to crc32 to uint32_t types. Compile tested only: output
38660     of ./tools/envcrc when run on a 32bit build system matches that of a
38661     64bit build system.
38662
38663     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38664     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38665
38666 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
38667 Author: Dirk Behme <dirk.behme@googlemail.com>
38668 Date:   Wed Mar 26 09:53:29 2008 +0100
38669
38670     ARM: Davinci: Fix DM644x timer overflow handling and cleanup
38671
38672     Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
38673
38674     Changes:
38675
38676     - Remove *_masked() functions as noted by Wolfgang
38677
38678     - Adapt register naming to recent TI spec (sprue26, March 2007)
38679
38680     - Fix reset_timer() handling
38681
38682     - 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.
38683
38684     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
38685
38686     - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
38687
38688     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
38689
38690     Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
38691
38692     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
38693     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
38694
38695 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
38696 Author: Sergei Poselenov <sposelenov@emcraft.com>
38697 Date:   Wed Apr 9 16:09:41 2008 +0200
38698
38699     Added watchdog triggering calls in the "mtest" test function.
38700
38701     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38702
38703 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
38704 Author: Yuri Tikhonov <yur@emcraft.com>
38705 Date:   Sun Apr 6 19:19:14 2008 +0200
38706
38707     lwmon5 watchdog: limit trigger rate
38708
38709     Limit the rate of h/w watch-dog triggering on the LWMON5 board by
38710     the CONFIG_WD_MAX_RATE value.
38711
38712     Note that an earlier version of this patch which used microseconds
38713     instead of ticks dis not work. The problem was that we used
38714     usec2ticks() to convert microseconds into ticks. usec2ticks() uses
38715     get_tbclk(), which in turn calls get_sys_info(). It turns out that
38716     this function does a lot of prolonged operations (like divisions)
38717     which take too much time so we do not trigger the watchdog in time,
38718     and it resets the system.
38719
38720     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38721
38722 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
38723 Author: Yuri Tikhonov <yur@emcraft.com>
38724 Date:   Mon Mar 31 10:51:37 2008 +0200
38725
38726     POST: move CONFIG_POST to Makefiles
38727
38728     Introduce the new logical option CONFIG_HAS_POST which is set when the
38729     platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
38730     to determine should the POST libs be compiled for the selected target
38731     platform, or not.
38732
38733     To avoid breaking u-boot linking process, the empty post/libpost.a file is
38734     created for platforms which do not have POSTs.
38735
38736     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38737     Signed-off-by: Wolfgang Denk <wd@denx.de>
38738
38739 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
38740 Author: Yuri Tikhonov <yur@emcraft.com>
38741 Date:   Mon Mar 31 10:49:34 2008 +0200
38742
38743     POST: preparations for moving CONFIG_POST to Makefiles
38744
38745     Remove CONFIG_POST ifdefs from the post/ source files.
38746
38747     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38748     Signed-off-by: Wolfgang Denk <wd@denx.de>
38749
38750 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
38751 Author: Stefan Roese <sr@denx.de>
38752 Date:   Tue Apr 22 14:14:20 2008 +0200
38753
38754     ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
38755
38756     This patch fixes the Canyonlands and Glacier default environment to better
38757     fit to the arch/powerpc device-tree kernels. The variables dealing with
38758     arch/ppc booting are removed, since these boards are supported only in
38759     arch/powerpc. Glacier uses the same config file as Canyonlands.
38760
38761     Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
38762
38763     Signed-off-by: Stefan Roese <sr@denx.de>
38764
38765 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
38766 Author: Stefan Roese <sr@denx.de>
38767 Date:   Tue Apr 22 14:06:42 2008 +0200
38768
38769     ppc4xx: Small coding style cleanup for the latest esd patches
38770
38771     Signed-off-by: Stefan Roese <sr@denx.de>
38772
38773 commit 79941d63bc03aed8c48d7602f18217cc200ee931
38774 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38775 Date:   Mon Apr 21 18:01:07 2008 +0200
38776
38777     ppc4xx: Update CPU strapping for PMC440 boards
38778
38779     This patch removes the temporary 'test' strapping option
38780     of the sbe command. The '667' strapping option now uses
38781     a PLB/PCI divider of 3.
38782
38783     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38784
38785 commit f00cf3193a6635355b121e90debb2f54e777e7da
38786 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38787 Date:   Mon Apr 21 14:42:21 2008 +0200
38788
38789     ppc4xx: Remove unused APC405 strataflash driver
38790
38791     The APC405 board support has been migrated to use the common
38792     CFI flash driver.
38793
38794     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38795
38796 commit 1c686676a86473bbd92151f0544e109413f6ed06
38797 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38798 Date:   Mon Apr 21 14:42:17 2008 +0200
38799
38800     ppc4xx: Update APC405 configuration
38801
38802     - enable esd's auto_update mechanism
38803     - support alternative flash layout on rev. 1.8 boards
38804     - update default environment
38805     - use common CFI flash driver
38806     - coding style cleanup
38807
38808     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38809
38810 commit 0b9872515a521bf7866dc24b85ddce708e60d702
38811 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38812 Date:   Mon Apr 21 14:42:11 2008 +0200
38813
38814     ppc4xx: Update APC405 board support
38815
38816     - enable esd's auto_update mechanism
38817     - fix LCD support on latest hardware revision (uses other LCD controller)
38818     - support alternative flash layout on rev. 1.8 boards
38819     - coding style cleanup
38820
38821     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38822
38823 commit 83975d02e225e231960784972e7820a8b303756b
38824 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38825 Date:   Mon Apr 21 14:42:06 2008 +0200
38826
38827     ppc4xx: update esd's common auto_update code for 405 boards
38828
38829     - Coding style cleanup (long lines)
38830     - improve handling of protected flash regions
38831     - remove dead code
38832
38833     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38834
38835 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
38836 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38837 Date:   Mon Apr 21 14:41:59 2008 +0200
38838
38839     ppc4xx: Update esd's common LCD code for 405 boards
38840
38841     - Coding style cleanup (long lines)
38842     - Add s1d13505 support
38843     - Make some functions return a result code instead of void
38844
38845     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38846
38847 commit dea68189424c3f1242427a8146a3861bf093173c
38848 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38849 Date:   Mon Apr 21 11:36:55 2008 +0200
38850
38851     ppc4xx: Update FPGA image for APC405 boards
38852
38853     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38854
38855 commit 2a05b152924acfcec3b037693329e517e6d3578f
38856 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38857 Date:   Mon Apr 21 11:36:08 2008 +0200
38858
38859     ppc4xx: Update bootlogo for APC405 boards
38860
38861     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38862
38863 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
38864 Author: Stefan Roese <sr@denx.de>
38865 Date:   Fri Apr 18 16:41:31 2008 +0200
38866
38867     ppc4xx: Add dcache_enable() for 440
38868
38869     dcache_enable() was missing for 440 and the patch
38870     017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
38871     "] behavior uses this function.
38872
38873     Note: Currently the cache handling functions like
38874     d/icache_disable/enable() are NOP's on 440. This may be changed in the
38875     future.
38876
38877     Signed-off-by: Stefan Roese <sr@denx.de>
38878
38879 commit a49e0d177a0749614b316ec847fb623f09c82c07
38880 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38881 Date:   Mon Apr 21 11:19:04 2008 +0200
38882
38883     video: Add missing free for logo memory
38884
38885     This patch adds two missing free()s.
38886
38887     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38888
38889 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
38890 Author: Troy Kisky <troy.kisky@boundarydevices.com>
38891 Date:   Mon Sep 24 16:41:43 2007 -0700
38892
38893     PATCH - Fix oob data copied into supplied buffer
38894
38895     This patch correctly sets the oobavail variable
38896     and fixes a bug where the oob data was not valid when
38897     there where multiple groups in oobfree.
38898
38899     First segment fixes a typo
38900     Second segment fixes a bug where oob data may be copied incorrectly.
38901     Third segment adds an error message when exiting due to write protect.
38902     Forth segment fixes a bug where oobavail may be set incorrectly.
38903
38904     Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
38905
38906 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
38907 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38908 Date:   Fri Apr 18 17:24:32 2008 +0200
38909
38910     ppc4xx: Fix sys_get_info() for 405GP(r)
38911
38912     This patch assigns the correct EBC clock for 405GP(r) CPUs
38913     to PPC4xx_SYS_INFO structure. Without this patch U-Boot
38914     uses an uninitialized EBC clock in its startup message.
38915
38916     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38917
38918 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
38919 Author: Wolfgang Denk <wd@denx.de>
38920 Date:   Sun Apr 20 15:39:38 2008 -0700
38921
38922     Makefile: remove nand_spl/System.map when cleaning up.
38923
38924 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
38925 Author: Wolfgang Denk <wd@denx.de>
38926 Date:   Sun Apr 20 15:35:52 2008 -0700
38927
38928     MAKEALL: sort entries / lists.
38929
38930     Signed-off-by: Wolfgang Denk <wd@denx.de>
38931
38932 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
38933 Author: Kumar Gala <galak@kernel.crashing.org>
38934 Date:   Fri Apr 18 11:29:01 2008 -0500
38935
38936     85xx: Fix size of cpu-release-addr property
38937
38938     The cpu-release-addr is defined as always being a 64-bit quanity regardless
38939     if we are running on a 32-bit or 64-bit machine.
38940
38941 commit 88353a985109562a639b2f8a0c90d77011bfe374
38942 Author: Timur Tabi <timur@freescale.com>
38943 Date:   Fri Apr 4 11:15:58 2008 -0500
38944
38945     Fix calculation of I2C clock for some 85xx chips
38946
38947     Some 85xx chips use CCB as the base clock for the I2C.  Some use CCB/2, and
38948     some use CCB/3.  There is no pattern that can be used to determine which
38949     chips use which frequency, so the only way to determine is to look up the
38950     actual SOC designation and use the right value for that SOC.
38951
38952     Update immap_85xx.h to include the GUTS PORDEVSR2 register.
38953
38954     Signed-off-by: Timur Tabi <timur@freescale.com>
38955
38956 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
38957 Author: Wolfgang Denk <wd@denx.de>
38958 Date:   Fri Apr 18 11:44:27 2008 -0700
38959
38960     Fix build breakage casued by commit c0559be371b2
38961
38962         Change env_get_char from a global function ptr to a function.
38963
38964     Signed-off-by: Wolfgang Denk <wd@denx.de>
38965
38966 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
38967 Author: Wolfgang Denk <wd@denx.de>
38968 Date:   Fri Apr 18 10:53:41 2008 -0700
38969
38970     Coding Style cleanup, update CHANGELOG.
38971
38972     Signed-off-by: Wolfgang Denk <wd@denx.de>
38973
38974 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
38975 Author: Mike Frysinger <vapier@gentoo.org>
38976 Date:   Tue Apr 8 14:00:57 2008 -0400
38977
38978     Add support for u-boot in svn and localversion-* files
38979
38980     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38981
38982 commit d23ff6827decf121461fbc5622612fd7effe207e
38983 Author: Guennadi Liakhovetski <lg@denx.de>
38984 Date:   Thu Apr 3 17:04:22 2008 +0200
38985
38986     MX31ADS network and flash updates
38987
38988     This patch allows U-Boot to use buffered writes to the Spansion NOR
38989     flash installed on this board, and eliminates long delays in network
38990     transfers after the board startup.
38991
38992     Also modify flash layout to embed main and redundant environment
38993     blocks in the U-Boot image.
38994
38995     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
38996
38997 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
38998 Author: Guennadi Liakhovetski <lg@denx.de>
38999 Date:   Mon Apr 14 10:53:12 2008 +0200
39000
39001     Support for the MX31ADS evaluation board from Freescale
39002
39003     This patch adds support for the MX31ADS evaluation board from Freescale,
39004     initialization code is copied from RedBoot sources, also provided by
39005     Freescale.
39006
39007     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39008
39009 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
39010 Author: Stefan Roese <sr@denx.de>
39011 Date:   Tue Apr 8 10:33:29 2008 +0200
39012
39013     ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
39014
39015     Signed-off-by: Stefan Roese <sr@denx.de>
39016
39017 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
39018 Author: Stefan Roese <sr@denx.de>
39019 Date:   Tue Apr 8 10:33:28 2008 +0200
39020
39021     ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
39022
39023     Signed-off-by: Stefan Roese <sr@denx.de>
39024
39025 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
39026 Author: Stefan Roese <sr@denx.de>
39027 Date:   Tue Apr 8 10:33:27 2008 +0200
39028
39029     ppc4xx: Add Glacier NAND booting target
39030
39031     Signed-off-by: Stefan Roese <sr@denx.de>
39032
39033 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
39034 Author: Stefan Roese <sr@denx.de>
39035 Date:   Tue Apr 8 10:31:00 2008 +0200
39036
39037     nand_spl: Update nand_spl to support 2k page size NAND devices
39038
39039     This patch adds support for booting from 2k page sized NAND device
39040     (e.g. Micron 29F2G08AAC).
39041
39042     Tested on AMCC Canyonlands.
39043
39044     Signed-off-by: Stefan Roese <sr@denx.de>
39045
39046 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
39047 Author: Anatolij Gustschin <agust@denx.de>
39048 Date:   Thu Apr 17 18:18:00 2008 +0200
39049
39050     Fix crash on sequoia in ppc_4xx_eth_init
39051
39052     Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
39053     with cache enabled (TLB Parity exeption). This patch
39054     fixes the problem.
39055
39056     Signed-off-by: Anatolij Gustschin <agust@denx.de>
39057
39058 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
39059 Author: Anatolij Gustschin <agust@denx.de>
39060 Date:   Thu Apr 17 18:15:27 2008 +0200
39061
39062     ppc4xx: Fix crash on sequoia with cache enabled
39063
39064     Currently U-Boot crashes on sequoia board in CPU POST if
39065     cache is enabled (CONFIG_4xx_DCACHE defined). The cache
39066     won't be disabled by change_tlb before CPU POST because
39067     there is an insufficient adress range check since
39068     CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
39069     this problem.
39070
39071     Signed-off-by: Anatolij Gustschin <agust@denx.de>
39072
39073 commit 43c509254fab375c49936498da944658117ed07c
39074 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
39075 Date:   Thu Apr 17 23:35:13 2008 +0900
39076
39077     Use jr as register jump instruction
39078
39079     Current assembler codes are inconsistent in the way of register jump
39080     instruction usage; some use jr, some use j. Of course GNU as allows both
39081     usages, but as can be expected from `Jump Register' the mnemonic `jr' is
39082     more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
39083     at all.
39084
39085     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
39086
39087 commit 7ce63709828d37b08866e537339a169bd0db2bd3
39088 Author: Guennadi Liakhovetski <lg@denx.de>
39089 Date:   Tue Apr 15 14:15:30 2008 +0200
39090
39091     RTC driver for MC13783
39092
39093     MC13783 is a multifunction IS with an SPI interface to the host. This
39094     driver handles the RTC controller in this chip.
39095
39096     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39097
39098 commit 38254f45b0b412332726c90d3184ad47479fcffb
39099 Author: Guennadi Liakhovetski <lg@denx.de>
39100 Date:   Tue Apr 15 14:14:25 2008 +0200
39101
39102     New i.MX31 SPI driver
39103
39104     This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
39105     only implemented and tested on i.MX31, can with a modified register layout
39106     and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
39107     controllers too.
39108
39109     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39110
39111 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
39112 Author: Magnus Lilja <lilja.magnus@gmail.com>
39113 Date:   Tue Apr 15 19:09:10 2008 +0200
39114
39115     Fix name of i.MX31 boards in config file header
39116
39117     Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
39118
39119     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
39120
39121 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
39122 Author: Mike Frysinger <vapier@gentoo.org>
39123 Date:   Sun Apr 13 19:42:19 2008 -0400
39124
39125     allow ports to override go behavior
39126
39127     Split the arch-specific logic out of the common go code and into a dedicated
39128     weak function called do_go_exec() that lives in cpu directories.  This will
39129     need review from i386/nios people to make sure I didn't break them.
39130
39131 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
39132 Author: Mike Frysinger <vapier@gentoo.org>
39133 Date:   Sun Apr 13 19:42:18 2008 -0400
39134
39135     allow ports to override bootelf behavior
39136
39137     Change the bootelf setup function into a dedicated weak function called
39138     do_bootelf_exec.  This way ports can control the behavior however they
39139     like before/after calling the ELF entry point.
39140
39141 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
39142 Author: Ulf Samuelsson <ulf@atmel.com>
39143 Date:   Sat Apr 12 20:56:03 2008 +0200
39144
39145     Reorder ARM boards in Makefile
39146
39147     Rearrange ARM boards in Makefile so that ARM926EJ-S boards
39148     are no longer under ARM92xT header.
39149
39150     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
39151     Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39152
39153 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
39154 Author: Ulf Samuelsson <ulf@atmel.com>
39155 Date:   Sat Apr 12 20:29:44 2008 +0200
39156
39157     Clean up dataflash partitioning
39158
39159     This patch removes the board dependent parts from
39160     "drivers/mtd/dataflash.c".
39161     Each board relying on this, will have the appropriate
39162     code in a new file, "partition.c" in the board directory.
39163     board Makefiles updated to use the file.
39164
39165     The dataflash partitions are aligned on sector/page boundaries.
39166
39167     The CONFIG_NEW_DF_PARTITION was used to create named partitions
39168     This is now the default operation, and the CONFIG variable is removed.
39169
39170     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
39171
39172 commit 51ecde946fec511a16346e498204ca10ad71080d
39173 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39174 Date:   Sat Apr 12 14:08:45 2008 +0200
39175
39176     gitignore: udpate stgit generated and .patch file
39177
39178     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39179
39180 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
39181 Author: Wolfgang Denk <wd@denx.de>
39182 Date:   Fri Apr 18 00:15:36 2008 -0700
39183
39184     Get rid of redundant copy of renamed header file.
39185
39186     Signed-off-by: Wolfgang Denk <wd@denx.de>
39187
39188 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
39189 Author: Vlad Lungu <vlad@comsys.ro>
39190 Date:   Fri Apr 11 21:20:14 2008 +0300
39191
39192     Fix dependency generation for older gcc versions
39193
39194      With gcc 3.3.3 at least, compilation fails with
39195
39196     Generating include/autoconf.mk
39197     gcc: compilation of header file requested
39198     make: *** [include/autoconf.mk] Error 1
39199
39200     since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
39201
39202     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
39203
39204 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
39205 Author: Marian Balakowicz <m8@semihalf.com>
39206 Date:   Fri Apr 11 11:07:49 2008 +0200
39207
39208     Restore the ability to continue booting after legacy image overwrite
39209
39210     Before new uImage code was merged, bootm code allowed for the kernel image to
39211     get overwritten during decompresion. new uImage introduced a check for image
39212     overwrites and refused to boot the image that got overwritten. This patch
39213     restores the old behavior. It also adds a warning when the image overwriten is
39214     a multi-image file, because in such case accessing componentes other than the
39215     first one will fail.
39216
39217     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39218
39219 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
39220 Author: Marian Balakowicz <m8@semihalf.com>
39221 Date:   Fri Apr 11 11:07:43 2008 +0200
39222
39223     ppc: Fix ftd_blob variable init when processing raw blob
39224
39225     Set fdt_blob variable before its value is printed out.
39226
39227     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39228
39229 commit 3d36be030043cd841a2551d00a395135e363a64b
39230 Author: Jason Wessel <jason.wessel@windriver.com>
39231 Date:   Thu Apr 10 14:30:16 2008 -0500
39232
39233     Remove all the search paths from the .lds files.
39234
39235     The cross compiler is responsible for providing the correct libraries
39236     and the logic to find the linking libraries.
39237
39238     Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
39239
39240 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
39241 Author: Bartlomiej Sieka <tur@semihalf.com>
39242 Date:   Mon Apr 14 15:44:16 2008 +0200
39243
39244     Boot-related documentation update
39245
39246     - document 'bootm_low' and 'bootm_size' environment variables
39247     - update inaccurate CFG_BOOTMAPSZ entry
39248
39249     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39250
39251 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
39252 Author: Guennadi Liakhovetski <lg@denx.de>
39253 Date:   Wed Apr 9 17:34:08 2008 +0200
39254
39255     Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
39256
39257     Restore logic reverted by commit
39258
39259     commit 80767a6cead9990d9e77e62be947843c2c72f469
39260     Author: Peter Pearse <peter.pearse@arm.com>
39261     Date:   Wed Sep 5 16:04:41 2007 +0100
39262
39263         Changed API name to coloured_led.h
39264         Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
39265         Tidied other cpu/arm920t/start.S code
39266
39267     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39268
39269 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
39270 Author: Mike Frysinger <vapier@gentoo.org>
39271 Date:   Tue Apr 8 10:24:24 2008 -0400
39272
39273     Remove conflicting NAND ID
39274
39275     There are two NAND entries with ID 0xDC and this obviously causes problems.
39276     In the kernel, they punted the first entry, so we should do the same.
39277
39278     See this upstream e-mail for more info:
39279     http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
39280
39281     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
39282     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39283
39284 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
39285 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
39286 Date:   Tue Apr 8 16:20:35 2008 +0900
39287
39288     cpu/mips/cpu.c: Fix flush_cache bug
39289
39290     Cache operations have to take line address (addr), not start_addr.
39291     I noticed this bug when debugging ping failure.
39292
39293     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
39294
39295 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
39296 Author: Martin Krause <martin.krause@tqs.de>
39297 Date:   Thu Apr 3 14:29:01 2008 +0200
39298
39299     TQM5200: fix default IDE reset level
39300
39301     Before the first call of ide_reset(), the level of the IDE reset
39302     signal on the TQM5200 is low (reset asserted). This patch sets the
39303     default value to high (reset not asserted).
39304
39305     Currently this patch fixes no real problem, but it is cleaner to
39306     assert the reset signal only on demand, and not permanently.
39307
39308     Signed-off-by: Martin Krause <martin.krause@tqs.de>
39309
39310 commit c61e033d6e8abb7b4060ee36060961e1399f6079
39311 Author: Detlev Zundel <dzu@denx.de>
39312 Date:   Thu Apr 3 14:18:48 2008 +0200
39313
39314     mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
39315
39316     Signed-off-by: Detlev Zundel <dzu@denx.de>
39317
39318 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
39319 Author: Detlev Zundel <dzu@denx.de>
39320 Date:   Thu Apr 3 14:18:47 2008 +0200
39321
39322     mgcoge, mgsuv: rename 'addcon' to 'addcons'
39323
39324     The latter name with 13 users is already established, so we will use
39325     that.
39326
39327     Signed-off-by: Detlev Zundel <dzu@denx.de>
39328
39329 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
39330 Author: Martin Krause <martin.krause@tqs.de>
39331 Date:   Thu Apr 3 13:37:56 2008 +0200
39332
39333     IDE: fix bug in reset sequence
39334
39335     According to the ata (ata5) specification the RESET- signal
39336     shall be asserted for at least 25 us. Without this patch,
39337     the RESET- signal is asserted on some boards for only < 1 us
39338     (e. g. on the TQM5200). This patch adds a general delay of
39339     25 us to the RESET- signal.
39340
39341     Without this patch a Platinum 4 GiB CF card is not recognised
39342     properly on boards with a TQM5200 (STK52xx, TB5200).
39343
39344     Signed-off-by: Martin Krause <martin.krause@tqs.de>
39345
39346 commit 813bea96a960916c72b4a3a7df840151529c26ce
39347 Author: Sascha Laue <Sascha.Laue@gmx.biz>
39348 Date:   Thu Apr 3 14:43:11 2008 +0200
39349
39350     lwmon5: disable CONFIG_ZERO_BOOTDELAY
39351
39352     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
39353
39354 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
39355 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39356 Date:   Wed Apr 2 08:03:58 2008 +0200
39357
39358     ds174x: Fix warning on return in rtc_get and rtc_set functions
39359
39360     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39361
39362 commit a253b38bf50c85227c33ca0febc870ee49d1588e
39363 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39364 Date:   Wed Apr 2 08:03:57 2008 +0200
39365
39366     cmd_log.c: Fix assignment differ in signedness
39367
39368     In function 'logbuff_init_ptrs':
39369     cmd_log.c:79: warning: pointer targets in assignment differ in signedness
39370
39371     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39372
39373 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
39374 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
39375 Date:   Wed Apr 2 11:04:43 2008 +0530
39376
39377     Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
39378
39379     Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
39380
39381 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
39382 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39383 Date:   Tue Apr 1 14:07:10 2008 +0200
39384
39385     s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
39386
39387     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39388
39389 commit c08fb3ea36d19b1640b7906264581e9105534399
39390 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
39391 Date:   Tue Apr 15 10:24:14 2008 +0200
39392
39393     Additional PCI IDs for IDE and network controllers
39394
39395     These PCI IDs are required by the Linkstation platforms.
39396
39397     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
39398
39399 commit c0559be371b2a64b1a817088c3308688e2182f93
39400 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
39401 Date:   Mon Apr 14 23:01:50 2008 +0200
39402
39403     Change env_get_char from a global function ptr to a function.
39404
39405     This avoids an early global data reference.
39406
39407     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
39408
39409 commit 3e0f331c05d72f140715c1e9fca991927e44d422
39410 Author: Guennadi Liakhovetski <lg@denx.de>
39411 Date:   Tue Apr 29 12:35:08 2008 +0000
39412
39413     Clean up smsc911x driver
39414
39415     Replace direct register address derefencing with accessor functions.
39416     Restrict explicitly 32-bit bus-width, extend affected configurations
39417     respectively.
39418
39419     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39420     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39421
39422 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
39423 Author: Sascha Hauer <s.hauer@pengutronix.de>
39424 Date:   Tue Apr 15 00:08:20 2008 -0400
39425
39426     This patch adds a driver for the following smsc network controllers:
39427     LAN9115
39428     LAN9116
39429     LAN9117
39430     LAN9215
39431     LAN9216
39432     LAN9217
39433
39434     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
39435     Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
39436     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39437
39438 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
39439 Author: Sascha Laue <Sascha.Laue@gmx.biz>
39440 Date:   Tue Apr 1 15:13:03 2008 +0200
39441
39442     Fix watchdog POST for lwmon5
39443
39444     If the hardware watchdog detects a voltage error, the watchdog sets
39445     GPIO62 to low. The watchdog POST has to detect this low level.
39446
39447     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
39448
39449 commit 24b448448a917e52806f82660a5c9d47608894fb
39450 Author: Dave Liu <r63238@freescale.com>
39451 Date:   Tue Apr 1 15:22:11 2008 +0800
39452
39453     ata: update the libata.h from ata.h of linux kernel
39454
39455     Current libata.h of u-boot is out of sync from linux kernel,
39456     this patch make it be consistent with linux kernel.
39457
39458     Signed-off-by: Dave Liu <daveliu@freescale.com>
39459     Signed-off-by: Tor Krill <tor@excito.com>
39460
39461 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
39462 Author: Kumar Gala <galak@kernel.crashing.org>
39463 Date:   Mon Mar 31 11:59:27 2008 -0500
39464
39465     Allow use of ARCH=powerpc when building
39466
39467     The linux kernel is now mostly ARCH=powerpc, so to make life easier
39468     allow use to use ARCH=powerpc and convert it to ARCH=ppc.
39469
39470     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39471
39472 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
39473 Author: Kyungmin Park <kmpark@infradead.org>
39474 Date:   Mon Mar 31 10:40:54 2008 +0900
39475
39476     Add apollon board MAINTAINERS entry
39477
39478     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
39479
39480 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
39481 Author: Kyungmin Park <kmpark@infradead.org>
39482 Date:   Mon Mar 31 10:40:36 2008 +0900
39483
39484     Fix OneNAND read
39485
39486     It should access with 16-bit instead of 8-bit
39487
39488     Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
39489
39490     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
39491
39492 commit a9da2b41079d230db3a5641625311983f85ce1fb
39493 Author: Kyungmin Park <kmpark@infradead.org>
39494 Date:   Mon Mar 31 10:40:19 2008 +0900
39495
39496     Fix OneNAND erase command
39497
39498     It mis-calculates the block address.
39499     Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
39500
39501     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
39502
39503 commit 61525f2ffa156665a66908fda47dbf29d65ea579
39504 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
39505 Date:   Mon Mar 31 01:32:15 2008 +0200
39506
39507     Support for LinkStation / KuroBox HD and HG PPC models
39508
39509     This patch is based on the port by Mihai Georgian (see linkstation.c for
39510     Copyright information) and implements support for LinkStation / KuroBox HD
39511     and HG PPC models from Buffalo Technology, whereby HD is deactivated at
39512     the moment, pending network driver fixing.
39513
39514     Notice to users: this is pretty much a barebone port. Support for network
39515     on HG models is already in the U-Boot mainline, but you might also want
39516     patches to switch fan / phy modes depending on the negotiated ethernet
39517     parameters. This patch also doesn't support console switching, booting EM
39518     mode, Buffalo specific ext2 magic number. So, if you want to use any of
39519     those, you need additional patches. Otherwise this patche provides a fully
39520     functional u-boot with a network console on your system.
39521
39522     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39523
39524 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
39525 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39526 Date:   Sun Mar 30 01:22:13 2008 -0500
39527
39528     Add CONFIG_MII_INIT support to related boards
39529
39530     Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
39531     cmd_init.c. Add CONFIG_MII_INIT to board configuration files
39532     that use mii_init() in cmd_init.c.
39533
39534     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39535     Acked-by: Ben Warren <biggerbadderben@gmail.com>
39536
39537 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
39538 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39539 Date:   Sun Mar 30 01:19:06 2008 -0500
39540
39541     Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
39542
39543     Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
39544     CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
39545
39546     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39547
39548 commit e99ccb488181d012248c6be30b2093e950319fc5
39549 Author: Kumar Gala <galak@kernel.crashing.org>
39550 Date:   Thu Mar 27 11:46:38 2008 -0500
39551
39552     Introduce phys_size_t and move phys_addr_t into asm/types.h
39553
39554     Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
39555     that have larger physical addresses like 44x, 85xx, and 86xx.
39556
39557     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39558
39559 commit 20a14a42a25f72e379f38460b8a8484667536795
39560 Author: Andy Fleming <afleming@freescale.com>
39561 Date:   Wed Apr 2 16:19:07 2008 -0500
39562
39563     Rename include/md5.h to include/u-boot/md5.h
39564
39565     Some systems have md5.h installed in /usr/include/. This isn't the
39566     desired file (we want the one in include/md5.h). This will avoid the
39567     conflict. This fixes the host tools building problem by creating a new
39568     directory for U-Boot specific header files.
39569
39570     [Patch by Andy Fleming, modified to use separate directory by Wolfgang
39571     Denk]
39572
39573     Signed-off-by: Wolfgang Denk <wd@denx.de>
39574     Signed-off-by: Andy Fleming <afleming@freescale.com>
39575     Acked-by: Timur Tabi <timur@freescale.com>
39576
39577 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
39578 Author: Dave Liu <r63238@freescale.com>
39579 Date:   Thu Mar 27 18:51:17 2008 +0800
39580
39581     drivers: code clean up
39582
39583     Signed-off-by: Dave Liu <daveliu@freescale.com>
39584
39585 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
39586 Author: Dave Liu <r63238@freescale.com>
39587 Date:   Thu Mar 27 18:50:41 2008 +0800
39588
39589     drivers: clean up the ata_piix.h
39590
39591     Signed-off-by: Dave Liu <daveliu@freescale.com>
39592
39593 commit e8f7ba404f1409606962815ecc955a06984b08b3
39594 Author: Dave Liu <r63238@freescale.com>
39595 Date:   Thu Mar 27 18:49:56 2008 +0800
39596
39597     doc: english polishing for README.sata
39598
39599     according to gvb's suggestion, polishing for the doc.
39600
39601     Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
39602     Signed-off-by: Dave Liu <daveliu@freescale.com>
39603
39604 commit 3e3f766a5274d204780460e1879723b565296d34
39605 Author: Kumar Gala <galak@kernel.crashing.org>
39606 Date:   Wed Mar 26 18:53:28 2008 -0500
39607
39608     Fix warnings introduced by I2C bus speed setting patch
39609
39610     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39611
39612 commit 3c735e7437150e8615f26930c7819db85634276d
39613 Author: eran liberty <eran.liberty@gmail.com>
39614 Date:   Thu Mar 27 00:50:49 2008 +0100
39615
39616     Altera Stratix II support
39617
39618     Adds Support for Altera's Stratix II.
39619
39620     Within your board specific init file you will have to call
39621
39622     1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
39623     2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
39624
39625     Altera_desc* contines (for example):
39626         {
39627          Altera_StratixII,      /* part type */
39628          passive_serial,        /* interface type */
39629          1,                     /* bytes of data part can accept */
39630          (void *)(&funcs),      /* interface function table */
39631          0L,                    /* base interface address */
39632          0                      /* implementation specific cookie */
39633          }
39634
39635     funcs is the interface. It is of type altera_board_specific_func.
39636     It looks like this:
39637     altera_board_specific_func func = {
39638         pre_fn,
39639         config_fn,
39640         status_fn,
39641         done_fn,
39642         clk_fn,
39643         data_fn,
39644         abort_fn,
39645         post_fn,
39646     };
39647
39648     you will have to implement these functions, which is usually bit
39649     banging some gpio.
39650
39651     Signed-off-by: Eran Liberty <liberty@extricom.com>
39652
39653 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
39654 Author: Wolfgang Denk <wd@denx.de>
39655 Date:   Sun Apr 13 14:32:54 2008 -0700
39656
39657     Update CHANGELOG
39658
39659     Signed-off-by: Wolfgang Denk <wd@denx.de>
39660
39661 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
39662 Author: Sascha Hauer <s.hauer@pengutronix.de>
39663 Date:   Wed Mar 26 20:41:17 2008 +0100
39664
39665     Phytec Phycore-i.MX31 support
39666
39667     This patch adds support for the Phytec Phycore-i.MX31 board
39668
39669     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
39670     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39671
39672 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
39673 Author: Sascha Hauer <s.hauer@pengutronix.de>
39674 Date:   Wed Mar 26 20:41:09 2008 +0100
39675
39676     mx31 litekit support
39677
39678     This patch adds support for the mx31 litekit board
39679
39680     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
39681     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39682
39683 commit cdace0661208754a53019ea0dc7b803a040e0939
39684 Author: Sascha Hauer <s.hauer@pengutronix.de>
39685 Date:   Wed Mar 26 20:40:49 2008 +0100
39686
39687     add an i2c driver for mx31
39688
39689     This patch adds an i2c driver for Freescale i.MX processors
39690
39691     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
39692     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39693
39694 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
39695 Author: Sascha Hauer <s.hauer@pengutronix.de>
39696 Date:   Wed Mar 26 20:40:42 2008 +0100
39697
39698     core support for Freescale mx31
39699
39700     This patch adds the core support for Freescale mx31
39701
39702     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
39703     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39704
39705 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
39706 Author: Wolfgang Denk <wd@denx.de>
39707 Date:   Sun Apr 13 14:19:23 2008 -0700
39708
39709     Fix compile error
39710
39711     ...as suggested by Peter Pearse
39712
39713     Signed-off-by: Wolfgang Denk <wd@denx.de>
39714
39715 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
39716 Author: Sascha Hauer <s.hauer@pengutronix.de>
39717 Date:   Wed Mar 26 20:40:36 2008 +0100
39718
39719     Separate omap24xx specific code from arm1136
39720
39721     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
39722     to cpu/arm1136/omap24xx.
39723
39724     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
39725     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39726
39727 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
39728 Author: Mike Frysinger <vapier@gentoo.org>
39729 Date:   Tue Jan 29 18:21:05 2008 -0500
39730
39731     disable caches before booting an app for Blackfin apps
39732
39733     It isn't generally save to execute applications outside of U-Boot with caches
39734     enabled due to the way the Blackfin processor handles caches (requires
39735     software assistance).  This patch disables caches before booting an ELF or
39736     just booting raw code.  The previous discussion on the patch was that we
39737     wanted to use weaks instead, but that proved to not be feasible when multiple
39738     symbols are involved, which puts us back at the ifdef solution.  I've
39739     minimized the ugliness by moving the setup step outside of the main function.
39740
39741     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39742
39743 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
39744 Author: Wolfgang Denk <wd@denx.de>
39745 Date:   Sun Apr 13 10:03:54 2008 -0700
39746
39747     ppc: Get rid of unused machine type definitions
39748
39749     Signed-off-by: Wolfgang Denk <wd@denx.de>
39750
39751 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
39752 Author: Wolfgang Denk <wd@denx.de>
39753 Date:   Sun Apr 13 09:59:26 2008 -0700
39754
39755     Coding Style cleanup; update CHANGELOG
39756
39757     Signed-off-by: Wolfgang Denk <wd@denx.de>
39758
39759 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
39760 Author: Larry Johnson <lrj@acm.org>
39761 Date:   Thu Feb 21 13:58:11 2008 -0500
39762
39763     LM73 bug fix for negative temperatures and cleanup
39764
39765     When the LM73 temperature sensor measures a temperature below 0 C, the
39766     current driver does not perform sign extension, so the result returned is
39767     512 C too high.  This patch fixes the problem, and does general cleanup
39768     of the code.
39769
39770     Signed-off-by: Larry Johnson <lrj@acm.org>
39771
39772 commit 96ef831f713289afba19da0c8f905e99da2b23e0
39773 Author: Guennadi Liakhovetski <lg@denx.de>
39774 Date:   Thu Apr 3 13:36:02 2008 +0200
39775
39776     cfi_flash: Support buffered writes on non-standard Spansion NOR flash
39777
39778     Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
39779     series require different addresses for buffered write commands. Define a
39780     configuration option to support buffered writes on those chips. A more
39781     elegant solution would be to automatically detect those chips by parsing
39782     their CFI records, but that would require introduction of a fixup table
39783     into the cfi_flash driver.
39784
39785     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39786
39787 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
39788 Author: Lee Nipper <lee.nipper@freescale.com>
39789 Date:   Thu Apr 10 09:35:06 2008 -0500
39790
39791     mpc83xx: Update DIMM data bus width test to support 40-bit width
39792
39793     32-bit wide ECC memory modules report 40-bit width.
39794     Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
39795
39796     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
39797     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39798
39799 commit 5fb5a689d822ca61e814bd523fc930af335242fa
39800 Author: Dave Liu <r63238@freescale.com>
39801 Date:   Mon Mar 31 17:05:12 2008 +0800
39802
39803     mpc83xx: Fix the bug of serdes initialization
39804
39805     Currently the serdes will not be initializated due to the
39806     partid's error.
39807
39808     Signed-off-by: Dave Liu <daveliu@freescale.com>
39809     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39810
39811 commit 2000784818f043db7ca60e2846a72d097766b894
39812 Author: Dave Liu <r63238@freescale.com>
39813 Date:   Thu Apr 3 16:28:29 2008 +0800
39814
39815     mpc83xx: Fix the SATA clock setting of 837x targets
39816
39817     Currently the SATA controller clock is configured as CSB clock,
39818     usually the CSB clock is 400/333/266MHz.
39819
39820     However, The SATA IP block is only guaranteed to operate up to
39821     200 MHz as stated in the HW spec.
39822
39823     The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
39824
39825     This patch makes the SATA clock as half of CSB clock.
39826
39827     Signed-off-by: Dave Liu <daveliu@freescale.com>
39828     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39829
39830 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
39831 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39832 Date:   Wed Apr 2 13:41:21 2008 +0200
39833
39834     mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
39835
39836     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39837     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39838
39839 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
39840 Author: Kumar Gala <galak@kernel.crashing.org>
39841 Date:   Wed Apr 9 04:20:57 2008 -0500
39842
39843     85xx: Fix detection of MP cpu spin up
39844
39845     We were looking at the wrong memory offset to determine of a secondary
39846     cpu had been spun up or not.  Also added a warning message if the
39847     all the secondary cpus we expect don't spin up.
39848
39849     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39850
39851 commit f3e04bdc3f360c66801a9048956e61e41a16edba
39852 Author: Kumar Gala <galak@kernel.crashing.org>
39853 Date:   Tue Apr 8 10:45:50 2008 -0500
39854
39855     85xx: Use SVR_SOC_VER instead of SVR_VER
39856
39857     The recent change introduced by 'Update SVR numbers to expand support'
39858     now requires that we use SVR_SOC_VER instead of SVR_VER if we want
39859     to compare against a particular processor id.
39860
39861     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39862
39863 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
39864 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
39865 Date:   Fri Apr 11 10:00:35 2008 -0400
39866
39867     ppc4xx: Fix power mgt definitions for PPC440
39868
39869     Corrected DCR addresses of PPC440EP power management registers.
39870
39871     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
39872
39873 commit 950a392464e616b4590bc4501be46e2d7d162dea
39874 Author: Wolfgang Denk <wd@denx.de>
39875 Date:   Fri Apr 11 15:11:26 2008 +0200
39876
39877     Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
39878
39879     Reverting became necessary after it turned out that the patches in
39880     the u-boot-arm repo were modified, and in some cases corrupted.
39881
39882     This reverts the following commits:
39883
39884         066bebd6353e33af3adefc3404560871699e9961
39885         7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
39886         c88ae20580b2b01487b4cdcc8b2a113f551aee36
39887         a147e56f03871bba4f05058d5e04ce7deb010b04
39888         d6674e0e2a6a1f033945f78838566210d3f28c95
39889         8c8463cce44d849e37744749b32d38e1dfb12e50
39890         c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
39891         8bf69d81782619187933a605f1a95ee1d069478d
39892         8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
39893         a574a73852a527779234e73e17e7597fd8128882
39894         1377b5583a48021d983e1fd565f7d40c89e84d63
39895         1704dc20917b4f71e373e2c888497ee666d40380
39896
39897     Signed-off-by: Wolfgang Denk <wd@denx.de>
39898
39899 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
39900 Author: Stefan Roese <sr@denx.de>
39901 Date:   Fri Apr 11 07:02:29 2008 +0200
39902
39903     ppc4xx: Update Kilauea defconfig to use device-tree booting as default
39904
39905     This patch reworks the default environment on Kilauea/Haleakala. Now
39906     "net_nfs" for exmaple uses the device-tree style booting formerly know
39907     as "net_nfs_fdt". Also the addresses in RAM were changed because of the
39908     new image booting support, which check for image overwriting. So the
39909     addresses needed togeet adjusted.
39910
39911     Signed-off-by: Stefan Roese <sr@denx.de>
39912
39913 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
39914 Author: Stefan Roese <sr@denx.de>
39915 Date:   Wed Apr 9 11:58:02 2008 +0200
39916
39917     ppc4xx: Fix Canyonlands default environment to work with new image support
39918
39919     Since the new image support checks for image overwriting, the default
39920     environment needs to get adjusted to use correct addresses.
39921
39922     Signed-off-by: Stefan Roese <sr@denx.de>
39923
39924 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
39925 Author: Stefan Roese <sr@denx.de>
39926 Date:   Wed Apr 9 11:54:11 2008 +0200
39927
39928     ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
39929
39930     The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
39931     closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
39932     on 4xx systems _start currently cannot be used for this calculation.
39933     So revert back to the original version for now.
39934
39935     Signed-off-by: Stefan Roese <sr@denx.de>
39936
39937 commit f91374f65eae8b42cac329e06ba1c54728278efb
39938 Author: Michal Simek <monstr@monstr.eu>
39939 Date:   Fri Mar 28 12:49:52 2008 +0100
39940
39941     microblaze: Sort microblaze boards in MAKEALL script
39942
39943 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
39944 Author: Michal Simek <monstr@monstr.eu>
39945 Date:   Fri Mar 28 11:58:45 2008 +0100
39946
39947     microblaze: clean microblaze_config.mk
39948
39949     FLAGS are generated by U-BOOT generator.
39950     Board specific FLAGS are in board directory
39951
39952     Signed-off-by: Michal Simek <monstr@monstr.eu>
39953
39954 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
39955 Author: Michal Simek <monstr@monstr.eu>
39956 Date:   Fri Mar 28 12:47:19 2008 +0100
39957
39958     microblaze: xupv2p fix config file for supporting FDT
39959
39960 commit 188dc16b189143573b1ed90e584bf866d75cdd12
39961 Author: Michal Simek <monstr@monstr.eu>
39962 Date:   Fri Mar 28 11:53:02 2008 +0100
39963
39964     microblaze: ml401 fix config file for supporting FDT
39965
39966     Signed-off-by: Michal Simek <monstr@monstr.eu>
39967
39968 commit 4c6a6f02e239236261333759997eeaf86b30b54c
39969 Author: Michal Simek <monstr@monstr.eu>
39970 Date:   Fri Mar 28 11:22:48 2008 +0100
39971
39972     microblaze: ml401 - add ifdef for GPIO
39973
39974     Signed-off-by: Michal Simek <monstr@monstr.eu>
39975
39976 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
39977 Author: Michal Simek <monstr@monstr.eu>
39978 Date:   Fri Mar 28 12:13:03 2008 +0100
39979
39980     microblaze: clean uart16550 and uartlite handling
39981
39982     Signed-off-by: Michal Simek <monstr@monstr.eu>
39983
39984 commit 0b20f250877441460fb79d72192954abe8498834
39985 Author: Michal Simek <monstr@monstr.eu>
39986 Date:   Fri Mar 28 11:08:31 2008 +0100
39987
39988     microblaze: Add Emaclite driver to Makefile
39989
39990     Signed-off-by: Michal Simek <monstr@monstr.eu>
39991
39992 commit 868cde5310f88234b774878e4f06e79df10a88b3
39993 Author: Michal Simek <monstr@monstr.eu>
39994 Date:   Fri Mar 28 11:08:01 2008 +0100
39995
39996     microblaze: Add Emac driver to Makefile
39997
39998     Signed-off-by: Michal Simek <monstr@monstr.eu>
39999
40000 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
40001 Author: Michal Simek <monstr@monstr.eu>
40002 Date:   Fri Mar 28 12:42:29 2008 +0100
40003
40004     microblaze: add Emac ethernet driver
40005
40006 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
40007 Author: Michal Simek <monstr@monstr.eu>
40008 Date:   Fri Mar 28 12:41:56 2008 +0100
40009
40010     microblaze: add Emaclite ethernet driver
40011
40012 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
40013 Author: Michal Simek <monstr@monstr.eu>
40014 Date:   Fri Mar 28 11:04:01 2008 +0100
40015
40016     microblaze: ML401 and XUPV2P remove emac and emaclite reference
40017
40018     Signed-off-by: Michal Simek <monstr@monstr.eu>
40019
40020 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
40021 Author: Michal Simek <monstr@monstr.eu>
40022 Date:   Fri Mar 28 10:59:32 2008 +0100
40023
40024     microblaze: remove old setting for emac driver
40025
40026     Signed-off-by: Michal Simek <monstr@monstr.eu>
40027
40028 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
40029 Author: Michal Simek <monstr@monstr.eu>
40030 Date:   Fri Mar 28 10:58:15 2008 +0100
40031
40032     microblaze: Clean Makefile from ancient emac driver
40033
40034     Signed-off-by: Michal Simek <monstr@monstr.eu>
40035
40036 commit ab68f921d9c741830f721c3d879c13a0c5597183
40037 Author: Daniel Hellstrom <daniel@gaisler.com>
40038 Date:   Fri Mar 28 10:20:43 2008 +0100
40039
40040     SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
40041
40042     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40043
40044 commit 6ed8a43a19bb0275501bc286007daafa923552cf
40045 Author: Daniel Hellstrom <daniel@gaisler.com>
40046 Date:   Wed Mar 26 23:38:48 2008 +0100
40047
40048     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.
40049
40050     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40051
40052 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
40053 Author: Daniel Hellstrom <daniel@gaisler.com>
40054 Date:   Wed Mar 26 23:34:47 2008 +0100
40055
40056     SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
40057
40058     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40059
40060 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
40061 Author: Daniel Hellstrom <daniel@gaisler.com>
40062 Date:   Fri Mar 28 10:06:52 2008 +0100
40063
40064     SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
40065
40066     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40067
40068 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
40069 Author: Daniel Hellstrom <daniel@gaisler.com>
40070 Date:   Wed Mar 26 23:26:48 2008 +0100
40071
40072     SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
40073
40074     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40075
40076 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
40077 Author: Daniel Hellstrom <daniel@gaisler.com>
40078 Date:   Fri Mar 28 10:00:33 2008 +0100
40079
40080     SPARC: Added support for SPARC LEON2 SOC Processor.
40081
40082     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40083
40084 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
40085 Author: Daniel Hellstrom <daniel@gaisler.com>
40086 Date:   Wed Mar 26 23:00:38 2008 +0100
40087
40088     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.
40089
40090     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40091
40092 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
40093 Author: Daniel Hellstrom <daniel@gaisler.com>
40094 Date:   Wed Mar 26 22:51:29 2008 +0100
40095
40096     SPARC: Added support for SPARC LEON3 SOC processor.
40097
40098     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40099
40100 commit bf3d8b31169546fcddb4737391e1893fb12d033a
40101 Author: Daniel Hellstrom <daniel@gaisler.com>
40102 Date:   Fri Mar 28 08:29:26 2008 +0100
40103
40104     SPARC: added SPARC support for new uimage in common code.
40105
40106     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40107
40108 commit 00ab32c85405a4fe65fd4128243086210fc90a21
40109 Author: Daniel Hellstrom <daniel@gaisler.com>
40110 Date:   Wed Mar 26 22:36:03 2008 +0100
40111
40112     SPARC: added SPARC board information to the command bdinfo.
40113
40114     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40115
40116 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
40117 Author: Daniel Hellstrom <daniel@gaisler.com>
40118 Date:   Fri Mar 28 09:47:00 2008 +0100
40119
40120     SPARC: Added generic support for SPARC architecture.
40121
40122     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40123
40124 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
40125 Author: Stefan Roese <sr@denx.de>
40126 Date:   Thu Apr 3 14:50:34 2008 +0200
40127
40128     ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
40129
40130     This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
40131     has 2 RGMII instances and we need to configure the 2nd RGMII instance
40132     for the EMAC2+3 channels.
40133
40134     Signed-off-by: Stefan Roese <sr@denx.de>
40135
40136 commit c2a545ce33b26d80337f80b533828839249fb1c9
40137 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40138 Date:   Wed Apr 2 08:03:56 2008 +0200
40139
40140     MPC8xx: Fix libfdt support introduced in commit 77ff7b74
40141
40142     fdt.c: In function 'ft_cpu_setup':
40143     fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
40144     fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
40145     fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
40146     fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
40147
40148     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40149
40150 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
40151 Author: Andy Fleming <afleming@freescale.com>
40152 Date:   Mon Mar 31 20:45:56 2008 -0500
40153
40154     Fix fdt set command to conform to dts spec
40155
40156     The fdt set command was treating properties specified as <00> and <0011>
40157     as byte streams, rather than as an array of cells.  As we already have
40158     syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
40159     we should use the <> syntax to describe arrays of cells, which are always
40160     32-bits per element.  If we imagine this likely (IMHO) scenario:
40161
40162     > fdt set /ethernet-phy@1 reg <1>
40163
40164     With the old code, this would create a bad fdt, since the reg cell would be
40165     made to be one byte in length.  But the cell must be 4 bytes, so this would
40166     break mysteriously.
40167
40168     Also, the dts spec calls for constants inside the angle brackets (<>)
40169     to conform to C constant standards as they pertain to base.
40170     Take this scenario:
40171
40172     > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
40173
40174     The old fdt command would complain that it couldn't parse that.  Or, if you
40175     wanted to specify that a certain clock ran at 33 MHz, you'd be required to
40176     do this:
40177
40178     > fdt set /mydev clock <1f78a40>
40179
40180     Whereas the new code will accept decimal numbers.
40181
40182     While I was in there, I extended the fdt command parser to handle property
40183     strings which are split across multiple arguments:
40184
40185     > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
40186     > fdt p /ethernet@f00
40187     ethernet@f00 {
40188         interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
40189     };
40190
40191     Lastly, the fdt print code was rearranged slightly to print arrays of cells
40192     if the length of the property is a multiple of 4 bytes, and to not print
40193     leading zeros.
40194
40195     Signed-off-by: Andy Fleming <afleming@freescale.com>
40196
40197 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
40198 Author: Stefan Roese <sr@denx.de>
40199 Date:   Wed Apr 2 08:39:33 2008 +0200
40200
40201     ppc4xx: Canyonlands: Init SATA/PCIe port correctly
40202
40203     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
40204     interface. This usage can be configured with the jumper J6. This patch
40205     correctly configures the SATA/PCIe PHY for SATA usage when this jumper
40206     is installed.
40207
40208     Signed-off-by: Stefan Roese <sr@denx.de>
40209
40210 commit 6fe2946f198481254a6ee9600d7456b8316a4083
40211 Author: Kim Phillips <kim.phillips@freescale.com>
40212 Date:   Fri Mar 28 17:37:49 2008 -0500
40213
40214     remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
40215
40216     finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
40217     "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
40218     started.
40219
40220     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40221
40222 commit b5873f1732b92a25690e1513b90dfb0d644f6697
40223 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40224 Date:   Tue Apr 1 07:30:51 2008 +0200
40225
40226     dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
40227
40228     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40229
40230 commit 2d934ea51f276522b532f870a820e844ff480b5b
40231 Author: Tor Krill <tor@excito.com>
40232 Date:   Fri Mar 28 15:29:45 2008 +0100
40233
40234     Add Vitesse 8601 support to TSEC driver
40235
40236     Add phy_info for Vitesse VSC8601.
40237     Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
40238
40239     Signed-off-by: Tor Krill <tor@excito.com>
40240     Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
40241     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40242
40243 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
40244 Author: Daniel Hellstrom <daniel@gaisler.com>
40245 Date:   Mon Mar 31 14:25:00 2008 +0000
40246
40247     SPARC: added SMC91111 driver in and out macros for LEON processors.
40248
40249     This patch makes SPARC/LEON processors able to read and write
40250     to the SMC91111 chip using the chip external I/O bus of the memory
40251     controller. This patchs defines the standard in and out macros
40252     expected by the SMC9111 driver.
40253
40254     To access that I/O bus one must set up the memory controller
40255     (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
40256     up this correctly when the other MCTRL parameters are set up. It
40257     can be set up from the board configuration header file.
40258
40259     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40260     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40261
40262 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
40263 Author: Stelian Pop <stelian@popies.net>
40264 Date:   Wed Mar 26 18:52:34 2008 +0100
40265
40266     Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
40267
40268     Signed-off-by: Stelian Pop <stelian@popies.net>
40269
40270 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
40271 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40272 Date:   Mon Mar 31 21:31:04 2008 +0200
40273
40274     AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
40275
40276     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40277
40278 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
40279 Author: Stelian Pop <stelian@popies.net>
40280 Date:   Wed Mar 26 18:52:33 2008 +0100
40281
40282     Add support for AT91SAM9260EK
40283
40284     Support for booting from internal DataFlash, external DataFlash card
40285     or NAND flash is available.
40286
40287     Signed-off-by: Stelian Pop <stelian@popies.net>
40288
40289 commit 1762f13b4aab88b685b1722f17dada247945624b
40290 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40291 Date:   Mon Mar 31 21:20:49 2008 +0200
40292
40293     AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
40294
40295     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40296
40297 commit 761712188b353494defb2b644491ff73d0daaa6f
40298 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40299 Date:   Mon Mar 31 21:12:17 2008 +0200
40300
40301     AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
40302
40303     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40304
40305 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
40306 Author: Stelian Pop <stelian@popies.net>
40307 Date:   Wed Mar 26 20:52:32 2008 +0100
40308
40309     Port AT91CAP9 to the new headers
40310
40311     Adapt the existing AT91CAP9 code to the new headers and APIs.
40312
40313     Signed-off-by: Stelian Pop <stelian@popies.net>
40314
40315 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
40316 Author: Stelian Pop <stelian@popies.net>
40317 Date:   Wed Mar 26 19:52:31 2008 +0100
40318
40319     Finish header files reworking
40320
40321     Replace AT91CAP9.h file with several splitted header files coming
40322     from the Linux kernel.
40323
40324     This is part 2 of the replacement: more header imports and edits.
40325
40326     Signed-off-by: Stelian Pop <stelian@popies.net>
40327
40328 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
40329 Author: Stelian Pop <stelian@popies.net>
40330 Date:   Wed Mar 26 19:52:30 2008 +0100
40331
40332     Import several header files from Linux
40333
40334     Replace AT91CAP9.h file with several splitted header files coming
40335     from the Linux kernel.
40336
40337     This is part 1 of the replacement: pristine header files import.
40338
40339     Signed-off-by: Stelian Pop <stelian@popies.net>
40340
40341 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
40342 Author: Stelian Pop <stelian@popies.net>
40343 Date:   Wed Mar 26 20:52:28 2008 +0100
40344
40345     Move at91cap9 specific files to at91sam9 directory
40346
40347     AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
40348     common infrastructure can be used. Let this infrastructure be
40349     named after the AT91SAM9 family, and move the existing AT91CAP9
40350     files to the new place.
40351
40352     Signed-off-by: Stelian Pop <stelian@popies.net>
40353
40354 commit 61106a565870ff503f92b251b94bd7afef889a04
40355 Author: Stelian Pop <stelian@popies.net>
40356 Date:   Wed Mar 26 21:52:27 2008 +0100
40357
40358     Use timer_init() instead of board supplied interrupt_init()
40359
40360     The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
40361     the board, so use timer_init() instead of interrupt_init().
40362
40363     Signed-off-by: Stelian Pop <stelian@popies.net>
40364
40365 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
40366 Author: Stelian Pop <stelian@popies.net>
40367 Date:   Wed Mar 26 21:52:36 2008 +0100
40368
40369     Cleanup DataFlash partition handling
40370
40371     DataFlash partition information has become a mess. This patch
40372     defines a single partition scheme for Atmel DataFlashes. This partition
40373     scheme will be used by all AT91CAP9 and AT91SAM9 boards.
40374
40375     Signed-off-by: Stelian Pop <stelian@popies.net>
40376
40377 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
40378 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40379 Date:   Fri Mar 28 08:47:45 2008 -0500
40380
40381     ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
40382
40383     When the version_string function in start.S is not 4-byte align,
40384     it will cause the compiler generates "unaligned opcodes detected
40385     in executable segment". This issue affects all ColdFire CPUs.
40386     By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
40387     it is not aligned.
40388
40389     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40390     Acked-by: John Rigby <jrigby@freescale.com>
40391
40392 commit bae61eefe15b4d454060a7140e49ae58322be803
40393 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40394 Date:   Tue Mar 25 15:41:15 2008 -0500
40395
40396     ColdFire: Add dspi and serial flash support for MCF5445x
40397
40398     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40399     Acked-by: John Rigby <jrigby@freescale.com>
40400
40401 commit 48ead7a7a922fceaf494e352abfab8216a41b417
40402 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40403 Date:   Tue Mar 18 17:37:01 2008 -0500
40404
40405     ColdFire: Remove R5200 board
40406
40407     This board never went into production
40408
40409     Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
40410     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40411     Acked-by: John Rigby <jrigby@freescale.com>
40412
40413 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
40414 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
40415 Date:   Thu Jan 24 14:02:32 2008 -0600
40416
40417     ColdFire: Added M5275EVB support.
40418
40419     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
40420     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40421     Acked-by: John Rigby <jrigby@freescale.com>
40422
40423 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
40424 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
40425 Date:   Mon Feb 4 15:38:20 2008 -0600
40426
40427     ColdFire: Added MCF5275 cpu support.
40428
40429     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
40430     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40431     Acked-by: John Rigby <jrigby@freescale.com>
40432
40433 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
40434 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40435 Date:   Mon Mar 17 12:14:11 2008 -0500
40436
40437     ColdFire: Define bootdelay in configuration file for M52277EVB
40438
40439     Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
40440     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40441     Acked-by: John Rigby <jrigby@freescale.com>
40442
40443 commit 77878f16cedee17161ff2336990970fffc6cea35
40444 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40445 Date:   Mon Mar 17 12:09:07 2008 -0500
40446
40447     ColdFire: Fix second memory Chipselect for M5475EVB
40448
40449     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40450     Acked-by: John Rigby <jrigby@freescale.com>
40451
40452 commit 43d60642395a550956cb21d287c8cfa563913d28
40453 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40454 Date:   Thu Mar 13 14:26:32 2008 -0500
40455
40456     ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
40457
40458     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40459     Acked-by: John Rigby <jrigby@freescale.com>
40460
40461 commit eb14ebe813a0cb5d47905228da446a5ad692473b
40462 Author: Larry Johnson <lrj@acm.org>
40463 Date:   Sun Mar 30 20:33:04 2008 -0500
40464
40465     ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
40466
40467     Signed-off-by: Larry Johnson <lrj@acm.org>
40468
40469 commit 02e3892021112f21067d9ed1d04ae4182725ba52
40470 Author: Stefan Roese <sr@denx.de>
40471 Date:   Mon Mar 31 12:20:48 2008 +0200
40472
40473     ppc4xx: Small whitespace fix of esd patches
40474
40475     Signed-off-by: Stefan Roese <sr@denx.de>
40476
40477 commit 034394abb524785047c815f00dde8cdbdc1593c5
40478 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40479 Date:   Sun Mar 30 18:52:44 2008 +0200
40480
40481     ppc4xx: Cleanup PMC440 board support
40482
40483     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40484
40485 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
40486 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40487 Date:   Sun Mar 30 18:52:06 2008 +0200
40488
40489     ppc4xx: Add ptm configuration variables for PMC440
40490
40491     Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
40492     environment variables.
40493
40494     Cleanup pci_target_init.
40495
40496     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40497
40498 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
40499 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40500 Date:   Sun Mar 30 18:01:15 2008 +0200
40501
40502     ppc4xx: Minor updates for DU440 boards
40503
40504     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40505
40506 commit d5bffeb868d6b4d462f558dac43011027b6644b7
40507 Author: Mike Frysinger <vapier@gentoo.org>
40508 Date:   Tue Feb 19 00:54:20 2008 -0500
40509
40510     Blackfin: cleanup and overhaul common board init functions
40511
40512     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40513
40514 commit b86b3416f874358acaf07519e7620cdb2145f75b
40515 Author: Mike Frysinger <vapier@gentoo.org>
40516 Date:   Tue Feb 19 00:50:58 2008 -0500
40517
40518     Blackfin: cleanup lib_blackfin/cache.c
40519
40520     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40521
40522 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
40523 Author: Mike Frysinger <vapier@gentoo.org>
40524 Date:   Sun Mar 30 15:46:13 2008 -0400
40525
40526     Blackfin: unify cpu and boot modes
40527
40528     All of the duplicated code for Blackfin processors and boot modes have been
40529     unified.  After all, the core is the same for all processors, just the
40530     peripheral set differs (which gets handled in the drivers).
40531
40532     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40533
40534 commit 880cc4381ea8360248cddcdf87a64566745a5724
40535 Author: Stelian Pop <stelian@popies.net>
40536 Date:   Wed Mar 26 22:52:35 2008 +0100
40537
40538     Fix CFG_NO_FLASH compilation.
40539
40540     Many Atmel boards have no "real" (NOR) flash on board, and rely only
40541     on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
40542     be present in a board configuration file, while still enabling flash
40543     commands like 'flinfo', 'protect', etc.
40544
40545     Signed-off-by: Stelian Pop <stelian@popies.net>
40546
40547 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
40548 Author: Mike Frysinger <vapier@gentoo.org>
40549 Date:   Tue Feb 19 00:58:13 2008 -0500
40550
40551     Blackfin: BF537-stamp: cleanup spi flash driver
40552
40553     This punts the old spi flash driver for a new/generalized one until the
40554     common one can be integrated.
40555
40556     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40557
40558 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
40559 Author: Ben Warren <biggerbadderben@gmail.com>
40560 Date:   Sun Mar 30 11:34:34 2008 -0400
40561
40562     Fix macro typo in common/cmd_mii.c
40563
40564     This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206.  I
40565     actually applied the wrong patch.
40566
40567     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40568
40569 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
40570 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40571 Date:   Sun Mar 30 16:39:53 2008 +0200
40572
40573     use correct at91rm9200 register name in m501sk board
40574
40575     This fixes a naming bug for at91rm9200 lowlevel init code:
40576     NOR boot flash is on chipselect 0, not chipselect 2.  This
40577     makes code use the register name from chip datasheets.
40578
40579     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40580
40581 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
40582 Author: David Brownell <david-b@pacbell.net>
40583 Date:   Fri Jan 18 12:55:00 2008 -0800
40584
40585     use correct at91rm9200 register name
40586
40587     This fixes a naming bug for at91rm9200 lowlevel init code:
40588     NOR boot flash is on chipselect 0, not chipselect 2.  This
40589     makes code use the register name from chip datasheets.
40590
40591     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
40592
40593 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
40594 Author: David Brownell <david-b@pacbell.net>
40595 Date:   Fri Jan 18 12:45:45 2008 -0800
40596
40597     add missing ARM boards to MAKEALL
40598
40599     Add some missing ARM boards to MAKEALL.  These build correctly,
40600     unlike several of the boards already listed.
40601
40602     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
40603
40604 commit 066bebd6353e33af3adefc3404560871699e9961
40605 Author: Peter Pearse <peter.pearse@arm.com>
40606 Date:   Sun Mar 30 11:34:09 2008 +0100
40607
40608     Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
40609     to prevent compilation error.
40610
40611     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
40612
40613 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
40614 Author: Guennadi Liakhovetski <[lg@denx.de]>
40615 Date:   Sun Mar 30 11:32:30 2008 +0100
40616
40617     Support for the MX31ADS evaluation board from Freescale
40618
40619     This patch adds support for the MX31ADS evaluation board from Freescale,
40620     initialization code is copied from RedBoot sources, also provided by Freescale.
40621
40622     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40623
40624 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
40625 Author: Sascha Hauer <s.hauer@pengutronix.de>
40626 Date:   Sun Mar 30 11:32:27 2008 +0100
40627
40628     Phytec Phycore-i.MX31 support
40629
40630     This patch adds support for the Phytec Phycore-i.MX31 board
40631
40632     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40633     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40634
40635 commit a147e56f03871bba4f05058d5e04ce7deb010b04
40636 Author: Sascha Hauer <s.hauer@pengutronix.de>
40637 Date:   Sun Mar 30 11:32:24 2008 +0100
40638
40639     mx31 litekit support
40640
40641     This patch adds support for the mx31 litekit board
40642
40643     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40644     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40645
40646 commit d6674e0e2a6a1f033945f78838566210d3f28c95
40647 Author: Sascha Hauer <s.hauer@pengutronix.de>
40648 Date:   Sun Mar 30 11:32:21 2008 +0100
40649
40650     add SMSC LAN9x1x Network driver
40651
40652     This patch adds a driver for the following smsc network controllers:
40653     LAN9115
40654     LAN9116
40655     LAN9117
40656     LAN9215
40657     LAN9216
40658     LAN9217
40659
40660     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40661     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40662
40663 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
40664 Author: Sascha Hauer <s.hauer@pengutronix.de>
40665 Date:   Sun Mar 30 11:32:16 2008 +0100
40666
40667     add an i2c driver for mx31
40668
40669     This patch adds an i2c driver for Freescale i.MX processors
40670
40671     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40672     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40673
40674 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
40675 Author: Sascha Hauer <s.hauer@pengutronix.de>
40676 Date:   Sun Mar 30 11:30:43 2008 +0100
40677
40678     core support for Freescale mx31
40679
40680     This patch adds the core support for Freescale mx31
40681
40682     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40683     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40684
40685 commit 8bf69d81782619187933a605f1a95ee1d069478d
40686 Author: Sascha Hauer <s.hauer@pengutronix.de>
40687 Date:   Sun Mar 30 11:28:46 2008 +0100
40688
40689     Separate omap24xx specific code from arm1136
40690
40691     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
40692
40693     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40694     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40695
40696 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
40697 Author: Peter Pearse <peter.pearse@arm.com>
40698 Date:   Sun Mar 30 11:23:05 2008 +0100
40699
40700     Add pmdra into MAKEALL
40701
40702     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
40703
40704 commit a574a73852a527779234e73e17e7597fd8128882
40705 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
40706 Date:   Sun Mar 30 11:21:58 2008 +0100
40707
40708     Adds support for the Prodrive PMDRA board, based on a DM6441
40709
40710     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
40711
40712 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
40713 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
40714 Date:   Sun Mar 30 11:11:34 2008 +0100
40715
40716     Removes all board specific code from the arch. part for DM644x (DaVinci) boards
40717
40718     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
40719
40720 commit 1704dc20917b4f71e373e2c888497ee666d40380
40721 Author: Dirk Behme <dirk.behme@gmail.com>
40722 Date:   Sun Mar 30 11:09:01 2008 +0100
40723
40724     - Remove *_masked() functions as noted by Wolfgang
40725     - Adapt register naming to recent TI spec (sprue26, March 2007)
40726     - Fix reset_timer() handling
40727     - As reported by Pieter [1] the overflow fix introduced a
40728     delay of factor 16 (e.g 2 seconds became 32). While the
40729     overflow fix is basically okay, it missed to divide udelay by
40730     16, too. Fix this.
40731     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
40732     - Remove software division of timer count value (DIV(x)
40733     macro) and do it in hardware (TIM_CLK_DIV).
40734     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
40735     and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
40736     the hints & testing!
40737
40738     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
40739
40740     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
40741
40742 commit ac3315c26e143c31680750c9c13f027efbcc887e
40743 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
40744 Date:   Thu Mar 6 16:45:44 2008 +0100
40745
40746     new PHY @ e1000 - 2nd try
40747
40748     Add 82541ER device with latest integrated IGP2 PHY.
40749     Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
40750
40751     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
40752     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40753
40754 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
40755 Author: Daniel Hellstrom <daniel@gaisler.com>
40756 Date:   Fri Mar 28 20:22:53 2008 +0100
40757
40758     SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
40759
40760     GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
40761     a debug link (EDCL). The GRETH core is documented in GRIP.pdf
40762     available at www.gaisler.com.
40763
40764     If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
40765     offloading etc.) can be determined by a bit in the control register.
40766     The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
40767
40768     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40769     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40770
40771 commit 233a8bcd94997f3f345833a3b82e836222f2a206
40772 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
40773 Date:   Mon Mar 17 17:08:22 2008 -0500
40774
40775     Add CONFIG_MII_INIT in cmd_mii.c
40776
40777     Provide common configuration in do_mii() to execute mii_init()
40778     for all cpu architectures
40779
40780     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40781     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40782
40783 commit f605479de2deb11e834f31dfdb0af107c86aced6
40784 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
40785 Date:   Mon Mar 17 17:08:16 2008 -0500
40786
40787     ColdFire: Fix FEC transmit issue for MCF5275
40788
40789     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40790     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40791
40792 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
40793 Author: Aras Vaichas <arasv@magtech.com.au>
40794 Date:   Wed Mar 26 09:43:57 2008 +1100
40795
40796     DHCP request fix for Windows Server 2003
40797
40798     Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
40799     delay before sending "DHCP Request" in net/bootp.c. Required to overcome
40800     interoperability problems with Windows Server 200x DHCP server when U-Boot
40801     client responds too fast for server to handle.
40802
40803     Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
40804     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40805
40806 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
40807 Author: Daniel Hellstrom <daniel@gaisler.com>
40808 Date:   Fri Mar 28 20:40:19 2008 +0100
40809
40810     MTD/CFI: flash_read64 is defined a weak function (for SPARC)
40811
40812     SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
40813     SPARC CPUs implement flash_read64 which calls __raw_readq.
40814
40815     For current SPARC architectures (LEON2 and LEON3) each read from the
40816     FLASH must lead to a cache miss. This is because FLASH can not be set
40817     non-cacheable since program code resides there, and alternatively disabling
40818     cache is poor from performance view, or doing a cache flush between each
40819     read is even poorer.
40820
40821     Forcing a cache miss on a SPARC is done by a special instruction "lda" -
40822     load alternative space, the alternative space number (ASI) is processor
40823     implementation spcific and can be found by including <asm/processor.h>.
40824
40825     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40826
40827 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
40828 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
40829 Date:   Fri Mar 28 15:41:25 2008 +0100
40830
40831     Make MPC83xx one step closer to full relocation.
40832
40833     Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
40834     and use GOT relative reference.
40835
40836     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
40837     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40838
40839 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
40840 Author: Michael Barkowski <michael.barkowski@freescale.com>
40841 Date:   Thu Mar 27 14:34:43 2008 -0400
40842
40843     mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
40844
40845     This patch fixes eeprom page size so that you can now write more than
40846     64 bytes at a time.
40847
40848     It also makes the board take MAC addresses, if found, from EEPROM.
40849
40850     User should place up to 4 addresses at offset 0x7f00, for
40851     eth{,1,2,3}addr.  Any unused addresses should be zero.  This group of
40852     four six-byte values should have it's CRC at the end.  crc32 and
40853     eeprom commands can be used to accomplish this.
40854
40855     If CRC fails, MAC addresses come from the environment.  If CRC
40856     succeeds, the environment is overwritten at startup.
40857
40858     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
40859     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40860
40861 commit 8f325cff31f6e745e6540014b131b9a97f61944c
40862 Author: Michael Barkowski <michael.barkowski@freescale.com>
40863 Date:   Fri Mar 28 15:15:38 2008 -0400
40864
40865     mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
40866
40867     Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
40868     controller on the PCI bus in Linux on the MPC8323ERDB.
40869
40870     This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
40871     config file.
40872
40873     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
40874     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40875
40876 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
40877 Author: Kim Phillips <kim.phillips@freescale.com>
40878 Date:   Fri Mar 28 10:19:07 2008 -0500
40879
40880     mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
40881
40882     in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
40883     85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
40884     and processor ID display.  Add REVID_{MAJ,MIN}OR macros to make
40885     REVID dependent code simpler.  Also added PARTID_NO_E and IS_E_PROCESSOR
40886     convenience macros.
40887
40888     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40889
40890 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
40891 Author: Kim Phillips <kim.phillips@freescale.com>
40892 Date:   Fri Mar 28 10:18:53 2008 -0500
40893
40894     mpc83xx: display ddr frequency in board_add_ram_info banner
40895
40896     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40897
40898 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
40899 Author: Kim Phillips <kim.phillips@freescale.com>
40900 Date:   Fri Mar 28 10:18:40 2008 -0500
40901
40902     mpc83xx: unreinvent mem_clk
40903
40904     delete ddr_clk and use mem_clk instead.  Rename other ddr_*_clk to
40905     mem_*_clk for consistency's sake.
40906
40907     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40908
40909 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
40910 Author: Kim Phillips <kim.phillips@freescale.com>
40911 Date:   Fri Mar 28 14:31:23 2008 -0500
40912
40913     mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
40914
40915     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40916
40917 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
40918 Author: Dave Liu <r63238@freescale.com>
40919 Date:   Wed Mar 26 22:57:19 2008 +0800
40920
40921     mpc83xx: enable the SATA interface on mpc837xemds board
40922
40923     Enable the first two SATA interfaces on MPC837xEMDS board,
40924     The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
40925
40926     Signed-off-by: Dave Liu <daveliu@freescale.com>
40927     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40928
40929 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
40930 Author: Dave Liu <r63238@freescale.com>
40931 Date:   Wed Mar 26 22:56:36 2008 +0800
40932
40933     mpc83xx: initialize serdes for MPC837xEMDS boards
40934
40935     This patch is stolen from Anton Vorontsov's patch
40936     for mpc837xerdb boards.
40937
40938     The reference clk and xcorevdd voltage of serdes1/2
40939     is same between mpc837xemds and mpc837xerdb.
40940
40941     8377E: LYNX1- 2 SATA        LYNX2- 2 PCIE
40942     8378E: LYNX1- 2 SGMII       LYNX2- 2 PCIE
40943     8379E: LYNX1- 2 SATA        LYNX2- 2 SATA
40944
40945     Signed-off-by: Dave Liu <daveliu@freescale.com>
40946     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40947
40948 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
40949 Author: Stefan Roese <sr@denx.de>
40950 Date:   Fri Mar 28 14:09:04 2008 +0100
40951
40952     ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
40953
40954     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
40955     interface. This usage can be configured with the jumper J6. This patch
40956     displays the current configuration upon bootup and changes the PCIe
40957     init loop, to only initialize the availabel PCIe slots.
40958
40959     Signed-off-by: Stefan Roese <sr@denx.de>
40960
40961 commit 90447ecbbac8572457b6d8903073ac3f120995ba
40962 Author: Tor Krill <tor@excito.com>
40963 Date:   Fri Mar 28 11:29:10 2008 +0100
40964
40965     MTD/CFI: Add support for 16bit legacy AMD flash
40966
40967     Add entry for 512Kx16 AMD flash to jedec_table.
40968     Read out 16bit device id if chipwidth is 16bit.
40969     Fixed coding style after Stefans feedback
40970
40971     Signed-off-by: Tor Krill <tor@excito.com>
40972
40973 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
40974 Author: Stefan Roese <sr@denx.de>
40975 Date:   Fri Mar 28 11:02:53 2008 +0100
40976
40977     ppc: Small change to CFG_MEM_TOP_HIDE description
40978
40979     Signed-off-by: Stefan Roese <sr@denx.de>
40980
40981 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
40982 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40983 Date:   Thu Mar 27 15:44:12 2008 +0900
40984
40985     sh: Add support stat structure and stat.h
40986
40987     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40988
40989 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
40990 Author: Mark Jonas <toertel@gmail.com>
40991 Date:   Sat Mar 22 19:27:52 2008 +0100
40992
40993     sh: Removed warning when compiling drivers/serial/serial_sh.c.
40994
40995     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
40996     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40997
40998 commit f309fa38929ffba71230c02330ffa42f4bba6333
40999 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41000 Date:   Wed Mar 12 18:02:57 2008 +0900
41001
41002     sh: Remove disable_ctrlc function from R7780MP
41003
41004     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41005
41006 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
41007 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41008 Date:   Wed Mar 12 17:55:15 2008 +0900
41009
41010     sh: Add maintainer of R7780MP to MAINTAINER file
41011
41012     Update MAINTAINER entry for R7780MP. And fix maintainer's name.
41013
41014     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41015
41016 commit f5e2466f7baa887a7df0c536333eea8231333497
41017 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41018 Date:   Tue Mar 25 17:11:24 2008 +0900
41019
41020     sh: Add support Renesas Solutions R2D plus board
41021
41022     R2D plus is SH reference board used with SH7751R.
41023     This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
41024     one PCI bus, VGA, and two Ethernet controller.
41025
41026     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41027
41028 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
41029 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41030 Date:   Wed Mar 12 12:15:29 2008 +0900
41031
41032     sh: Add support SH4 cache control
41033
41034     Add support SH4 cache control and flash_cache function
41035
41036     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41037
41038 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
41039 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41040 Date:   Mon Mar 24 01:53:01 2008 +0900
41041
41042     sh: Add support PCI host driver for SH7751/SH7751R
41043
41044     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41045
41046 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
41047 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41048 Date:   Mon Mar 24 02:11:26 2008 +0900
41049
41050     sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
41051
41052     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41053
41054 commit 566933278101c144d75361ea682678a326c1290d
41055 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41056 Date:   Wed Mar 12 12:10:28 2008 +0900
41057
41058     sh: Add support SuperH SH7751/SH7751R
41059
41060     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41061
41062 commit 3313e0e26224fc9a0c445124f3455058c696df84
41063 Author: Mark Jonas <toertel@gmail.com>
41064 Date:   Mon Mar 10 11:37:10 2008 +0100
41065
41066     sh: Added support for SH7720 based board MPR2.
41067
41068     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
41069     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41070
41071 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
41072 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41073 Date:   Thu Mar 6 14:05:53 2008 +0900
41074
41075     sh: Fix receive FIFO level register of SH4A
41076
41077     Receive FIFO level register is different in SH4A.
41078     Because register is different, cannot occasionally receive data.
41079
41080     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41081
41082 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
41083 Author: Yusuke Goda <goda.yusuke@renesas.com>
41084 Date:   Tue Mar 11 12:55:12 2008 +0900
41085
41086     sh: Add support Renesas Solutions R7780MP
41087
41088     Renesas Solutions R7780MP is a reference board on SH7780.
41089     This board has serial, 10/100 base Ethernet deivice, CF slot
41090     and VGA devices. This board can set extension board.
41091     Extension board has 10/100/1000 base Ethernet device, PCI slot,
41092     S-ATA, iDVR slot.
41093
41094     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
41095     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41096
41097 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
41098 Author: Yusuke Goda <goda.yusuke@renesas.com>
41099 Date:   Wed Mar 5 14:30:02 2008 +0900
41100
41101     sh: Add support PCI of SuperH and SH7780
41102
41103     This patch add support PCI of SuperH base code and SH7780 specific code.
41104
41105     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
41106     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41107
41108 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
41109 Author: Yusuke Goda <goda.yusuke@renesas.com>
41110 Date:   Wed Mar 5 14:23:26 2008 +0900
41111
41112     sh: Add support SH7780
41113
41114     SH7780 is CPU of Renesas Technology.
41115     This CPU has
41116      - CPU clock 400MHz
41117      - PCI support
41118      - DDR-SDRAM controller
41119      - etc ...
41120
41121     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
41122     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41123
41124 commit c2042f5952a686c414031309b8f244513bf578f0
41125 Author: goda.yusuke <goda.yusuke@renesas.com>
41126 Date:   Fri Jan 25 20:46:36 2008 +0900
41127
41128     sh: Add support Renesas Solutions Migo-R board
41129
41130     Migo-R is a board based on SH7722 and has may devices.
41131     In this patch, supported SCIF, NOR flash and Ethernet.
41132
41133     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
41134     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41135
41136 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
41137 Author: Bartlomiej Sieka <tur@semihalf.com>
41138 Date:   Thu Mar 27 15:06:40 2008 +0100
41139
41140     Fix host tool build breakage, take two
41141
41142     Revert commit 87c8431f and fix build breakage so that the build continues
41143     to work on FC systems.
41144
41145     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
41146
41147 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
41148 Author: Stefan Roese <sr@denx.de>
41149 Date:   Wed Mar 19 09:36:47 2008 +0100
41150
41151     ppc4xx: Enable ECC on LWMON5
41152
41153     Since all ECC related problems seem to be resolved on LWMON5, this patch
41154     now enables ECC support.
41155
41156     We have to write the ECC bytes by zeroing and flushing in smaller
41157     steps, since the whole 256MByte takes too long for the external
41158     watchdog.
41159
41160     Signed-off-by: Stefan Roese <sr@denx.de>
41161
41162 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
41163 Author: Larry Johnson <lrj@acm.org>
41164 Date:   Mon Mar 17 11:10:35 2008 -0500
41165
41166     ppc4xx: Updates to Korat-specific code
41167
41168     This patch contains updates for changes for the Korat PPC440EPx board.
41169     These changes include:
41170
41171     (1) Support for "permanent" and "upgradable" copies of U-Boot, as
41172     described in the new "doc/README.korat" file;
41173
41174     (2) a new memory map for the registers in the board's CPLD;
41175
41176     (3) a revised format for manufacturer's data in serial EEPROM; and
41177
41178     (4) changes to track updates to U-Boot for the Sequoia board.
41179
41180     Signed-off-by: Larry Johnson <lrj@acm.org>
41181
41182 commit f766cdf89b3a2a7634b8c5869f606150e332036c
41183 Author: Markus Brunner <super.firetwister@gmail.com>
41184 Date:   Thu Mar 27 10:46:25 2008 +0100
41185
41186     ppc4xx: PPC405EP Set EMAC noise filter bits
41187
41188     This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
41189     which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
41190     disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
41191
41192     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
41193     Signed-off-by: Stefan Roese <sr@denx.de>
41194
41195 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
41196 Author: Mike Nuss <mike@terascala.com>
41197 Date:   Wed Feb 20 11:54:20 2008 -0500
41198
41199     ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
41200
41201     On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
41202     after startup to change the speed of the clocks. This patch adds the
41203     option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
41204     initialization code will reconfigure the PLL to run the system with a CPU
41205     frequency of 667MHz and PLB frequency of 166MHz, without the need for an
41206     external EEPROM.
41207
41208     Signed-off-by: Mike Nuss <mike@terascala.com>
41209     Acked-by: Stefan Roese <sr@denx.de>
41210
41211 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
41212 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41213 Date:   Thu Mar 27 09:12:40 2008 +0100
41214
41215     new-image: Fix host tool build breakage
41216
41217     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41218
41219 commit 6fb4b640562a10daff0dbe537638d511b5b48650
41220 Author: Stefan Roese <sr@denx.de>
41221 Date:   Thu Mar 27 10:24:03 2008 +0100
41222
41223     ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
41224
41225     Signed-off-by: Stefan Roese <sr@denx.de>
41226
41227 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
41228 Author: Stefan Roese <sr@denx.de>
41229 Date:   Wed Mar 19 10:23:43 2008 +0100
41230
41231     ppc4xx: Add fdt support to Prodrive alpr
41232
41233     Since this board will probably be ported to arch/powerpc in the
41234     near future, we add device tree support now. This way we are
41235     "ready" for arch/powerpc from now on.
41236
41237     Signed-off-by: Stefan Roese <sr@denx.de>
41238
41239 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
41240 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
41241 Date:   Mon Mar 17 09:27:56 2008 +0100
41242
41243     ppc4xx: Enable cache support on the ALPR board
41244
41245     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
41246
41247 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
41248 Author: Stefan Roese <sr@denx.de>
41249 Date:   Wed Mar 26 10:14:11 2008 +0100
41250
41251     ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
41252
41253     If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
41254     memory area will get subtracted from the top (end) of ram and won't get
41255     "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
41256     should gets passed the now "corrected" memory size and won't touch it
41257     either. This should work for arch/ppc and arch/powerpc. Only Linux board
41258     ports in arch/powerpc with bootwrapper support, which recalculate the
41259     memory size from the SDRAM controller setup, will have to get fixed
41260     in Linux additionally.
41261
41262     This patch enables this config option on some PPC440EPx boards as a workaround
41263     for the CHIP 11 errata. Here the description from the AMCC documentation:
41264
41265     CHIP_11: End of memory range area restricted access.
41266     Category: 3
41267
41268     Overview:
41269     The 440EPx DDR controller does not acknowledge any
41270     transaction which is determined to be crossing over the
41271     end-of-memory-range boundary, even if the starting address is
41272     within valid memory space. Any such transaction from any PLB4
41273     master will result in a PLB time-out on PLB4 bus.
41274
41275     Impact:
41276     In case of such misaligned bursts, PLB4 masters will not
41277     retrieve any data at all, just the available data up to the
41278     end of memory, especially the 440 CPU. For example, if a CPU
41279     instruction required an operand located in memory within the
41280     last 7 words of memory, the DCU master would burst read 8
41281     words to update the data cache and cross over the
41282     end-of-memory-range boundary. Such a DCU read would not be
41283     answered by the DDR controller, resulting in a PLB4 time-out
41284     and ultimately in a Machine Check interrupt. The data would
41285     be inaccessible to the CPU.
41286
41287     Workaround:
41288     Forbid any application to access the last 256 bytes of DDR
41289     memory. For example, make your operating system believe that
41290     the last 256 bytes of DDR memory are absent. AMCC has a patch
41291     that does this, available for Linux.
41292
41293     This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
41294     lwmon5, korat, sequoia
41295
41296     The other remaining 440EPx board were intentionally not included
41297     since it is not clear to me, if they use the end of ram for some
41298     other purpose. This is unclear, since these boards have CONFIG_PRAM
41299     defined and even comments like this:
41300
41301     PMC440.h:
41302     /* esd expects pram at end of physical memory.
41303      * So no logbuffer at the moment.
41304      */
41305
41306     It is strongly recommended to not use the last 256 bytes on those
41307     boards too. Patches from the board maintainers are welcome.
41308
41309     Signed-off-by: Stefan Roese <sr@denx.de>
41310
41311 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
41312 Author: Stefan Roese <sr@denx.de>
41313 Date:   Thu Mar 27 10:09:05 2008 +0100
41314
41315     ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
41316
41317     Signed-off-by: Stefan Roese <sr@denx.de>
41318
41319 commit d56a3ce179688cde61073a3690e21703d68fafd7
41320 Author: Stefan Roese <sr@denx.de>
41321 Date:   Tue Mar 25 17:51:13 2008 +0100
41322
41323     ppc4xx: Correctly pass phyiscal FLASH base address into dtb
41324
41325     The routine ft_board_setup() configures the EBC NOR mappings for the
41326     Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
41327     0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
41328     problem, we need to pass the corrected address here too.
41329
41330     Signed-off-by: Stefan Roese <sr@denx.de>
41331
41332 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
41333 Author: Stefan Roese <sr@denx.de>
41334 Date:   Wed Mar 19 16:35:12 2008 +0100
41335
41336     ppc4xx: Fix compilation warning in 4xx_enet.c
41337
41338     Signed-off-by: Stefan Roese <sr@denx.de>
41339
41340 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
41341 Author: Stefan Roese <sr@denx.de>
41342 Date:   Wed Mar 19 16:20:49 2008 +0100
41343
41344     ppc4xx: Add AMCC Glacier 406GT eval board support
41345
41346     This patch adds support for the AMCC Glacier 460GT eval board.
41347     The main difference to the Canyonlands board are listed here:
41348
41349     - 4 ethernet ports instead of 2
41350     - no SATA port
41351     - no USB port
41352
41353     Currently EMAC2+3 are not working. This will be fixed in a later
41354     release.
41355
41356     Signed-off-by: Stefan Roese <sr@denx.de>
41357
41358 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
41359 Author: Stefan Roese <sr@denx.de>
41360 Date:   Thu Mar 27 08:47:26 2008 +0100
41361
41362     ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
41363
41364     Signed-off-by: Stefan Roese <sr@denx.de>
41365
41366 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
41367 Author: Anatolij Gustschin <agust@denx.de>
41368 Date:   Wed Mar 26 21:05:43 2008 +0100
41369
41370     Fix out of tree building issue
41371
41372     Currently U-Boot building in some external directory
41373     doesn't work. This patch tries to fix the problem.
41374
41375     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41376
41377 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
41378 Author: Anatolij Gustschin <agust@denx.de>
41379 Date:   Wed Mar 26 18:13:33 2008 +0100
41380
41381     README: update documentation (availability, links, etc.)
41382
41383     Fix typo in README
41384
41385     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41386
41387 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
41388 Author: Anatolij Gustschin <agust@denx.de>
41389 Date:   Wed Mar 26 17:47:44 2008 +0100
41390
41391     Fix compilation error in cmd_usb.c
41392
41393     This patch fixes compilation error
41394     cmd_usb.c: In function 'do_usb':
41395     cmd_usb.c:552: error: void value not ignored as it ought to be
41396
41397     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41398
41399 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
41400 Author: Timur Tabi <timur@freescale.com>
41401 Date:   Fri Mar 14 17:45:29 2008 -0500
41402
41403     Add support for setting the I2C bus speed in fsl_i2c.c
41404
41405     Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
41406     the I2C bus speed.  Current 8[356]xx boards define the CFG_I2C_SPEED macro,
41407     but fsl_i2c.c ignores it and uses conservative value when programming the
41408     I2C bus speed.
41409
41410     Signed-off-by: Timur Tabi <timur@freescale.com>
41411     Acked-by: Andy Fleming <afleming@freescale.com>
41412
41413 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
41414 Author: Wolfgang Denk <wd@denx.de>
41415 Date:   Thu Mar 27 00:03:57 2008 +0100
41416
41417     Coding style cleanup, update CHANGELOG
41418
41419     Signed-off-by: Wolfgang Denk <wd@denx.de>
41420
41421 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
41422 Author: Dave Liu <r63238@freescale.com>
41423 Date:   Wed Mar 26 22:55:32 2008 +0800
41424
41425     drivers: add the support for Freescale SATA controller
41426
41427     Add the Freescale on-chip SATA controller driver to u-boot,
41428     The SATA controller is used on the 837x and 8315 targets,
41429     The driver can be used to load kernel, fs and dtb.
41430
41431     The features list:
41432     - 1.5/3 Gbps link speed
41433     - LBA48, LBA28 support
41434     - DMA and FPDMA support
41435     - Two ports support
41436
41437     Signed-off-by: Dave Liu <daveliu@freescale.com>
41438
41439 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
41440 Author: Dave Liu <r63238@freescale.com>
41441 Date:   Wed Mar 26 22:54:44 2008 +0800
41442
41443     ata: add the readme for SATA command line
41444
41445     Signed-off-by: Dave Liu <daveliu@freescale.com>
41446
41447 commit cd54081cd479e542fc399b8a40651ff11a1ad849
41448 Author: Dave Liu <r63238@freescale.com>
41449 Date:   Wed Mar 26 22:53:24 2008 +0800
41450
41451     ata: enable the sata initialize on boot up
41452
41453     Signed-off-by: Dave Liu <daveliu@freescale.com>
41454
41455 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
41456 Author: Dave Liu <r63238@freescale.com>
41457 Date:   Wed Mar 26 22:52:36 2008 +0800
41458
41459     ata: add the fis struct for SATA
41460
41461     Signed-off-by: Dave Liu <daveliu@freescale.com>
41462
41463 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
41464 Author: Dave Liu <r63238@freescale.com>
41465 Date:   Wed Mar 26 22:51:44 2008 +0800
41466
41467     ata: add the libata support
41468
41469     add simple libata support in u-boot
41470
41471     Signed-off-by: Dave Liu <daveliu@freescale.com>
41472
41473 commit 8e9bb43429e50df55fa41932cbe65841ff579220
41474 Author: Dave Liu <r63238@freescale.com>
41475 Date:   Wed Mar 26 22:50:45 2008 +0800
41476
41477     ata: make the ata_piix driver using new SATA framework
41478
41479     original ata_piix driver is using IDE framework, not real
41480     SATA framework. For now, the ata_piix driver is only used
41481     by x86 sc520_cdp board. This patch makes the ata_piix driver
41482     use the new SATA framework, so
41483
41484     - remove the duplicated command stuff
41485     - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
41486     - add the CONFIG_CMD_SATA define to sc520_cdp.h
41487
41488     Signed-off-by: Dave Liu <daveliu@freescale.com>
41489
41490 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
41491 Author: Dave Liu <r63238@freescale.com>
41492 Date:   Wed Mar 26 22:49:44 2008 +0800
41493
41494     ata: add the support for SATA framework
41495
41496     - add the SATA framework
41497     - add the SATA command line
41498
41499     Signed-off-by: Dave Liu <daveliu@freescale.com>
41500
41501 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
41502 Author: Dave Liu <r63238@freescale.com>
41503 Date:   Wed Mar 26 22:48:18 2008 +0800
41504
41505     ata: merge the header of ata_piix driver
41506
41507     move the sata.h from include/ to drivers/block/ata_piix.h
41508
41509     Signed-off-by: Dave Liu <daveliu@freescale.com>
41510
41511 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
41512 Author: Dave Liu <r63238@freescale.com>
41513 Date:   Wed Mar 26 22:47:06 2008 +0800
41514
41515     ata: merge the ata_piix driver
41516
41517     move the cmd_sata.c from common/ to drivers/ata_piix.c,
41518     the cmd_sata.c have some part of ata_piix controller drivers.
41519     consolidate the driver to have better framework.
41520
41521     Signed-off-by: Dave Liu <daveliu@freescale.com>
41522
41523 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
41524 Author: Markus Klotzbuecher <mk@denx.de>
41525 Date:   Wed Mar 26 18:26:43 2008 +0100
41526
41527     USB, Storage: fix a bug introduced in commit
41528     f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
41529     to only print only information on one storage device, but not for
41530     multiple.
41531
41532     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41533
41534 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
41535 Author: Anatolij Gustschin <agust@denx.de>
41536 Date:   Wed Mar 26 17:47:44 2008 +0100
41537
41538     Fix compilation error in cmd_usb.c
41539
41540     This patch fixes compilation error
41541     cmd_usb.c: In function 'do_usb':
41542     cmd_usb.c:552: error: void value not ignored as it ought to be
41543
41544     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41545     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41546
41547 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
41548 Author: Kumar Gala <galak@kernel.crashing.org>
41549 Date:   Wed Mar 26 08:53:53 2008 -0500
41550
41551     85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
41552
41553     Provide a board_lmb_reserve helper function to ensure we reserve
41554     the page of memory we are using for the boot page translation code.
41555
41556     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41557
41558 commit 79679d80021ab095e639e250ca472fe526da02e2
41559 Author: Kumar Gala <galak@kernel.crashing.org>
41560 Date:   Wed Mar 26 08:34:25 2008 -0500
41561
41562     85xx: Update multicore boot mechanism to ePAPR v0.81 spec
41563
41564     The following changes are needed to be inline with ePAPR v0.81:
41565
41566     * r4, r5 and now always set to 0 on boot release
41567     * r7 is used to pass the size of the initial map area (IMA)
41568     * EPAPR_MAGIC value changed for book-e processors
41569     * changes in the spin table layout
41570     * spin table supports a 64-bit physical release address
41571
41572     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41573
41574 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
41575 Author: Jon Loeliger <jdl@freescale.com>
41576 Date:   Wed Mar 19 15:02:07 2008 -0500
41577
41578     FSL: Clean up board/freescale/common/Makefile
41579
41580     Each file that can be built here now follows some
41581     CONFIG_ option so that they are appropriately built
41582     or not, as needed.  And CONFIG_ defines were added
41583     to various board config files to make sure that happens.
41584
41585     The other board/freescale/*/Makefiles no longer need
41586     to reach up and over into ../common to build their
41587     individually needed files any more.
41588
41589     Boards that are CDS specific were renamed with cds_ prefix.
41590
41591     Signed-off-by: Jon Loeliger <jdl@freescale.com>
41592
41593 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
41594 Author: Kumar Gala <galak@kernel.crashing.org>
41595 Date:   Wed Feb 27 22:00:27 2008 -0600
41596
41597     85xx: Fix merge duplication
41598
41599     ft_fixup_cpu() got duplicated in some merge snafu.  Remove the duplicate.
41600
41601     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41602
41603 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
41604 Author: James Yang <James.Yang@freescale.com>
41605 Date:   Tue Feb 12 16:35:07 2008 -0600
41606
41607     85xx: Expand CCSR space with more DDR controller registers.
41608
41609     Signed-off-by: James Yang <James.Yang@freescale.com>
41610     Signed-off-by: Jon Loeliger <jdl@freescale.com>
41611     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41612
41613 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
41614 Author: James Yang <James.Yang@freescale.com>
41615 Date:   Fri Feb 8 18:05:08 2008 -0600
41616
41617     85xx: Speed up get_ddr_freq() and get_bus_freq()
41618
41619     get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
41620     called.  However, get_sys_info() recalculates extraneous information when
41621     called each time.  Have get_ddr_freq() and get_bus_freq() return memoized
41622     values from global_data instead.
41623
41624     Signed-off-by: James Yang <James.Yang@freescale.com>
41625     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41626
41627 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
41628 Author: James Yang <James.Yang@freescale.com>
41629 Date:   Fri Feb 8 16:46:27 2008 -0600
41630
41631     85xx: Show DDR memory data rate in addition to the memory clock frequency.
41632
41633     Show the DDR memory data rate in addition to the memory clock
41634     frequency.  For DDR/DDR2 memories the memory data rate is 2x the
41635     memory clock.
41636
41637     Signed-off-by: James Yang <James.Yang@freescale.com>
41638     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41639
41640 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
41641 Author: James Yang <James.Yang@freescale.com>
41642 Date:   Fri Feb 8 16:44:53 2008 -0600
41643
41644     85xx: get_tbclk() speed up and rounding fix
41645
41646     Speed up get_tbclk() by referencing pre-computed bus clock
41647     frequency value from global data instead of sys_info_t.  Fix
41648     rounding of result to nearest; previously it was rounding
41649     upwards.
41650
41651     Signed-off-by: James Yang <James.Yang@freescale.com>
41652     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41653
41654 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
41655 Author: Andy Fleming <afleming@freescale.com>
41656 Date:   Wed Feb 6 01:19:40 2008 -0600
41657
41658     Update SVR numbers to expand support
41659
41660     FSL has taken to using SVR[16:23] as an SOC sub-version field.  This
41661     is used to distinguish certain variants within an SOC family.  To
41662     account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
41663     constants to reflect the larger value.  We also add SVR numbers for all
41664     of the current variants.  Finally, to make things neater, rather than
41665     use an enormous switch statement to print out the CPU type, we create
41666     and array of SVR/name pairs (using a macro), and print out the CPU name
41667     that matches the SVR SOC version.
41668
41669     Signed-off-by: Andy Fleming <afleming@freescale.com>
41670
41671 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
41672 Author: Andy Fleming <afleming@freescale.com>
41673 Date:   Wed Feb 6 01:12:57 2008 -0600
41674
41675     Add the Freescale PCI device IDs
41676
41677     Signed-off-by: Andy Fleming <afleming@freescale.com>
41678
41679 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
41680 Author: Kumar Gala <galak@kernel.crashing.org>
41681 Date:   Thu Feb 14 11:04:23 2008 -0600
41682
41683     85xx: Added support for multicore boot mechanism
41684
41685     Added the cpu command that provides a generic mechanism to get status,
41686     reset, and release secondary cores in multicore processors.
41687
41688     Added support for using the ePAPR defined spin-table mechanism on 85xx.
41689
41690     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41691     Signed-off-by: Andy Fleming <afleming@freescale.com>
41692
41693 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
41694 Author: Kumar Gala <galak@kernel.crashing.org>
41695 Date:   Thu Jan 17 16:48:33 2008 -0600
41696
41697     85xx: Added support for multicore boot mechanism
41698
41699     Added the cpu command that provides a generic mechanism to get status,
41700     reset, and release secondary cores in multicore processors.
41701
41702     Added support for using the ePAPR defined spin-table mechanism on 85xx.
41703
41704     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41705
41706 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
41707 Author: Kumar Gala <galak@kernel.crashing.org>
41708 Date:   Wed Jan 30 14:55:14 2008 -0600
41709
41710     85xx: Add the concept of CFG_CCSRBAR_PHYS
41711
41712     When we go to 36-bit physical addresses we need to keep the concept of
41713     the physical CCSRBAR address seperate from the virtual one.
41714
41715     For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
41716
41717     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41718
41719 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
41720 Author: Wolfgang Denk <wd@denx.de>
41721 Date:   Wed Mar 26 15:38:47 2008 +0100
41722
41723     Coding style cleanup.
41724
41725     Signed-off-by: Wolfgang Denk <wd@denx.de>
41726
41727 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
41728 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
41729 Date:   Wed Mar 26 13:02:13 2008 +0100
41730
41731     Add CFG_RTC_DS1337_NOOSC to turn off OSC output
41732
41733     The default settings for RTC DS1337 keeps the OSC
41734     output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
41735     turn it off.
41736
41737     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
41738
41739 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
41740 Author: Wolfgang Denk <wd@denx.de>
41741 Date:   Wed Mar 26 11:48:46 2008 +0100
41742
41743     Cleanup coding style, update CHANGELOG
41744
41745     Signed-off-by: Wolfgang Denk <wd@denx.de>
41746
41747 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
41748 Author: Wolfgang Denk <wd@denx.de>
41749 Date:   Wed Mar 26 10:40:12 2008 +0100
41750
41751     README: update documentation (availability, links, etc.)
41752
41753     Signed-off-by: Wolfgang Denk <wd@denx.de>
41754
41755 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
41756 Author: Aras Vaichas <arasv@magtech.com.au>
41757 Date:   Tue Mar 25 12:09:07 2008 +1100
41758
41759     USB Storage, add meaningful return value
41760
41761     This patch changes the "usb storage" command to return success if it
41762     finds a USB storage device, otherwise it returns error.
41763
41764     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41765
41766 commit 18e69a35efbb078403db0c0063986470dad7d082
41767 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41768 Date:   Fri Mar 14 23:20:18 2008 +0300
41769
41770     83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
41771
41772     Linux understands "host" (default), "peripheral" and "otg" (broken).
41773     Though, U-Boot doesn't restrict dr_mode variable to these values (think
41774     of renames in future).
41775
41776     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41777     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41778
41779 commit c7604783b236e368f225efb7b3efb418fe20b404
41780 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41781 Date:   Fri Mar 14 23:20:30 2008 +0300
41782
41783     tsec: fix link detection for the RTL8211B PHY
41784
41785     RTL8211B sets link state register after autonegotiation complete,
41786     so with bootdelay=0 RTL8211B will report lack of the link.
41787
41788     To fix this, we should wait for aneg to complete, even if the
41789     link is currently down.
41790
41791     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41792     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41793
41794 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
41795 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41796 Date:   Mon Mar 24 20:47:09 2008 +0300
41797
41798     mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
41799
41800     device_type = "soc" is being deprecated, newer device trees will use
41801     "fsl,soc" and/or "fsl,immr" for the soc nodes.
41802
41803     This patch also adds clock-frequency property for soc nodes (the same
41804     value as bus-frequency).
41805
41806     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41807
41808 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
41809 Author: Joe D'Abbraccio <ljd015@freescale.com>
41810 Date:   Mon Mar 24 13:00:59 2008 -0400
41811
41812     Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
41813
41814     With the original value of 1/2 clock cycle delay, the system ran relatively
41815     stable except when we run benchmarks that are intensive users of memory.
41816     When I run samba connected disk with a HDBENCH test, the system locks-up
41817     or reboots sporadically.
41818
41819     Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
41820
41821 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
41822 Author: Scott Wood <scottwood@freescale.com>
41823 Date:   Mon Mar 24 12:44:13 2008 -0500
41824
41825     mpc83xx: Set PCI I/O bus-address base to zero.
41826
41827     The device trees for these boards describe PCI I/O as starting from
41828     address zero from the device's perspective.
41829
41830     Placing I/O elsewhere may cause problems with certain PCI boards, and may
41831     cause problems with Linux.
41832
41833     Signed-off-by: Scott Wood <scottwood@freescale.com>
41834
41835 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
41836 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41837 Date:   Mon Mar 24 20:47:05 2008 +0300
41838
41839     mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
41840
41841     At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
41842     This patch fixes "system time drifting" problem.
41843
41844     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41845
41846 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
41847 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41848 Date:   Mon Mar 24 20:47:02 2008 +0300
41849
41850     mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
41851
41852     This is needed to update /choosen/linux,stdout-path properly.
41853
41854     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41855
41856 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
41857 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41858 Date:   Mon Mar 24 20:47:00 2008 +0300
41859
41860     mpc83xx: MPC8360E-RDK: add dhcp command
41861
41862     Plus modify environment to use it and remove bootfile env variable,
41863     it is internal and CONFIG_BOOTFILE is used for these purposes.
41864
41865     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41866
41867 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
41868 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41869 Date:   Mon Mar 24 20:46:57 2008 +0300
41870
41871     mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
41872
41873     Current DDR setup easily causes memory corruption, this patch fixes it.
41874
41875     Also fix TIMING_CFG0_MRS_CYC definition.
41876
41877     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41878
41879 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
41880 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41881 Date:   Mon Mar 24 20:46:53 2008 +0300
41882
41883     mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
41884
41885     This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
41886     controller and FHCI (QE USB).
41887
41888     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41889
41890 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
41891 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41892 Date:   Mon Mar 24 20:46:51 2008 +0300
41893
41894     mpc83xx: MPC8360E-RDK: add support for NAND
41895
41896     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41897
41898 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
41899 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41900 Date:   Mon Mar 24 20:46:46 2008 +0300
41901
41902     mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
41903
41904     This is needed for BCM PHYs to work on this board.
41905
41906     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41907
41908 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
41909 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41910 Date:   Mon Mar 24 20:46:34 2008 +0300
41911
41912     uec: add support for Broadcom BCM5481 Gigabit PHY
41913
41914     This patch adds basic support for Broadcom BCM5481 PHY.
41915
41916     RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
41917     Peter Barada <peterb@logicpd.com>.
41918
41919     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41920
41921 commit 6a600c3a1876bc203445df4f0fd6b12648259666
41922 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41923 Date:   Mon Mar 24 20:46:28 2008 +0300
41924
41925     uec: add support for RGMII_RXID interface mode
41926
41927     PHY drivers will use it to setup software delay between RXD and RXC
41928     signals.
41929
41930     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41931
41932 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
41933 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41934 Date:   Mon Mar 24 20:46:24 2008 +0300
41935
41936     uec: add support for gbit mii status readings
41937
41938     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41939
41940 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
41941 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41942 Date:   Mon Mar 24 17:40:47 2008 +0300
41943
41944     83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
41945
41946     This is primarily for the early console support.
41947
41948     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41949
41950 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
41951 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41952 Date:   Mon Mar 24 17:40:43 2008 +0300
41953
41954     83xx: initialize serdes for MPC837XRDB boards
41955
41956     On the MPC8377ERDB: 2 SATA and 2 PCI-E.
41957     On the MPC8378ERDB: 2 PCI-E
41958     On the MPC8379ERDB: 4 SATA
41959
41960     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41961
41962 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
41963 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41964 Date:   Mon Mar 24 17:40:32 2008 +0300
41965
41966     83xx: serdes setup routines
41967
41968     This patch adds few routines to configure serdes on 837x targets.
41969
41970     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41971
41972 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
41973 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41974 Date:   Mon Mar 24 17:40:27 2008 +0300
41975
41976     83xx: split COBJS onto separate lines
41977
41978     ..plus get rid of some #ifdefs in the .c files.
41979
41980     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41981
41982 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
41983 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41984 Date:   Mon Mar 24 17:40:23 2008 +0300
41985
41986     83xx: nand support for MPC837XRDB boards
41987
41988     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41989
41990 commit 82e45a204190593e8613145a928f998fb8c909c4
41991 Author: Jerry Van Baren <gvb.uboot@gmail.com>
41992 Date:   Tue Mar 18 21:44:41 2008 -0400
41993
41994     Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
41995
41996     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
41997     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41998
41999 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
42000 Author: Michael Barkowski <michael.barkowski@freescale.com>
42001 Date:   Thu Mar 20 13:15:39 2008 -0400
42002
42003     mpc8323erdb: remove RTC and add EEPROM
42004
42005     There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
42006
42007     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
42008     Acked-by: Kim Phillips <kim.phillips@freescale.com>
42009
42010 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
42011 Author: Michael Barkowski <michael.barkowski@freescale.com>
42012 Date:   Thu Mar 20 13:15:34 2008 -0400
42013
42014     mpc8323erdb: Improve the system performance
42015
42016     The following changes are based on kernel UCC ethernet performance:
42017
42018     1.  Make the CSB bus pipeline depth as 4, and enable the repeat mode
42019     2.  Optimize transactions between QE and CSB.  Added CFG_SPCR_OPT
42020         switch to enable this setting.
42021
42022     The following changes are based on the App Note AN3369 and
42023     verified to improve memory latency using LMbench:
42024
42025     3.  CS0_CONFIG[AP_n_EN] is changed from 1 to 0
42026     4.  CS0_CONFIG[ODT_WR_CONFIG] set to 1.  Was a reserved setting
42027         previously.
42028     5.  TIMING_CFG_1[WRREC] is changed from 3clks to 2clks  (based on
42029         Twr=15ns, and this was already the setting in DDR_MODE)
42030     6.  TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
42031         Trp=15ns)
42032     7.  TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
42033         Tras=40ns)
42034     8.  TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
42035         Trcd=15ns)
42036     9.  TIMING_CFG_1[REFREC] changed from 21 clks to 11clks.  (based on
42037         Trfc=75ns)
42038     10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks.  (based
42039         on Tfaw=50ns)
42040     11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
42041         on CL=3 and WL=2).
42042
42043     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
42044     Acked-by: Kim Phillips <kim.phillips@freescale.com>
42045
42046 commit fc549c871f43933396a5b3e21d897023d4b31b8d
42047 Author: Michael Barkowski <michael.barkowski@freescale.com>
42048 Date:   Thu Mar 20 13:15:28 2008 -0400
42049
42050     mpc8323erdb: use readable DDR config macros
42051
42052     Use available shift/mask macros to define DDR configuration.
42053
42054     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
42055     Acked-by: Kim Phillips <kim.phillips@freescale.com>
42056
42057 commit 89c7784ed90ba50301eec521144f95111e472906
42058 Author: Timur Tabi <timur@freescale.com>
42059 Date:   Fri Feb 8 13:15:55 2008 -0600
42060
42061     83xx: Add Vitesse VSC7385 firmware uploading
42062
42063     Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
42064     the Vitesse VSC7385 firmware.  Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
42065     Cleaned up the board header files to make selecting the VSC7385 easier to
42066     control.
42067
42068     Signed-off-by: Timur Tabi <timur@freescale.com>
42069     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42070
42071 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
42072 Author: Timur Tabi <timur@freescale.com>
42073 Date:   Fri Feb 8 13:15:54 2008 -0600
42074
42075     NET: Add Vitesse VSC7385 firmware uploading
42076
42077     The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
42078     and other boards.  A small firwmare must be uploaded to its on-board memory
42079     before it can be enabled.  This patch adds the code which uploads firmware
42080     (but not the firmware itself).
42081
42082     Previously, this feature was provided by a U-Boot application that was
42083     made available only on Freescale BSPs.  The VSC7385 firmware must still
42084     be obtained separately, but at least there is no longer a need for a separate
42085     application.
42086
42087     Signed-off-by: Timur Tabi <timur@freescale.com>
42088     Acked-by: Ben Warren <biggerbadderben@gmail.com>
42089
42090 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
42091 Author: Wolfgang Denk <wd@denx.de>
42092 Date:   Wed Mar 26 00:52:10 2008 +0100
42093
42094     Coding Style cleanyp; update CHANGELOG
42095
42096     Signed-off-by: Wolfgang Denk <wd@denx.de>
42097
42098 commit 43ddd9c820fec44816188f53346b464e20b3142d
42099 Author: Jerry Van Baren <gvb.uboot@gmail.com>
42100 Date:   Sat Mar 22 14:23:49 2008 -0400
42101
42102     Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
42103
42104     These defines embedded the u-boot env variables and/or the bd_t structure
42105     in the fdt blob.  The conclusion of discussion on the u-boot email list
42106     was that embedding these in the fdt blob is not useful: there are better
42107     ways of passing the data (in fact, the fdt blob itself replaces the
42108     bd_t struct).
42109
42110     The only board that enables these is the stxxtc and they don't appear
42111     to be used by linux.
42112
42113     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
42114     Acked-by: Kim Phillips <kim.phillips@freescale.com>
42115
42116 commit 22ed2285743359fd1fe73e411dff914b2256e68f
42117 Author: Stefan Roese <sr@denx.de>
42118 Date:   Mon Mar 17 10:49:25 2008 +0100
42119
42120     rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
42121
42122     Signed-off-by: Stefan Roese <sr@denx.de>
42123
42124 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
42125 Author: Kyungmin Park <kmpark@infradead.org>
42126 Date:   Mon Mar 17 08:54:06 2008 +0900
42127
42128     Add Flex-OneNAND booting support
42129
42130     Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
42131     using a NOR Flash interface. This on-chip integration enables system designers
42132     to reduce external system logic and use high-density NAND Flash
42133     in applications that would otherwise have to use more NOR components.
42134
42135     Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
42136     in more flexible way. While MLC area of Flex-OneNAND can be used to store data
42137     that require low reliability and high density, SLC area of Flex-OneNAND
42138     to store data that need high reliability and high performance. Flex-OneNAND
42139     can let users take advantage of storing these two different types of data
42140     into one chip, which is making Flex-OneNAND more cost- and space-effective.
42141
42142     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
42143
42144 commit c512389cc4a10253249271ff6c887c6dab1f0db2
42145 Author: AndrĂ© Schwarz <andre.schwarz@matrix-vision.de>
42146 Date:   Thu Mar 13 13:50:52 2008 +0100
42147
42148     MPC5200: support setup without FEC
42149
42150     Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
42151     defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
42152
42153     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
42154     Acked-by: Grant Likely <grant.likely@secretlab.ca>
42155
42156 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
42157 Author: Jon Loeliger <jdl@freescale.com>
42158 Date:   Wed Mar 5 18:05:46 2008 -0600
42159
42160     FSL: Move board/mpc8266ads under board/freescale
42161
42162     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42163
42164 commit 7f1d846e5c5754449c286587d099d85246062772
42165 Author: Jon Loeliger <jdl@freescale.com>
42166 Date:   Wed Mar 5 18:05:47 2008 -0600
42167
42168     FSL: Move board/mpc7448hpc2 under board/freescale
42169
42170     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42171
42172 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
42173 Author: Jon Loeliger <jdl@freescale.com>
42174 Date:   Wed Mar 5 18:05:45 2008 -0600
42175
42176     FSL: Move board/mpc8260ads under board/freescale
42177
42178     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42179
42180 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
42181 Author: goda.yusuke <goda.yusuke@renesas.com>
42182 Date:   Wed Mar 5 17:08:33 2008 +0900
42183
42184     net: Add support AX88796L ethernet device
42185
42186     AX88796L is device of NE2000 compatible.
42187     This patch support AX88796L ethernet device.
42188
42189     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
42190     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42191
42192 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
42193 Author: Wolfgang Denk <wd@denx.de>
42194 Date:   Tue Mar 25 22:50:41 2008 +0100
42195
42196     ne2000 driver: change #ifdef to Makefile conditional compilation
42197
42198     Signed-off-by: Wolfgang Denk <wd@denx.de>
42199
42200 commit e710185aae90c64d39c2d453e40e58ceefe4f250
42201 Author: goda.yusuke <goda.yusuke@renesas.com>
42202 Date:   Wed Mar 5 17:08:20 2008 +0900
42203
42204     net: Divided code of NE2000 ethernet driver
42205
42206     There are more devices of the NE2000 base.
42207     A present code is difficult for us to support more devices.
42208     To support more NE2000 clone devices, separated the function.
42209
42210     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
42211     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42212
42213 commit 395bce4f59a507a60a475f7ee46bed47de9482df
42214 Author: Mike Frysinger <vapier@gentoo.org>
42215 Date:   Sun Feb 24 23:58:13 2008 -0500
42216
42217     net/Blackfin: move on-chip MAC driver into drivers/net/
42218
42219     The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
42220     directory, but it is not board specific, so relocate it to the drivers dir
42221     so that other Blackfin ports can utilize it.
42222
42223     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42224
42225 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
42226 Author: Mike Frysinger <vapier@gentoo.org>
42227 Date:   Sun Feb 24 23:52:35 2008 -0500
42228
42229     smc91111: use SSYNC() rather than asm(ssync) for Blackfin
42230
42231     Since the "ssync" instruction may have hardware anomalies associated with
42232     it, have the smc91111 driver use the SSYNC macro rather than invoking it
42233     directly.  We workaround all the anomalies via this macro.
42234
42235     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42236
42237 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
42238 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
42239 Date:   Sun Feb 17 22:57:47 2008 +0000
42240
42241     8xx: Update OF support on 8xx
42242
42243     This patch does some shifting around of OF support on 8xx.
42244
42245     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
42246
42247 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
42248 Author: Kumar Gala <galak@kernel.crashing.org>
42249 Date:   Fri Feb 15 15:16:18 2008 -0600
42250
42251     ppc: Allow boards to specify how much memory they can map
42252
42253     For historical reasons we limited the stack to 256M because some boards
42254     could only map that much via BATS.  However newer boards are capable of
42255     mapping more memory (for example 85xx is capble of doing up to 2G).
42256
42257     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42258
42259 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
42260 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
42261 Date:   Fri Feb 15 01:05:58 2008 +0000
42262
42263     8xx : Add OF support to Adder875 board port - resubmit
42264
42265     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
42266
42267 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
42268 Author: Kumar Gala <galak@kernel.crashing.org>
42269 Date:   Thu Feb 14 20:44:42 2008 -0600
42270
42271     Add setexpr command
42272
42273     Add a simple expr style command that will set an env variable as the result
42274     of the command.  This allows us to do simple math in shell.  The following
42275     operations are supported: &, |, ^, +, -, *, /.
42276
42277     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42278
42279 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
42280 Author: Jon Loeliger <jdl@freescale.com>
42281 Date:   Wed Mar 5 17:27:48 2008 -0600
42282
42283     FSL: Move board/mpc7448hpc2 under board/freescale
42284
42285     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42286
42287 commit 449c703374a8868453425e15da7e2f76221b72e4
42288 Author: Jon Loeliger <jdl@freescale.com>
42289 Date:   Wed Mar 5 17:21:43 2008 -0600
42290
42291     FSL: Move board/mpc8266ads under board/freescale
42292
42293     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42294
42295 commit 5863577989ad689427bb750107e9a75f1c1645d2
42296 Author: Jon Loeliger <jdl@freescale.com>
42297 Date:   Wed Mar 5 16:41:41 2008 -0600
42298
42299     FSL: Move board/mpc8260ads under board/freescale
42300
42301     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42302
42303 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
42304 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42305 Date:   Tue Mar 25 21:30:08 2008 +0900
42306
42307     [MIPS] Move gth2_config from ARM section to MIPS
42308
42309     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42310
42311 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
42312 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42313 Date:   Tue Mar 25 21:30:07 2008 +0900
42314
42315     [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
42316
42317     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42318
42319 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
42320 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42321 Date:   Tue Mar 25 21:30:07 2008 +0900
42322
42323     [MIPS] Fix dcache_status()
42324
42325     You can't judge UNCACHED by Config.K0 LSB.
42326
42327     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42328
42329 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
42330 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42331 Date:   Tue Mar 25 21:30:07 2008 +0900
42332
42333     [MIPS] Introduce _machine_restart
42334
42335     Handles machine specific functions by using weak functions.
42336
42337     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42338
42339 commit decaba6f5cf386d569ac3997bebb871b966c6b18
42340 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42341 Date:   Tue Mar 25 21:30:07 2008 +0900
42342
42343     [MIPS] Cleanup CP0 Status initialization
42344
42345     Add setup_c0_status from Linux. For the moment we disable interrupts, set
42346     CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
42347     reset-time configuration and will work well across most processors.
42348
42349     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42350
42351 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
42352 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42353 Date:   Tue Mar 25 21:30:07 2008 +0900
42354
42355     [MIPS] Initialize CP0 Cause before setting up CP0 Status register
42356
42357     Without this change, we'll be suffering from deffered WATCH exception
42358     once Status.EXL is cleared. Make sure Cause.WP is cleared.
42359
42360     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42361
42362 commit 26138623230ca2bad3c78e05a65527ea70c8b688
42363 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42364 Date:   Tue Mar 25 21:30:07 2008 +0900
42365
42366     [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
42367
42368     Move things to appropriate place.
42369
42370     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42371
42372 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
42373 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42374 Date:   Tue Mar 25 21:30:06 2008 +0900
42375
42376     [MIPS] Implement flush_cache()
42377
42378     We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
42379     don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
42380     function is used not only in U-Boot specfic programs but also at loading
42381     target binaries.
42382
42383     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42384
42385 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
42386 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42387 Date:   Tue Mar 25 21:30:06 2008 +0900
42388
42389     [MIPS] Fix I-/D-cache initialization loops
42390
42391     Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
42392     again per a loop for I-cache initialization. But according to 'See MIPS
42393     Run', we're encouraged to use three separate loops rather than combining
42394     them *for both I- and D-cache*. This patch tries to fix this.
42395
42396     In accordance with fixing above, mips_init_[id]cache are separated from
42397     mips_cache_reset(), and rewrite cache loops are completely rewritten with
42398     useful macros.
42399
42400     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42401
42402 commit 1898840797c7f50799377bd5b285a8a93a82c419
42403 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42404 Date:   Tue Mar 25 21:30:06 2008 +0900
42405
42406     [MIPS] Replace memory clearance code with f_fill64
42407
42408     This routine fills memory with zero by 64 bytes, and is 64-bit capable.
42409
42410     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42411
42412 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
42413 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42414 Date:   Tue Mar 25 21:30:06 2008 +0900
42415
42416     [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
42417
42418     This patch replaces the current function definitions with NESTED, LEAF
42419     and END macro. They specify some more additional information about the
42420     function; an alignment of symbol, type of symbol, stack frame usage, etc.
42421     These information explicitly tells the assembler and the debugger about
42422     the types of code we want to generate.
42423
42424     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42425
42426 commit 282223a607c611425fa33f5428f8eae6636972bb
42427 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42428 Date:   Tue Mar 25 11:43:17 2008 +0900
42429
42430     [MIPS] asm headers' updates
42431
42432     Make some asm headers adjusted to the latest Linux kernel.
42433
42434     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42435
42436 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
42437 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42438 Date:   Tue Mar 25 11:39:29 2008 +0900
42439
42440     [MIPS] Request for the 'mips_cache_lock()' removal
42441
42442     The initial intension of having mips_cache_lock() was to use the cache
42443     as memory for temporary stack use so that a C environment can be set up
42444     as early as possible.
42445
42446     But now mips_cache_lock() follow lowlevel_init(). We've already have the
42447     real memory initilaized at this point, therefore we could/should use it.
42448     No reason to lock at all.
42449
42450     Other problems:
42451
42452     Cache locking is not consistent across MIPS implementaions. Some imple-
42453     mentations don't support locking at all. The style of locking varies -
42454     some support per line locking, others per way, etc. Some parts use bits
42455     in status registers instead of cache ops. Current mips_cache_lock() is
42456     not necessarily general-purpose.
42457
42458     And this is worthy of special mention; once U-Boot/MIPS locks the lines,
42459     they are never get unlocked, so the code relies on whatever gets loaded
42460     after U-Boot to re-initialize the cache and clear the locks. We're sup-
42461     posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
42462     but leave the situation as it is for a long time.
42463
42464     For these reasons, I proposed the removal of mips_cache_lock() from the
42465     global start-up code.
42466
42467     This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
42468     *things have changed*. If he wants the same behavior as before, he needs
42469     to have CFG_INIT_RAM_LOCK_MIPS in his config file.
42470
42471     If we don't have any regression report through several releases, then
42472     we'll remove codes entirely.
42473
42474     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42475     Acked-by: Andrew Dyer <amdyer@gmail.com>
42476
42477 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
42478 Author: Yuri Tikhonov <yur@emcraft.com>
42479 Date:   Mon Mar 24 11:30:54 2008 +0100
42480
42481     lwmon5 SYSMON POST: fix backlight control
42482
42483     If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
42484     run on the board, then the SYSMON POST controls the display backlight
42485     (doesn't switch backlight ON if POST FAILED, and does switch the
42486     backlight ON if PASSED).
42487
42488     If not, then the video driver controls the display backlight (just
42489     switch ON the backlight upon initialization).
42490
42491     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42492
42493 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
42494 Author: Yuri Tikhonov <yur@emcraft.com>
42495 Date:   Mon Mar 24 11:29:14 2008 +0100
42496
42497     lwmon5 SYSMON POST: fix handling of negative temperatures
42498
42499     Fix errors in the LWMON5 Sysmon POST for negative temperatures.
42500
42501     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42502
42503 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
42504 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42505 Date:   Fri Mar 7 16:04:25 2008 +0900
42506
42507     pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
42508
42509     In current source code, when the device number of PCI is 0, process PCI
42510     bridge without fail. However, when the device number is 0, it is not PCI
42511     always bridge. There are times when device of PCI allocates.
42512
42513     When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
42514     use this patch.
42515
42516     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42517     Acked-by: Stefan Roese <sr@denx.de>
42518
42519 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
42520 Author: Yuri Tikhonov <yur@emcraft.com>
42521 Date:   Fri Mar 21 09:18:40 2008 +0100
42522
42523     LWMON5: fix dsPIC POST
42524
42525     Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
42526
42527     Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
42528
42529 commit 388b82fddc7c05596f3f615f190da0448227dc82
42530 Author: Bartlomiej Sieka <tur@semihalf.com>
42531 Date:   Thu Mar 20 23:23:13 2008 +0100
42532
42533     [new uImage] Enable new uImage support for the pcs440ep board.
42534
42535     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
42536
42537 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
42538 Author: Bartlomiej Sieka <tur@semihalf.com>
42539 Date:   Thu Mar 20 23:23:13 2008 +0100
42540
42541     [new uImage] Do not compile new uImage format support by default
42542
42543     Disable default building of new uImage format support in preparation
42544     for merge with the master. Support for new format can be enabled on
42545     a per-board basis, by defining the following in the board's config file:
42546
42547     #define CONFIG_FIT             1
42548     #define CONFIG_OF_LIBFDT       1
42549
42550     This can be optionally defined to give more verbose output:
42551
42552     #define CONFIG_FIT_VERBOSE     1 /* enable fit_format_{error,warning}() */
42553
42554     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
42555
42556 commit dafaede8a46c7159310239e036c93e31c6374487
42557 Author: Bartlomiej Sieka <tur@semihalf.com>
42558 Date:   Thu Mar 20 23:20:31 2008 +0100
42559
42560     [new uImage] Disable debuging output in preparation for merge with master
42561
42562     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
42563
42564 commit fbe7a155027beacebaee9b32e1ada781fe924bca
42565 Author: Bartlomiej Sieka <tur@semihalf.com>
42566 Date:   Thu Mar 20 19:38:45 2008 +0100
42567
42568     [new uImage] Compilation and new uImage handling fixes for imxtract
42569
42570     Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
42571     include/config_cmd_default.h. Fix few warnings and handling of new format
42572     images.
42573
42574     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
42575
42576 commit 36cc8cbb3379d5166f882641123521735c469f92
42577 Author: Bartlomiej Sieka <tur@semihalf.com>
42578 Date:   Thu Mar 20 23:10:19 2008 +0100
42579
42580     [new uImage] Fix autoscr command used with new uImage format
42581
42582     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
42583
42584 commit 43142e817f0597be412e7cbe19413f5532eafa5d
42585 Author: Bartlomiej Sieka <tur@semihalf.com>
42586 Date:   Thu Mar 20 23:10:19 2008 +0100
42587
42588     [new uImage] Fix *.its files location in documentation
42589
42590     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
42591
42592 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
42593 Author: Wolfgang Denk <wd@denx.de>
42594 Date:   Thu Mar 20 22:01:38 2008 +0100
42595
42596     lwmon5 POST: remove unreachable code
42597
42598     plus some coding style cleanup
42599
42600     Signed-off-by: Wolfgang Denk <wd@denx.de>
42601
42602 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
42603 Author: Yuri Tikhonov <yur@emcraft.com>
42604 Date:   Thu Mar 20 17:56:04 2008 +0300
42605
42606     LWMON5: POST RTC fix
42607
42608     Modify the RTC API to provide one a status for the time reported by
42609     the rtc_get() function:
42610       0 - a reliable time is guaranteed,
42611     < 0 - a reliable time isn't guaranteed (power fault, clock issues,
42612           and so on).
42613
42614     The RTC chip drivers are responsible for providing this info if the
42615     corresponding chip supports such functionality. If not - always
42616     report that the time is reliable.
42617
42618     The POST RTC test was modified to detect the RTC faults utilizing
42619     this new rtc_get() feature.
42620
42621     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42622
42623 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
42624 Author: Martin Krause <martin.krause@tqs.de>
42625 Date:   Wed Mar 19 14:25:14 2008 +0100
42626
42627     TQM5200B: update MTD partition layout
42628
42629     - insert partition for dtb blob to TQM5200B MTD layout
42630     - set env variables dependent on the configured board
42631       (TQM5200 or TQM5200B)
42632
42633     Signed-off-by: Martin Krause <martin.krause@tqs.de>
42634
42635 commit f0105727d132f56a21fa3ed8b162309cca6cac44
42636 Author: Stefan Roese <sr@denx.de>
42637 Date:   Wed Mar 19 07:09:26 2008 +0100
42638
42639     CFI: Small cleanup for FLASH_SHOW_PROGRESS
42640
42641     With this patch we don't need that many #ifdef's in the code. It moves
42642     the subtraction into the macro and defines a NOP-macro when
42643     CONFIG_FLASH_SHOW_PROGRESS is not defined.
42644
42645     Signed-off-by: Stefan Roese <sr@denx.de>
42646     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
42647
42648 commit 9a042e9ca512beaaa2cb450274313fc477141241
42649 Author: Jerry Van Baren <gvb.uboot@gmail.com>
42650 Date:   Sat Mar 8 13:48:01 2008 -0500
42651
42652     Flash programming progress countdown.
42653
42654     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
42655
42656 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
42657 Author: Bartlomiej Sieka <tur@semihalf.com>
42658 Date:   Wed Mar 19 10:00:06 2008 +0100
42659
42660     [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
42661
42662     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
42663
42664 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
42665 Author: David Gibson <david@gibson.dropbear.id.au>
42666 Date:   Mon Feb 18 18:09:04 2008 +1100
42667
42668     libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
42669
42670     Since fdt_node_offset_by_compatible() was converted to the new
42671     fdt_next_node() iterator, a chunk of initialization code became
42672     redundant, but was not removed by oversight.  This patch cleans it up.
42673
42674     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
42675
42676 commit d0ccb9b140b472039732de102fc14597eedb14df
42677 Author: David Gibson <david@gibson.dropbear.id.au>
42678 Date:   Mon Feb 18 18:06:31 2008 +1100
42679
42680     libfdt: Trivial cleanup for CHECK_HEADER)
42681
42682     Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
42683     However, there are a handful of functions (fdt_move, rw_check_header,
42684     fdt_open_into) from other files which could also use it (currently
42685     they open-code something more-or-less identical).  Therefore, this
42686     patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
42687     places.
42688
42689     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
42690
42691 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
42692 Author: Kumar Gala <galak@kernel.crashing.org>
42693 Date:   Wed Feb 20 14:32:36 2008 -0600
42694
42695     Fix fdt boardsetup command parsing
42696
42697     The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
42698
42699     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42700
42701 commit 804887e6001e2f00bea11431bf34d6d472512cda
42702 Author: Kumar Gala <galak@kernel.crashing.org>
42703 Date:   Fri Feb 15 03:34:36 2008 -0600
42704
42705     Add sub-commands to fdt
42706
42707     fdt header                          - Display header info
42708     fdt bootcpu <id>                    - Set boot cpuid
42709     fdt memory <addr> <size>            - Add/Update memory node
42710     fdt rsvmem print                    - Show current mem reserves
42711     fdt rsvmem add <addr> <size>        - Add a mem reserve
42712     fdt rsvmem delete <index>           - Delete a mem reserves
42713
42714     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42715
42716 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
42717 Author: David Gibson <david@gibson.dropbear.id.au>
42718 Date:   Thu Feb 14 16:50:34 2008 +1100
42719
42720     libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
42721
42722     fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
42723     node which has NOP tags interspersed with its properties.  In this
42724     case fdt_add_subnode_namelen() will put the new subnode before the
42725     first NOP tag, even if there are properties after it, which will
42726     result in an invalid blob.
42727
42728     This patch fixes the bug, and adds a testcase for it.
42729
42730     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
42731
42732 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
42733 Author: David Gibson <david@gibson.dropbear.id.au>
42734 Date:   Tue Feb 12 11:58:31 2008 +1100
42735
42736     libfdt: Add and use a node iteration helper function.
42737
42738     This patch adds an fdt_next_node() function which can be used to
42739     iterate through nodes of the tree while keeping track of depth.  This
42740     function is used to simplify the iteration code in a lot of other
42741     functions, and is also exported for use by library users.
42742
42743     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
42744
42745 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
42746 Author: David Gibson <david@gibson.dropbear.id.au>
42747 Date:   Fri Jan 11 14:55:05 2008 +1100
42748
42749     libfdt: Add fdt_set_name() function
42750
42751     This patch adds an fdt_set_name() function to libfdt, mirroring
42752     fdt_get_name().  This is a r/w function which alters the name of a
42753     given device tree node.
42754
42755     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
42756
42757 commit 23e20aa6488e6c0622496549861bfdc74108debe
42758 Author: Yuri Tikhonov <yur@pollux.denx.de>
42759 Date:   Tue Mar 18 13:33:30 2008 +0100
42760
42761     lwmon5: Fix register test logic to match the specific GDC h/w.
42762
42763     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42764     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42765
42766 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
42767 Author: Yuri Tikhonov <yur@pollux.denx.de>
42768 Date:   Tue Mar 18 13:27:57 2008 +0100
42769
42770     Fix backlight in the lwmon5 POST.
42771
42772     Backlight was switched on even when temperature was too low.
42773
42774     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42775     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42776
42777 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
42778 Author: Yuri Tikhonov <yur@pollux.denx.de>
42779 Date:   Wed Feb 6 18:48:36 2008 +0100
42780
42781     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).
42782
42783      To enable this, alternative, configuration the U-Boot board configuration
42784     file for lwmon5 includes the definitions of alternative addresses for header
42785     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
42786
42787      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
42788     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
42789     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
42790
42791     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42792
42793 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
42794 Author: Yuri Tikhonov <yur@pollux.denx.de>
42795 Date:   Mon Feb 4 17:11:53 2008 +0100
42796
42797     Add support for the lwmon5 board reset via GPIO58.
42798
42799     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42800     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42801
42802 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
42803 Author: Yuri Tikhonov <yur@pollux.denx.de>
42804 Date:   Mon Feb 4 17:09:55 2008 +0100
42805
42806     Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
42807
42808     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42809     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42810
42811 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
42812 Author: Yuri Tikhonov <yur@pollux.denx.de>
42813 Date:   Mon Feb 4 14:11:03 2008 +0100
42814
42815     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.
42816
42817     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42818     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42819
42820 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
42821 Author: Yuri Tikhonov <yur@pollux.denx.de>
42822 Date:   Mon Feb 4 14:10:42 2008 +0100
42823
42824     The patch adds new POST tests for the Lwmon5 board. These are:
42825
42826     * External Watchdog test;
42827     * dsPIC tests;
42828     * FPGA test;
42829     * GDC test;
42830     * Sysmon tests.
42831
42832     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42833     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42834
42835 commit c2ed33efbfff5767bca236828e021c55fd547b6c
42836 Author: Yuri Tikhonov <yur@pollux.denx.de>
42837 Date:   Mon Feb 4 14:10:01 2008 +0100
42838
42839     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
42840
42841     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42842
42843 commit 3a5d1e7f1309998791702b2a559e3126781746b9
42844 Author: Yuri Tikhonov <yur@pollux.denx.de>
42845 Date:   Tue Mar 18 13:33:30 2008 +0100
42846
42847     lwmon5: Fix register test logic to match the specific GDC h/w.
42848
42849     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42850     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42851
42852 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
42853 Author: Yuri Tikhonov <yur@pollux.denx.de>
42854 Date:   Tue Mar 18 13:27:57 2008 +0100
42855
42856     Fix backlight in the lwmon5 POST.
42857
42858     Backlight was switcehd on even when temperature was too low.
42859
42860     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42861     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42862
42863 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
42864 Author: Yuri Tikhonov <yur@pollux.denx.de>
42865 Date:   Wed Feb 6 18:48:36 2008 +0100
42866
42867      The patch introduces the alternative configuration of the log buffer for
42868     the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
42869     the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
42870     PPC440EPX_GPT0_COMP5).
42871
42872      To enable this, alternative, configuration the U-Boot board configuration
42873     file for lwmon5 includes the definitions of alternative addresses for header
42874     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
42875
42876      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
42877     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
42878     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
42879
42880     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42881
42882 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
42883 Author: Yuri Tikhonov <yur@pollux.denx.de>
42884 Date:   Mon Feb 4 17:11:53 2008 +0100
42885
42886     Add support for the lwmon5 board reset via GPIO58.
42887
42888     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42889     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42890
42891 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
42892 Author: Yuri Tikhonov <yur@pollux.denx.de>
42893 Date:   Mon Feb 4 17:09:55 2008 +0100
42894
42895     Some fixes to dspic, fpga, and gdc post tests for lwmon5.
42896     Disable external watch-dog for now.
42897
42898     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42899     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42900
42901 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
42902 Author: Yuri Tikhonov <yur@pollux.denx.de>
42903 Date:   Mon Feb 4 14:11:03 2008 +0100
42904
42905     The patch introduces the CRITICAL feature of POST tests. If the test
42906     marked as POST_CRITICAL fails then the alternative, post_critical,
42907     boot-command is used. If this command is not defined then U-Boot
42908     enters into interactive mode.
42909
42910     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42911     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42912
42913 commit 65b20dcefc89618193fa51947968dada91e4c778
42914 Author: Yuri Tikhonov <yur@pollux.denx.de>
42915 Date:   Mon Feb 4 14:10:42 2008 +0100
42916
42917     The patch adds new POST tests for the Lwmon5 board.
42918     These are:
42919
42920     * External Watchdog test;
42921     * dsPIC tests;
42922     * FPGA test;
42923     * GDC test;
42924     * Sysmon tests.
42925
42926     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42927     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42928
42929 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
42930 Author: Yuri Tikhonov <yur@pollux.denx.de>
42931 Date:   Mon Feb 4 14:10:01 2008 +0100
42932
42933     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
42934
42935     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
42936
42937 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
42938 Author: Wolfgang Denk <wd@denx.de>
42939 Date:   Tue Mar 18 17:35:51 2008 +0100
42940
42941     HMI1001: fix compile problem.
42942
42943     Signed-off-by: Wolfgang Denk <wd@denx.de>
42944
42945 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
42946 Author: Mike Frysinger <vapier@gentoo.org>
42947 Date:   Mon Feb 18 05:32:30 2008 -0500
42948
42949     Blackfin: BF537-stamp: drop board-specific flash driver for CFI
42950
42951     The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
42952     for the board specific driver at all.  Just use the common CFI driver.
42953
42954     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42955
42956 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
42957 Author: Mike Frysinger <vapier@gentoo.org>
42958 Date:   Tue Feb 19 00:36:14 2008 -0500
42959
42960     Blackfin: add proper ELF markings to some assembly functions
42961
42962     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42963
42964 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
42965 Author: Mike Frysinger <vapier@gentoo.org>
42966 Date:   Tue Feb 19 00:35:17 2008 -0500
42967
42968     Blackfin: new cplbinfo command for viewing cplb tables
42969
42970     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42971
42972 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
42973 Author: Mike Frysinger <vapier@gentoo.org>
42974 Date:   Mon Feb 18 05:37:51 2008 -0500
42975
42976     Blackfin: update MAINTAINERS list
42977
42978     Add maintainer information for the Blackfin boards.
42979
42980     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42981
42982 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
42983 Author: Mike Frysinger <vapier@gentoo.org>
42984 Date:   Mon Feb 18 05:26:48 2008 -0500
42985
42986     Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
42987
42988     Stop tying things to the processor that should be tied to other defines and
42989     change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
42990     system to select the -mcpu option.
42991
42992     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42993
42994 commit 86a20fb920bd198105acf7b1191117f566d637ed
42995 Author: Mike Frysinger <vapier@gentoo.org>
42996 Date:   Sat Feb 16 07:40:36 2008 -0500
42997
42998     Blackfin: move bootldr command to common code
42999
43000     This moves the Blackfin-common bootldr command out of the BF537-STAMP
43001     specific board directory and into the common directory so that all Blackfin
43002     boards may utilize it.
43003
43004     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
43005
43006 commit decbe029b2a9d3333d02c433389b1c821eea96d7
43007 Author: Heiko Schocher <hs@denx.de>
43008 Date:   Fri Mar 14 11:05:20 2008 +0100
43009
43010     mgcoge: update configuration
43011
43012     Fix configuration for mgcoge board
43013
43014     Signed-off-by: Heiko Schocher <hs@denx.de>
43015
43016 commit c136724cda0219c49f1d4b346f00da29b14fdf14
43017 Author: Wolfgang Denk <wd@denx.de>
43018 Date:   Sun Mar 16 01:22:59 2008 +0100
43019
43020     drivers/rtc/Makefile: keep list sorted
43021
43022     Signed-off-by: Wolfgang Denk <wd@denx.de>
43023
43024 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
43025 Author: Tor Krill <tor@excito.com>
43026 Date:   Sat Mar 15 15:40:26 2008 +0100
43027
43028     Add support for Intersil isl1208 RTC
43029
43030     Signed-off-by: Tor Krill <tor@excito.com>
43031
43032 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
43033 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43034 Date:   Sat Mar 15 17:36:41 2008 +0100
43035
43036     cramfs: Fix ifdef
43037
43038     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43039
43040 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
43041 Author: Wolfgang Denk <wd@denx.de>
43042 Date:   Sun Mar 16 01:12:58 2008 +0100
43043
43044     Conding style cleanup
43045
43046     Signed-off-by: Wolfgang Denk <wd@denx.de>
43047
43048 commit 41712b4e8c95dff23354bcd620e1f9477160c190
43049 Author: Stefan Roese <sr@denx.de>
43050 Date:   Wed Mar 5 12:31:53 2008 +0100
43051
43052     ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
43053
43054     This patch adds USB OHCI support to the Canyonlands board port. It also
43055     enables EXT2 support.
43056
43057     Signed-off-by: Stefan Roese <sr@denx.de>
43058
43059 commit 2596f5b9d353ff3e4387a3325d05740f16958038
43060 Author: Stefan Roese <sr@denx.de>
43061 Date:   Wed Mar 5 12:29:32 2008 +0100
43062
43063     usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
43064
43065     This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
43066     way a board just needs to define this new option to enable the "force
43067     NoPowerSwitching mode" instead of adding new CPU/architecture defines
43068     to the USB source itself.
43069
43070     This new option will be used first with the new AMCC 460EX Canyonlands
43071     board port, which will be posted in a few days.
43072
43073     This patch also fixes a small compilation problem when DEBUG is enabled.
43074
43075     Signed-off-by: Stefan Roese <sr@denx.de>
43076
43077 commit 71665ebf88408ff2acb762af47989fd4365b321a
43078 Author: Stefan Roese <sr@denx.de>
43079 Date:   Mon Mar 3 17:27:02 2008 +0100
43080
43081     ppc4xx: Add Canyonlands NAND booting support
43082
43083     460EX doesn't support a fixed bootstrap option to boot from 512 byte page
43084     NAND devices. The only bootstrap option for NAND booting is option F for
43085     2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
43086     EEPROM needs to be programmed accordingly.
43087
43088     This patch adds basic NAND booting support for the AMCC Canyonlands aval
43089     board and also adds support to the "bootstrap" command, to enable NAND
43090     booting I2C setting.
43091
43092     Tested with 512 byte page NAND device (32MByte) on Canyonlands.
43093
43094     Signed-off-by: Stefan Roese <sr@denx.de>
43095
43096 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
43097 Author: Stefan Roese <sr@denx.de>
43098 Date:   Tue Mar 11 16:53:00 2008 +0100
43099
43100     ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
43101
43102     This patch adds support for the AMCC Canyonlands 460EX evaluation
43103     board.
43104
43105     Signed-off-by: Stefan Roese <sr@denx.de>
43106
43107 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
43108 Author: Stefan Roese <sr@denx.de>
43109 Date:   Tue Mar 11 16:52:24 2008 +0100
43110
43111     ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
43112
43113     This patch adds support for the AMCC Canyonlands 460EX evaluation
43114     board.
43115
43116     Signed-off-by: Stefan Roese <sr@denx.de>
43117
43118 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
43119 Author: Stefan Roese <sr@denx.de>
43120 Date:   Tue Mar 11 16:51:17 2008 +0100
43121
43122     ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
43123
43124     This patch adds support for the AMCC Canyonlands 460EX evaluation
43125     board.
43126
43127     Signed-off-by: Stefan Roese <sr@denx.de>
43128
43129 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
43130 Author: Stefan Roese <sr@denx.de>
43131 Date:   Tue Mar 11 15:11:43 2008 +0100
43132
43133     ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
43134
43135     This patch adds basic support for the AMCC 460EX/460GT PPC's.
43136
43137     Signed-off-by: Stefan Roese <sr@denx.de>
43138
43139 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
43140 Author: Stefan Roese <sr@denx.de>
43141 Date:   Tue Mar 11 15:11:18 2008 +0100
43142
43143     ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
43144
43145     This patch adds basic support for the AMCC 460EX/460GT PPC's.
43146
43147     Signed-off-by: Stefan Roese <sr@denx.de>
43148
43149 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
43150 Author: Stefan Roese <sr@denx.de>
43151 Date:   Tue Mar 11 15:07:10 2008 +0100
43152
43153     ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
43154
43155     This patch adds basic support for the AMCC 460EX/460GT PPC's.
43156
43157     Signed-off-by: Stefan Roese <sr@denx.de>
43158
43159 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
43160 Author: Stefan Roese <sr@denx.de>
43161 Date:   Tue Mar 11 15:05:50 2008 +0100
43162
43163     ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
43164
43165     This patch adds basic support for the AMCC 460EX/460GT PPC's.
43166
43167     Signed-off-by: Stefan Roese <sr@denx.de>
43168
43169 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
43170 Author: Stefan Roese <sr@denx.de>
43171 Date:   Tue Mar 11 15:05:26 2008 +0100
43172
43173     ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
43174
43175     This patch adds basic support for the AMCC 460EX/460GT PPC's.
43176
43177     Signed-off-by: Stefan Roese <sr@denx.de>
43178
43179 commit 56e410178375d9f20be25fb24e180974f0ae120b
43180 Author: Stefan Roese <sr@denx.de>
43181 Date:   Tue Feb 19 22:07:57 2008 +0100
43182
43183     ppc4xx: interrupt.c reworked
43184
43185     This patch is a rework of the 4xx interrupt handling done while
43186     adding the 460EX/GT support. Interrupts are needed on 4xx for the
43187     EMAC driver.
43188
43189     Signed-off-by: Stefan Roese <sr@denx.de>
43190
43191 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
43192 Author: Stefan Roese <sr@denx.de>
43193 Date:   Tue Feb 19 22:01:57 2008 +0100
43194
43195     ppc4xx: program_tlb now uses 64bit physical addess
43196
43197     This patch changes the physical addess parameter from 32bit to 64bit.
43198     This is needed for 36bit 4xx platforms to access areas located
43199     beyond the 4GB border, like SoC peripherals (EBC etc.).
43200
43201     Signed-off-by: Stefan Roese <sr@denx.de>
43202
43203 commit c3307fa186af85771924c434997089b8104c0a46
43204 Author: Stefan Roese <sr@denx.de>
43205 Date:   Tue Feb 19 21:58:25 2008 +0100
43206
43207     ppc4xx: miiphy.c reworked
43208
43209     While adding the 460EX/GT support I reworked the 4xx miiphy code. It
43210     badly neede some cleanup.
43211
43212     Signed-off-by: Stefan Roese <sr@denx.de>
43213
43214 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
43215 Author: Stefan Roese <sr@denx.de>
43216 Date:   Tue Feb 19 16:21:49 2008 +0100
43217
43218     rtc: Add M41T62 support
43219
43220     This patch add support for the STM M41T62 RTC. It is used and tested
43221     on the AMCC Canyonlands 406EX platform.
43222
43223     Signed-off-by: Stefan Roese <sr@denx.de>
43224
43225 commit 217d383e201adc7f2271145ae345ea5eae2b7170
43226 Author: Niklaus Giger <niklaus.giger@netstal.com>
43227 Date:   Mon Feb 25 18:46:43 2008 +0100
43228
43229     ppc4xx: Add 405GPr based MCU25 board specific files
43230
43231     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
43232
43233 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
43234 Author: Niklaus Giger <niklaus.giger@netstal.com>
43235 Date:   Mon Feb 25 18:46:42 2008 +0100
43236
43237     ppc4xx: Add 405GPr based MCU25 board config file
43238
43239     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
43240
43241 commit b05f35436b733a240559e77e46bed8439665ecc5
43242 Author: Niklaus Giger <niklaus.giger@netstal.com>
43243 Date:   Mon Feb 25 18:46:41 2008 +0100
43244
43245     ppc4xx: Add 405GPr based MCU25 board. Global files
43246
43247     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
43248
43249 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
43250 Author: Niklaus Giger <niklaus.giger@netstal.com>
43251 Date:   Mon Feb 25 18:37:02 2008 +0100
43252
43253     ppc4xx: HCU4/5. remove obsolete hcu_flash.c
43254
43255     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
43256
43257 commit a079494853cc2bfeddb26673219db0b4b2b31566
43258 Author: Niklaus Giger <niklaus.giger@netstal.com>
43259 Date:   Mon Feb 25 18:37:01 2008 +0100
43260
43261     ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
43262
43263     Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
43264     the FLASH_CFI_LEGACY et al. config options.
43265
43266     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
43267
43268 commit e4170e5a50c8110f792bc37472833ae669d69951
43269 Author: Stefan Roese <sr@denx.de>
43270 Date:   Tue Mar 11 13:52:25 2008 +0100
43271
43272     ppc4xx: Fix comment in 405EX DDR2 init code
43273
43274     Signed-off-by: Stefan Roese <sr@denx.de>
43275
43276 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
43277 Author: Bartlomiej Sieka <tur@semihalf.com>
43278 Date:   Fri Mar 14 16:22:34 2008 +0100
43279
43280     Add MD5 support to the new uImage format
43281
43282     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43283
43284 commit 0ede0c383530a418cf98be9122371a86573cd0db
43285 Author: Bartlomiej Sieka <tur@semihalf.com>
43286 Date:   Fri Mar 14 16:22:34 2008 +0100
43287
43288     Add the MD5 algorithm
43289
43290     MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
43291     calculated using the md5() function -- see include/md5.h for details.
43292
43293     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43294
43295 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
43296 Author: Wolfgang Denk <wd@denx.de>
43297 Date:   Fri Mar 14 16:04:54 2008 +0100
43298
43299     tools/setlocalversion: use a git-describe-ish format
43300
43301     Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
43302     where 'nnnnn' is the number of commits since the last tag (i.e.,
43303     1.3.2-rc3).  This makes it much easier to recognize "newer" versions
43304     and to see how much has been changed since the referenced tag.
43305
43306     Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
43307
43308     Signed-off-by: Wolfgang Denk <wd@denx.de>
43309
43310 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
43311 Author: Wolfgang Denk <wd@denx.de>
43312 Date:   Thu Mar 13 14:32:03 2008 +0100
43313
43314     HMI1001: add support for MPC5200 Rev. B processors.
43315
43316     Signed-off-by: Wolfgang Denk <wd@denx.de>
43317
43318 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
43319 Author: Wolfgang Denk <wd@denx.de>
43320 Date:   Thu Mar 13 14:29:49 2008 +0100
43321
43322     TQM5200: remove dead code
43323
43324     This board never used a MGT5100 processor.
43325
43326     Signed-off-by: Wolfgang Denk <wd@denx.de>
43327
43328 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
43329 Author: Marian Balakowicz <m8@semihalf.com>
43330 Date:   Wed Mar 12 12:14:15 2008 +0100
43331
43332     [new uImage] Fix build issue on ARM
43333
43334     ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
43335
43336     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43337
43338 commit 3310c549a73a949430bfda90876df7552a1dab0c
43339 Author: Marian Balakowicz <m8@semihalf.com>
43340 Date:   Wed Mar 12 12:13:13 2008 +0100
43341
43342     [new uImage] Add new uImage format documentation and examples
43343
43344     Create doc/uImage.FIT documentation directory with the following files:
43345     - command_syntax_extensions.txt : extended command syntax description
43346     - howto.txt                     : short usage howto
43347     - source_file_format.txt        : internal new uImage format description
43348
43349     Add example image source files:
43350     - kernel.its
43351     - kernel_fdt.its
43352     - multi.its
43353
43354     Update README appropriately.
43355
43356     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43357     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43358
43359 commit 1ec73761d2e247078f4520a265d463e8b73391a2
43360 Author: Marian Balakowicz <m8@semihalf.com>
43361 Date:   Wed Mar 12 10:35:52 2008 +0100
43362
43363     [new uImage] Fix definition of common bootm_headers_t fields
43364
43365     verify, autostart and lmb fields are used regardless of CONFIG_FIT
43366     setting, move their definitions to common section.
43367
43368     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43369
43370 commit 1d1cb4270edc6a99276834064069717f9782c491
43371 Author: Marian Balakowicz <m8@semihalf.com>
43372 Date:   Wed Mar 12 10:35:51 2008 +0100
43373
43374     [new uImage] Fix build problems on trab board
43375
43376     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43377
43378 commit f773bea8e11f4a11c388dcee956b2444203e6b65
43379 Author: Marian Balakowicz <m8@semihalf.com>
43380 Date:   Wed Mar 12 10:35:46 2008 +0100
43381
43382     [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
43383
43384     Save FIT configuration provied in the first bootm argument and use it
43385     when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
43386     arguments are not specified.
43387
43388     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43389
43390 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
43391 Author: Marian Balakowicz <m8@semihalf.com>
43392 Date:   Wed Mar 12 10:33:01 2008 +0100
43393
43394     [new uImage] More verbose kernel image uncompress error message
43395
43396     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43397
43398 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
43399 Author: Marian Balakowicz <m8@semihalf.com>
43400 Date:   Wed Mar 12 10:33:01 2008 +0100
43401
43402     [new uImage] Use show_boot_progress() for new uImage format
43403
43404     This patch allocates a set of show_boot_progress() IDs for new uImage format
43405     and adds show_boot_progress() calls in new uImage format handling code.
43406
43407     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43408
43409 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
43410 Author: Marian Balakowicz <m8@semihalf.com>
43411 Date:   Wed Mar 12 10:33:01 2008 +0100
43412
43413     [new uImage] Add new uImage fromat support to fpga command
43414
43415     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43416
43417 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
43418 Author: Marian Balakowicz <m8@semihalf.com>
43419 Date:   Wed Mar 12 10:33:01 2008 +0100
43420
43421     [new uImage] Add new uImage format handling to other bootm related commands
43422
43423     Updated commands:
43424
43425     docboot  - cmd_doc.c
43426     fdcboot  - cmd_fdc.c
43427     diskboot - cmd_ide.c
43428     nboot    - cmd_nand.c
43429     scsiboot - cmd_scsi.c
43430     usbboot  - cmd_usb.c
43431
43432     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43433
43434 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
43435 Author: Marian Balakowicz <m8@semihalf.com>
43436 Date:   Wed Mar 12 10:33:00 2008 +0100
43437
43438     [new uImage] Add new uImage format support to imgextract command
43439
43440     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43441
43442 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
43443 Author: Marian Balakowicz <m8@semihalf.com>
43444 Date:   Wed Mar 12 10:33:00 2008 +0100
43445
43446     [new uImage] Add new uImage format support to autoscript routine
43447
43448     autoscript() routine is updated to accept second argument, which
43449     is only used for FIT images and provides a FIT subimage unit name.
43450
43451     autoscript() routine callers must now pass two arguments. For
43452     non-interactive use (like in cmd_load.c, cmd_net.c), new environment
43453     variable 'autoscript_uname' is introduced and used as a FIT
43454     subimage unit name source.
43455
43456     autoscript command accepts extended syntax of the addr argument:
43457     addr:<subimg_uname>
43458
43459     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43460
43461 commit cd7c596e9f561dbbc17b717277438aee78cde14f
43462 Author: Marian Balakowicz <m8@semihalf.com>
43463 Date:   Wed Mar 12 10:33:00 2008 +0100
43464
43465     [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
43466
43467     This patch updates architecture specific implementations of
43468     do_bootm_linux() adding new uImage format handling for
43469     operations like get kernel entry point address, get kernel
43470     image data start address.
43471
43472     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43473
43474 commit 3dfe110149311425919e6d6a14b561b4207498f1
43475 Author: Marian Balakowicz <m8@semihalf.com>
43476 Date:   Wed Mar 12 10:32:59 2008 +0100
43477
43478     [new uImage] Add node offsets for FIT images listed in struct bootm_headers
43479
43480     This patch adds new node offset fields to struct bootm_headers
43481     and updates bootm_headers processing code to make use of them.
43482     Saved node offsets allow to avoid repeating fit_image_get_node() calls.
43483
43484     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43485
43486 commit bc8ed486b125452ba3bd8344f052f437329150c5
43487 Author: Marian Balakowicz <m8@semihalf.com>
43488 Date:   Wed Mar 12 10:32:53 2008 +0100
43489
43490     [new uImage] ppc: Add new uImage format support to FDT handling routines
43491
43492     Support for new (FIT) format uImages is added to powerpc specific
43493     boot_get_fdt() routine which now recognizes, sanity checks FIT image
43494     and is able to access data sections of the requested component image.
43495
43496     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43497
43498 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
43499 Author: Marian Balakowicz <m8@semihalf.com>
43500 Date:   Wed Mar 12 10:14:57 2008 +0100
43501
43502     [new uImage] Re-enable interrupts for non automatic booting
43503
43504     Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
43505     environment variable is not set to 'yes'.
43506
43507     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43508
43509 commit d985c8498c4e47095820da97aa722381d39172c5
43510 Author: Marian Balakowicz <m8@semihalf.com>
43511 Date:   Wed Mar 12 10:14:38 2008 +0100
43512
43513     [new uImage] Remove unnecessary arguments passed to ramdisk routines
43514
43515     boot_get_ramdisk() and image_get_ramdisk() do not need all
43516     cmdtp, flag, argc and argv arguments. Simplify routines definition.
43517
43518     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43519
43520 commit c87796483bc7c2900470dc747c367f602577608d
43521 Author: Marian Balakowicz <m8@semihalf.com>
43522 Date:   Wed Mar 12 10:12:37 2008 +0100
43523
43524     [new uImage] Add new uImage format support for ramdisk handling
43525
43526     This patch updates boot_get_ramdisk() routine adding format
43527     verification and handling for new (FIT) uImages.
43528
43529     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43530
43531 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
43532 Author: Marian Balakowicz <m8@semihalf.com>
43533 Date:   Wed Mar 12 10:01:05 2008 +0100
43534
43535     [new uImage] Add new uImage format support for kernel booting
43536
43537     New format uImages are recognized by the bootm command,
43538     validity of specified kernel component image is checked and
43539     its data section located and used for further processing
43540     (uncompress, load, etc.)
43541
43542     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43543
43544 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
43545 Author: Marian Balakowicz <m8@semihalf.com>
43546 Date:   Tue Mar 11 12:35:20 2008 +0100
43547
43548     [new uImage] Add new uImage format support for imls and iminfo commands
43549
43550     imls and iminfo can now recognize nad print out contents of the new (FIT)
43551     format uImages.
43552
43553     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43554
43555 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
43556 Author: Bartlomiej Sieka <tur@semihalf.com>
43557 Date:   Tue Mar 11 12:34:47 2008 +0100
43558
43559     [new uImage] Add support for new uImage format to mkimage tool
43560
43561     Support for the new uImage format (FIT) is added to mkimage tool.
43562     Commandline syntax is appropriately extended:
43563
43564     mkimage [-D dtc_options] -f fit-image.its fit-image
43565
43566     mkimage (together with dtc) takes fit-image.its and referenced therein
43567     binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
43568     final image that can be transferred to the target (e.g., via tftp) and then
43569     booted using the bootm command in U-Boot.
43570
43571     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43572
43573 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
43574 Author: Marian Balakowicz <m8@semihalf.com>
43575 Date:   Mon Mar 10 17:53:49 2008 +0100
43576
43577     [new uImage] Make node unit names const in struct bootm_headers
43578
43579     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43580
43581 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
43582 Author: Marian Balakowicz <m8@semihalf.com>
43583 Date:   Fri Feb 29 21:24:06 2008 +0100
43584
43585     [new uImage] New uImage low-level API
43586
43587     Add FDT-based functions for handling new format component images,
43588     configurations, node operations, property get/set, etc.
43589
43590     fit_        - routines handling global new format uImage operations
43591                   like get/set top level property, process all nodes, etc.
43592     fit_image_  - routines handling component images subnodes
43593     fit_conf_   - routines handling configurations node
43594
43595     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43596     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43597
43598 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
43599 Author: Wolfgang Denk <wd@denx.de>
43600 Date:   Sun Mar 9 16:20:02 2008 +0100
43601
43602     Release v1.3.2
43603
43604     Update CHANGELOG for release.
43605
43606     Signed-off-by: Wolfgang Denk <wd@denx.de>
43607
43608 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
43609 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43610 Date:   Sun Mar 9 14:52:11 2008 +0100
43611
43612     SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
43613
43614     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43615     Signed-off-by: Wolfgang Denk <wd@denx.de>
43616
43617 commit db695b78515ddb88a2d4f3357c120345efbf59ec
43618 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43619 Date:   Sun Mar 9 10:44:01 2008 +0100
43620
43621     scb9328: Fix flash warning: type qualifiers ignored on function return type
43622
43623     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43624
43625 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
43626 Author: Wolfgang Denk <wd@denx.de>
43627 Date:   Sun Mar 9 10:50:41 2008 +0100
43628
43629     esd/common/fpga.c: fix indentation.
43630
43631     Signed-off-by: Wolfgang Denk <wd@denx.de>
43632
43633 commit cc3843e36453e2b8db65d7e56de938ba045016a0
43634 Author: Wolfgang Denk <wd@denx.de>
43635 Date:   Sun Mar 9 10:33:31 2008 +0100
43636
43637     common/kgdb.c: fix 'dereferencing type-punned pointer' warning
43638
43639     and get rid of a couple of unneeded casts.
43640
43641     Signed-off-by: Wolfgang Denk <wd@denx.de>
43642
43643 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
43644 Author: Wolfgang Denk <wd@denx.de>
43645 Date:   Sun Mar 9 10:09:53 2008 +0100
43646
43647     esd/common/fpga.c: fix 'assignment of read-only location' error
43648
43649     Signed-off-by: Wolfgang Denk <wd@denx.de>
43650
43651 commit c6fe4dabac066e8758345d249032768496983a3e
43652 Author: Wolfgang Denk <wd@denx.de>
43653 Date:   Sun Mar 9 02:13:19 2008 +0100
43654
43655     Makefile: make build silently again.
43656
43657     Signed-off-by: Wolfgang Denk <wd@denx.de>
43658
43659 commit 76babc86576f092573599334c85ec543fdbc6015
43660 Author: Wolfgang Denk <wd@denx.de>
43661 Date:   Sun Mar 9 02:07:49 2008 +0100
43662
43663     m501sk: Fix out of tree building
43664
43665     Signed-off-by: Wolfgang Denk <wd@denx.de>
43666
43667 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
43668 Author: Wolfgang Denk <wd@denx.de>
43669 Date:   Sun Mar 9 00:06:09 2008 +0100
43670
43671     ADS5121: fix out of tree build
43672
43673     and simplify Makefile a bit.
43674
43675     Signed-off-by: Wolfgang Denk <wd@denx.de>
43676
43677 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
43678 Author: Wolfgang Denk <wd@denx.de>
43679 Date:   Sat Mar 8 22:35:31 2008 +0100
43680
43681     Release v1.3.2
43682
43683     Signed-off-by: Wolfgang Denk <wd@denx.de>
43684
43685 commit 78a90f827df74520e939c794fc7413dace21c4db
43686 Author: Wolfgang Denk <wd@denx.de>
43687 Date:   Sat Mar 8 22:35:04 2008 +0100
43688
43689     Update CHANGELOG
43690
43691     Signed-off-by: Wolfgang Denk <wd@denx.de>
43692
43693 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
43694 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43695 Date:   Sat Mar 8 21:30:04 2008 +0100
43696
43697     esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
43698
43699     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43700
43701 commit d75469d48c05795144f4b8ba76addbb4920a7bba
43702 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43703 Date:   Sat Mar 8 09:25:49 2008 +0900
43704
43705     net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
43706
43707     When rtl_recv() of rtl8169 is called, OWNbit of status register
43708     is not enable occasionally.
43709     rtl_recv() doesn't work normally when the driver doesn't do
43710     appropriate processing.
43711     This patch fix this problem.
43712
43713     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43714
43715 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
43716 Author: Heiko Schocher <hs@denx.de>
43717 Date:   Fri Mar 7 08:15:28 2008 +0100
43718
43719     mgsuvd: update board configuration
43720
43721     initialize the UPIOx controller.
43722
43723     Signed-off-by: Heiko Schocher <hs@denx.de>
43724
43725 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
43726 Author: Heiko Schocher <hs@denx.de>
43727 Date:   Fri Mar 7 08:13:41 2008 +0100
43728
43729     mgcoge: update board configuration
43730
43731     add support for the config Flash.
43732     initialize the UPIOx controller.
43733
43734     Signed-off-by: Heiko Schocher <hs@denx.de>
43735
43736 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
43737 Author: Kim Phillips <kim.phillips@freescale.com>
43738 Date:   Fri Mar 7 12:27:31 2008 -0600
43739
43740     mpc83xx: make dtb basename file references equal those of linux
43741
43742     the dts file basenames were updated in linux - this helps avoid
43743     inadvertently loading any old dtbs laying around.
43744
43745     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43746
43747 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
43748 Author: Kim Phillips <kim.phillips@freescale.com>
43749 Date:   Wed Feb 27 16:08:22 2008 -0600
43750
43751     net: uec_phy: actually increment the timeout counter
43752
43753     allow u-boot to recover (and, e.g., switch to another interface) in the
43754     case where a PHY does not report autonegotiation is complete within its
43755     two second timeout value.
43756
43757     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43758
43759 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
43760 Author: Markus Brunner <super.firetwister@googlemail.com>
43761 Date:   Wed Mar 5 21:38:12 2008 +0100
43762
43763     fix taihu soft spi_read
43764
43765     The taihu board used gpio_read_out_bit which reads the output register and not
43766     the pin state.
43767
43768     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
43769
43770 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
43771 Author: Stefan Roese <sr@denx.de>
43772 Date:   Fri Mar 7 08:01:43 2008 +0100
43773
43774     ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
43775
43776     Signed-off-by: Stefan Roese <sr@denx.de>
43777
43778 commit bd4458cb47abecabd406b1210457be96c69fc49d
43779 Author: Dave Liu <r63238@freescale.com>
43780 Date:   Tue Mar 4 16:59:22 2008 +0800
43781
43782     837xEMDS: Improve the system performance
43783
43784     1. Make the CSB bus pipeline depth as 4, and enable
43785        the repeat mode;
43786     2. Raise the eTSEC emergency priority;
43787     3. Use the highest IP blocks clock.
43788
43789     Signed-off-by: Dave Liu <daveliu@freescale.com>
43790
43791 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
43792 Author: Detlev Zundel <dzu@denx.de>
43793 Date:   Thu Mar 6 16:45:53 2008 +0100
43794
43795     Replace "run load; run update" with conditionalized "run load update".
43796
43797     The latter version stops when "run load" fails for whatever reasons
43798     rendering the combination *a lot* more secure.
43799
43800     Signed-off-by: Detlev Zundel <dzu@denx.de>
43801
43802 commit 6bc113886d7d316df1a4e459bec8baf027518551
43803 Author: Stefan Roese <sr@denx.de>
43804 Date:   Tue Mar 4 17:40:41 2008 +0100
43805
43806     net: Print error message upon net usage when no ethernet-interface is found
43807
43808     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
43809     defined. Then no ethernet interface is available but a simple "tftp"
43810     command will return without any error message which is quite confusing.
43811
43812     Signed-off-by: Stefan Roese <sr@denx.de>
43813
43814 commit a30a549a3553032d809e0356306b62de0b125901
43815 Author: Jon Loeliger <jdl@freescale.com>
43816 Date:   Tue Mar 4 10:03:03 2008 -0600
43817
43818     Remove erroneous or extra spd.h #includers.
43819
43820     Many of the spd.h #includers don't need it,
43821     and wanted to have spd_sdram() declared instead.
43822     Since they didn't get that, some also had open
43823     coded extern declarations of it instead or as well.
43824     Fix it all up by using spd_sdram.h where needed.
43825
43826     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43827
43828 commit a4475386cef14af3fd88f0518b688e755669486d
43829 Author: Wolfgang Denk <wd@denx.de>
43830 Date:   Tue Mar 4 17:41:28 2008 +0100
43831
43832     PCS440EP: fix build problems (redundant #define)
43833
43834     Signed-off-by: Wolfgang Denk <wd@denx.de>
43835
43836 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
43837 Author: Stefan Roese <sr@denx.de>
43838 Date:   Tue Mar 4 17:39:25 2008 +0100
43839
43840     net: Print error message upon net usage when no ethernet-interface is found
43841
43842     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
43843     defined. Then no ethernet interface is available but a simple "tftp"
43844     command will return without any error message which is quite confusing.
43845
43846     Signed-off-by: Stefan Roese <sr@denx.de>
43847
43848 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
43849 Author: Wolfgang Denk <wd@denx.de>
43850 Date:   Tue Mar 4 17:38:50 2008 +0100
43851
43852     W7OLMC/W7OLMG: fix build problems (redundant #define)
43853
43854     Signed-off-by: Wolfgang Denk <wd@denx.de>
43855
43856 commit f9301e1cda296245ba052d7b08321199c3d0af9d
43857 Author: Wolfgang Denk <wd@denx.de>
43858 Date:   Tue Mar 4 14:58:31 2008 +0100
43859
43860     Makefile: fix problem with out-of-tree builds introduced by 5013c09f
43861
43862     Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
43863     problem for out-of-tree builds which caused "make clean" to fail.
43864
43865     Signed-off-by: Wolfgang Denk <wd@denx.de>
43866
43867 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
43868 Author: Wolfgang Denk <wd@denx.de>
43869 Date:   Tue Mar 4 11:58:26 2008 +0100
43870
43871     examples/Makefile: build "hello_world" on 8xx, too.
43872
43873     Signed-off-by: Wolfgang Denk <wd@denx.de>
43874
43875 commit 74eb0222594fd23aafdf168e60e872814eea8b62
43876 Author: Mike Nuss <mike@terascala.com>
43877 Date:   Mon Mar 3 15:27:05 2008 -0500
43878
43879     PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
43880
43881     Every now and then a Sequoia board (or equivalent hardware) had
43882     problems connecting to a Gigabit capable network interface.
43883
43884     There were differences in the PHY setup between Linux and U-Boot.
43885
43886     This patch fixes the problem. Apparently "remote fault" is being set,
43887     which signals to some devices (on the other end of the cable) that a
43888     fault has occurred, while other devices ignore it. I believe the RF bit
43889     was causing the issue, but I removed T4 also, to match up with Linux.
43890
43891     Signed-off-by: Mike Nuss <mike@terascala.com>
43892
43893 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
43894 Author: Timur Tabi <timur@freescale.com>
43895 Date:   Mon Mar 3 09:58:52 2008 -0600
43896
43897     fix QE firmware uploading limit
43898
43899     Fix a typo in qe_upload_firmware() that prevented uploading firmware on
43900     systems with more than one RISC core.
43901
43902     Signed-off-by: Timur Tabi <timur@freescale.com>
43903
43904 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
43905 Author: Bernhard Nemec <bnemec@ganssloser.com>
43906 Date:   Mon Mar 3 11:57:23 2008 +0000
43907
43908     Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
43909
43910     Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
43911     see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
43912
43913     Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
43914
43915 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
43916 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
43917 Date:   Mon Mar 3 10:39:13 2008 +0200
43918
43919     fix copy from ram to dataflash
43920
43921     If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
43922     routines instead of dataflash. This is because it checks "if source
43923     address is not dataflash" instead of target address.
43924
43925     Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
43926
43927 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
43928 Author: Wolfgang Denk <wd@denx.de>
43929 Date:   Mon Mar 3 12:16:44 2008 +0100
43930
43931     Fix quoting problem (preboot setting) in many board config files.
43932
43933     Signed-off-by: Wolfgang Denk <wd@denx.de>
43934
43935 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
43936 Author: Wolfgang Denk <wd@denx.de>
43937 Date:   Mon Mar 3 12:36:49 2008 +0100
43938
43939     ADS5121: Fix default environment.
43940
43941     Signed-off-by: Wolfgang Denk <wd@denx.de>
43942
43943 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
43944 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43945 Date:   Sun Mar 2 16:12:31 2008 +0100
43946
43947     Makefile: Fix missing unconfig and mkconfig use
43948
43949     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43950
43951 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
43952 Author: michael <trimarchi@gandalf.sssup.it>
43953 Date:   Sun Mar 2 23:33:46 2008 +0100
43954
43955     Fix checking fat32 cluster size.
43956
43957     This fixes the cluster size tests in the FAT32 file system.
43958     The current implementation of VFAT support doesn't work if the
43959     referred cluster has an offset > 16bit representation, causing
43960     "fatload" and "fatls" commands etc. to fail.
43961
43962     Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
43963
43964 commit 661bad63a076a96c39c64f136915f146725af92b
43965 Author: Wolfgang Denk <wd@denx.de>
43966 Date:   Sun Mar 2 22:57:23 2008 +0100
43967
43968     Prepare v1.3.2-rc2 release candidate
43969
43970     Signed-off-by: Wolfgang Denk <wd@denx.de>
43971
43972 commit 76957cb3d621bf664311908e5962e151c633c285
43973 Author: Stefan Roese <sr@denx.de>
43974 Date:   Sat Mar 1 12:11:40 2008 +0100
43975
43976     ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
43977
43978     The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
43979     currently 4k/2k is configured. This patch fixes this issue.
43980
43981     Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
43982
43983     Signed-off-by: Stefan Roese <sr@denx.de>
43984
43985 commit 118978c8eb43803e2794233922df4249fa278b83
43986 Author: Woodruff, Richard <r-woodruff2@ti.com>
43987 Date:   Fri Feb 29 17:34:35 2008 -0600
43988
43989     Fix alignment error on ARM for modules
43990
43991     Fix alignment fault on ARM when running modules.  With out an explicit
43992     linker file gcc4.2.1 will half word align __bss_start's value.  The word
43993     dereference will crash hello_world.
43994
43995     signed-off-by Richard Woodruff <r-woodruff2@ti.com>
43996
43997 commit ce1120dd703e6f12c59e4eba9962356a0300b832
43998 Author: Dave Liu <r63238@freescale.com>
43999 Date:   Fri Feb 29 17:45:31 2008 +0800
44000
44001     fs: Fix ext2 read issue
44002
44003     The ext2 aligned process will corrupt the key
44004     data struct, the patch fix this.
44005
44006     Signed-off-by: Dave Liu <daveliu@freescale.com>
44007
44008 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
44009 Author: Wolfgang Denk <wd@denx.de>
44010 Date:   Sun Mar 2 22:45:33 2008 +0100
44011
44012     Makefile: cleanup "clean" target
44013
44014     Make sure CDPATH settings cannot interfere.
44015     Update CHANGELOG.
44016
44017     Signed-off-by: Wolfgang Denk <wd@denx.de>
44018
44019 commit ffda586fc1373243c9794babde69500f6293a8d8
44020 Author: Li Yang <leoli@freescale.com>
44021 Date:   Fri Feb 29 11:46:05 2008 +0800
44022
44023     add cscope build target
44024
44025     Add cscope build target to generate cscope database for code browsing.
44026
44027     Signed-off-by: Li Yang <leoli@freescale.com>
44028
44029 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
44030 Author: Kim Phillips <kim.phillips@freescale.com>
44031 Date:   Wed Feb 27 15:06:39 2008 -0600
44032
44033     net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
44034
44035     erratum 5.6 states the autoneg completion bit is functional only if the
44036     autoneg bit is asserted.
44037
44038     This fixes any secondarily-issued networking commands on non-gigabit
44039     links on the mpc8360 mds board.
44040
44041     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44042
44043 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
44044 Author: John Rigby <jrigby@freescale.com>
44045 Date:   Tue Feb 26 09:38:14 2008 -0700
44046
44047     MPC5121e ADS PCI support take 3
44048
44049     Adds PCI support for MPC5121
44050
44051     Tested with drivers/net/rtl8139.c
44052
44053     Support is conditional since PCI on old silicon does not work.
44054
44055     ads5121_PCI_config turns on PCI
44056
44057     In this version, condition compilation of PCI code has been moved
44058     from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
44059     suggested by Jean-Christophe PLAGNIOL-VILLARD
44060
44061     Signed-off-by: John Rigby <jrigby@freescale.com>
44062
44063 commit 44b4dbed4133f657705b7c5193209da9978243a7
44064 Author: Anatolij Gustschin <agust@denx.de>
44065 Date:   Mon Feb 25 23:53:07 2008 +0100
44066
44067     Fix warnings while compilation of post/drivers/memory.c
44068
44069     Fix warnings while compilation with new gcc in eldk-4.2
44070
44071     Signed-off-by: Anatolij Gustschin <agust@denx.de>
44072
44073 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
44074 Author: Anatolij Gustschin <agust@denx.de>
44075 Date:   Mon Feb 25 20:54:04 2008 +0100
44076
44077     ppc4xx: Fix problem in 4xx_enet.c driver
44078
44079     U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
44080     enabled. To reproduce the problem ensure that 'ethrotate'
44081     environment variable isn't set to "no" and then run
44082     "tftp 200000 not_existent_file".
44083     This patch tries to fix the issue.
44084
44085     Signed-off-by: Anatolij Gustschin <agust@denx.de>
44086
44087 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
44088 Author: Anatolij Gustschin <agust@denx.de>
44089 Date:   Mon Feb 25 20:04:20 2008 +0100
44090
44091     POST: Disable cache while SPR POST
44092
44093     Currently (since commit b2e2142c) u-boot crashes on
44094     sequoia board while SPR test if CONFIG_4xx_DCACHE is
44095     enabled. This patch disables the cache while SPR test.
44096
44097     Signed-off-by: Anatolij Gustschin <agust@denx.de>
44098
44099 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
44100 Author: Martin Krause <martin.krause@tqs.de>
44101 Date:   Mon Feb 25 17:52:40 2008 +0100
44102
44103     TQM5200: use automatic fdt memory fixup (part 2)
44104
44105     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
44106     TB5200 and TB5200_B to fixup the /memory node with the memory values
44107     detected by U-Boot.
44108
44109     Signed-off-by: Martin Krause <martin.krause@tqs.de>
44110
44111 commit 44ceec253ea941b301abf4b079d52324def69d92
44112 Author: Martin Krause <martin.krause@tqs.de>
44113 Date:   Mon Feb 25 15:17:05 2008 +0100
44114
44115     TQM5200: use automatic fdt memory fixup
44116
44117     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
44118     TB5200 and TB5200_B to fixup the /memory node with the memory values
44119     detected by U-Boot.
44120
44121     Signed-off-by: Martin Krause <martin.krause@tqs.de>
44122
44123 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
44124 Author: Martin Krause <martin.krause@tqs.de>
44125 Date:   Mon Feb 25 13:27:52 2008 +0100
44126
44127     TQM5200: fix bug in SDRAM initialization code
44128
44129     This patch fixes a bug in the SDRAM initialization code for the
44130     TQM5200. The hi_addr bit is now set correctly. Without this patch
44131     the hi_addr bit is always set to 1, if the second SDRAM bank is
44132     not populated.
44133
44134     For other MPC5200 boards a correspondig patch has already been applied
44135     some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
44136
44137     Signed-off-by: Martin Krause <martin.krause@tqs.de>
44138     --
44139     Forget the first patch please. I confused flash with SDRAM in
44140     the comment ...
44141
44142 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
44143 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44144 Date:   Mon Feb 25 00:03:12 2008 +0100
44145
44146     mx1fs2/flash: Fix multiple compiler warnings
44147
44148     "pointer targets in assignment differ in signedness"
44149
44150     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44151
44152 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
44153 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44154 Date:   Mon Feb 25 00:03:11 2008 +0100
44155
44156     arm-imx: Fix register definitions
44157
44158     Sync register definitions with linux
44159
44160     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44161
44162 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
44163 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44164 Date:   Mon Feb 25 00:03:10 2008 +0100
44165
44166     actua1/actua2/actua3: Fix multiple unused variable warnings
44167
44168     - actua1:
44169         actux1.c: In function 'checkboard':
44170         actux1.c:92: warning: unused variable 'revision'
44171
44172     - actua2:
44173         actux2.c: In function 'checkboard':
44174         actux2.c:100: warning: unused variable 's'
44175         actux2.c:99: warning: unused variable 'revision'
44176         actux2.c: In function 'reset_phy':
44177         actux2.c:130: warning: unused variable 'i'
44178
44179     - actua3:
44180         actux3.c: In function 'checkboard':
44181         actux3.c:114: warning: unused variable 'revision'
44182
44183     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44184
44185 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
44186 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44187 Date:   Sun Feb 24 11:44:29 2008 +0900
44188
44189     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
44190
44191     The previous patch was lacking of i386, microblaze, nios and nios2. This
44192     patch tries to fix them.
44193
44194     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44195
44196 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
44197 Author: Marian Balakowicz <m8@semihalf.com>
44198 Date:   Fri Feb 29 22:22:46 2008 +0100
44199
44200     [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
44201
44202     Do not use global fdt blob pointer, calculate blob size from routine
44203     argument blob pointer.
44204
44205     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44206
44207 commit d1cc52879c8966507dad9fb575481e6d3985e64e
44208 Author: David Gibson <david@gibson.dropbear.id.au>
44209 Date:   Tue Feb 12 00:58:31 2008 +1100
44210
44211     libfdt: Add and use a node iteration helper function.
44212
44213     This patch adds an fdt_next_node() function which can be used to
44214     iterate through nodes of the tree while keeping track of depth.  This
44215     function is used to simplify the iteration code in a lot of other
44216     functions, and is also exported for use by library users.
44217
44218     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44219
44220 commit 8cf30809a82902a471866d2f07725ce3b8a22291
44221 Author: Bartlomiej Sieka <tur@semihalf.com>
44222 Date:   Fri Feb 29 16:00:24 2008 +0100
44223
44224     [new uImage] Add libfdt support to mkimage
44225
44226     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44227
44228 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
44229 Author: Bartlomiej Sieka <tur@semihalf.com>
44230 Date:   Fri Feb 29 16:00:23 2008 +0100
44231
44232     [new uImage] Add sha1.o object to mkimage binary build
44233
44234     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44235
44236 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
44237 Author: Marian Balakowicz <m8@semihalf.com>
44238 Date:   Fri Feb 29 16:00:06 2008 +0100
44239
44240     [new uImage] Fix component handling for legacy multi component images
44241
44242     Use uint32_t when accessing size table in image_multi_count() and
44243     image_multi_getimg() for multi component images.
44244
44245     Add missing uimage_to_cpu() endianness conversion.
44246
44247     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44248
44249 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
44250 Author: Marian Balakowicz <m8@semihalf.com>
44251 Date:   Fri Feb 29 15:59:59 2008 +0100
44252
44253     [new uImage] Share common uImage code between mkimage and U-boot
44254
44255     This patch adds the following common routines:
44256
44257     1) Dedicated mkimage print_header() is replaced with common
44258     image_print_contents()
44259     image_print_contents_noindent()
44260
44261     2) Common os/arch/type/comp fields name <--> id translation routines
44262     genimg_get_os_name()
44263     genimg_get_arch_name()
44264     genimg_get_type_name()
44265     genimg_get_comp_name()
44266     genimg_get_os_id()
44267     genimg_get_arch_id()
44268     genimg_get_type_id()
44269     genimg_get_comp_id()
44270
44271     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44272
44273 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
44274 Author: Marian Balakowicz <m8@semihalf.com>
44275 Date:   Fri Feb 29 14:58:34 2008 +0100
44276
44277     [new uImage] Update naming convention for bootm/uImage related code
44278
44279     This patch introduces the following prefix convention for the
44280     image format handling and bootm related code:
44281
44282     genimg_             - dual format shared code
44283     image_              - legacy uImage format specific code
44284     fit_                - new uImage format specific code
44285     boot_               - booting process related code
44286
44287     Related routines are renamed and a few pieces of code are moved around and
44288     re-grouped.
44289
44290     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44291
44292 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
44293 Author: Kumar Gala <galak@kernel.crashing.org>
44294 Date:   Wed Feb 27 21:51:51 2008 -0600
44295
44296     [new uImage] Respect autostart setting in linux bootm
44297
44298     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44299     Acked-by: Marian Balakowicz <m8@semihalf.com>
44300
44301 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
44302 Author: Kumar Gala <galak@kernel.crashing.org>
44303 Date:   Wed Feb 27 21:51:50 2008 -0600
44304
44305     [new uImage] Provide ability to restrict region used for boot images
44306
44307     Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
44308     to restrict what memory range is used for bootm.
44309
44310     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44311     Acked-by: Marian Balakowicz <m8@semihalf.com>
44312
44313 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
44314 Author: Kumar Gala <galak@kernel.crashing.org>
44315 Date:   Wed Feb 27 21:51:49 2008 -0600
44316
44317     [new uImage] Use lmb for bootm allocations
44318
44319     Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
44320     functions over to using lmb for allocation of the ramdisk, command line
44321     and kernel bd info.
44322
44323     Convert PPC specific fdt_relocate() to use lmb for allocation of the device
44324     tree.
44325
44326     Provided a weak function that board code can call to do additional
44327     lmb reserves if needed.
44328
44329     Also introduce the concept of bootmap_base to specify the offset in
44330     physical memory that the bootmap is located at.  This is used for
44331     allocations of the cmdline, kernel bd, and device tree as they should
44332     be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
44333
44334     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44335
44336 commit f5614e7926863bf0225ec860d9b319741a9c4004
44337 Author: Kumar Gala <galak@kernel.crashing.org>
44338 Date:   Wed Feb 27 21:51:48 2008 -0600
44339
44340     [new uImage] Add autostart flag to bootm_headers structure
44341
44342     The autostart env variable was dropped as part of the initial new uImage
44343     cleanup.  Add it back here so the arch specific code can decide if it
44344     wants to really boot or not.
44345
44346     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44347     Acked-by: Marian Balakowicz <m8@semihalf.com>
44348
44349 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
44350 Author: Kumar Gala <galak@kernel.crashing.org>
44351 Date:   Wed Feb 27 21:51:47 2008 -0600
44352
44353     [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
44354
44355     Introduce the LMB lib used on PPC in the kernel as a clean way to manage
44356     the memory spaces used by various boot images and structures.  This code
44357     will allow us to simplify the code in bootm and its support functions.
44358
44359     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44360
44361 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
44362 Author: Kumar Gala <galak@kernel.crashing.org>
44363 Date:   Tue Feb 19 22:03:47 2008 -0600
44364
44365     [new uImage] ppc: Allow boards to specify effective amount of memory
44366
44367     For historical reasons we limited the stack to 256M because some boards
44368     could only map that much via BATS.  However newer boards are capable of
44369     mapping more memory (for example 85xx is capable of doing up to 2G).
44370
44371     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44372     Acked-by: Marian Balakowicz <m8@semihalf.com>
44373
44374 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
44375 Author: Kumar Gala <galak@kernel.crashing.org>
44376 Date:   Wed Feb 27 21:51:46 2008 -0600
44377
44378     [new uImage] rework error handling so common functions don't reset
44379
44380     Changed image_get_ramdisk() to just return NULL on error and have
44381     get_ramdisk() propogate that error to the caller.  It's left to the
44382     caller to call do_reset() if it wants to.
44383
44384     Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
44385     to a common location.  In the future we will change get_fdt() and
44386     fdt_relocate() to return success/failure and not call do_reset() at all.
44387
44388     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44389     Acked-by: Marian Balakowicz <m8@semihalf.com>
44390
44391 commit d2bc095a639672def11d5d043b5688d0dbd692ec
44392 Author: Kumar Gala <galak@kernel.crashing.org>
44393 Date:   Wed Feb 27 21:51:45 2008 -0600
44394
44395     [new uImage] ppc: Re-order ramdisk/fdt handling sequence
44396
44397     Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
44398     however it does mean we have to go in and fixup the initrd info since
44399     we don't know where it will be.
44400
44401     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44402
44403 commit 27953493ef025fb698d68c5dee39b36f01f4d530
44404 Author: Kumar Gala <galak@kernel.crashing.org>
44405 Date:   Wed Feb 27 21:51:44 2008 -0600
44406
44407     [new uImage] ppc: Determine if we are booting an OF style
44408
44409     If we are bootin OF style than we can skip setting up some things
44410     that are used for the old boot method.
44411
44412     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44413     Acked-by: Marian Balakowicz <m8@semihalf.com>
44414
44415 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
44416 Author: Kumar Gala <galak@kernel.crashing.org>
44417 Date:   Wed Feb 27 21:51:43 2008 -0600
44418
44419     [new uImage] Don't pass kdb to ramdisk_high since we may not have one
44420
44421     We don't actually need the kdb param as we are just using it to get
44422     bd->bi_memsize which we can get from gd->bd->bi_memsize.  Also, if we
44423     boot via OF we might not actually fill out a kdb.
44424
44425     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44426     Acked-by: Marian Balakowicz <m8@semihalf.com>
44427
44428 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
44429 Author: Kumar Gala <galak@kernel.crashing.org>
44430 Date:   Wed Feb 27 16:30:47 2008 -0600
44431
44432     85xx: Don't icbi when unlocking the cache
44433
44434     There is no reason to icbi when invalidating the temporary stack in
44435     the d-cache.  Its impossible on e500 to have the i-cache contain
44436     any addresses in the temp stack and it can be problematic in generating
44437     transactions on the bus to non-valid addresses.
44438
44439     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44440
44441 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
44442 Author: Andy Fleming <afleming@freescale.com>
44443 Date:   Wed Feb 27 15:50:50 2008 -0600
44444
44445     Fix source for ECM error IVPR
44446
44447     The source vector for the ECM was being set to 2,
44448     but that's what the source vector for DDR was being
44449     set to.  Change it to 1.
44450
44451     Signed-off-by: Andy Fleming <afleming@freescale.com>
44452
44453 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
44454 Author: Andy Fleming <afleming@freescale.com>
44455 Date:   Wed Feb 27 14:29:58 2008 -0600
44456
44457     Invalidate INIT_RAM TLB mappings
44458
44459     Commit 0db37dc...  (and some others) changed the INIT_RAM TLB
44460     mappings to be unguarded.  This collided with an existing "bug"
44461     where the mappings for the INIT_RAM were being kept around.
44462     This meant that speculative loads to those addresses were
44463     succeeding in the TLB, and going out to the bus, where they
44464     were causing an exception (there's nothing at that address). The
44465     Flash code was coincidentally causing such a speculative load.
44466     Rather than go back to mapping the INIT RAM as guarded, we fix
44467     it so that the entries for the INIT_RAM are invalidated.  Thus
44468     the speculative loads will fail in the TLB, and have no effect.
44469
44470     Signed-off-by: Andy Fleming <afleming@freescale.com>
44471
44472 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
44473 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44474 Date:   Sun Feb 17 22:56:17 2008 +0100
44475
44476     sbc8548: Fix Revision reading and unused variable 'path'
44477
44478     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44479
44480 commit 495d162374c472f46454453553382ad0735dc725
44481 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44482 Date:   Sun Feb 17 22:56:16 2008 +0100
44483
44484     sbc8548: Fix cfi flash bank declaration
44485
44486     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44487
44488 commit 4efbe9dbb129f857f27856936112c8c02f016be6
44489 Author: Marian Balakowicz <m8@semihalf.com>
44490 Date:   Wed Feb 27 11:02:26 2008 +0100
44491
44492     [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
44493
44494     Dual format image code must properly handle all three FDT passing methods:
44495     - raw FDT blob passed
44496     - FDT blob embedded in the legacy uImage
44497     - FDT blob embedded in the new uImage
44498
44499     This patch enables proper raw FDT handling when no FIT imaeg support
44500     is compiled in. This is a bit tricky as we must dected FIT format even
44501     when FIT uImage handling is not enabled as both FIT uImages and raw FDT
44502     blobs use tha same low level format (libfdt).
44503
44504     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44505
44506 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
44507 Author: Marian Balakowicz <m8@semihalf.com>
44508 Date:   Wed Feb 27 11:02:26 2008 +0100
44509
44510     [new uImage] POWERPC: Add image_get_fdt() routine
44511
44512     FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
44513     (3) or embedded in the new uImage. For the (2) case embedding image must be
44514     verified before we get FDT from it. This patch factors out legacy image
44515     specific verification routine to the separate helper routine.
44516
44517     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44518     Acked-by: Kumar Gala <galak@kernel.crashing.org>
44519
44520 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
44521 Author: Marian Balakowicz <m8@semihalf.com>
44522 Date:   Wed Feb 27 11:02:07 2008 +0100
44523
44524     [new uImage] Add image_get_kernel() routine
44525
44526     Legacy image specific verification is factored out to a separate helper
44527     routine to keep get_kernel() generic and simple.
44528
44529     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44530     Acked-by: Kumar Gala <galak@kernel.crashing.org>
44531
44532 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
44533 Author: Marian Balakowicz <m8@semihalf.com>
44534 Date:   Wed Feb 27 11:01:04 2008 +0100
44535
44536     [new uImage] Move image verify flag to bootm_headers structure
44537
44538     Do not pass image verification flag directly to related routines.
44539     Simplify argument passing and move it to the bootm_header structure which
44540     contains curently processed image specific data and is already being passed
44541     on the argument list.
44542
44543     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44544     Acked-by: Kumar Gala <galak@kernel.crashing.org>
44545
44546 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
44547 Author: Marian Balakowicz <m8@semihalf.com>
44548 Date:   Wed Feb 27 11:00:47 2008 +0100
44549
44550     [Makefile] Sort COBJS in lib_<arch> Makefiles
44551
44552     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44553
44554 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
44555 Author: Marian Balakowicz <m8@semihalf.com>
44556 Date:   Wed Feb 27 11:00:47 2008 +0100
44557
44558     [new uImage] Optimize gen_get_image() flow control
44559
44560     When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
44561     to do, update its control flow to better reflect that simple case.
44562
44563     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44564     Acked-by: Kumar Gala <galak@kernel.crashing.org>
44565
44566 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
44567 Author: Marian Balakowicz <m8@semihalf.com>
44568 Date:   Mon Feb 4 08:28:17 2008 +0100
44569
44570     [new uImage] POWERPC: Split get_fdt() into get and relocate routines
44571
44572     PPC specific FDT blob handling code is divided into two separate routines:
44573
44574     get_fdt()   - find and verify a FDT blob (either raw or image embedded)
44575     fdt_relocate()      - move FDT blob to within BOOTMAP if needed
44576
44577     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44578     Acked-by: Kumar Gala <galak@kernel.crashing.org>
44579
44580 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
44581 Author: Jon Loeliger <jdl@freescale.com>
44582 Date:   Mon Feb 25 13:13:37 2008 -0600
44583
44584     86xx: Fix renamed GUR symbols in sbc8641d board.
44585
44586     Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
44587     (86xx: Fix GUR PCI config registers properly), we should have
44588     changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
44589     symbols in the sbc8641d board as well.  Fix this oversight.
44590
44591     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44592
44593 commit 64cd594e623c39f73964d18787763e4533f791f7
44594 Author: Stefan Roese <sr@denx.de>
44595 Date:   Mon Feb 25 16:50:48 2008 +0100
44596
44597     ppc4xx: Fix acadia_nand build problem
44598
44599     Don't include testdram() on NAND-booting target acadia_nand. This saves
44600     a few bytes and makes the target build clean again.
44601
44602     Signed-off-by: Stefan Roese <sr@denx.de>
44603
44604 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
44605 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44606 Date:   Sun Feb 24 23:03:12 2008 +0000
44607
44608     mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
44609
44610     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44611
44612 commit 724902c8464e610642b3a170278b99710325888e
44613 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44614 Date:   Sun Feb 24 23:03:11 2008 +0000
44615
44616     arm-imx: Fix registers definition
44617
44618     Sync registers definition with linux
44619
44620     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44621
44622 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
44623 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44624 Date:   Sun Feb 24 23:03:10 2008 +0000
44625
44626     actua1/actua2/actua3: Fix multipleunused variable
44627
44628     - actua1:
44629         actux1.c: In function 'checkboard':
44630         actux1.c:92: warning: unused variable 'revision'
44631
44632     - actua2:
44633         actux2.c: In function 'checkboard':
44634         actux2.c:100: warning: unused variable 's'
44635         actux2.c:99: warning: unused variable 'revision'
44636         actux2.c: In function 'reset_phy':
44637         actux2.c:130: warning: unused variable 'i'
44638
44639     - actua3:
44640         actux3.c: In function 'checkboard':
44641         actux3.c:114: warning: unused variable 'revision'
44642
44643     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44644
44645 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
44646 Author: Marian Balakowicz <m8@semihalf.com>
44647 Date:   Mon Feb 4 08:28:09 2008 +0100
44648
44649     [new uImage] Add dual format uImage support framework
44650
44651     This patch adds framework for dual format images. Format detection is added
44652     and the bootm controll flow is updated to include cases for new FIT format
44653     uImages.
44654
44655     When the legacy (image_header based) format is detected appropriate
44656     legacy specific handling is invoked. For the new (FIT based) format uImages
44657     dual boot framework has a minial support, that will only print out a
44658     corresponding debug messages. Implementation of the FIT specific handling will
44659     be added in following patches.
44660
44661     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44662
44663 commit b29661fc1151077776454288051bc9a488351ce8
44664 Author: Wolfgang Denk <wd@denx.de>
44665 Date:   Sun Feb 24 15:21:36 2008 +0100
44666
44667     Coding style cleanup. Prepare v1.3.2-rc2 release candidate
44668
44669     Signed-off-by: Wolfgang Denk <wd@denx.de>
44670
44671 commit 00b48a48424894daa589d166d73277830b1c6ac4
44672 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44673 Date:   Sat Feb 23 12:15:56 2008 +0100
44674
44675     ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
44676
44677     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44678
44679 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
44680 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44681 Date:   Sat Feb 23 17:24:16 2008 +0900
44682
44683     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
44684
44685     ----------------------------------------------------------------
44686     Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
44687
44688     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
44689     32bit targets.
44690
44691     GCC can be made to warn about usage of long long types with ISO C90
44692     (-ansi), but only with -pedantic.  You can write this in a way that even
44693     then it doesn't cause warnings, namely by:
44694
44695     #ifdef __GNUC__
44696     __extension__ typedef __signed__ long long __s64;
44697     __extension__ typedef unsigned long long __u64;
44698     #endif
44699
44700     The __extension__ keyword in front of this switches off any pedantic
44701     warnings for this expression.
44702
44703     Signed-off-by: Olaf Hering <olh@suse.de>
44704     Cc: <linux-arch@vger.kernel.org>
44705     Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
44706     Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
44707     ----------------------------------------------------------------
44708
44709     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44710
44711 commit 208acd112e6517b21fc30c420396902b103563ac
44712 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44713 Date:   Sat Feb 23 17:07:57 2008 +0900
44714
44715     cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
44716
44717     This will reduce the build time.
44718
44719     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44720
44721 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
44722 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44723 Date:   Sat Feb 23 17:05:00 2008 +0900
44724
44725     cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
44726
44727     This will reduce the build time.
44728
44729     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44730
44731 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
44732 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44733 Date:   Sat Feb 23 16:58:41 2008 +0900
44734
44735     cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
44736
44737     This reduces the build time by ~10%. Here's the gth2_config example.
44738
44739             BEFORE       AFTER
44740     real    0m31.441s    0m27.833s
44741     user    0m24.766s    0m23.045s
44742     sys     0m10.425s    0m7.468s
44743
44744     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44745
44746 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
44747 Author: Marcel Moolenaar <marcelm@juniper.net>
44748 Date:   Fri Feb 22 10:48:07 2008 -0800
44749
44750     make define2mk.sed work on FreeBSD
44751
44752     In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
44753     the define2mk.sed script was identified as the source of the link
44754     failure on FreeBSD. The problem is that sed(1) does not always support
44755     the '+' operator. It isn't on FreeBSD. The attach patch implements the
44756     equivalent, using the '*' operator instead and should work everywhere.
44757
44758     Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
44759
44760 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
44761 Author: Detlev Zundel <dzu@denx.de>
44762 Date:   Fri Feb 22 17:21:32 2008 +0100
44763
44764     Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
44765
44766     The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
44767     final traces of long-deprecated "ramdisk" kernel parm") makes these
44768     changes neccessary.
44769
44770     Signed-off-by: Detlev Zundel <dzu@denx.de>
44771
44772 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
44773 Author: Larry Johnson <lrj@acm.org>
44774 Date:   Thu Feb 21 13:58:16 2008 -0500
44775
44776     LM75 bug fix for negative temperatures
44777
44778     When the LM75 temperature sensor measures a temperature below 0 C, the
44779     current driver does not perform sign extension, so the result returned is
44780     256 C too high.  This patch fixes the problem.
44781
44782     Signed-off-by: Larry Johnson <lrj@acm.org>
44783
44784 commit 5a910c224b13e413bda41922379add6d75c32da3
44785 Author: Heiko Schocher <hs@denx.de>
44786 Date:   Thu Feb 21 18:33:45 2008 +0100
44787
44788     IDS8247: update MAINTAINER entry.
44789
44790     Signed-off-by: Heiko Schocher <hs@denx.de>
44791
44792 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
44793 Author: Heiko Schocher <hs@denx.de>
44794 Date:   Thu Feb 21 18:31:15 2008 +0100
44795
44796     Fix device tree for mgsuvd board.
44797
44798     Rename the "scc" node in "ethernet" for the mgsuvd board.
44799
44800     Signed-off-by: Heiko Schocher <hs@denx.de>
44801
44802 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
44803 Author: Yuri Tikhonov <yur@emcraft.com>
44804 Date:   Thu Feb 21 14:23:42 2008 +0100
44805
44806     lwmon5: enable hardware watchdog
44807
44808     Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
44809     causing it to reboot the board if U-Boot does a long busy-wait with
44810     udelay(). Thus, for these boards we have to restart WD more
44811     frequently.
44812
44813     This patch splits the busy-wait udelay() into smaller, predefined,
44814     intervals, so that the watchdog timer may be resetted with the
44815     configurable (CONFIG_WD_PERIOD) interval.
44816
44817     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
44818
44819 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
44820 Author: Anatolij Gustschin <agust@denx.de>
44821 Date:   Thu Feb 21 12:52:29 2008 +0100
44822
44823     ppc4xx: Support for ATI Radeon 9200 card on sequoia
44824
44825     Adds configuration option for ATI Radeon 9200 card
44826     support to sequoia config file. If CONFIG_VIDEO
44827     is enabled, TEXT_BASE should be changed to 0xFFF80000.
44828
44829     Signed-off-by: Anatolij Gustschin <agust@denx.de>
44830
44831 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
44832 Author: Kumar Gala <galak@kernel.crashing.org>
44833 Date:   Mon Feb 18 08:18:07 2008 -0600
44834
44835     Remove duplicate defines for ARRAY_SIZE
44836
44837     A few duplicate of the ARRAY_SIZE macro sneaked in since we put
44838     the define in common.h.
44839
44840     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44841
44842 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
44843 Author: Kumar Gala <galak@kernel.crashing.org>
44844 Date:   Mon Feb 18 08:09:37 2008 -0600
44845
44846     ppc: Allow boards to specify effective amount of memory
44847
44848     For historical reasons we limited the stack to 256M because some boards
44849     could only map that much via BATS.  However newer boards are capable of
44850     mapping more memory (for example 85xx is capable of doing up to 2G).
44851
44852     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44853
44854 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
44855 Author: Mike Frysinger <vapier@gentoo.org>
44856 Date:   Mon Feb 18 05:24:13 2008 -0500
44857
44858     include autoconf.mk before any other .mk files
44859
44860     This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
44861     those .mk files can have make if statements based on the current config.
44862
44863     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
44864
44865 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
44866 Author: Mike Frysinger <vapier@gentoo.org>
44867 Date:   Mon Feb 18 05:10:07 2008 -0500
44868
44869     error check autoconf.mk generation
44870
44871     If any of the steps for generating autoconf.mk fail currently, they go
44872     unnoticed.  To fix, we can simply add 'set -e' to the long list of commands.
44873     This is simpler and more robust than placing '|| exit $$?' after every line.
44874
44875     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
44876
44877 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
44878 Author: Stefano Babic <sbabic@denx.de>
44879 Date:   Mon Feb 18 08:03:51 2008 +0100
44880
44881     Fix bug in dependency checking
44882
44883     By adding VERSION_FILE to the PHONY targets the script
44884     /tools/setlocalversion is always called and version_autogenerated.h
44885     is replaced only if the script find a modified source file.
44886
44887     Signed-off-by: Stefano Babic <sbabic@denx.de>
44888
44889 commit 98ba144ccc912eee90dd42699f023c497ce774c6
44890 Author: Kyungmin Park <kmpark@infradead.org>
44891 Date:   Mon Feb 18 14:35:43 2008 +0900
44892
44893     Fix GPMC CS2 memory setup at apollon
44894
44895     It disables the current map first
44896
44897     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
44898
44899 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
44900 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44901 Date:   Sun Feb 17 23:52:46 2008 +0100
44902
44903     uli526x: Fix multiple differ in signedness and parentheses around comparison
44904
44905     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44906
44907 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
44908 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44909 Date:   Sun Feb 17 16:58:04 2008 +0100
44910
44911     MIPS: Fix CFG_NO_FLASH support
44912
44913     - Fix flash_init call when CFG_NO_FLASH is used
44914     - Remove no more needed flash.c for qemu-mips
44915
44916     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44917
44918 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
44919 Author: Mike Frysinger <vapier@gentoo.org>
44920 Date:   Sat Feb 16 02:40:18 2008 -0500
44921
44922     easylogo: clean up some more and add -r (rgb) support
44923
44924     Michael Hennerich added support for outputting an image in RGB format rather
44925     than forcing YUYV all the time.  This makes obvious sense if the display you
44926     have takes RGB input rather than YUYV.
44927
44928     Rather than hack in support for options, I've converted it to use getopt and
44929     cleaned up the argument parsing in the process.
44930
44931     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
44932     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
44933
44934 commit f65c98129ccada3f7caf97d80395a95b84e911de
44935 Author: Mike Frysinger <vapier@gentoo.org>
44936 Date:   Sat Feb 16 02:12:37 2008 -0500
44937
44938     Makefile: add target for $(LDSCRIPT)
44939
44940     If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
44941     then change into the board directory and try and create it.  This allows you
44942     to generate the linker script on the fly based upon board defines (like the
44943     Blackfin boards do).
44944
44945     There should be no regressions due to this change as the normal case is to
44946     already have a u-boot.lds file.  If that's the case, then there's nothing to
44947     generate, and so make will always exit.  The fix here is that if the linker
44948     script does not exist, the implicit rules take over and attempt to guess how
44949     to generate the file.
44950
44951     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
44952
44953 commit 5583cbf736474ef754e128a54fb78632f57b48fd
44954 Author: Marian Balakowicz <m8@semihalf.com>
44955 Date:   Thu Feb 21 17:27:49 2008 +0100
44956
44957     [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
44958
44959     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44960
44961 commit 2242f5369822bc7780db95c47985bb408ea9157b
44962 Author: Marian Balakowicz <m8@semihalf.com>
44963 Date:   Thu Feb 21 17:27:41 2008 +0100
44964
44965     [new uImage] Rename and move print_image_hdr() routine
44966
44967     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44968
44969 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
44970 Author: Marian Balakowicz <m8@semihalf.com>
44971 Date:   Thu Feb 21 17:20:20 2008 +0100
44972
44973     [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
44974
44975     Introducing routines for parsing new uImage format bootm arguments:
44976     [<addr>]#<conf>             - configuration specification
44977     [<addr>]:<subimg>   - subimage specification
44978
44979     New format images can contain multiple subimages of the same type. For example
44980     a single new format image file can contain three kernels, two ramdisks and a
44981     couple of FDT blobs. Subimage and configuration specifications are extensions
44982     to bootm (and other image-related commands) arguments' syntax that allow to
44983     specify which particular subimage should be operated on.
44984
44985     Subimage specification is used to denote a particular subimage. Configurations
44986     are a bit more complex -- they are used to define a particualr booting setup,
44987     for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
44988     etc.
44989
44990     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44991
44992 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
44993 Author: Marian Balakowicz <m8@semihalf.com>
44994 Date:   Thu Feb 21 17:20:19 2008 +0100
44995
44996     [new uImage] Add gen_get_image() routine
44997
44998     This routine assures that image (whether legacy or FIT) is not
44999     in a special dataflash storage.
45000
45001     If image address is a dataflash address image is moved to system RAM.
45002
45003     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45004
45005 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
45006 Author: Marian Balakowicz <m8@semihalf.com>
45007 Date:   Thu Feb 21 17:20:18 2008 +0100
45008
45009     [new uImage] Pull in libfdt if CONFIG_FIT is enabled
45010
45011     New uImage format (Flattened Image Tree) requires libfdt
45012     functionality, print out error message if CONFIG_OF_LIBFDT
45013     is not defined.
45014
45015     New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
45016     This commit turns it on by default.
45017
45018     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45019
45020 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
45021 Author: Michael Schwingen <michael@schwingen.org>
45022 Date:   Mon Feb 18 23:16:35 2008 +0100
45023
45024     CFI: Do not use uninitialized cmd_reset
45025
45026     Do not use uninitialized cmd_reset; issue both AMD and Intel reset
45027     commands instead
45028
45029     From a short test, it looks like AMD-style flash roms treat *any* unknown
45030     command write as a reset, at least when in CFI Query mode, so issuing the
45031     Intel reset command to AMD-style flashs seems safe (from the small sample I
45032     have), plus the 3-cycle magic sequence should kick the state machine into
45033     the right state even without a reset command. Since the AMD-style flashs
45034     require the unlock sequence for real operation, I chose to try the AMD reset
45035     command first, so that Intel flashs do no see an invalid command prior to
45036     the CFI query.
45037
45038     I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
45039     plus Intel StrataFlash.
45040
45041     Signed-off-by: Michael Schwingen <michael@schwingen.org>
45042     Signed-off-by: Stefan Roese <sr@denx.de>
45043
45044 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
45045 Author: Rafal Jaworowski <raj@semihalf.com>
45046 Date:   Thu Feb 21 11:56:44 2008 +0100
45047
45048     API: Add (c) and licensing notice to the public API header.
45049
45050     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
45051
45052 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
45053 Author: Yuri Tikhonov <yur@emcraft.com>
45054 Date:   Thu Feb 21 11:06:07 2008 +0100
45055
45056     Fix CPU POST test failure
45057
45058     The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
45059     ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
45060     by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
45061     This patch just saves the CR value before running the test code, so allowing
45062     it to do anything it wants with CR.
45063
45064     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45065     Acked-by: Yuri Tikhonov <yur@emcraft.com>
45066     --
45067
45068 commit d5908b093955415f3d340706378b991f911af671
45069 Author: Jon Loeliger <jdl@freescale.com>
45070 Date:   Wed Feb 20 15:26:51 2008 -0600
45071
45072     8610HPCD: Document the flashbank selection switches.
45073
45074     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45075
45076 commit a551cee99ad1d1da20fd23ad265de47448852f56
45077 Author: Jon Loeliger <jdl@freescale.com>
45078 Date:   Wed Feb 20 14:22:26 2008 -0600
45079
45080     86xx: Fix GUR PCI config registers properly.
45081
45082     Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
45083     I tried to "8610HPCD: Fix typos in two PCI setup registers", I
45084     botched it due to not realizing that 8610 and 8641 had different
45085     Global Utility Register defintions, one of which was like 85xx,
45086     and the other wasn't.  Correct this problem by introducing two
45087     symbols, one for each 86xx SoC, but neither of which is named
45088     anything like 85xx.
45089
45090     My bad.  Lovely Wednesday with git bisect.  You know.
45091
45092     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45093
45094 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
45095 Author: Jon Loeliger <jdl@freescale.com>
45096 Date:   Wed Feb 20 12:24:11 2008 -0600
45097
45098     8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
45099
45100     Without an actual supported video card hooked up, enabling
45101     the CONFIG_VIDEO by default just makes it look broken by
45102     routing all console output to the video card.   Don't.
45103
45104     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45105
45106 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
45107 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45108 Date:   Wed Jan 30 15:08:15 2008 -0600
45109
45110     ColdFire: Fix missing code flash size for M5485EVB
45111
45112     Signed-off-by: James Mahan <kmahan@freescale.com>
45113     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45114
45115 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
45116 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45117 Date:   Wed Jan 30 15:04:42 2008 -0600
45118
45119     ColdFire: Fix 5282 and 5271 interrupt mask bit
45120
45121     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45122
45123 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
45124 Author: Jon Loeliger <jdl@freescale.com>
45125 Date:   Tue Feb 19 12:31:08 2008 -0600
45126
45127     8610HPCD: Fix typos in two PCI setup registers.
45128
45129     The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
45130     were erroneously present as 85xx names and values, leftover from
45131     the clone wars.  Fix this by removing the 85xx cruft from the
45132     86xx codebase.
45133
45134     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45135
45136 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
45137 Author: Jon Loeliger <jdl@freescale.com>
45138 Date:   Mon Feb 18 14:01:56 2008 -0600
45139
45140     86xx: Convert sbc8641d to use libfdt.
45141
45142     This is the proper fix for a missing closing brace in the function
45143     ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
45144     The ft_cpu_setup() function in mpc8641hpcn.c should have been
45145     removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
45146     but was missed.  Only, the sbc8641d was nominally still using it.
45147     It all got ripped out, and the funcality that was in ft_board_setup()
45148     was refactored to remove the CPU portions into the new file
45149     cpu/mpc86xx/fdt.c instead.  Make sbc8641d use this now.
45150
45151     Based loosely on an original patch from joe.hamman@embeddedspecialties.com
45152
45153     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45154
45155 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
45156 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45157 Date:   Sun Feb 17 23:35:31 2008 +0100
45158
45159     mpc86xx: Fix unused variable 'config' and 'immap'
45160
45161     and remove useless CONFIG_DDR_INTERLEAVE
45162
45163     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45164
45165 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
45166 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45167 Date:   Sun Feb 17 23:03:36 2008 +0100
45168
45169     mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
45170
45171     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45172
45173 commit b6f29c84c208a091f95a10cbc9852d729659ba20
45174 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45175 Date:   Sun Feb 17 14:15:31 2008 +0100
45176
45177     s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
45178
45179     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45180
45181 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
45182 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45183 Date:   Sun Feb 17 14:15:32 2008 +0100
45184
45185     pxa: fix assignment from incompatible pointer type
45186
45187     fix mmc_bread function prototype
45188
45189     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45190
45191 commit 64d792063fff90b8118179b092feee09fe5cae13
45192 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45193 Date:   Sun Feb 17 14:15:30 2008 +0100
45194
45195     at91cap9adk: fix implicit declaration of function 'eth_init'
45196
45197     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45198
45199 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
45200 Author: Wolfgang Denk <wd@denx.de>
45201 Date:   Sun Feb 17 15:43:44 2008 +0100
45202
45203     Remove files added by mistake, update CHANGELOG.
45204
45205     Signed-off-by: Wolfgang Denk <wd@denx.de>
45206
45207 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
45208 Author: Mike Nuss <mike@terascala.com>
45209 Date:   Wed Feb 6 11:10:11 2008 -0500
45210
45211     PPC440EPx: Optionally enable second I2C bus
45212
45213     The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
45214     PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
45215     code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
45216
45217     Signed-off-by: Mike Nuss <mike@terascala.com>
45218     Cc: Stefan Roese <sr@denx.de>
45219
45220 commit ef5b4f221c22d05770878513951745f236b5b43f
45221 Author: Niklaus Giger <niklaus.giger@netstal.com>
45222 Date:   Tue Feb 5 10:26:44 2008 +0100
45223
45224     ppc4xx: HCU4/5. Cleanup configs
45225
45226     - hcu4.h: Removed define of CONFIG_PPC405GPr
45227     - Corrected phy addresses
45228     - Fix boot variables
45229     - Respect line length of 80 chars
45230
45231     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
45232
45233 commit 74973126d1be63ac75bdc192f46234dca3a7c421
45234 Author: Niklaus Giger <niklaus.giger@netstal.com>
45235 Date:   Tue Feb 5 11:31:28 2008 +0100
45236
45237     ppc4xx: HCU4/5. Cleanups
45238
45239     - Fix some coding style violations.
45240     - Use in/out_u16/32 where appropriate.
45241     - Use register names from ppc405.h.
45242     - Fix trace useage for Lauterbach.
45243     - Remove obsolete generation HCU2.
45244     - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
45245
45246     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
45247
45248 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
45249 Author: Niklaus Giger <niklaus.giger@netstal.com>
45250 Date:   Tue Feb 5 10:26:41 2008 +0100
45251
45252     ppc4xx: PPC405GPr fix missing register definitions
45253
45254     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
45255
45256 commit 214398d9cb22268d9d4f7563359edca0f78297a2
45257 Author: Larry Johnson <lrj@acm.org>
45258 Date:   Fri Jan 18 21:49:05 2008 -0500
45259
45260     ppc4xx: Beautify configuration files for Sequoia and Korat boards
45261
45262     Signed-off-by: Larry Johnson <lrj@acm.org>
45263
45264 commit 30c6a241e88499f536e86d325759e29ba00ff67f
45265 Author: Anatolij Gustschin <agust@denx.de>
45266 Date:   Fri Feb 15 20:09:01 2008 +0100
45267
45268     Wipe out assembler warnings while compiling x86 biosemu
45269
45270     This patch tries to get rid of some assembler warnings about
45271     changed .got2 section type while compiling x86 bios emulator
45272     code.
45273
45274     Signed-off-by: Anatolij Gustschin <agust@denx.de>
45275
45276 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
45277 Author: Wolfgang Denk <wd@denx.de>
45278 Date:   Fri Feb 15 00:57:09 2008 +0100
45279
45280     Prepare v1.3.2-rc1 release candidate
45281
45282 commit f33e9653c9c09868995d788511d573771c209fe5
45283 Author: Anatolij Gustschin <agust@denx.de>
45284 Date:   Fri Feb 15 00:13:20 2008 +0100
45285
45286     Fix compile warning on lib_ppc/board.c
45287
45288     Signed-off-by: Anatolij Gustschin <agust@denx.de>
45289
45290 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
45291 Author: Anatolij Gustschin <agust@denx.de>
45292 Date:   Thu Feb 14 18:22:04 2008 +0100
45293
45294     Add Radeon Mobility 9200 pci device id to the radeon driver
45295
45296     This patch extends PCI device id table of the
45297     radeon driver so that the driver will also support
45298     Radeon Mobility 9200 (M9+) based boards.
45299
45300     Signed-off-by: Anatolij Gustschin <agust@denx.de>
45301
45302 commit 1b8607e1f7143548c6062c28371449ec69588c00
45303 Author: Anatolij Gustschin <agust@denx.de>
45304 Date:   Thu Feb 14 18:19:50 2008 +0100
45305
45306     Extend ATI Radeon driver to support more video modes
45307
45308     Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
45309     800x600, 640x480 at 24, 16 and 8 bpp.
45310
45311     Signed-off-by: Anatolij Gustschin <agust@denx.de>
45312
45313 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
45314 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45315 Date:   Sun Feb 10 17:05:20 2008 +0100
45316
45317     xsengine: fix typo and few coding style
45318
45319     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45320
45321 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
45322 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
45323 Date:   Fri Feb 8 21:25:58 2008 +0100
45324
45325     Fix wrong memory limit calculation in memory-test
45326
45327     If the length of the memory address range passed to the "mtest" command is
45328     not of the form 2^x - 1, not all address lines are tested. This bug is
45329     inherited from the original software at
45330     http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
45331     this.
45332
45333     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
45334
45335 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
45336 Author: Wolfgang Denk <wd@denx.de>
45337 Date:   Fri Feb 15 00:11:39 2008 +0100
45338
45339     Coding STyle cleanup.
45340
45341     Signed-off-by: Wolfgang Denk <wd@denx.de>
45342
45343 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
45344 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
45345 Date:   Tue Feb 5 13:30:43 2008 +0900
45346
45347     sh: Fix register address of SH7722
45348
45349     The address of SH7722 is wrong by old document.
45350     This patch fixes this problem.
45351
45352     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
45353
45354 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
45355 Author: Mike Frysinger <vapier@gentoo.org>
45356 Date:   Mon Feb 4 17:44:23 2008 -0500
45357
45358     only update version header as needed
45359
45360     Constantly rebuilding the version header will force useless relinking, so we
45361     simply need to compare the new header with the existing one before updating
45362     it.
45363
45364     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45365
45366 commit 208447f8e953f347425eb92c8e28d59e6d911363
45367 Author: Mike Frysinger <vapier@gentoo.org>
45368 Date:   Mon Jan 28 05:56:19 2008 -0500
45369
45370     Do not specify a CROSS_COMPILE default when executing size
45371
45372     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45373
45374 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
45375 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
45376 Date:   Wed Feb 13 11:19:19 2008 +0100
45377
45378     Fix return value of mtest when CFG_ALT_MEMTEST set
45379
45380     Fix a missing return statement from a non-void function.
45381
45382     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
45383
45384 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
45385 Author: Timur Tabi <timur@freescale.com>
45386 Date:   Wed Jan 9 14:35:26 2008 -0600
45387
45388     85xx, 86xx: Determine I2C clock frequencies and store in global_data
45389
45390     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
45391
45392     Update the get_clocks() function in 85xx and 86xx to determine the I2C
45393     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
45394
45395     Signed-off-by: Timur Tabi <timur@freescale.com>
45396
45397 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
45398 Author: Wolfgang Denk <wd@denx.de>
45399 Date:   Thu Feb 14 23:18:01 2008 +0100
45400
45401     TQM834x: clean up configuration
45402
45403     Get board name consistent with Linux and elsewhere;
45404     get rid of local network definitions etc.
45405
45406     Signed-off-by: Wolfgang Denk <wd@denx.de>
45407
45408 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
45409 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45410 Date:   Thu Feb 14 08:02:12 2008 +0100
45411
45412     TFTP: fix search of ':' in BootFile
45413
45414     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45415
45416 commit 0bc9efada170096c6b273f19165e32936d330d80
45417 Author: Wolfgang Denk <wd@denx.de>
45418 Date:   Thu Feb 14 22:46:55 2008 +0100
45419
45420     Coding style cleanup; update CHANGELOG.
45421
45422     Signed-off-by: Wolfgang Denk <wd@denx.de>
45423
45424 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
45425 Author: Wolfgang Denk <wd@denx.de>
45426 Date:   Thu Feb 14 22:43:22 2008 +0100
45427
45428     PPC: Use r2 instead of r29 as global data pointer
45429
45430     R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
45431     will refuse to use load/store multiple insns; instead, it issues a
45432     list of simple load/store instructions upon function entry and exit,
45433     resulting in bigger code size, which in turn makes the build for a
45434     few boards fail.
45435
45436     Use r2 instead.
45437
45438     Signed-off-by: Wolfgang Denk <wd@denx.de>
45439
45440 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
45441 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
45442 Date:   Wed Jan 30 09:08:49 2008 +0100
45443
45444     ARM: make the machid configurable via the environment
45445
45446     If the variable "machid" exists, let do_bootm_linux use that instead
45447     of bd->bi_arch_number.
45448
45449     Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
45450
45451 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
45452 Author: Vlad Lungu <vlad@comsys.ro>
45453 Date:   Wed Jan 23 16:34:46 2008 +0200
45454
45455     Use #ifdef CONFIG_FSLDMAFEC
45456
45457     MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
45458     fails
45459
45460     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
45461
45462 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
45463 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45464 Date:   Sat Jan 19 10:25:59 2008 +0900
45465
45466     common/miiphyutil.c: Cleanup MII_DEBUG and debug()
45467
45468     Current MII_DEBUG is confusing in two ways. One is useless define-then-
45469     undef at the top of the file. The other is there is only one debug() in
45470     this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
45471     While there are many useful printf()/puts() debug codes, but they are for
45472     DEBUG, not for MII_DEBUG.
45473
45474     This patch tries to put them all together into MII_DEBUG and debug().
45475
45476     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45477
45478 commit 751b9b5189f3274b03c809172631316d6b002c82
45479 Author: Kyungmin Park <kmpark@infradead.org>
45480 Date:   Thu Jan 17 16:43:25 2008 +0900
45481
45482     OneNAND Initial Program Loader (IPL) support
45483
45484     This patch enables the OneNAND boot within U-Boot.
45485     Before this work, we used another OneNAND IPL called X-Loader based
45486     on open source. With this work, we can build the oneboot.bin image
45487     without other program.
45488
45489     The build sequence is simple.
45490     First, it compiles the u-boot.bin
45491     Second, it compiles OneNAND IPL
45492     Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
45493     The mechanism is similar with NAND boot except it boots from itself.
45494
45495     Another thing is that you can only use the OneNAND IPL only to work
45496     other bootloader such as RedBoot and so on.
45497
45498     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
45499
45500 commit 21f6f9636f0e978397548751347425fbf8d42bb3
45501 Author: Andy Fleming <afleming@freescale.com>
45502 Date:   Wed Jan 16 13:06:59 2008 -0600
45503
45504     Fix CONFIG_MMC usage in fat code
45505
45506     A #if statement in fat.c depended on CONFIG_MMC, instead of
45507     defined(CONFIG_MMC).  This meant CONFIG_MMC needed to be defined
45508     as "1" rather than just defined.  Now it's better.
45509
45510     Signed-off-by: Andy Fleming <afleming@freescale.com>
45511
45512 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
45513 Author: Rafal Jaworowski <raj@semihalf.com>
45514 Date:   Tue Jan 15 12:52:31 2008 +0100
45515
45516     ppc: Refactor cache routines, so there is only one common set.
45517
45518     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
45519
45520 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
45521 Author: Jon Loeliger <jdl@jdl.com>
45522 Date:   Wed Jan 23 15:55:02 2008 -0600
45523
45524     86xx: Fix compilation warning in sys_eprom.c
45525
45526     sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
45527
45528     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45529
45530 commit 65230107025733e89e28fd5e5cfd916d4953c28a
45531 Author: Haavard Skinnemoen <hskinnemoen at>
45532 Date:   Fri Feb 22 11:40:50 2008 +0000
45533
45534     Move AT91RM9200DK board support under board/atmel
45535
45536     We already have a vendor subdir for Atmel, so we should use it.
45537
45538     Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
45539
45540 commit 6d0943a6be99977d6d853d51749e9963d68eb192
45541 Author: Andreas Engel <andreas.engel@ericsson.com>
45542 Date:   Mon Jan 14 09:06:52 2008 +0000
45543
45544     ARM: cleanup duplicated exception handlingcode
45545
45546     Move duplicated exception handling code into lib_arm.
45547
45548     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
45549
45550 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
45551 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
45552 Date:   Fri Feb 1 10:09:03 2008 +0000
45553
45554     Support for Artila M-501 starter kit
45555
45556     Kimmo Leppala / Sysart and
45557     Timo Tuunainen / Sysart
45558
45559 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
45560 Author: Stelian Pop <stelian@popies.net>
45561 Date:   Mon Feb 11 10:50:19 2008 +0000
45562
45563     AT91CAP9 support
45564
45565     ---------------------------------
45566
45567     read_dataflash() takes a signed char pointer as a parameter. Silence a
45568     few warnings dues to incorrect parameter types in env_dataflash.c.
45569
45570     Signed-off-by: Stelian Pop <stelian@popies.net>
45571
45572 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
45573 Author: Stelian Pop <stelian@popies.net>
45574 Date:   Thu Feb 7 09:42:57 2008 +0000
45575
45576     AT91CAP9 support : move board files to Atmel vendor directory.
45577
45578     AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
45579
45580     Signed-off-by: Stelian Pop <stelian@popies.net>
45581
45582 commit 7263ef191b87da94768f762c7093bedeb70db98f
45583 Author: Stelian Pop <stelian at>
45584 Date:   Thu Jan 3 21:15:56 2008 +0000
45585
45586     AT91CAP9 support : MACB changes
45587
45588     Signed-off-by: Stelian Pop <stelian <at> popies.net>
45589     Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
45590
45591 commit 6afcabf11d7321850f4feaadfee841488ace54c5
45592 Author: Stelian Pop <stelian@popies.net>
45593 Date:   Thu Feb 7 16:37:54 2008 +0000
45594
45595     AT91CAP9 support : board/ files
45596
45597     Signed-off-by: Stelian Pop <stelian@popies.net>
45598
45599 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
45600 Author: Stelian Pop <stelian at>
45601 Date:   Wed Jan 30 21:15:54 2008 +0000
45602
45603     AT91CAP9 support : cpu/ files
45604
45605     Signed-off-by: Stelian Pop <stelian <at> popies.net>
45606
45607 commit fa506a926cec348805143576c941f8e61b333cc0
45608 Author: Stelian Pop <stelian@popies.net>
45609 Date:   Thu Jan 31 21:15:53 2008 +0000
45610
45611     AT91CAP9 support : include/ files
45612
45613     Signed-off-by: Stelian Pop <stelian@popies.net>
45614
45615 commit 20b197c6f2799af399a68f96a1aff543a75621b8
45616 Author: Stelian Pop <stelian@popies.net>
45617 Date:   Sun Jan 20 19:49:21 2008 +0000
45618
45619     AT91CAP9 support : build integration
45620
45621     Signed-off-by: Stelian Pop <stelian@popies.net>
45622
45623 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
45624 Author: Stelian Pop <stelian@popies.net>
45625 Date:   Sun Jan 20 21:07:00 2008 +0000
45626
45627     Improve DataFlash CS definition.
45628
45629     Use a structure instead of the error prone unnamed array to
45630     define the possible dataflash banks.
45631
45632     Signed-off-by: Stelian Pop <stelian@popies.net>
45633
45634 commit a6cdd21b56014208706238712a853a9e9a0a2290
45635 Author: Stelian Pop <stelian@popies.net>
45636 Date:   Sat Jan 19 21:09:35 2008 +0000
45637
45638     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
45639
45640     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
45641
45642     cpu/arm926ejs/start.o: In function `cpu_init_crit':
45643     .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
45644
45645     Signed-off-by: Stelian Pop <stelian@popies.net>
45646
45647 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
45648 Author: Peter Pearse <peter.pearse@arm.com>
45649 Date:   Fri Feb 1 16:50:24 2008 +0000
45650
45651     Fix timer overflow in DaVinci
45652     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
45653
45654 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
45655 Author: Peter Pearse <peter.pearse@arm.com>
45656 Date:   Fri Feb 1 16:49:08 2008 +0000
45657
45658     Update board NetStar
45659     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
45660
45661 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
45662 Author: Niklaus Giger <niklaus.giger@netstal.com>
45663 Date:   Tue Feb 5 10:26:42 2008 +0100
45664
45665     ppc4xx: HCU4/5. Fix make O=../xx
45666
45667     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
45668
45669 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
45670 Author: Larry Johnson <lrj@acm.org>
45671 Date:   Tue Jan 22 08:51:59 2008 -0500
45672
45673     ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
45674
45675     Signed-off-by: Larry Johnson <lrj@acm.org>
45676
45677 commit fe891ecf4d187e9d11dde869ed4623af52b54451
45678 Author: Hiroshi Ito <ito@mlb.co.jp>
45679 Date:   Thu Jan 31 18:35:04 2008 +0900
45680
45681     NFS Timeout with large files.
45682
45683     Retry to send NFS packet before reaching timeout.
45684
45685     Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
45686
45687 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
45688 Author: Johannes Stezenbach <js@sig21.net>
45689 Date:   Tue Jan 29 00:11:25 2008 +0100
45690
45691     Add dependencies to avoid race conditions with parallel make.
45692
45693     Signed-off-by: Johannes Stezenbach <js@sig21.net>
45694
45695 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
45696 Author: Mike Frysinger <vapier@gentoo.org>
45697 Date:   Mon Jan 28 05:46:01 2008 -0500
45698
45699     Mark board_init_[fr] as noreturn
45700
45701     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45702
45703 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
45704 Author: Mike Frysinger <vapier@gentoo.org>
45705 Date:   Mon Jan 28 05:28:50 2008 -0500
45706
45707     Only use TEXT_BASE if defined by the board
45708
45709     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45710
45711 commit 1b769881750030f10743808b9d6013e11f559350
45712 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45713 Date:   Fri Jan 25 07:54:47 2008 +0100
45714
45715     Fix remaining CONFIG_COMMANDS
45716
45717     update comments
45718     Fix coding style
45719
45720     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45721
45722 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
45723 Author: Niklaus Giger <niklaus.giger@netstal.com>
45724 Date:   Mon Jan 21 16:46:00 2008 +0100
45725
45726     Add *~ to .gitignore
45727
45728     One should never add a backup file ending in with ~ to the git repository.
45729
45730     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
45731
45732 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
45733 Author: Kumar Gala <galak@kernel.crashing.org>
45734 Date:   Thu Jan 17 00:02:10 2008 -0600
45735
45736     Remove duplicate defines for ARRAY_SIZE
45737
45738     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45739
45740 commit c77ce474b1c57b13e9d36d9830f147966c143694
45741 Author: Stelian Pop <stelian@popies.net>
45742 Date:   Mon Jan 14 22:08:14 2008 +0100
45743
45744     Fix incorrect address test in AT91F_DataflashSelect().
45745
45746     Signed-off-by: Stelian Pop <stelian@popies.net>
45747
45748 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
45749 Author: Kumar Gala <galak@kernel.crashing.org>
45750 Date:   Wed Feb 13 15:09:58 2008 -0600
45751
45752     Fix building of fdt_support.c if DEBUG set
45753
45754     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45755
45756 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
45757 Author: Jon Loeliger <jdl@freescale.com>
45758 Date:   Tue Feb 12 14:53:28 2008 -0600
45759
45760     Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
45761
45762     These replace direct structure references for IMMR sections.
45763
45764     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45765
45766 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
45767 Author: Wolfgang Denk <wd@denx.de>
45768 Date:   Tue Feb 12 00:45:06 2008 +0100
45769
45770     Get rid of "#undef DEBUG" from board config files.
45771
45772     Signed-off-by: Wolfgang Denk <wd@denx.de>
45773
45774 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
45775 Author: Timur Tabi <timur@freescale.com>
45776 Date:   Tue Jan 15 17:09:41 2008 -0600
45777
45778     Remove #undef DEBUG from MPC83xx board header files
45779
45780     Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
45781     The inclusion of this line makes it impossible to enable debug code in
45782     other source files, because "#define DEBUG" typically needs to be defined
45783     before any header files are included.
45784
45785     Signed-off-by: Timur Tabi <timur@freescale.com>
45786
45787 commit 69018ce2e086e9caf35b914d675b82bc4888f077
45788 Author: Kumar Gala <galak@kernel.crashing.org>
45789 Date:   Thu Jan 17 08:25:45 2008 -0600
45790
45791     QE: Move FDT support into a common file
45792
45793     Move the flat device tree setup for QE related devices into
45794     a common file shared between 83xx & 85xx platforms that have QE's.
45795
45796     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45797
45798 commit 5cf746c303710329f8040d9c62ee354313e3e91f
45799 Author: Marian Balakowicz <m8@semihalf.com>
45800 Date:   Thu Jan 31 13:59:09 2008 +0100
45801
45802     [new uImage] Move kernel data find code to get_kernel() routine
45803
45804     Verification of the kernel image (in old format) and finding kernel
45805     data is moved to a dedicated routine. The routine will also hold
45806     support for, to be added, new image format.
45807
45808     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45809
45810 commit 7b325454fd231d4273de3fe373850f777fb086bf
45811 Author: Marian Balakowicz <m8@semihalf.com>
45812 Date:   Thu Jan 31 13:58:20 2008 +0100
45813
45814     [new uImage] Cleanup FDT handling in PPC do_boot_linux()
45815
45816     Move FDT blob finding and relocation to a dedicated
45817     get_fdt() routine. It increases code readability and
45818     will make adding support for new uImage format easier.
45819
45820     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45821
45822 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
45823 Author: Marian Balakowicz <m8@semihalf.com>
45824 Date:   Thu Jan 31 13:58:13 2008 +0100
45825
45826     [new uImage] Cleanup do_botm_linux() boot allocations
45827
45828     This patch moves common pre-boot allocation steps shared between PPC
45829     and M68K to a helper routines:
45830
45831     common:
45832     - get_boot_sp_limit()
45833     - get_boot_cmline()
45834     - get_boot_kbd()
45835
45836     platform:
45837     - set_clocks_in_mhz()
45838
45839     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45840
45841 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
45842 Author: Marian Balakowicz <m8@semihalf.com>
45843 Date:   Thu Jan 31 13:57:17 2008 +0100
45844
45845     [new uImage] Move ramdisk loading to a common routine
45846
45847     Ramdisk loading code, including initrd_high variable handling,
45848     was duplicated for PPC and M68K platforms. This patch creates
45849     common helper routine that is being called from both platform
45850     do_bootm_linux() routines.
45851
45852     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45853
45854 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
45855 Author: Marian Balakowicz <m8@semihalf.com>
45856 Date:   Thu Jan 31 13:55:53 2008 +0100
45857
45858     [new uImage] Removed dead ramdisk code on microblaze architectures
45859
45860     Microblaze do_bootm_linux() includes ramdisk processing code but
45861     the ramdisk does not get used anywhere later on.
45862
45863     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45864
45865 commit 5ad03eb3854c162684222a718b44c0716ea0db03
45866 Author: Marian Balakowicz <m8@semihalf.com>
45867 Date:   Thu Jan 31 13:55:39 2008 +0100
45868
45869     [new uImage] Factor out common image_get_ramdisk() routine
45870
45871     Architecture specific do_bootm_linux() routines share common
45872     ramdisk image processing code. Move this code to a common
45873     helper routine.
45874
45875     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45876
45877 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
45878 Author: Marian Balakowicz <m8@semihalf.com>
45879 Date:   Thu Jan 31 13:20:08 2008 +0100
45880
45881     [new uImage] Move FDT error printing to common fdt_error() routine
45882
45883     FDT error handling in PPC do_bootm_linux() shares the same message format.
45884     This patch moves error message printing to a helper fdt_error() routine.
45885
45886     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45887     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
45888
45889 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
45890 Author: Marian Balakowicz <m8@semihalf.com>
45891 Date:   Thu Jan 31 13:20:07 2008 +0100
45892
45893     [new uImage] Factor out common routines for getting os/arch/type/comp names
45894
45895     Move numeric-id to name translation for image os/arch/type/comp header
45896     fields to a helper routines: image_get_os_name(), image_get_arch_name(),
45897     image_get_type_name(), image_get_comp_name().
45898
45899     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45900
45901 commit e99c26694a384221d336f6448c06a57479c0baa4
45902 Author: Marian Balakowicz <m8@semihalf.com>
45903 Date:   Thu Jan 31 13:20:07 2008 +0100
45904
45905     [new uImage] Remove standalone applications handling from boootm
45906
45907     Standalone applications are supposed to be run using the "go" command.
45908     This patch removes standalone images handling from the do_bootm().
45909
45910     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45911
45912 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
45913 Author: Marian Balakowicz <m8@semihalf.com>
45914 Date:   Thu Jan 31 13:20:07 2008 +0100
45915
45916     [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
45917
45918     Support for OF_FLAT_TREE is to be obsoleted in the near future,
45919     remove related code from the bootm routines.
45920
45921     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45922
45923 commit 82850f3d32a2661868ec6876bed7a22c55cef718
45924 Author: Marian Balakowicz <m8@semihalf.com>
45925 Date:   Thu Jan 31 13:20:06 2008 +0100
45926
45927     [new uImage] Use image API in SH do_bootm_linux() routine
45928
45929     Introduce image handling API for lately added Hitachi SH architecture.
45930
45931     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45932
45933 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
45934 Author: Marian Balakowicz <m8@semihalf.com>
45935 Date:   Thu Jan 31 13:20:06 2008 +0100
45936
45937     [new uImage] Rename architecture specific bootm code files
45938
45939     Implementation of the do_bootm_linux() and other bootm helper routines is
45940     architecture specific code. As such it resides in lib_<arch> directories
45941     in files named <arch>_linux.c
45942
45943     This patch renames those files to a more clear and accurate
45944     lib_<arch>/bootm.c form.
45945
45946     List of the renamed files:
45947        lib_arm/armlinux.c -> lib_arm/bootm.c
45948        lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
45949        lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
45950        lib_i386/i386_linux.c -> lib_i386/bootm.c
45951        lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
45952        lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
45953        lib_mips/mips_linux.c -> lib_mips/bootm.c
45954        lib_nios/nios_linux.c -> lib_nios/bootm.c
45955        lib_nios2/nios_linux.c -> lib_nios2/bootm.c
45956        lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
45957        lib_sh/sh_linux.c -> lib_sh/bootm.c
45958
45959     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45960
45961 commit 7582438c285bf0cef82909d0f232de64ec567a8a
45962 Author: Marian Balakowicz <m8@semihalf.com>
45963 Date:   Thu Jan 31 13:20:06 2008 +0100
45964
45965     [new uImage] Return error on image move/uncompress overwrites
45966
45967     Check for overwrites during image move/uncompress, return with error
45968     when the original image gets corrupted. Report clear message to the user
45969     and prevent further troubles when pointer to the corrupted images is passed
45970     to do_bootm_linux routine.
45971
45972     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45973
45974 commit f13e7b2e993c61fed1f607962501e051940d6e80
45975 Author: Marian Balakowicz <m8@semihalf.com>
45976 Date:   Tue Jan 8 18:12:17 2008 +0100
45977
45978     [new uImage] Cleanup image header pointer use in bootm code
45979
45980     - use single image header pointer instead of a set of auxilliary variables.
45981     - add multi component image helper routines: get component size/data address
45982
45983     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45984
45985 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
45986 Author: Marian Balakowicz <m8@semihalf.com>
45987 Date:   Tue Jan 8 18:17:10 2008 +0100
45988
45989     [new uImage] Cleanup cmd_bootm.c
45990
45991     - sort and cleanup headers, declarations, etc.
45992     - group related routines
45993     - cleanup indentation, white spaces
45994
45995     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45996
45997 commit af13cdbc01eaf88880978bfb4f603e012818ba24
45998 Author: Marian Balakowicz <m8@semihalf.com>
45999 Date:   Tue Jan 8 18:11:45 2008 +0100
46000
46001     [new uImage] Add memmove_wd() common routine
46002
46003     Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
46004
46005     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46006
46007 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
46008 Author: Marian Balakowicz <m8@semihalf.com>
46009 Date:   Tue Jan 8 18:11:44 2008 +0100
46010
46011     [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
46012
46013     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46014
46015 commit 15158971f49255ccef54f0979a942cfd3de2ae52
46016 Author: Marian Balakowicz <m8@semihalf.com>
46017 Date:   Tue Jan 8 18:11:44 2008 +0100
46018
46019     [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
46020
46021     Use image header copy instead of a (possibly corrupted) pointer to
46022     a initial image location.
46023
46024     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46025
46026 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
46027 Author: Marian Balakowicz <m8@semihalf.com>
46028 Date:   Tue Jan 8 18:11:44 2008 +0100
46029
46030     [new uImage] Remove I386 uImage fake_header() routine
46031
46032     I386 targets are not using a uImage format, instead fake header
46033     is added to ram image before it is further processed by bootm.
46034
46035     Remove this fixup and force proper uImage use for I386.
46036
46037     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46038
46039 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
46040 Author: Marian Balakowicz <m8@semihalf.com>
46041 Date:   Tue Jan 8 18:11:44 2008 +0100
46042
46043     [new uImage] Move CHUNKSZ definition to image.h
46044
46045     CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
46046     move this definition to a common header.
46047
46048     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46049
46050 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
46051 Author: Marian Balakowicz <m8@semihalf.com>
46052 Date:   Tue Jan 8 18:11:43 2008 +0100
46053
46054     [new uImage] Move gunzip() common code to common/gunzip.c
46055
46056     Move gunzip(), zalloc() and zfree() to a separate file.
46057     Share zalloc() and zfree() with cramfs uncompress routine.
46058
46059     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46060
46061 commit d45d5a18b6b36688f2365623f9d550566c664b5b
46062 Author: Marian Balakowicz <m8@semihalf.com>
46063 Date:   Tue Jan 8 18:11:43 2008 +0100
46064
46065     [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
46066
46067     Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
46068     readable in PPC variant of do_bootm_linux() routine.
46069
46070     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46071
46072 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
46073 Author: Marian Balakowicz <m8@semihalf.com>
46074 Date:   Tue Jan 8 18:11:43 2008 +0100
46075
46076     [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
46077
46078     PPC implementation of do_bootm_linux() routine is moved to
46079     a dedicated file lib_ppc/ppc_linux.c
46080
46081     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46082
46083 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
46084 Author: Marian Balakowicz <m8@semihalf.com>
46085 Date:   Tue Jan 8 18:14:09 2008 +0100
46086
46087     [new uImage] Define a API for image handling operations
46088
46089     - Add inline helper macros for basic header processing
46090     - Move common non inline code common/image.c
46091     - Replace direct header access with the API routines
46092     - Rename IH_CPU_* to IH_ARCH_*
46093
46094     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46095
46096 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
46097 Author: Marian Balakowicz <m8@semihalf.com>
46098 Date:   Thu Jan 31 13:19:58 2008 +0100
46099
46100     Add missing cmd_ximg.o to common/Makefile
46101
46102     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46103
46104 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
46105 Author: Grzegorz Bernacki <gjb@semihalf.com>
46106 Date:   Mon Jan 28 10:15:02 2008 +0100
46107
46108     ADS5121e: DDR2 init/timing update.
46109
46110     Signed-off-by: John Rigby <jrigby@freescale.com>
46111     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
46112
46113 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
46114 Author: John Rigby <jrigby@freescale.com>
46115 Date:   Wed Jan 30 13:36:57 2008 -0700
46116
46117     Device tree updates
46118
46119     Changes to match 5121 device tree going mainline in 2.6.25.
46120
46121     Change OF_SOC from "soc5121" to plain "soc".
46122     Remove unneeded "ref-frequency" fixups.
46123     Remove "address" enetaddr fixup.
46124
46125     Add bus-frequency fixup for old OF_SOC so old
46126     kernels with old device trees will work with new
46127     u-boot with 66MHz IPS clock
46128
46129     Signed-off-by: John Rigby <jrigby@freescale.com>
46130
46131 commit de55d18df3ff2ea614624e74793de7c43520e0e7
46132 Author: John Rigby <jrigby@freescale.com>
46133 Date:   Wed Jan 30 13:36:56 2008 -0700
46134
46135     Change IPS freq to 66MHz
46136
46137     Recommended frequency is 66MHz
46138     Change divider from 4 to 3.
46139
46140     Signed-off-by: John Rigby <jrigby@freescale.com>
46141
46142 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
46143 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46144 Date:   Mon Jan 14 22:38:55 2008 +0100
46145
46146     xsengine: rename board_post_init to board_late_init
46147
46148     missing migration from "Cleanup of some init functions"
46149     in c837dcb1a316745092567bfe4fb266d0941884ff
46150
46151     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46152
46153 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
46154 Author: Larry Johnson <lrj@acm.org>
46155 Date:   Sat Jan 12 23:35:33 2008 -0500
46156
46157     Add attribute POST_PREREL to ECC memory POST
46158
46159     Signed-off-by: Larry Johnson <lrj@acm.org>
46160
46161 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
46162 Author: Kumar Gala <galak@kernel.crashing.org>
46163 Date:   Thu Jan 17 08:25:45 2008 -0600
46164
46165     QE: Move FDT support into a common file
46166
46167     Move the flat device tree setup for QE related devices into
46168     a common file shared between 83xx & 85xx platforms that have QE's.
46169
46170     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46171
46172 commit d38da537943cd36356b9d3d9d9b60533554b81d8
46173 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46174 Date:   Wed Jan 23 17:20:14 2008 +0100
46175
46176     AVR32: Make SDRAM refresh rate configurable
46177
46178     The existing code assumes the SDRAM row refresh period should always
46179     be 15.6 us. This is not always true, and indeed on the ATNGW100, the
46180     refresh rate should really be 7.81 us.
46181
46182     Add a refresh_period member to struct sdram_info and initialize it
46183     properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
46184     panic() until the refresh_period member is updated properly.
46185
46186     Big thanks to Gerhard Berghofer for pointing out this issue.
46187
46188     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46189
46190 commit 61151cccb660cdb06a07fb283de6089913d7bde0
46191 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46192 Date:   Thu Apr 19 10:10:11 2007 +0200
46193
46194     ATSTK1000: Fix potential flash programming bug
46195
46196     The (now obsolete) atngw100 flash programming code was having problems
46197     programming the onboard at49bv642 chip. The atstk1000 flash
46198     programming code may have the same bug, so import fix for this problem
46199     from the AVR32 Linux BSP.
46200
46201     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46202
46203 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
46204 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46205 Date:   Thu Nov 22 17:04:13 2007 +0100
46206
46207     ATSTK1004: Fix comment about default load address
46208
46209     The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
46210     wouldn't have worked anyway since the board can only access 4MB of
46211     SDRAM.
46212
46213     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46214
46215 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
46216 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46217 Date:   Thu Nov 22 17:01:24 2007 +0100
46218
46219     ATSTK1002: Use SDRAM + 4MB as default load address
46220
46221     Many people run into problems when they compile a big kernel and load
46222     the uImage at the default SDRAM + 2MB address as the kernel will
46223     overwrite the uImage as it is being unpacked. Increase the default
46224     load address so that we can load a 4MB kernel image without any
46225     problems.
46226
46227     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46228
46229 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
46230 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46231 Date:   Thu Nov 22 16:51:39 2007 +0100
46232
46233     ATNGW100: Fix default mtest range
46234
46235     Let mtest cover the whole SDRAM except the last megabyte, which is
46236     where u-boot lives.
46237
46238     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46239
46240 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
46241 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46242 Date:   Tue Jan 22 15:31:56 2008 +0900
46243
46244     sh: Fix register address of SH7722.
46245
46246     The address of SH7722 is wrong by old document.
46247     This patch fixes this problem.
46248
46249     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46250
46251 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
46252 Author: Mike Frysinger <vapier@gentoo.org>
46253 Date:   Mon Feb 4 19:26:57 2008 -0500
46254
46255     new command for displaying strings at specified memory locations
46256
46257     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46258
46259 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
46260 Author: Mike Frysinger <vapier@gentoo.org>
46261 Date:   Mon Feb 4 19:26:57 2008 -0500
46262
46263     rewrite/cleanup Blackfin RTC driver
46264
46265     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46266
46267 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
46268 Author: Mike Frysinger <vapier@gentoo.org>
46269 Date:   Mon Feb 4 19:26:57 2008 -0500
46270
46271     generate u-boot.ldr for Blackfin targets
46272
46273     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46274
46275 commit b779f7a59530436040f157f7841db7ab796542df
46276 Author: Mike Frysinger <vapier@gentoo.org>
46277 Date:   Mon Feb 4 19:26:57 2008 -0500
46278
46279     scrub unused symbols
46280
46281     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46282
46283 commit cc2977acc3bbbb7850f16645dd1081f95335868d
46284 Author: Mike Frysinger <vapier@gentoo.org>
46285 Date:   Mon Feb 4 19:26:57 2008 -0500
46286
46287     move Blackfin cpu object list to respective cpu directories
46288
46289     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46290
46291 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
46292 Author: Mike Frysinger <vapier@gentoo.org>
46293 Date:   Mon Feb 4 19:26:57 2008 -0500
46294
46295     interface to Blackfin on-chip One-Time-Programmable memory
46296
46297     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46298
46299 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
46300 Author: Mike Frysinger <vapier@gentoo.org>
46301 Date:   Mon Feb 4 19:26:56 2008 -0500
46302
46303     add support for memory commands with Blackfin L1 instruction memory
46304
46305     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46306
46307 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
46308 Author: Mike Frysinger <vapier@gentoo.org>
46309 Date:   Mon Feb 4 19:26:56 2008 -0500
46310
46311     use C code rather than inline assembly
46312
46313     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46314
46315 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
46316 Author: Mike Frysinger <vapier@gentoo.org>
46317 Date:   Mon Feb 4 19:26:56 2008 -0500
46318
46319     add Blackfin-specific reginfo command
46320
46321     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46322
46323 commit 0858b835e7ea501ea084d34cef75932f098342bb
46324 Author: Mike Frysinger <vapier@gentoo.org>
46325 Date:   Mon Feb 4 19:26:55 2008 -0500
46326
46327     add support for Blackfin symbol prefixes to examples
46328
46329     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46330
46331 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
46332 Author: Mike Frysinger <vapier@gentoo.org>
46333 Date:   Mon Feb 4 19:26:55 2008 -0500
46334
46335     add Blackfin-specific bdinfo command
46336
46337     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46338
46339 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
46340 Author: Mike Frysinger <vapier@gentoo.org>
46341 Date:   Mon Feb 4 19:26:55 2008 -0500
46342
46343     move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
46344
46345     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46346
46347 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
46348 Author: Mike Frysinger <vapier@gentoo.org>
46349 Date:   Mon Feb 4 19:26:55 2008 -0500
46350
46351     unify the Blackfin board targets
46352
46353     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46354
46355 commit d4d7730853e5d675f76ec666807da3028c91d592
46356 Author: Mike Frysinger <vapier@gentoo.org>
46357 Date:   Mon Feb 4 19:26:55 2008 -0500
46358
46359     punt Blackfin VDSP headers and import sanitized/auto-generated ones
46360
46361     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46362
46363 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
46364 Author: Mike Frysinger <vapier@gentoo.org>
46365 Date:   Mon Feb 4 19:26:54 2008 -0500
46366
46367     always pull in asm/blackfin.h for Blackfin ports
46368
46369     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46370
46371 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
46372 Author: Mike Frysinger <vapier@gentoo.org>
46373 Date:   Mon Feb 4 19:26:54 2008 -0500
46374
46375     add missing __raw versions of Blackfin read/write io functions
46376
46377     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46378
46379 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
46380 Author: Mike Frysinger <vapier@gentoo.org>
46381 Date:   Mon Feb 4 19:26:54 2008 -0500
46382
46383     add the default Blackfin logo used by Blackfin boards with splash screens
46384
46385     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46386
46387 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
46388 Author: Mike Frysinger <vapier@gentoo.org>
46389 Date:   Mon Feb 4 19:26:54 2008 -0500
46390
46391     add some more Blackfin docs
46392
46393     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46394
46395 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
46396 Author: Mike Frysinger <vapier@gentoo.org>
46397 Date:   Mon Feb 4 19:26:54 2008 -0500
46398
46399     make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
46400
46401     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46402
46403 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
46404 Author: Mike Frysinger <vapier@gentoo.org>
46405 Date:   Mon Feb 4 19:26:54 2008 -0500
46406
46407     fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
46408
46409     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46410
46411 commit b45264ee85cbd92020640a32e02fb434fd557108
46412 Author: Mike Frysinger <vapier@gentoo.org>
46413 Date:   Mon Feb 4 19:26:53 2008 -0500
46414
46415     add gitignores for Blackfin pieces
46416
46417     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46418
46419 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
46420 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46421 Date:   Fri Jan 18 01:14:03 2008 +0100
46422
46423     TFTP: add host ip addr support
46424
46425     allow to use a different server as set in serverip
46426     add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
46427     if not defined the max length will be at 128
46428
46429     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46430
46431 commit e56b4b494cd92def577969f9678395aa22d34c9f
46432 Author: Timur Tabi <timur@freescale.com>
46433 Date:   Wed Jan 9 14:35:26 2008 -0600
46434
46435     85xx,86xx: Determine I2C clock frequencies and store in global_data
46436
46437     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
46438
46439     Update the get_clocks() function in 85xx and 86xx to determine the I2C
46440     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
46441
46442     Signed-off-by: Timur Tabi <timur@freescale.com>
46443
46444 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
46445 Author: Wolfgang Denk <wd@denx.de>
46446 Date:   Thu Dec 27 10:56:54 2007 +0100
46447
46448     OMAP5912: fix FIFO handling in UART driver
46449
46450     According to the OMAP5912 Serial Interfaces Reference Guide (see
46451     http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
46452     FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
46453     changed when the baud clock is not running, i. e. when both DLL and
46454     DLH are set to 0.
46455
46456     Thus make sure that DLL and DLH are 0 when writing the FCR.
46457
46458     Signed-off-by: Wolfgang Denk <wd@denx.de>
46459
46460 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
46461 Author: Harald Welte <laforge@openmoko.org>
46462 Date:   Wed Dec 19 15:10:52 2007 +0100
46463
46464     ARM: S3C24x0 SoC NAND controller support
46465
46466     This patch adds NAND support to the S3C24x0 SoC code in u-boot
46467
46468     Signed-off-by: Harald Welte <laforge@openmoko.org>
46469
46470 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
46471 Author: Harald Welte <laforge@openmoko.org>
46472 Date:   Wed Dec 19 14:24:40 2007 +0100
46473
46474     ARM: s3c24xx: Multiple serial port support
46475
46476     This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
46477
46478     Signed-off-by: Harald Welte <laforge@openmoko.org>
46479
46480 commit a25f72f1f73a11de68251fb88c89991e202e68fa
46481 Author: Harald Welte <laforge@openmoko.org>
46482 Date:   Wed Dec 19 14:16:57 2007 +0100
46483
46484     ARM: arm920t: Allow use of 'gd' pointer from IRQ
46485
46486     This patch allows us to use the 'gd' pointer (and thus environment
46487     and everything else associated with it) from interrupt context on
46488     arm920t.
46489
46490     Signed-off-by: Harald Welte <laforge@openmoko.org>
46491
46492 commit be19bd5cd0f454b63298844a0b5377e029b2caad
46493 Author: Harald Welte <laforge@openmoko.org>
46494 Date:   Wed Dec 19 14:19:38 2007 +0100
46495
46496     ARM: arm920/s3c24xx: IRQ demulitplexer callback
46497
46498     This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
46499     plus a stub implementation of it for the S3C2410.
46500
46501     The purpose is to allow arm920t implementations such as the s3c24x0 to
46502     implement interrupt handlers in u-boot without having to touch core
46503     arm920t code.
46504
46505     Signed-off-by: Harald Welte <laforge@openmoko.org>
46506
46507 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
46508 Author: Hebbar <gururajakr@sanyo.co.in>
46509 Date:   Tue Dec 18 16:03:07 2007 -0800
46510
46511     ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
46512
46513     Add ifdef to bdinfo command to display ethernet information
46514     only if CONFIG_CMD_NET is defined for arm modules.
46515
46516     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
46517
46518 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
46519 Author: Hebbar <gururajakr@sanyo.co.in>
46520 Date:   Tue Dec 18 16:00:54 2007 -0800
46521
46522     ARM: add I2C init function call in lib_arm/board.c
46523
46524     Adds I2C init func call to init sequence for ARM boards. This is
46525     present in ppc,blackfin and other processor init sequence.
46526
46527     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
46528
46529 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
46530 Author: Stefan Roese <sr@denx.de>
46531 Date:   Fri Feb 1 09:38:29 2008 +0100
46532
46533     ppc4xx: Fix ndfc HW ECC byte order
46534
46535     The current ndfc HW ECC implementation swaps the first two ECC bytes.
46536     But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
46537     so this swapping in the HW ECC driver is bogus. This patch fixes this
46538     problem and now really uses the SMC ECC byte order.
46539
46540     Thanks to Sean MacLennan for pointing this out.
46541
46542     Signed-off-by: Stefan Roese <sr@denx.de>
46543
46544 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
46545 Author: Stefan Roese <sr@denx.de>
46546 Date:   Wed Jan 30 15:35:50 2008 +0100
46547
46548     ppc4xx: Fix GPIO configuration for pcs440ep
46549
46550     The SRD0_PFC0 register was not configured correctly to enable the GPIO's
46551     49-63 for GPIO. They have been configured as trace signals. This patch
46552     fixes this by clearing the corresponding bit.
46553
46554     Signed-off-by: Stefan Roese <sr@denx.de>
46555
46556 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
46557 Author: Stefan Roese <sr@denx.de>
46558 Date:   Wed Jan 30 14:48:28 2008 +0100
46559
46560     ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
46561
46562     Signed-off-by: Stefan Roese <sr@denx.de>
46563
46564 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
46565 Author: Ladislav Michl <ladis@linux-mips.org>
46566 Date:   Fri Dec 7 00:42:32 2007 +0100
46567
46568     ARM: Board voiceblue update
46569
46570     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
46571
46572 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
46573 Author: Ladislav Michl <ladis@linux-mips.org>
46574 Date:   Thu Dec 6 23:24:57 2007 +0100
46575
46576     ARM: AT91RM9200 based boards config cleanup
46577
46578     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
46579
46580     Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
46581     indentation.
46582
46583 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
46584 Author: Ladislav Michl <ladis@linux-mips.org>
46585 Date:   Thu Dec 6 22:59:16 2007 +0100
46586
46587     ARM: Fix at91rm9200dk base address
46588
46589     Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
46590     renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
46591     with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
46592     However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
46593     CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
46594     I'm sending this patch 4th (!) time in hope it produces at least some
46595     reaction.
46596
46597     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
46598
46599     Fix at91rm9200dk base and environment address.
46600
46601 commit c95219fae2a7add7daa2f91aedca65b1698465c7
46602 Author: stefano babic <sbabic@denx.de>
46603 Date:   Tue Nov 20 10:40:24 2007 +0100
46604
46605     MMC for PXA 27X (resubmit)
46606
46607     MMC support for X_Scale PXA is broken and does not work.
46608     Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
46609     There were already some patches around the world but none of them was
46610     merged into the official u-boot tree.
46611
46612     This patch makes order fixing this issue. Resubmit after code cleanup.
46613
46614     Applied and tested on PXA 270 (TrizepsIV module).
46615
46616     Signed-off-by: Stefano Babic <sbabic@denx.de>
46617
46618 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
46619 Author: stefano babic <sbabic@denx.de>
46620 Date:   Tue Nov 20 10:37:04 2007 +0100
46621
46622     Fix gcc issues in pxa-regs.h
46623
46624     Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
46625     issues generates wrong code.
46626     (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
46627     This patch fixes the problem and solves the gcc-4 issues as the linux
46628     kernel does.
46629
46630     Signed-off-by: Stefano Babic <sbabic@denx.de>
46631     Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
46632
46633 commit 7047b388876e7b905b2ec4edb8010543e3641b85
46634 Author: Jens Gehrlein <sew_s@tqs.de>
46635 Date:   Tue Jan 29 08:45:03 2008 +0100
46636
46637     TQM834x: enable DHCP
46638
46639     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
46640     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
46641
46642 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
46643 Author: Jens Gehrlein <sew_s@tqs.de>
46644 Date:   Tue Jan 29 08:45:02 2008 +0100
46645
46646     TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
46647
46648     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
46649     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
46650
46651 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
46652 Author: Ben Warren <biggerbadderben@gmail.com>
46653 Date:   Sat Jan 26 23:41:19 2008 -0500
46654
46655     Fix conditional compilation of mpx8xxx_spi driver
46656
46657     This driver should only compile if CONFIG_MPC8XXX_SPI is set
46658
46659     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
46660     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
46661
46662 commit 63f732d3d3880feb531f48af247c025bf01462b0
46663 Author: Rafal Jaworowski <raj@semihalf.com>
46664 Date:   Tue Jan 29 17:00:34 2008 +0100
46665
46666     API: Provide dummy halt() in the glue layer.
46667
46668     This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
46669
46670     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
46671
46672 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
46673 Author: Rafal Jaworowski <raj@semihalf.com>
46674 Date:   Tue Jan 29 16:57:38 2008 +0100
46675
46676     API: Convert conditional building to the new scheme.
46677
46678     This fixes a build breakage with CONFIG_API enabled, which appeared after
46679     the recent changes in the U-Boot build system.
46680
46681     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
46682
46683 commit 98b742489c09780be6a832eeaa4e5eff824792bb
46684 Author: Wolfgang Denk <wd@denx.de>
46685 Date:   Fri Jan 25 09:56:17 2008 +0100
46686
46687     inka4x0: remove dead code
46688
46689     Signed-off-by: Wolfgang Denk <wd@denx.de>
46690
46691 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
46692 Author: Becky Bruce <becky.bruce@freescale.com>
46693 Date:   Wed Jan 23 16:31:06 2008 -0600
46694
46695     86xx: Add reginfo command
46696
46697     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46698
46699 commit ddcebcb638715a6278da93b553d5016f99823816
46700 Author: Becky Bruce <becky.bruce@freescale.com>
46701 Date:   Wed Jan 23 16:31:05 2008 -0600
46702
46703     86xx: Add print_laws function to fsl_law.c
46704
46705     This can be used for debug, and will be used by board code
46706     to help implement reginfo.
46707
46708     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46709
46710 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
46711 Author: Becky Bruce <becky.bruce@freescale.com>
46712 Date:   Wed Jan 23 16:31:04 2008 -0600
46713
46714     86xx: Remove old-style law setup code
46715
46716     This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
46717
46718     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46719
46720 commit 713d8186649dae874613d495b0cecaa039a98b30
46721 Author: Becky Bruce <becky.bruce@freescale.com>
46722 Date:   Wed Jan 23 16:31:03 2008 -0600
46723
46724     86xx: Convert sbc8641d to use new law setup code.
46725
46726     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46727
46728 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
46729 Author: Becky Bruce <becky.bruce@freescale.com>
46730 Date:   Wed Jan 23 16:31:02 2008 -0600
46731
46732     86xx: Convert mpc8610hpcd to new law setup method.
46733
46734     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46735
46736 commit 4933b91f8a49e436681f163df3173beb91cac44a
46737 Author: Becky Bruce <becky.bruce@freescale.com>
46738 Date:   Wed Jan 23 16:31:01 2008 -0600
46739
46740     86xx: Support new law setup method and convert mpc8641
46741
46742     Adds the support code in cpu/mpc86xx for the new law setup code
46743     recently created fsl_law.c, and changes the MPC8641HPCN config
46744     to use this code.
46745
46746     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46747
46748 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
46749 Author: Becky Bruce <becky.bruce@freescale.com>
46750 Date:   Wed Jan 23 16:31:00 2008 -0600
46751
46752     86xx: Rearrange the sequence in start.S
46753
46754     * split the BAT initialization so that only 2 BATs (for the boot page
46755     and stack) are programmed very early on.  The rest are initialized later.
46756     * Move other BAT setup,  ccsrbar setup, and law setup later in the code
46757     after translation has been enabled.
46758
46759     These changes will facilitate the moving of law and BAT initialization
46760     to C code, and will aid with 36-bit physical addressing support.
46761
46762     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46763
46764 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
46765 Author: Wolfgang Denk <wd@denx.de>
46766 Date:   Wed Jan 23 14:41:37 2008 +0100
46767
46768     Coding Style Cleanup; update CHANGELOG
46769
46770     Signed-off-by: Wolfgang Denk <wd@denx.de>
46771
46772 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
46773 Author: Wolfgang Denk <wd@denx.de>
46774 Date:   Wed Jan 23 14:31:17 2008 +0100
46775
46776     Coding Style Cleanup; update CHANGELOG
46777
46778     Signed-off-by: Wolfgang Denk <wd@denx.de>
46779
46780 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
46781 Author: Dave Liu <r63238@freescale.com>
46782 Date:   Fri Jan 18 10:07:04 2008 +0800
46783
46784     mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
46785
46786     The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
46787     cause the 83xx immap broken, so the DMA and PCI will
46788     be failed.
46789
46790     The patch fix the struct spi8xxx and rm struct spi83xx.
46791
46792     Signed-off-by: Dave Liu <daveliu@freescale.com>
46793     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
46794
46795 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
46796 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46797 Date:   Sat Apr 14 17:11:49 2007 +0200
46798
46799     AVR32: ATNGW100 board support
46800
46801     Add support for the ATNGW100 Network Gateway reference design,
46802     including flash, ethernet and MMC support.
46803
46804     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46805
46806 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
46807 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46808 Date:   Sat Nov 24 18:15:31 2007 +0100
46809
46810     AVR32: Initialize ipaddr, loadaddr and bootfile at startup
46811
46812     I don't know why the relevant layers can't do this by itself, but this
46813     is what ppc does.
46814
46815     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46816
46817 commit 799891ef7b1b3432032ec23466df6b665a797fa4
46818 Author: Michael Schwingen <michael@schwingen.org>
46819 Date:   Fri Jan 18 00:04:28 2008 +0100
46820
46821     Add AcTux board support
46822
46823     Hi,
46824
46825     The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
46826     files that
46827     contain changes for multiple boards, the board-specific files follow as
46828     separate patches.
46829
46830     Signed-off-by: Michael Schwingen <michael@schwingen.org>
46831
46832 commit 66a4344a4d910a11125df7768899ad529719855e
46833 Author: Michael Schwingen <michael@schwingen.org>
46834 Date:   Wed Jan 16 19:53:23 2008 +0100
46835
46836     add AcTux-4 board support
46837
46838     Signed-off-by: Michael Schwingen <michael@schwingen.org>
46839
46840 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
46841 Author: Michael Schwingen <michael@schwingen.org>
46842 Date:   Wed Jan 16 19:51:55 2008 +0100
46843
46844     add AcTux-3 board support
46845
46846     Signed-off-by: Michael Schwingen <michael@schwingen.org>
46847
46848 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
46849 Author: Michael Schwingen <michael@schwingen.org>
46850 Date:   Wed Jan 16 19:51:14 2008 +0100
46851
46852     add AcTux-2 board support
46853
46854     Signed-off-by: Michael Schwingen <michael@schwingen.org>
46855
46856 commit ea99e8f05b7240fd657739e286664664ae160abe
46857 Author: Michael Schwingen <michael@schwingen.org>
46858 Date:   Wed Jan 16 19:50:37 2008 +0100
46859
46860     add AcTux-1 board support
46861
46862     Signed-off-by: Michael Schwingen <michael@schwingen.org>
46863
46864 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
46865 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46866 Date:   Mon Jan 14 19:20:08 2008 +0100
46867
46868     ARM: remove useless function board_post_init
46869
46870     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46871
46872 commit 96bd462942022e4569b582c072a0ed26de1cd19b
46873 Author: Michael Schwingen <michael@schwingen.org>
46874 Date:   Thu Jan 10 14:59:46 2008 +0100
46875
46876     IXP: enable RTS
46877
46878     enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
46879     No handshaking is done, but the active RTS signal allows to
46880     connect to the target using a PC which is using RTS/CTS
46881     handshake, and does no harm if the PC is set to ignore RTS.
46882
46883     Signed-off-by: Michael Schwingen <michael@schwingen.org>
46884
46885 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
46886 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46887 Date:   Mon Jan 7 08:41:34 2008 +0100
46888
46889     IXP: add dynamic microcode addr
46890
46891     allow to load the microde from flash or ram by download it through
46892     the serial or other.
46893
46894     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46895     Acked-by: Stefan Roese <sr@denx.de>
46896
46897 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
46898 Author: Michael Schwingen <michael@schwingen.org>
46899 Date:   Sat Nov 10 15:44:12 2007 +0100
46900
46901     load ixp42x NPE firmware from separate flash block, remove dead code
46902
46903     Hi,
46904
46905     the following patch adds support to move the IXP42X NPE firmware to a
46906     separate flash block, whose start address is defined in
46907     CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
46908     NPE-enabled u-boot without copyright problems due to the NPE firmware.
46909
46910     I hope the patch applies, I get whitespace-related differences in the NPE
46911     files due to trailing whitespace in the original versions.
46912
46913     Signed-off-by: Michael Schwingen <michael@schwingen.org>
46914     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46915
46916 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
46917 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46918 Date:   Tue Jan 15 14:15:46 2008 -0600
46919
46920     ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
46921
46922     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46923     Signed-off by: John Rigby <jrigby@freescale.com>
46924
46925 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
46926 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46927 Date:   Tue Jan 15 14:02:49 2008 -0600
46928
46929     ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
46930
46931     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46932     Signed-off by: John Rigby <jrigby@freescale.com>
46933
46934 commit 777d1abd9796f1c2e148417cc10657e847d318ce
46935 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46936 Date:   Tue Jan 15 14:00:25 2008 -0600
46937
46938     ColdFire: Add MCF547x_8x FEC driver
46939
46940     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46941     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
46942     Signed-off by: John Rigby <jrigby@freescale.com>
46943
46944 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
46945 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46946 Date:   Tue Jan 15 13:54:09 2008 -0600
46947
46948     ColdFire: Add MCF547x_8x dma code and header files
46949
46950     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46951     Signed-off by: John Rigby <jrigby@freescale.com>
46952
46953 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
46954 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46955 Date:   Tue Jan 15 13:52:03 2008 -0600
46956
46957     ColdFire: Add MCF547x_8x dma code - 2
46958
46959     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46960     Signed-off by: John Rigby <jrigby@freescale.com>
46961
46962 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
46963 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46964 Date:   Tue Jan 15 13:48:52 2008 -0600
46965
46966     ColdFire: Add MCF547x_8x dma code - 1
46967
46968     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46969     Signed-off by: John Rigby <jrigby@freescale.com>
46970
46971 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
46972 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46973 Date:   Tue Jan 15 13:39:44 2008 -0600
46974
46975     ColdFire: Add MCF547x_8x related header files
46976
46977     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46978     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
46979     Signed-off by: John Rigby <jrigby@freescale.com>
46980
46981 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
46982 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46983 Date:   Tue Jan 15 13:37:34 2008 -0600
46984
46985     ColdFire: Add MCF547x_8x cpu arch
46986
46987     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46988     Signed-off by: John Rigby <jrigby@freescale.com>
46989
46990 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
46991 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46992 Date:   Mon Jan 14 17:47:23 2008 -0600
46993
46994     ColdFire: Add MCF5227x cpu and M52277EVB support-3
46995
46996     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46997     Signed-off by: John Rigby <jrigby@freescale.com>
46998
46999 commit c87581027994c148131b2f11aa75501f782ec19a
47000 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47001 Date:   Mon Jan 14 17:46:19 2008 -0600
47002
47003     ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
47004
47005     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47006     Signed-off by: John Rigby <jrigby@freescale.com>
47007
47008 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
47009 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47010 Date:   Mon Jan 14 17:43:33 2008 -0600
47011
47012     ColdFire: Add MCF5227x cpu and M52277EVB support-1
47013
47014     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47015     Signed-off by: John Rigby <jrigby@freescale.com>
47016
47017 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
47018 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47019 Date:   Mon Jan 14 17:35:44 2008 -0600
47020
47021     ColdFire: Fix CFI Flash low level Read/Write macro
47022
47023     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47024     Signed-off by: John Rigby <jrigby@freescale.com>
47025
47026 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
47027 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47028 Date:   Mon Jan 14 17:23:08 2008 -0600
47029
47030     ColdFire: Add M5373EVB platform support - 2
47031
47032     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47033     Signed-off by: John Rigby <jrigby@freescale.com>
47034
47035 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
47036 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47037 Date:   Mon Jan 14 17:19:54 2008 -0600
47038
47039     ColdFire: Add M5373EVB platform support - 1
47040
47041     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47042     Signed-off by: John Rigby <jrigby@freescale.com>
47043
47044 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
47045 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47046 Date:   Mon Jan 14 17:17:03 2008 -0600
47047
47048     ColdFire: Update FlexBus CS for MCF532x
47049
47050     Definition update and change from 16bit to 32bit
47051
47052     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47053     Signed-off by: John Rigby <jrigby@freescale.com>
47054
47055 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
47056 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47057 Date:   Mon Jan 14 17:11:47 2008 -0600
47058
47059     ColdFire: PCI and misc updates for MCF5445x
47060
47061     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47062     Signed-off by: John Rigby <jrigby@freescale.com>
47063
47064 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
47065 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47066 Date:   Mon Jan 14 17:06:55 2008 -0600
47067
47068     ColdFire: MCF5445x header files cleanup
47069
47070     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47071     Signed-off by: John Rigby <jrigby@freescale.com>
47072
47073 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
47074 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47075 Date:   Mon Jan 14 16:59:42 2008 -0600
47076
47077     ColdFire: MCF532x header files cleanup
47078
47079     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47080     Signed-off by: John Rigby <jrigby@freescale.com>
47081
47082 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
47083 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47084 Date:   Mon Jan 14 15:30:15 2008 -0600
47085
47086     ColdFire: Add modules header files
47087
47088     Add CF specific modules header files
47089
47090     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47091     Signed-off-by: John Rigby <jrigby@freescale.com>
47092
47093 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
47094 Author: Kim Phillips <kim.phillips@freescale.com>
47095 Date:   Thu Jan 17 12:48:00 2008 -0600
47096
47097     codingstyle cleanup for spi driver
47098
47099     ..and rm unused CONFIG_FSL_SPI define
47100
47101     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47102
47103 commit d59feffb42c9f174116db7a82a311df98983dfce
47104 Author: Haiying Wang <Haiying.Wang@freescale.com>
47105 Date:   Wed Jan 16 17:12:12 2008 -0500
47106
47107     FSL: Fix common EEPROM_data structure definition
47108
47109     - Fix EEPROM_data structure definition according to System EEPROM Data Format.
47110     - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
47111       bd->bi_ethaddr.
47112
47113     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
47114
47115 commit 6bee764bd6da510a4aad614880300c968bc7318d
47116 Author: Timur Tabi <timur@freescale.com>
47117 Date:   Wed Jan 16 15:48:12 2008 -0600
47118
47119     86xx: enable command-line editing
47120
47121     Enable command-line editing for all MPC86xx boards.
47122
47123     Signed-off-by: Timur Tabi <timur@freescale.com>
47124
47125 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
47126 Author: Ben Warren <biggerbadderben@gmail.com>
47127 Date:   Wed Jan 16 22:37:42 2008 -0500
47128
47129     Implement hard SPI driver on MPC8349EMDS
47130
47131     This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
47132     This board has an ST M25P40 4Mbit EEPROM on its SPI bus
47133
47134     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47135     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47136
47137 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
47138 Author: Ben Warren <biggerbadderben@gmail.com>
47139 Date:   Wed Jan 16 22:37:35 2008 -0500
47140
47141     Add support for a Freescale non-CPM SPI controller
47142
47143     This patch adds support for the SPI controller found on Freescale PowerPC
47144     processors such as the MCP834x family.  Additionally, a new config option,
47145     CONFIG_HARD_SPI, is added for general purpose SPI controller use.
47146
47147     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47148     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47149
47150 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
47151 Author: Dave Liu <r63238@freescale.com>
47152 Date:   Thu Jan 17 18:23:19 2008 +0800
47153
47154     mpc83xx: Fix the fatal conflict of merge
47155
47156     The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
47157     will cause the mpc8315erdb board can't boot up.
47158
47159     The patch fix that bug, and remove the duplicated #ifdef
47160     CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
47161     MPC8313E processor.
47162
47163     Signed-off-by: Dave Liu <daveliu@freescale.com>
47164     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47165
47166 commit 3259eeaa4148125a81417477f62c05bd67f60587
47167 Author: Larry Johnson <lrj@acm.org>
47168 Date:   Thu Jan 17 08:50:09 2008 -0500
47169
47170     Merge Sequoia beautification into Korat code
47171
47172     Signed-off-by: Larry Johnson <lrj@acm.org>
47173
47174 commit e16925773211291b562e77187061e9dd1d757217
47175 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47176 Date:   Thu Jan 17 07:45:05 2008 +0100
47177
47178     net: add 'ethrotate' environment variable
47179
47180     [PATCH] net: add 'ethrotate' environment variable
47181
47182     This patch replaces the buildtime configuration option
47183     CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
47184     configuration veriable. See README.
47185
47186     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47187     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47188
47189 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
47190 Author: Stefan Roese <sr@denx.de>
47191 Date:   Thu Jan 17 14:29:04 2008 +0100
47192
47193     ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
47194
47195     Signed-off-by: Stefan Roese <sr@denx.de>
47196
47197 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
47198 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47199 Date:   Thu Jan 17 18:07:32 2008 +0900
47200
47201     sh: Remove CONFIG_COMMANDS from MS7720SE config file
47202
47203     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47204
47205 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
47206 Author: Niklaus Giger <niklaus.giger@netstal.com>
47207 Date:   Wed Jan 16 18:39:20 2008 +0100
47208
47209     ppc4xx: Netstal HCU4 board: added various fixes and POST
47210
47211     - Moved some common code to netstal/common/nm_bsp.c.
47212     - sdram initialisation goes go netstal/common/fixed_sdram.c.
47213     - Added support for POST.
47214     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
47215
47216     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47217
47218 commit 69b0634a4ee98c9791815600d43b99f626a952f3
47219 Author: Niklaus Giger <niklaus.giger@netstal.com>
47220 Date:   Thu Jan 17 12:53:56 2008 +0100
47221
47222     ppc4xx: netstal/common define routines used by all boards
47223
47224     Added some routines used by all Netstal boards:
47225     - nm_bsp.c: - nm_show_print and
47226             -  common_misc_init_r
47227             - set_params_for_sw_install. Very specific code to handle our SW
47228               installation procedure
47229     - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
47230       to handle sdram initialization.
47231     - nm.h: Common header
47232
47233     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47234
47235 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
47236 Author: Niklaus Giger <niklaus.giger@netstal.com>
47237 Date:   Wed Jan 16 18:39:18 2008 +0100
47238
47239     ppc4xx: Netstal HCU5 board: added various fixes and POST
47240
47241     - Moved some common code to nestal/common/nm_bsp.c.
47242     - Added support for the vxWorks EDR.
47243     - Enable trace for Lauterbach, if present.
47244     - Added support for POST.
47245     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
47246
47247     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47248
47249 commit 4371090e5da77edc7bf9f296364db4801639d9c4
47250 Author: Niklaus Giger <niklaus.giger@netstal.com>
47251 Date:   Wed Jan 16 18:39:08 2008 +0100
47252
47253     ppc4xx: Netstal HCU5 board. Added POST. Various fixes
47254
47255     - Various fixes
47256     - Reduced rom_size from 384 to 320 kB
47257     - Environment is now in flash
47258     - Added POST
47259     - Support for OF
47260
47261     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47262
47263 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
47264 Author: Niklaus Giger <niklaus.giger@netstal.com>
47265 Date:   Wed Jan 16 18:37:50 2008 +0100
47266
47267     ppc4xx: Netstal HCU4 board. Added POST. Various fixes
47268
47269     - Various fixes
47270     - Reduced rom_size from 384 to 320 kB
47271     - Environment is now in flash
47272     - Added POST
47273     - Support for OF
47274
47275     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47276
47277 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
47278 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47279 Date:   Thu Jan 17 10:53:08 2008 +0100
47280
47281     ppc4xx: Complete DU440 board support
47282
47283     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47284
47285 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
47286 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47287 Date:   Thu Jan 17 10:52:30 2008 +0100
47288
47289     ppc4xx: Add DU440 board support
47290
47291     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47292
47293 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
47294 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47295 Date:   Thu Jan 17 15:53:52 2008 +0900
47296
47297     sh: Update SuperH SCIF driver
47298
47299     This patch fixed wrong SH7720 CPU macro and changed macro that
47300     calculated value of SCBRR register.
47301
47302     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47303
47304 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
47305 Author: Grzegorz Bernacki <gjb@semihalf.com>
47306 Date:   Wed Jan 16 15:12:47 2008 +0100
47307
47308     Set ips dividor to 1/4 of csb clock.
47309
47310     Previous setting cause ips clock to be out of spec. This bug was found by John
47311     Rigby from Freescale.
47312
47313     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
47314
47315 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
47316 Author: Kumar Gala <galak@kernel.crashing.org>
47317 Date:   Thu Jan 17 02:19:18 2008 -0600
47318
47319     85xx: Get ride of old TLB setup code
47320
47321     Now that all boards have been converted, remove old config code and the
47322     config option for the new style.
47323
47324     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47325
47326 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
47327 Author: Kumar Gala <galak@kernel.crashing.org>
47328 Date:   Thu Jan 17 02:02:10 2008 -0600
47329
47330     85xx: Convert TQM85xx to new TLB setup
47331
47332     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47333
47334 commit 74121b470c14f7eaf284ee838bffca6f9521069e
47335 Author: Kumar Gala <galak@kernel.crashing.org>
47336 Date:   Thu Jan 17 01:56:32 2008 -0600
47337
47338     85xx: Convert STXGP3 & STXSSA to new TLB setup
47339
47340     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47341
47342 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
47343 Author: Kumar Gala <galak@kernel.crashing.org>
47344 Date:   Thu Jan 17 01:44:34 2008 -0600
47345
47346     85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
47347
47348     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47349
47350 commit 818218bac6a11591e2542c344d2330e0f4e1968b
47351 Author: Kumar Gala <galak@kernel.crashing.org>
47352 Date:   Thu Jan 17 01:31:34 2008 -0600
47353
47354     85xx: Convert PM854/PM856 to new TLB setup
47355
47356     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47357
47358 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
47359 Author: Kumar Gala <galak@kernel.crashing.org>
47360 Date:   Thu Jan 17 01:25:33 2008 -0600
47361
47362     85xx: Convert MPC8540EVAL to new TLB setup
47363
47364     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47365
47366 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
47367 Author: Kumar Gala <galak@kernel.crashing.org>
47368 Date:   Thu Jan 17 01:12:22 2008 -0600
47369
47370     85xx: Convert MPC8568 MDS to new TLB setup
47371
47372     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47373
47374 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
47375 Author: Kumar Gala <galak@kernel.crashing.org>
47376 Date:   Thu Jan 17 01:01:09 2008 -0600
47377
47378     85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
47379
47380     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47381
47382 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
47383 Author: Kumar Gala <galak@kernel.crashing.org>
47384 Date:   Thu Jan 17 00:52:29 2008 -0600
47385
47386     85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
47387
47388     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47389
47390 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
47391 Author: Kumar Gala <galak@kernel.crashing.org>
47392 Date:   Thu Jan 17 00:32:17 2008 -0600
47393
47394     85xx: Convert ATUM8548 to new TLB setup
47395
47396     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47397
47398 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
47399 Author: Kumar Gala <galak@kernel.crashing.org>
47400 Date:   Wed Jan 16 23:11:57 2008 -0600
47401
47402     85xx: Convert MPC8544 DS to new TLB setup
47403
47404     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47405
47406 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
47407 Author: Kumar Gala <galak@kernel.crashing.org>
47408 Date:   Wed Jan 16 22:38:34 2008 -0600
47409
47410     85xx: Reworked initial processor init
47411
47412     Reworked the initial processor initialzation sequence:
47413     * introduced cpu_early_init_f that is run in address space 1 (AS=1)
47414     * Moved TLB/LAW and CCSR init into cpu_early_init_f()
47415     * Reworked initial asm code to do most of the core init before TLBs
47416
47417     The main reasons for these changes are to allow handling of 36-bit phys
47418     addresses in the future and some of the issues that will exist when we
47419     do that.
47420
47421     There are a few caveats on what can be initialized via the LAW and TLB
47422     static tables:
47423     * TLB entry 14/15 can't be initialized via the TLB table
47424     * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
47425       the code that is currently executing.
47426
47427     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47428
47429 commit 44a23cfd6360a68eaa41f945190618a55519eac3
47430 Author: Kumar Gala <galak@kernel.crashing.org>
47431 Date:   Wed Jan 16 22:33:22 2008 -0600
47432
47433     85xx: Introduce new tlb API
47434
47435     Add a set of functions to manipulate TLB entries:
47436      * set_tlb() - write a tlb entry
47437      * invalidate_tlb() - invalidate a tlb array
47438      * disable_tlb() - disable a variable size tlb entry
47439      * init_tlbs() - setup initial tlbs based on static table
47440
47441     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47442
47443 commit be88b1699863c262818f3af7f60173b4d48df8fc
47444 Author: Stefan Roese <sr@denx.de>
47445 Date:   Thu Jan 17 07:50:17 2008 +0100
47446
47447     ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
47448
47449     Signed-off-by: Stefan Roese <sr@denx.de>
47450
47451 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
47452 Author: Kumar Gala <galak@kernel.crashing.org>
47453 Date:   Wed Jan 16 10:04:42 2008 -0600
47454
47455     85xx: Use proper defines for PCI addresses
47456
47457     We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
47458     While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
47459     be used for configuring the PCI ATMU.
47460
47461     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47462
47463 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
47464 Author: Kumar Gala <galak@kernel.crashing.org>
47465 Date:   Wed Jan 16 09:22:29 2008 -0600
47466
47467     85xx: Remove old style of LAW init
47468
47469     All boards are now using the new fsl_law code so we can drop the old version.
47470
47471     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47472
47473 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
47474 Author: Kumar Gala <galak@kernel.crashing.org>
47475 Date:   Wed Jan 16 09:15:29 2008 -0600
47476
47477     85xx: convert remaining 85xx boards over to use new LAW init code
47478
47479     Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
47480     to use new LAW init code.
47481
47482     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47483
47484 commit 572b13afc42710f2957c382a710360429c0e099b
47485 Author: Kumar Gala <galak@kernel.crashing.org>
47486 Date:   Wed Jan 16 09:11:53 2008 -0600
47487
47488     85xx: convert STXGP3/STXSSA over to use new LAW init code
47489
47490     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47491
47492 commit 45f2166ac0233a9263058378f39612bd11f61196
47493 Author: Kumar Gala <galak@kernel.crashing.org>
47494 Date:   Wed Jan 16 09:06:48 2008 -0600
47495
47496     85xx: convert PM854/PM856 over to use new LAW init code
47497
47498     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47499
47500 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
47501 Author: Kumar Gala <galak@kernel.crashing.org>
47502 Date:   Wed Jan 16 09:05:27 2008 -0600
47503
47504     85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
47505
47506     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47507
47508 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
47509 Author: Kumar Gala <galak@kernel.crashing.org>
47510 Date:   Wed Jan 16 01:45:10 2008 -0600
47511
47512     85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
47513
47514     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47515
47516 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
47517 Author: Kumar Gala <galak@kernel.crashing.org>
47518 Date:   Wed Jan 16 01:32:06 2008 -0600
47519
47520     85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
47521
47522     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47523
47524 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
47525 Author: Kumar Gala <galak@kernel.crashing.org>
47526 Date:   Wed Jan 16 01:16:16 2008 -0600
47527
47528     85xx: convert MPC8544 DS over to use new LAW init code
47529
47530     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47531
47532 commit 83d40dfd79fe868796275802f60116d84b9e4395
47533 Author: Kumar Gala <galak@kernel.crashing.org>
47534 Date:   Wed Jan 16 01:13:58 2008 -0600
47535
47536     85xx: Move LAW init code into C
47537
47538     Move the initialization of the LAWs into C code and provide an API
47539     to allow modification of LAWs after init.
47540
47541     Board code is responsible to provide a law_table and num_law_entries.
47542
47543     We should be able to use the same code on 86xx as well.
47544
47545     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47546
47547 commit bed8ce838a609aaab136d43b25e6df2a520bc854
47548 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47549 Date:   Sat Dec 22 15:03:12 2007 +0100
47550
47551     qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
47552
47553     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47554
47555 commit 0764c164fed6277d359cf132d55187ea34290114
47556 Author: Vlad Lungu <vlad@comsys.ro>
47557 Date:   Wed Jan 16 19:27:51 2008 +0200
47558
47559     MIPS:Target support for qemu -M mips
47560
47561     With serial, NE2000, IDE support. Tested in big-endian mode.
47562     Memory size hard-coded to 128M for now, so don't play with
47563     the -m option.
47564
47565     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
47566
47567 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
47568 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47569 Date:   Fri Jan 11 00:01:37 2008 +0100
47570
47571     Fix nfs command help to reflect that the serverip is optional
47572
47573     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47574     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47575
47576 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
47577 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47578 Date:   Mon Dec 10 22:32:14 2007 +0100
47579
47580     bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
47581
47582     and move is_valid_ether_addr board file
47583
47584     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47585     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47586
47587 commit c2f896b8fc4722e36915903e1942e138e68ce804
47588 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47589 Date:   Wed Jan 16 16:13:31 2008 +0900
47590
47591     drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
47592
47593     rx_status on the memory is basically in LE, but needs to be handled in CPU
47594     endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
47595     it'll work fine.
47596
47597     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47598     Cc: Masami Komiya <mkomiya@sonare.it>
47599     Cc: Lucas Jin <lucasjin@gmail.com>
47600     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47601
47602 commit 96a236746fe6a7b84802afb4ed31536696d34812
47603 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47604 Date:   Wed Jan 16 16:12:26 2008 +0900
47605
47606     drivers/net/rtl8139.c: Fix cache coherency issues
47607
47608     Current driver is meant for cache coherent systems. This patch adds
47609     flush_cache() routines to support cache non-coherent systems.
47610
47611     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47612     Cc: Masami Komiya <mkomiya@sonare.it>
47613     Cc: Lucas Jin <lucasjin@gmail.com>
47614     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47615
47616 commit d1276c76c1e2b5035296689280ba1acb2c425104
47617 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47618 Date:   Wed Jan 16 16:11:14 2008 +0900
47619
47620     drivers/net/rtl8139.c: Fix tx timeout
47621
47622     "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
47623     does, the condition "(currticks() < to)" becomes invalid and immediately
47624     leads to tx timeout error. This patch introduces the fine-graded udely(10)
47625     loops to ease the impact of wrapping around.
47626
47627     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47628     Cc: Masami Komiya <mkomiya@sonare.it>
47629     Cc: Lucas Jin <lucasjin@gmail.com>
47630     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47631
47632 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
47633 Author: Dave Liu <r63238@freescale.com>
47634 Date:   Fri Jan 11 18:45:28 2008 +0800
47635
47636     TSEC: Add the support for RealTek RTL8211B PHY
47637
47638     Add the support of RealTek RTL8211B PHY, the RTL8211B
47639     PHY only supports RGMII and MII mode.
47640
47641     Signed-off-by: Dave Liu <daveliu@freescale.com>
47642     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47643
47644 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
47645 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
47646 Date:   Wed Jan 16 09:40:41 2008 +0100
47647
47648     Remove annoying debug printout for PHY less boards.
47649
47650     PHY less board prints out lots of "read wrong ...":
47651     read wrong value : mii_id 3,mii_reg 2, base e0102320
47652     read wrong value : mii_id 3,mii_reg 3, base e0102320
47653     UEC: PHY is Generic MII (ffffffff)
47654     read wrong value : mii_id 3,mii_reg 4, base e0102320
47655     read wrong value : mii_id 3,mii_reg 0, base e0102320
47656     read wrong value : mii_id 3,mii_reg 1, base e0102320
47657     read wrong value : mii_id 3,mii_reg 1, base e0102320
47658     read wrong value : mii_id 3,mii_reg 5, base e0102320
47659     read wrong value : mii_id 3,mii_reg 1, base e0102320
47660     read wrong value : mii_id 3,mii_reg 1, base e0102320
47661     read wrong value : mii_id 3,mii_reg 5, base e0102320
47662     FSL UEC0: Full Duplex
47663     FSL UEC0: Speed 100BT
47664     FSL UEC0: Link is up
47665     Using FSL UEC0 device
47666
47667     Make this printout depend on UEC_VERBOSE_DEBUG and
47668     remove its definition in uec_phy.c
47669
47670     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
47671     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47672
47673 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
47674 Author: Kim Phillips <kim.phillips@freescale.com>
47675 Date:   Tue Jan 15 14:11:00 2008 -0600
47676
47677     net: reduce boot latency on QE UEC based boards
47678
47679     actually polling for PHY autonegotiation to finish enables us to remove the
47680     5 second boot prompt latency present on QE based boards.
47681
47682     call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
47683     uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
47684     code shamelessly stolen from tsec driver.
47685
47686     also rm unused CONFIG_RMII_MODE code.
47687
47688     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47689     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
47690     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47691
47692 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
47693 Author: michael.firth@bt.com <michael.firth@bt.com>
47694 Date:   Wed Jan 16 11:40:51 2008 +0000
47695
47696     TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
47697
47698     The current TSEC driver limits MDIO access to the devices that have been configured as attached
47699     to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
47700
47701     Signed-off-by: Michael Firth <michael.firth@bt.com>
47702     Acked-by: Andy Fleming <afleming@freescale.com>
47703     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47704
47705 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
47706 Author: Kim Phillips <kim.phillips@freescale.com>
47707 Date:   Wed Jan 16 00:38:05 2008 -0600
47708
47709     Add support for the MPC837xERDB
47710
47711     MPC837xERDB board support includes:
47712     * DDR2 330MHz hardcoded (soldered on the board)
47713     * Local Bus NOR Flash
47714     * I2C, UART and RTC
47715     * eTSEC RGMII (TSEC0 - RTL8211B with MII;
47716     *          TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
47717     *                  load)
47718
47719     Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
47720     Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
47721     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47722
47723 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
47724 Author: Kim Phillips <kim.phillips@freescale.com>
47725 Date:   Wed Jan 16 12:06:16 2008 -0600
47726
47727     mpc83xx: add support for more system clock performance controls
47728
47729     System registers that are modified are the Arbiter Configuration
47730     Register (ACR), the System Priority Control Register (SPCR), and the
47731     System Clock Configuration Register (SCCR).
47732
47733     Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
47734     Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
47735     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47736
47737 commit 16c3cde050e2d243e62b37486f1558570787beb8
47738 Author: James Yang <james.yang@freescale.com>
47739 Date:   Wed Jan 16 11:58:08 2008 -0600
47740
47741     FSL: Generalize PIXIS reset command parsing.
47742
47743     Before, the order of arguments to the pixis_reset
47744     command needed to be supplied in a hard-coded order.
47745     Generalize the command parsing to allow any order.
47746
47747     Signed-off-by: James Yang <james.yang@freescale.com>
47748     Acked-by: Jon Loeliger <jdl@freescale.com>
47749
47750 commit ad8f8687b78c3e917b173f038926695383c55555
47751 Author: Jon Loeliger <jdl@freescale.com>
47752 Date:   Tue Jan 15 13:42:41 2008 -0600
47753
47754     FSL: Convert board/freescale/common/Makefile to use CONFIG_
47755
47756     Convert the board/freescale/common/Makefile to use
47757     CONFIG_* options to select which files to conditionally
47758     compile into the board/freescale/common library rather
47759     than conditionally compiling entire files.
47760
47761     Now handles::
47762         CONFIG_FSL_PIXIS
47763         CONFIG_FSL_DIU_FB
47764         CONFIG_PQ_MDS_PIB
47765
47766     CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
47767
47768     Signed-off-by: Jon Loeliger <jdl@freescale.com>
47769
47770 commit 7c2221eb230372a9e537c4f6636b147b0909325f
47771 Author: Roy Zang <tie-fei.zang@freescale.com>
47772 Date:   Tue Jan 15 16:38:38 2008 +0800
47773
47774     Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
47775
47776     Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
47777     Remove unused ethernet CONFIG_ options.
47778
47779     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47780     Acked-by: Jon Loeliger <jdl@freescale.com>
47781
47782 commit 711a7946277d2e29af481011e8635e9975c54e45
47783 Author: Kim Phillips <kim.phillips@freescale.com>
47784 Date:   Tue Jan 15 14:05:14 2008 -0600
47785
47786     mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
47787
47788     continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
47789
47790     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47791
47792 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
47793 Author: Kim Phillips <kim.phillips@freescale.com>
47794 Date:   Tue Jan 15 09:51:12 2008 -0600
47795
47796     mpc83xx: clean up mpc8360emds.c warnings
47797
47798     mpc8360emds.c: In function 'ft_board_setup':
47799     mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
47800     mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
47801     mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
47802     mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
47803     mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
47804     mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
47805
47806     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47807
47808 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
47809 Author: Kim Phillips <kim.phillips@freescale.com>
47810 Date:   Mon Jan 14 16:14:46 2008 -0600
47811
47812     mpc83xx: fix phy-connection-type fixup code
47813
47814     use tree passed to us in local blob, not global fdt.
47815
47816     Also use fdt_path_offset to convert to relative offset, since absolute
47817     reference is needed to check for rgmii-id mode string value.
47818
47819     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47820
47821 commit 2b4c952be7c4357a13e839d48df80853820c33eb
47822 Author: Kumar Gala <galak@kernel.crashing.org>
47823 Date:   Mon Jan 14 09:01:40 2008 -0600
47824
47825     mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
47826
47827     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47828     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47829
47830 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
47831 Author: Poonam Aggrwal <b10812@freescale.com>
47832 Date:   Mon Jan 14 09:41:14 2008 +0530
47833
47834     Changes in uboot DDR configuration for MPC8313eRDB
47835
47836     These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
47837     DDR configuration in u-boot code. Some are related to performance, some
47838     affect stability and some correct few basic errors in the current
47839     configuration.
47840
47841     The changes have been tested and found to give better memory latency
47842     figures on MPC8313eRDB.LMBench figures prove it.
47843
47844     The changes are:
47845
47846     - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
47847       (this may improve performance for application with many read
47848       or write to open pages).
47849     - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
47850       001 (activating all the CS when only one is used may cause
47851       unwanted noise on the system)
47852
47853     - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
47854       Tras=45ns)
47855     - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
47856
47857     - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
47858       comply with the 3 ODT clk requirements)
47859     - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
47860     - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
47861
47862     - DDR_SDRAM_MODE[AL]changed from 0 to 1.
47863     - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
47864
47865     - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
47866     - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
47867
47868     The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
47869     The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
47870
47871     Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
47872     Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
47873     Cc: Razzaz Mazyar <MRazzaz@freescale.com>
47874     Cc: Josep P J <PJ.Joseph@freescale.com>
47875     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47876
47877 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
47878 Author: Jerry Van Baren <gvb.uboot@gmail.com>
47879 Date:   Sat Jan 12 13:24:14 2008 -0500
47880
47881     Enable the isdram command on the MPC8360EMDS board
47882
47883     The isdram command prints out decoded information the "serial presence
47884     detect" (SPD) chip on the SDRAM SIMMs.  This can be very helpful when
47885     debugging memory configuration problems.
47886
47887     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
47888     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47889
47890 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
47891 Author: Dave Liu <r63238@freescale.com>
47892 Date:   Fri Jan 11 18:48:24 2008 +0800
47893
47894     mpc83xx: Add the support for MPC8315ERDB board
47895
47896     The features list:
47897     - Boot from NOR Flash
47898     - DDR2 266MHz hardcoded configuration
47899     - Local bus NOR Flash R/W operation
47900     - I2C, UART, MII and RTC
47901     - eTSEC0/1 support
47902     - PCI host
47903
47904     Signed-off-by: Dave Liu <daveliu@freescale.com>
47905     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47906
47907 commit b05884efa614e4d8a9413158fc228e0dc02ab704
47908 Author: Dave Liu <r63238@freescale.com>
47909 Date:   Fri Jan 11 18:46:50 2008 +0800
47910
47911     mpc83xx: Add config of eTSEC emergency priority in SPCR
47912
47913     The TSEC emergency priority definition of 831x/837x
47914     is different than the definition of 834x in SPCR register.
47915
47916     Add the other config of TSEC emergency priority into
47917     cpu_init.c
47918
47919     Signed-off-by: Dave Liu <daveliu@freescale.com>
47920     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47921
47922 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
47923 Author: Dave Liu <r63238@freescale.com>
47924 Date:   Fri Jan 11 18:42:19 2008 +0800
47925
47926     mpc83xx: Remove cache config from MPC8360ERDK.h
47927
47928     The MPC8360ERDK board support patch is added before
47929     the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
47930     so, miss clean up it.
47931
47932     The patch clean up the miss cache config.
47933
47934     Signed-off-by: Dave Liu <daveliu@freescale.com>
47935     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47936
47937 commit cd9d23053d435c08fc8695017b5cb9003fcda786
47938 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
47939 Date:   Mon Jan 14 23:09:32 2008 +0300
47940
47941     nand: FSL UPM NAND driver
47942
47943     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
47944
47945 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
47946 Author: Kyungmin Park <kmpark@infradead.org>
47947 Date:   Tue Jan 15 08:59:44 2008 +0900
47948
47949     OneNAND: Separate U-Boot dependent code from OneNAND
47950
47951     OneNAND: Separate U-Boot dependent code from OneNAND
47952
47953     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47954
47955 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
47956 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47957 Date:   Wed Jan 16 10:33:46 2008 +0100
47958
47959     ppc4xx: Sequoia coding style cleanup and beautification
47960
47961     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47962
47963 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
47964 Author: Larry Johnson <lrj@acm.org>
47965 Date:   Tue Jan 15 14:35:58 2008 -0500
47966
47967     ppc4xx: Refactor ECC POST for AMCC Denali core
47968
47969     The ECC POST reported intermittent failures running after power-up on
47970     the Korat PPC440EPx board.  Even when the test passed, the debugging
47971     output occasionally reported additional unexpected ECC errors.
47972
47973     This refactoring has three main objectives: (1) minimize the code
47974     executed with ECC enabled during the tests, (2) add more checking of the
47975     results so any unexpected ECC errors would cause the test to fail, and
47976     (3) use synchronization (only) where required by the processor.
47977
47978     Signed-off-by: Larry Johnson <lrj@acm.org>
47979
47980 commit 2465665b73ac2f688af945b1ed510752afa816a4
47981 Author: David Saada <David.Saada@ecitele.com>
47982 Date:   Tue Jan 15 10:40:24 2008 +0200
47983
47984     QE UEC: Extend number of supported UECs to 4
47985
47986     This patch extends the number of supported UECs to 4. Note that the
47987     problem of QE thread resources exhaustion is resolved by setting the
47988     correct number of QE threads according to Ethernet type (GBE or FE).
47989
47990     Signed-off-by: David Saada <david.saada@ecitele.com>
47991     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47992
47993 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
47994 Author: Wolfgang Denk <wd@denx.de>
47995 Date:   Wed Jan 16 00:01:01 2008 +0100
47996
47997     LWMON5: enable hush shell as command line parser
47998
47999     Signed-off-by: Wolfgang Denk <wd@denx.de>
48000
48001 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
48002 Author: Wolfgang Denk <wd@denx.de>
48003 Date:   Tue Jan 15 17:22:28 2008 +0100
48004
48005     ADS5121: disable watchdog; enable image timestamps
48006
48007     Signed-off-by: Wolfgang Denk <wd@denx.de>
48008
48009 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
48010 Author: Wolfgang Denk <wd@denx.de>
48011 Date:   Tue Jan 15 17:21:28 2008 +0100
48012
48013     TK885D: fixes for bigger flash sector sizes on new modules;
48014     adjust default environment;
48015     disable SCC ethernet (not used on this board).
48016
48017     Signed-off-by: Wolfgang Denk <wd@denx.de>
48018
48019 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
48020 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48021 Date:   Tue Jan 15 17:48:13 2008 +0900
48022
48023     pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
48024
48025     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48026
48027 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
48028 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48029 Date:   Tue Jan 15 23:25:25 2008 +0900
48030
48031     sh: Add support SH7710/SH7712
48032
48033     SH7710/SH7712 of SH3 CPU are supported.
48034     SH771X is called SH-Ether, and has the Ether controller in CPU.
48035     The driver of Ether is not included in this patch.
48036
48037     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48038
48039 commit 63a11be68306870e04d3851ed9fa41955cdf4894
48040 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48041 Date:   Tue Jan 15 23:06:17 2008 +0900
48042
48043     sh: Add support of map_physmem() and unmap_physmem() to SuperH
48044
48045     This patch add the support of map_physmem() and unmap_physmem()
48046     used with Common Flash Interface(CFI) driver.
48047
48048     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48049
48050 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
48051 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48052 Date:   Wed Jan 9 14:42:27 2008 +0900
48053
48054     sh: Add maintainer of MS7720SE to the MAINTAINER file
48055
48056     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48057
48058 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
48059 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48060 Date:   Wed Jan 9 14:39:58 2008 +0900
48061
48062     sh: Fix board name in MS7720SE's config.mk
48063
48064     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48065
48066 commit c0a04d93734d768b39dbb72fb501b65614c8615d
48067 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48068 Date:   Wed Jan 9 14:37:36 2008 +0900
48069
48070     sh: Add MS7720SE to MAKEALL
48071
48072     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48073
48074 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
48075 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48076 Date:   Mon Dec 3 22:58:50 2007 +0900
48077
48078     sh: Add support for MS7720RP02 board
48079
48080     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48081     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48082     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48083
48084 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
48085 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48086 Date:   Wed Jan 9 14:30:02 2008 +0900
48087
48088     sh: Add support for SH7720 in serial_sh driver.
48089
48090     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48091     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48092     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48093
48094 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
48095 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48096 Date:   Mon Dec 3 22:58:45 2007 +0900
48097
48098     sh: Add support SH3 and SH7720
48099
48100     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48101     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48102     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48103
48104 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
48105 Author: Stefan Roese <sr@denx.de>
48106 Date:   Tue Jan 15 10:11:02 2008 +0100
48107
48108     ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
48109
48110     Signed-off-by: Stefan Roese <sr@denx.de>
48111
48112 commit 17bef68097ab3692500a36fb31115bff7910aa99
48113 Author: Niklaus Giger <niklausgiger@gmx.ch>
48114 Date:   Mon Jan 14 14:04:42 2008 +0100
48115
48116     ppc_4xx: Fix post spr.c for PPC405
48117
48118     post/cpu/ppc4xx/spr.c contained a few checks for registers only present
48119     for PPC440 and derivates processor.
48120
48121     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
48122
48123 commit 06c428bcd4413014b43236e77765022071424fa6
48124 Author: Dave Liu <r63238@freescale.com>
48125 Date:   Mon Jan 14 11:12:01 2008 +0800
48126
48127     QE: fix compile warning
48128
48129     qe.c: In function 'qe_upload_firmware':
48130     qe.c:390: warning: pointer targets in passing argument 2
48131     uec.c: In function 'uec_initialize':
48132     uec.c:1236: warning: 'uec_info' may be used uninitialized
48133
48134     Signed-off-by: Dave Liu <daveliu@freescale.com>
48135
48136 commit a0dd99d51efa55fe023e19c97ead92683725eb11
48137 Author: Stefan Roese <sr@denx.de>
48138 Date:   Mon Jan 14 10:05:05 2008 +0100
48139
48140     ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
48141
48142     Now that bit 29 is the USB PHY reset bit, update the Kilauea port
48143     to remove the USB PHY reset after powerup. The CPLD will keep the
48144     USB PHY in reset (active low) until the bit is set to 1 in
48145     board_early_init_f().
48146
48147     Signed-off-by: Stefan Roese <sr@denx.de>
48148
48149 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
48150 Author: Wolfgang Denk <wd@denx.de>
48151 Date:   Sun Jan 13 23:26:45 2008 +0100
48152
48153     ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
48154
48155     Signed-off-by: Wolfgang Denk <wd@denx.de>
48156
48157 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
48158 Author: Wolfgang Denk <wd@denx.de>
48159 Date:   Sun Jan 13 23:37:50 2008 +0100
48160
48161     ADS5121: Fix typo in ads5121.c, adjust default environment
48162
48163     Signed-off-by: Wolfgang Denk <wd@denx.de>
48164
48165 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
48166 Author: John Rigby <jrigby@freescale.com>
48167 Date:   Fri Aug 24 18:18:43 2007 -0600
48168
48169     ADS5121: MAX slew rate for PATA pins
48170
48171     Signed-off-by: John Rigby <jrigby@freescale.com>
48172
48173 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
48174 Author: Wolfgang Denk <wd@denx.de>
48175 Date:   Sun Jan 13 21:05:52 2008 +0100
48176
48177     Fix Makefile dependency problem with parallel builds.
48178
48179     Signed-off-by: Wolfgang Denk <wd@denx.de>
48180
48181 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
48182 Author: Wolfgang Denk <wd@denx.de>
48183 Date:   Sun Jan 13 19:51:39 2008 +0100
48184
48185     MPC8544DS: fix board Makefile for silent build (with -s)
48186
48187     Signed-off-by: Wolfgang Denk <wd@denx.de>
48188
48189 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
48190 Author: Wolfgang Denk <wd@denx.de>
48191 Date:   Sun Jan 13 16:44:08 2008 +0100
48192
48193     PMC440 board: fix board Makefile for out-of-tree building
48194
48195     Signed-off-by: Wolfgang Denk <wd@denx.de>
48196
48197 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
48198 Author: Wolfgang Denk <wd@denx.de>
48199 Date:   Sun Jan 13 16:07:44 2008 +0100
48200
48201     Makalu: fix compile warning
48202
48203     Signed-off-by: Wolfgang Denk <wd@denx.de>
48204
48205 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
48206 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48207 Date:   Sun Jan 13 12:36:12 2008 +0100
48208
48209     cmd_nand : fix compiler warning.
48210
48211     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48212
48213 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
48214 Author: Michael Schwingen <rincewind@discworld.dascon.de>
48215 Date:   Sat Jan 12 20:29:47 2008 +0100
48216
48217     CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
48218
48219     Signed-off-by: Michael Schwingen <michael@schwingen.org>
48220     Acked-by: Stefan Roese <sr@denx.de>
48221
48222 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
48223 Author: Wolfgang Denk <wd@denx.de>
48224 Date:   Sun Jan 13 02:19:44 2008 +0100
48225
48226     MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
48227
48228     Signed-off-by: Wolfgang Denk <wd@denx.de>
48229
48230 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
48231 Author: Wolfgang Denk <wd@denx.de>
48232 Date:   Sun Jan 13 02:19:13 2008 +0100
48233
48234     MPC8xx FEC driver: fix compiler warning.
48235
48236     Signed-off-by: Wolfgang Denk <wd@denx.de>
48237
48238 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
48239 Author: Wolfgang Denk <wd@denx.de>
48240 Date:   Sun Jan 13 00:59:21 2008 +0100
48241
48242     Fix Makefile dependencies issues; allow silent build
48243
48244     - get rid of "version" target whichdidn't really work
48245     - make autoconf.mk depend on version_autogenerated.h to make sure
48246       to rebuild files as needed
48247     - add XECHO macro to allow for silent build using "make -s"
48248
48249     Signed-off-by: Wolfgang Denk <wd@denx.de>
48250
48251 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
48252 Author: Wolfgang Denk <wd@denx.de>
48253 Date:   Sun Jan 13 00:55:47 2008 +0100
48254
48255     ADS5121e: fix compile warning
48256
48257     Signed-off-by: Wolfgang Denk <wd@denx.de>
48258
48259 commit f2b6f4610627fe3d607620e25082916a01538875
48260 Author: Wolfgang Denk <wd@denx.de>
48261 Date:   Sun Jan 13 00:55:18 2008 +0100
48262
48263     MUNICes: fix board Makefile for remote build directory
48264
48265     Signed-off-by: Wolfgang Denk <wd@denx.de>
48266
48267 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
48268 Author: Oliver Weber <almoeli@gmx.de>
48269 Date:   Wed Jan 9 17:04:38 2008 +0100
48270
48271     MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
48272
48273     Signed-off-by: Oliver Weber <almoeli@gmx.de>
48274
48275 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
48276 Author: Andreas Engel <andreas.engel@ericsson.com>
48277 Date:   Wed Jan 9 17:10:56 2008 +0100
48278
48279     Make bootretry work when command line editing is enabled
48280
48281     Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
48282     This patch fixes the problem.
48283
48284     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
48285
48286 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
48287 Author: Larry Johnson <lrj@acm.org>
48288 Date:   Fri Jan 11 23:26:18 2008 -0500
48289
48290     Refactor code for "i2c sdram" command
48291
48292     Signed-off-by: Larry Johnson <lrj@acm.org>
48293
48294 commit 0df6b8446c4721b91ce311548114891130371083
48295 Author: Larry Johnson <lrj@acm.org>
48296 Date:   Thu Jan 10 22:23:39 2008 -0500
48297
48298     Fix "i2c sdram" command for DDR2 DIMMs
48299
48300     Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
48301     "i2c sdram" command.  This patch provides correct alternative
48302     interpretations when DDR2 memory is detected.
48303
48304     Signed-off-by: Larry Johnson <lrj@acm.org>
48305
48306 commit 64134f011254123618798ff77c42ba196b2ec485
48307 Author: Wolfgang Denk <wd@denx.de>
48308 Date:   Sat Jan 12 20:31:39 2008 +0100
48309
48310     Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
48311
48312     With recent toolchain versions, some boards would not build because
48313     or errors like this one (here for ocotea board when building with
48314     ELDK 4.2 beta):
48315     ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
48316
48317     For many boards, the .bss section is big enough that it wraps around
48318     at the end of the address space (0xFFFFFFFF), so the problem will not
48319     be visible unless you use a 64 bit tool chain for development. On
48320     some boards however, changes to the code size (due to different
48321     optimizations) we bail out with section overlaps like above.
48322
48323     The fix is to add the NOLOAD attribute to the .bss and .sbss
48324     sections, telling the linker that .bss does not consume any space in
48325     the image.
48326
48327     Signed-off-by: Wolfgang Denk <wd@denx.de>
48328
48329 commit 3afac79ec27b91df185f090b31dad9620779f440
48330 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48331 Date:   Fri Jan 11 20:42:58 2008 -0600
48332
48333     USB: Add Philips 1561 PCI-OHCI ids
48334     (needed for M5475EVB)
48335
48336     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48337
48338 commit 5e8def6731cd7bec74bff42a16b139de04010353
48339 Author: Wolfgang Denk <wd@denx.de>
48340 Date:   Sat Jan 12 15:51:34 2008 +0100
48341
48342     Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
48343     boards.
48344
48345     Signed-off-by: Heiko Schocher <hs@denx.de>
48346     Signed-off-by: Wolfgang Denk <wd@denx.de>
48347
48348 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
48349 Author: Grzegorz Bernacki <gjb@semihalf.com>
48350 Date:   Fri Jan 11 12:03:43 2008 +0100
48351
48352     MPC512X: Cleanup bus clock names.
48353
48354     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48355
48356 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
48357 Author: Grzegorz Bernacki <gjb@semihalf.com>
48358 Date:   Tue Jan 8 17:16:59 2008 +0100
48359
48360     MPC512X: Fixed typo in macro name.
48361
48362     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48363
48364 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
48365 Author: Grzegorz Bernacki <gjb@semihalf.com>
48366 Date:   Tue Jan 8 17:16:15 2008 +0100
48367
48368     ads5121: Added support for FDT.
48369
48370     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48371
48372 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
48373 Author: Wolfgang Denk <wd@denx.de>
48374 Date:   Sat Jan 12 01:05:50 2008 +0100
48375
48376     Coding Style cleanup; update CHANGELOG.
48377
48378     Signed-off-by: Wolfgang Denk <wd@denx.de>
48379
48380 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
48381 Author: Heiko Schocher <hs@denx.de>
48382 Date:   Fri Jan 11 15:15:17 2008 +0100
48383
48384     Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
48385
48386     Signed-off-by: Timur Tabi <timur@freescale.com>
48387     Signed-off-by: Heiko Schocher <hs@denx.de>
48388
48389 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
48390 Author: Heiko Schocher <hs@denx.de>
48391 Date:   Fri Jan 11 15:15:16 2008 +0100
48392
48393     MUNICes: Set the right CFG_DEFAULT_MBAR value.
48394
48395     Signed-off-by: Heiko Schocher <hs@denx.de>
48396
48397 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
48398 Author: Heiko Schocher <hs@denx.de>
48399 Date:   Fri Jan 11 15:15:15 2008 +0100
48400
48401     added the config File for the MUNICes board.
48402
48403     Signed-off-by: Heiko Schocher <hs@denx.de>
48404
48405 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
48406 Author: Heiko Schocher <hs@denx.de>
48407 Date:   Fri Jan 11 15:15:14 2008 +0100
48408
48409     added basic support for the MUNICes board.
48410
48411     Signed-off-by: Heiko Schocher <hs@denx.de>
48412
48413 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
48414 Author: Wolfgang Denk <wd@denx.de>
48415 Date:   Sat Jan 12 00:39:37 2008 +0100
48416
48417     Update CHANGELOG and MAINTAINERS files.
48418
48419     Signed-off-by: Wolfgang Denk <wd@denx.de>
48420
48421 commit 5ba7390c3cb579172be66888a371707b47b5be4e
48422 Author: Anatolij Gustschin <agust@denx.de>
48423 Date:   Fri Jan 11 02:15:02 2008 +0100
48424
48425     Fix compilation problem in common/cmd_bmp.c
48426
48427     common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
48428     isn't defined. This patch fix this.
48429
48430     Signed-off-by: Anatolij Gustschin <agust@denx.de>
48431
48432 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
48433 Author: Heiko Schocher <hs@denx.de>
48434 Date:   Fri Jan 11 01:12:09 2008 +0100
48435
48436     Fix defaultconfig for the mgcoge board.
48437
48438     Signed-off-by: Heiko Schocher <hs@denx.de>
48439
48440 commit ac9db066b26935f31bff15c98168b19faeb603f3
48441 Author: Heiko Schocher <hs@denx.de>
48442 Date:   Fri Jan 11 01:12:08 2008 +0100
48443
48444     Added support for the mgcoge board from keymile.
48445
48446     Signed-off-by: Heiko Schocher <hs@denx.de>
48447
48448 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
48449 Author: Heiko Schocher <hs@denx.de>
48450 Date:   Fri Jan 11 01:12:07 2008 +0100
48451
48452     Enable SMC microcode relocation patch for SMC1.
48453
48454     Signed-off-by: Heiko Schocher <hs@denx.de>
48455
48456 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
48457 Author: Heiko Schocher <hs@denx.de>
48458 Date:   Fri Jan 11 01:12:06 2008 +0100
48459
48460     Added support for the mgsuvd board from keymile.
48461
48462     Signed-off-by: Heiko Schocher <hs@denx.de>
48463
48464 commit bf05293973b348f6946c9df92cd3c65ece42d0be
48465 Author: James Yang <james.yang@freescale.com>
48466 Date:   Thu Jan 10 16:02:07 2008 -0600
48467
48468     Fix 64-bit vsprintf.
48469
48470     There were some size and unsigned problems.
48471     Also add support for "ll" size modifier in format string like glibc
48472
48473     Signed-off-by: James Yang <James.Yang@freescale.com>
48474     Acked-by: Jon Loeliger <jdl@freescale.com>
48475
48476 commit 92fa37eac530860643afa26ae347af3d23d67309
48477 Author: Larry Johnson <lrj@acm.org>
48478 Date:   Wed Jan 9 12:42:35 2008 -0500
48479
48480     Remove superfluous preprocessor conditionals from LM73 driver
48481
48482     (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
48483
48484     (2) Use conditional Makefile.o.
48485
48486     Signed-off-by: Larry Johnson <lrj@acm.org>
48487
48488 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
48489 Author: Guennadi Liakhovetski <lg@denx.de>
48490 Date:   Thu Jan 10 17:59:07 2008 +0100
48491
48492     Add support for the TK885D baseboard from TELE-DATA
48493
48494     The TK885D board uses a TQM885D module from TQ, this port adds an
48495     own configuration file and adds a last_stage_init() method to
48496     configure the two PHYs, depending on the phy_auto_nego environment
48497     variable.
48498
48499     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48500
48501 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
48502 Author: Kumar Gala <galak@kernel.crashing.org>
48503 Date:   Thu Jan 10 02:22:05 2008 -0600
48504
48505     Fix compiler warning
48506
48507     main.c: In function 'readline_into_buffer':
48508     main.c:927: warning: unused variable 'p_buf'
48509
48510     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48511
48512 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
48513 Author: Anatolij Gustschin <agust@denx.de>
48514 Date:   Fri Jan 11 14:30:01 2008 +0100
48515
48516     Add Fujitsu CoralP/Lime video driver
48517
48518     Signed-off-by: Anatolij Gustschin <agust@denx.de>
48519     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
48520
48521 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
48522 Author: Anatolij Gustschin <agust@denx.de>
48523 Date:   Fri Jan 11 02:39:47 2008 +0100
48524
48525     Fix video console newline and carriage return handling
48526
48527     Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
48528     are not displayed correctly. This is an attempt to fix
48529     this issue. Also add carriage return handling.
48530
48531     Signed-off-by: Anatolij Gustschin <agust@denx.de>
48532     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
48533
48534 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
48535 Author: Stefan Roese <sr@denx.de>
48536 Date:   Fri Jan 11 15:53:58 2008 +0100
48537
48538     ppc4xx: Fix sdram init on Sequoia boards
48539
48540     Clear possible errors in MCSR resulting from data-eye-search.
48541     If not done, then we could get an interrupt later on when
48542     exceptions are enabled.
48543
48544     Signed-off-by: Stefan Roese <sr@denx.de>
48545
48546 commit d610a60730b7464f6f659db49d264d89a7c71061
48547 Author: Anatolij Gustschin <agust@denx.de>
48548 Date:   Fri Jan 11 15:31:09 2008 +0100
48549
48550     ppc4xx: Rework Lime support for lwmon5
48551
48552     Rework Lime support for lwmon5 using new video driver
48553
48554     Signed-off-by: Anatolij Gustschin <agust@denx.de>
48555
48556 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
48557 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48558 Date:   Fri Jan 11 14:55:16 2008 +0100
48559
48560     ppc4xx: Update PMC440 config file
48561
48562     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48563
48564 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
48565 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48566 Date:   Fri Jan 11 14:55:08 2008 +0100
48567
48568     ppx4xx: Fix sdram init on PMC440 boards
48569
48570     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48571
48572 commit 061aad4d320dddce26247699dcf2875ee2ea1366
48573 Author: Dave Liu <r63238@freescale.com>
48574 Date:   Thu Jan 10 23:09:33 2008 +0800
48575
48576     mpc83xx: Fix the bug of 266MHz data rate DDR
48577
48578     The DDR doesn't work on the 266MHz data rate,
48579     the patch fix the bug.
48580
48581     Signed-off-by: Dave Liu <daveliu@freescale.com>
48582     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48583
48584 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
48585 Author: Dave Liu <r63238@freescale.com>
48586 Date:   Thu Jan 10 23:08:26 2008 +0800
48587
48588     mpc83xx: Make the code more readable
48589
48590     Format the code, make it more readable
48591
48592     Signed-off-by: Dave Liu <daveliu@freescale.com>
48593     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48594
48595 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
48596 Author: Dave Liu <r63238@freescale.com>
48597 Date:   Thu Jan 10 23:07:23 2008 +0800
48598
48599     mpc83xx: Reduce the latency of DDR
48600
48601     Reduce the AL from 2 to 1 clock to improve the performance.
48602
48603     Signed-off-by: Dave Liu <daveliu@freescale.com>
48604     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48605
48606 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
48607 Author: Dave Liu <r63238@freescale.com>
48608 Date:   Thu Jan 10 23:06:05 2008 +0800
48609
48610     mpc83xx: Fix the wrong definition of MPC8315E
48611
48612     According to the latest user manual of MPC8315E,
48613     1) The SVCOD of HRCWL is different than 837x
48614     2) The SCCR has changes
48615
48616     Signed-off-by: Dave Liu <daveliu@freescale.com>
48617     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48618
48619 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
48620 Author: Dave Liu <r63238@freescale.com>
48621 Date:   Thu Jan 10 23:05:00 2008 +0800
48622
48623     mpc83xx: Fix the typo in mpc83xx.h
48624
48625     The SPCR about TSEC priority is wrong.
48626
48627     Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
48628     Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
48629     Signed-off-by: Dave Liu <daveliu@freescale.com>
48630     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48631
48632 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
48633 Author: Dave Liu <r63238@freescale.com>
48634 Date:   Thu Jan 10 23:04:13 2008 +0800
48635
48636     mpc83xx: Fix the typo in global data struct
48637
48638     Fix the typo in global_data.h
48639
48640     Signed-off-by: Dave Liu <daveliu@freescale.com>
48641     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48642
48643 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
48644 Author: Dave Liu <r63238@freescale.com>
48645 Date:   Thu Jan 10 23:03:03 2008 +0800
48646
48647     mpc83xx: Remove cache config from config.h
48648
48649     clean up the cache config from configs.h of board
48650
48651     Signed-off-by: Dave Liu <daveliu@freescale.com>
48652     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48653
48654 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
48655 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
48656 Date:   Wed Jan 9 20:57:47 2008 +0300
48657
48658     mpc83xx: add support for the MPC8360E-RDK
48659
48660     This is MPC8360E based board with:
48661     - 256MB fixed SDRAM;
48662     - 8MB Intel Strata NOR flash;
48663     - StMICRO 64MiB NAND flash;
48664     - two 10/100/1000 ethernet ports connected via Broadcom
48665       BCM5481 PHYs;
48666     - two 10/100 ethernet ports connected via National
48667       DP83848 PHYs;
48668     - one PCI and one miniPCI slots;
48669     - four serial ports (two NS16550-compatible, two UCCs);
48670     - four USB ports working through MPC8360E "FHCI" USB controller;
48671     - Fujitsu MB86277 graphics controller;
48672     - Analog to Digital Converter/Touchscreen controller, AD7843
48673       connected to SPI.
48674
48675     Features not supported in this patch are:
48676     - StMICRO 64MiB NAND flash (patch sent);
48677     - MINT framebuffer initialization (patch is pending);
48678     - Fetching production information from the EEPROM via I2C;
48679     - FHCI USB;
48680     - Two slow UCCs used as RS-485 UARTs.
48681
48682     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
48683     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48684
48685 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
48686 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
48687 Date:   Wed Jan 9 20:57:40 2008 +0300
48688
48689     mpc83xx: add "fsl, qe" compatible fixups
48690
48691     New device trees will use "fsl,qe" compatible properties.
48692
48693     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
48694     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48695
48696 commit 977b57583a7c34010e566a09a679ec3c1836f996
48697 Author: Kim Phillips <kim.phillips@freescale.com>
48698 Date:   Wed Jan 9 15:24:06 2008 -0600
48699
48700     mpc83xx: add missing CONFIG_HAS_ETH0 defines
48701
48702     the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
48703     is defined; add the define to the missing board configs.
48704
48705     Thanks to Emilian Medve for finding this.
48706
48707     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48708
48709 commit b830b7f1635984ba607219fcbd78597c28eeb529
48710 Author: Becky Bruce <bgill@freescale.com>
48711 Date:   Thu Jan 10 14:00:28 2008 -0600
48712
48713     86xx: Support 2GB DIMMs
48714
48715     Configure the number of bits used to address the banks inside the SDRAM
48716     device.  The default register value of 0 means 2 bits to address 4 banks.
48717     Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
48718
48719     Signed-off-by: Becky Bruce <bgill@freescale.com>
48720
48721 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
48722 Author: Niklaus Giger <niklausgiger@gmx.ch>
48723 Date:   Thu Jan 10 18:50:33 2008 +0100
48724
48725     ppc4xx: Make Sequoia boot vxWorks
48726
48727     vxWorks expects in
48728     TLB 0 a entry for the Machine Check interrupt
48729     TLB 1 a entry for the RAM
48730     TLB 2 a entry for the EBC
48731     TLB 3 a entry for the boot flash
48732
48733     After changing the baudrate to 9600 I had no problems to boot the
48734     vxWorks image as distributed by WindRiver (Revision 2.0/1 from
48735     June 18, 2007)
48736
48737     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
48738
48739 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
48740 Author: Larry Johnson <lrj@arlinx.com>
48741 Date:   Wed Jan 9 23:10:27 2008 -0500
48742
48743     ppc4xx: Fix dflush() to restore DVLIM register
48744
48745     Signed-off-by: Larry Johnson <lrj@acm.org>
48746
48747 commit 252f60b068d1f94190b5bcfda169db582387e15e
48748 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48749 Date:   Thu Jan 10 03:52:44 2008 -0500
48750
48751     Nios2: remove common/cmd_bdinfo.c unused variable.
48752
48753     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48754     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
48755
48756 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
48757 Author: Ben Warren <biggerbadderben@gmail.com>
48758 Date:   Wed Jan 9 18:15:53 2008 -0500
48759
48760     Fix Ethernet init() return codes
48761
48762     Change return values of init() functions in all Ethernet drivers to conform
48763     to the following:
48764
48765         >=0: Success
48766         <0:  Failure
48767
48768     All drivers going forward should return 0 on success.  Current drivers that
48769     return 1 on success were left as-is to minimize changes.
48770
48771     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48772     Acked-by: Stefan Roese <sr@denx.de>
48773     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48774     Acked-by: Kim Phillips <kim.phillips@freescale.com>
48775     Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
48776     Acked-By: Timur Tabi <timur@freescale.com>
48777
48778 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
48779 Author: Wolfgang Denk <wd@denx.de>
48780 Date:   Thu Jan 10 00:55:14 2008 +0100
48781
48782     Coding Style cleanup; update CHANGELOG
48783
48784     Signed-off-by: Wolfgang Denk <wd@denx.de>
48785
48786 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
48787 Author: Kim Phillips <kim.phillips@freescale.com>
48788 Date:   Wed Jan 9 16:56:54 2008 -0600
48789
48790     Add QE brg freq and correct qe bus freq fdt update code
48791
48792     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48793     Signed-off-by: Andy Fleming <afleming@freescale.com>
48794
48795 commit 890dfef06c2d169a3356359596890754dfb8ee1c
48796 Author: Andy Fleming <afleming@freescale.com>
48797 Date:   Wed Jan 9 16:34:51 2008 -0600
48798
48799     Remove cache config from ATUM8548 and sbc8548 configs
48800
48801     These boards weren't updated by Kumar's config patch because they
48802     weren't in the tree, yet.
48803
48804     Signed-off-by: Andy Fleming <afleming@freescale.com>
48805
48806 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
48807 Author: Timur Tabi <timur@freescale.com>
48808 Date:   Mon Jan 7 13:31:19 2008 -0600
48809
48810     85xx: add ability to upload QE firmware
48811
48812     Define the layout of a binary blob that contains a QE firmware and instructions
48813     on how to upload it.  Add function qe_upload_firmware() to parse the blob and
48814     perform the actual upload.  Add command-line command "qe fw" to take a firmware
48815     blob in memory and upload it.  Update ft_cpu_setup() on 85xx to create the
48816     'firmware' device tree node if U-Boot has uploaded a firmware.  Fully define
48817     'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
48818
48819     Signed-off-by: Timur Tabi <timur@freescale.com>
48820
48821 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
48822 Author: Kumar Gala <galak@kernel.crashing.org>
48823 Date:   Tue Jan 8 01:22:21 2008 -0600
48824
48825     85xx: Remove cache config from configs.h
48826
48827     Either use the standard defines in asm/cache.h or grab the information
48828     at runtime from the L1CFG SPR.
48829
48830     Also, minor cleanup in cache.h to make the code a bit more readable.
48831
48832     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48833
48834 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
48835 Author: robert lazarski <robertlazarski@gmail.com>
48836 Date:   Fri Dec 21 10:39:27 2007 -0500
48837
48838     mpc85xx: Add support for ATUM8548 (updated)
48839
48840     Add support for Instituto Atlantico's ATUM8548 board
48841
48842     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
48843     Signed-off-by: Andy Fleming <afleming@freescale.com>
48844
48845 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
48846 Author: robert lazarski <robertlazarski@gmail.com>
48847 Date:   Fri Dec 21 10:36:37 2007 -0500
48848
48849     mpc85xx: Add support for ATUM8548 (updated)
48850
48851     Add support for Instituto Atlantico's ATUM8548 board
48852
48853     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
48854
48855 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
48856 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
48857 Date:   Thu Dec 13 06:45:14 2007 -0600
48858
48859     mpc85xx: Add support for SBC8548 (updated)
48860
48861     Add support for Wind River's SBC8548 reference board.
48862
48863     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
48864
48865 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
48866 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
48867 Date:   Thu Dec 13 06:45:08 2007 -0600
48868
48869     mpc85xx: Add support for SBC8548 (updated)
48870
48871     Add support for Wind River's SBC8548 reference board.
48872
48873     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
48874     Signed-off by: Andy Fleming <afleming@freescale.com>
48875
48876 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
48877 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
48878 Date:   Mon Oct 22 19:58:19 2007 +0400
48879
48880     MPC8568E-MDS: set up QE pario for UART1
48881
48882     To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
48883     be set up appropriately.
48884
48885     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
48886
48887 commit ad162249cb371e9e38971676f09be791e5f3cf4a
48888 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
48889 Date:   Mon Oct 22 18:12:46 2007 +0400
48890
48891     MPC8568E-MDS: reset UCCs to use them reliably
48892
48893     In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
48894     UCCs.
48895
48896     p.s Similar code exists in the Linux kernel board file (for capability
48897     reasons with older U-Boots), but should be removed some day.
48898
48899     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
48900
48901 commit 2146cf56821c3364786ca94a7306008c5824b238
48902 Author: Kumar Gala <galak@kernel.crashing.org>
48903 Date:   Wed Dec 19 01:18:15 2007 -0600
48904
48905     Reworked FSL Book-E TLB macros to be more readable
48906
48907     The old macros made it difficult to know what WIMGE and perm bits
48908     were set for a TLB entry.  Actually use the bit masks for these items
48909     since they are only a single bit.
48910
48911     Also moved the macros into mmu.h out of e500.h since they aren't specific
48912     to e500.
48913
48914     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48915
48916 commit 1d47273d46925929f8f2c1913cd96d7257aade88
48917 Author: Kumar Gala <galak@kernel.crashing.org>
48918 Date:   Tue Dec 18 23:21:51 2007 -0600
48919
48920     Use FSL Book-E MMU macros from Linux Kernel
48921
48922     Grab the FSL Book-E MAS register macros from Linux.  Also added
48923     defines for page sizes up to 4TB and removed SHAREN since it doesnt
48924     really exist.
48925
48926     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48927
48928 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
48929 Author: Andy Fleming <afleming@freescale.com>
48930 Date:   Wed Jan 9 13:51:32 2008 -0600
48931
48932     Fix my own merge stupidity
48933
48934     Way back in August I merged Heiko's patch:
48935     566a494f592: [PCS440EP] upgrade the PCS440EP board
48936
48937     with Jon's CONFIG_COMMANDS patches.
48938
48939     This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
48940
48941     However, in the process, I left out some of Heiko's good changes.
48942
48943     Now Heiko's and Jon's patches are properly merged in fat_register_device()
48944
48945     Signed-off-by: Andy Fleming <afleming@freescale.com>
48946
48947 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
48948 Author: James Yang <James.Yang@freescale.com>
48949 Date:   Wed Jan 9 11:17:49 2008 -0600
48950
48951     Expose parse_line() globally.
48952
48953     Add new function readline_into_buffer() that allows the
48954     output of readline to be put into a pointer to char buffer.
48955
48956     This refactoring allows other functions besides the
48957     main command loop to also use the same input mechanism.
48958
48959     Signed-off-by: James Yang <James.Yang@freescale.com>
48960     Acked-by: Jon Loeliger <jdl@freescale.com>
48961
48962 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
48963 Author: Guennadi Liakhovetski <lg@denx.de>
48964 Date:   Wed Jan 9 01:15:25 2008 +0100
48965
48966     trivial: fix consequences of a bad merge
48967
48968     Fix what looks like a merge artifact.
48969
48970     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48971
48972 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
48973 Author: Zhang Wei <wei.zhang@freescale.com>
48974 Date:   Thu Jan 3 10:51:15 2008 +0800
48975
48976     Add Ctrl combo key support to usb keyboard driver.
48977
48978     Ctrl combo key support is added, which is very useful to input Ctrl-C
48979     for interrupt current job.
48980     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
48981     key input when tstc() is called.
48982
48983     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
48984
48985 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
48986 Author: Marcel Ziswiler <marcel@ziswiler.com>
48987 Date:   Sun Dec 30 03:30:56 2007 +0100
48988
48989     fix various comments
48990
48991     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
48992
48993 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
48994 Author: Marcel Ziswiler <marcel@ziswiler.com>
48995 Date:   Sun Dec 30 03:30:46 2007 +0100
48996
48997     fix comments with new drivers organization
48998
48999     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
49000
49001 commit a9b410dc7d2a4721c408b13abfc037988150f145
49002 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49003 Date:   Fri Dec 28 12:50:59 2007 +0900
49004
49005     Remove the obsolete terse version of do_mii()
49006
49007     We now have more useful version of do_mii() and everybody use it.
49008     Gerald Van Baren says:
49009
49010     > When I originally wrote the mii command 6(!) years ago, I wrote a
49011     > verbose version that printed human readable decomposition of the flags,
49012     > etc., and a terse one that didn't print as much stuff and thus had a
49013     > smaller memory footprint.
49014     >
49015     > It sounds like the terse version has withered and died, apparently
49016     > people are only using the verbose version (which is very understandable,
49017     > I do myself).
49018
49019     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49020     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49021
49022 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
49023 Author: Mike Frysinger <vapier@gentoo.org>
49024 Date:   Thu Dec 27 13:42:56 2007 -0500
49025
49026     Do not reference sha1.c when building mkimage.
49027
49028     remove sha1.o from mkimage linking since it isn't actually used.
49029
49030     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
49031
49032 commit b9173af73e524d37c812f210173cf83385c5171a
49033 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49034 Date:   Thu Dec 27 15:39:54 2007 +0900
49035
49036     common/cmd_mii.c: Add sanity argc check
49037
49038     If type mii command without arguments, we suffer from uninitialized argv[]
49039     entries; for example we MIPS get stuck by TLB error.
49040
49041     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49042
49043 commit 500856eb1707ed17d9204baa61dd59948d3b2899
49044 Author: Rafal Jaworowski <raj@semihalf.com>
49045 Date:   Wed Jan 9 19:39:36 2008 +0100
49046
49047     API for external applications.
49048
49049     This is an API for external (standalone) applications running on top of
49050     U-Boot, and is meant to be more extensible and robust than the existing
49051     jumptable mechanism. It is similar to UNIX syscall approach. See api/README
49052     for more details.
49053
49054     Included is the demo application using this new framework (api_examples).
49055
49056     Please note this is still an experimental feature, and is turned off by
49057     default.
49058
49059     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
49060
49061 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
49062 Author: Jon Loeliger <jdl@freescale.com>
49063 Date:   Wed Jan 9 12:14:55 2008 -0600
49064
49065     86xx: Remove cache config from configs.h
49066
49067     Just use the standard defines in asm/cache.h.
49068
49069     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49070
49071 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
49072 Author: Rafal Jaworowski <raj@semihalf.com>
49073 Date:   Wed Jan 9 18:05:27 2008 +0100
49074
49075     Globalize envmatch()
49076
49077     The newly introduced API (routines related to env vars) will need to call
49078     it.
49079
49080     Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
49081
49082 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
49083 Author: Jon Loeliger <jdl@freescale.com>
49084 Date:   Fri Jan 4 12:07:27 2008 -0600
49085
49086     Convert MPC8610HPCD to use libfdt.
49087
49088     Assumes the presence of the aliases node in the DTS to
49089     locate the pci and serial nodes for fixups.
49090
49091     Use consistent fdtaddr and fdtfile in environment variables.
49092
49093     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49094
49095 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
49096 Author: Jon Loeliger <jdl@freescale.com>
49097 Date:   Fri Jan 4 11:58:23 2008 -0600
49098
49099     8610: Fix lingering compile warnings.
49100
49101     Turn off DEBUG.
49102
49103     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49104
49105 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
49106 Author: Wolfgang Denk <wd@denx.de>
49107 Date:   Wed Jan 9 15:14:46 2008 +0100
49108
49109     Coding Style cleanup, update CHANGELOG
49110
49111     Signed-off-by: Wolfgang Denk <wd@denx.de>
49112
49113 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
49114 Author: Mike Frysinger <vapier@gentoo.org>
49115 Date:   Tue Dec 18 04:29:55 2007 -0500
49116
49117     fix easylogo on big endian dev systems
49118
49119     didnt realize how out of shape easylogo actually was until i tried using it.
49120     this patch does byte swapping as need be on the input tga header since the tga
49121     is in little endian but the host could just as well be big endian.  i didnt
49122     bother using bswap macros or such stuff from system headers as nothing in
49123     POSIX dictates byte swapping functionality.
49124
49125     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
49126
49127 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
49128 Author: Mike Frysinger <vapier@gentoo.org>
49129 Date:   Tue Dec 18 03:23:25 2007 -0500
49130
49131     cleanup easylogo
49132
49133     - make the Makefile not suck
49134     - include proper headers for prototypes
49135     - fix obvious broken handling of strchr() when handling '.' in filenames
49136
49137     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
49138
49139 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
49140 Author: raptorbrino@aim.com <raptorbrino@aim.com>
49141 Date:   Thu Dec 13 21:23:28 2007 -0500
49142
49143     Fix build problems under Cygwin
49144
49145     This patch allows u-boot to build without error in a cygwin
49146     environment.  Cygwin does not define __u64 in it's
49147     include/asm/types.h file.  The -idirafter flag in the u-boot
49148     build causes the inclusion of the cygwin types.h file as opposed
49149     to u-bot/include/asm/types.h file which does define __u64.
49150     Subsequently, sha1.c compile fails due to unknown symbol.
49151
49152     Signed-off-by: Brian Miller <raptorbrino@netscape.net>
49153
49154 commit 43ef1c381f9195504a2488f5cb909227eb97d475
49155 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
49156 Date:   Fri Nov 30 17:29:59 2007 +0100
49157
49158     cmd_bmp: Add support for displaying gzip compressed bmps
49159
49160     The existing code can show information about a gzip compressed BMP
49161     image, but can't actually display it.
49162
49163     Therefore, move the decompression code out of bmp_info() and use it in
49164     bmp_display() as well in order to display a compressed BMP image.
49165
49166     Also, clean things up a bit and fix a memory leak while we're at it.
49167
49168     [hskinnemoen@atmel.com: a bit of refactoring]
49169     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49170
49171 commit d197ffd8172c6fdef38733424640a9a47295d6e9
49172 Author: Guennadi Liakhovetski <lg@denx.de>
49173 Date:   Thu Nov 29 21:15:56 2007 +0100
49174
49175     Fix and optimize MII operations on FEC (MPC8xx) controllers
49176
49177     This patch fixes several issues at least on a MPC885 based system with two
49178     FEC interfaces used in MII mode.
49179
49180     1. PHY discovery should first read PHY_PHYIDR2 register and only then
49181        PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
49182        otherwise the values read are wrong. Also notice, that PHY discovery
49183        cannot work on MPC88x / MPC87x in setups with both FECs active at all
49184        in its present form, because for both interfaces the registers from FEC
49185        1 are used to communicate over MII.
49186
49187     2. Remove code duplication for resetting the FEC by isolating it into a
49188        separate function.
49189
49190     3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
49191
49192     4. Optimize mii_init() to only reset the FEC 1 controller once.
49193
49194     5. Fix a typo in mii_init() using index i instead of j thus potentially
49195        leading to unpredictable results.
49196
49197     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49198
49199 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
49200 Author: Guennadi Liakhovetski <lg@denx.de>
49201 Date:   Tue Nov 20 13:14:20 2007 +0100
49202
49203     Fix endianness conversions in rtl8169 driver
49204
49205     It is unclear on what platforms this driver has been tested, since
49206     noone up to now defines CONFIG_RTL8169 in the board configuration
49207     header. Now it has been fixed for a big-endian mpc8241 based
49208     linkstation platform. This patch presents the necessary endianness
49209     conversion fixes.
49210
49211     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49212
49213 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
49214 Author: Zhang Wei <wei.zhang@freescale.com>
49215 Date:   Thu Jan 3 10:51:15 2008 +0800
49216
49217     Add Ctrl combo key support to usb keyboard driver.
49218
49219     Ctrl combo key support is added, which is very useful to input Ctrl-C
49220     for interrupt current job.
49221     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
49222     key input when tstc() is called.
49223
49224     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
49225     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
49226
49227 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
49228 Author: Wolfgang Denk <wd@denx.de>
49229 Date:   Wed Jan 9 13:43:38 2008 +0100
49230
49231     Coding Style clenaup; update CHANGELOG
49232
49233     Signed-off-by: Wolfgang Denk <wd@denx.de>
49234
49235 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
49236 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49237 Date:   Thu Dec 27 17:13:11 2007 +0100
49238
49239     Remove bit swapping in Xilinx Spartan bitfile loading
49240
49241     This patch removes the unnecessary bit swapping when
49242     booting .bit files with the 'fpga loadb' command.
49243
49244     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49245
49246 commit 437fc7327f0611f82937858f2d80e4cd61b40984
49247 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49248 Date:   Thu Dec 27 17:13:05 2007 +0100
49249
49250     Fix MSB check in Xilinx Spartan slave serial mode
49251
49252     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49253
49254 commit 3bff4ffa33729a42645e328a21e8d16488872958
49255 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49256 Date:   Thu Dec 27 17:12:56 2007 +0100
49257
49258     Add new Xilinx Spartan FPGA types
49259
49260     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49261
49262 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
49263 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49264 Date:   Thu Dec 27 17:12:43 2007 +0100
49265
49266     Add pre and post configuration callbacks for Spartan FPGAs
49267
49268     This patch adds a post configuration callback for Spartan2/3 FPGAs.
49269     pre and post configuration callback are now optional and
49270     not called when the function pointer is set to NULL.
49271
49272     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49273
49274 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
49275 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49276 Date:   Thu Dec 27 17:12:34 2007 +0100
49277
49278     Improve configuration of FPGA subsystem
49279
49280     This patch removes the FPGA subsystem configuration through
49281     the CONFIG_FPGA bitmask configuration option.
49282
49283     See README for the new options:
49284
49285         CONFIG_FPGA,
49286         CONFIG_FPGA_<vendor>,
49287         CONFIG_FPGA_<family>
49288
49289     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49290
49291 commit 95c6bc7d4a3588b452baca610f8c795a83630477
49292 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49293 Date:   Thu Dec 27 16:55:17 2007 +0100
49294
49295     Add Epson RX8025 RTC support
49296
49297     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49298
49299 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
49300 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49301 Date:   Thu Dec 27 16:57:23 2007 +0100
49302
49303     serial: Make default_serial_console() a weak function
49304
49305     With this patch it is possible to reimplement default_serial_console()
49306     in board specific code. This will be done in the upcomming PMC440
49307     U-Boot port. This also allows the lwmon board maintainer to
49308     remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
49309
49310     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49311
49312 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
49313 Author: Harald Welte <laforge@openmoko.org>
49314 Date:   Wed Dec 19 14:14:47 2007 +0100
49315
49316     add 'terminal program' functionality
49317
49318     This patch adds a 'cu' like serial terminal command to u-boot
49319     using which you can access other serial ports from the system console.
49320
49321     OpenMoko uses this in their Neo1973 phones to get access to the GSM
49322     Modem and GPS chip from the bootloader.
49323
49324     Signed-off-by: Harald Welte <laforge@openmoko.org>
49325
49326 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
49327 Author: Harald Welte <laforge@openmoko.org>
49328 Date:   Wed Dec 19 14:12:53 2007 +0100
49329
49330     Re-introduce the 'nand read.oob' and 'nand write.oob' commands
49331     that used to exist with the legacy NAND code
49332
49333     Signed-off-by: Harald Welte <laforge@openmoko.org>
49334
49335 commit f540c42d9564854b19ce9bbb70affe172529fe70
49336 Author: Harald Welte <laforge@openmoko.org>
49337 Date:   Wed Dec 19 14:09:58 2007 +0100
49338
49339     Fix building with CRAMFS but not JFFS2 support
49340
49341     Signed-off-by: Harald Welte <laforge@openmoko.org>
49342
49343 commit 23d0baf967fecdaf1804f045f6339337c5607eec
49344 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49345 Date:   Sat Dec 22 15:52:58 2007 +0100
49346
49347     Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
49348
49349     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
49350     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49351
49352 commit 23776ff292966a85d811126933830bed48211826
49353 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49354 Date:   Tue Dec 11 10:53:12 2007 +0100
49355
49356     ARM: support board-specific ethernet PHY init
49357
49358     Add until the new phylib will be arrived
49359
49360     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49361
49362 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
49363 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49364 Date:   Sat Dec 8 16:34:08 2007 +0100
49365
49366     IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
49367
49368     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49369
49370 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
49371 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49372 Date:   Sun Dec 9 11:01:10 2007 +0100
49373
49374     Add missing file in gitignore and comments
49375
49376     based on Linux source tree's .gitignore files
49377
49378     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49379
49380 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
49381 Author: Wolfgang Denk <wd@denx.de>
49382 Date:   Wed Jan 9 11:36:21 2008 +0100
49383
49384     Coding Style cleanup, update CHANGELOG
49385
49386     Signed-off-by: Wolfgang Denk <wd@denx.de>
49387
49388 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
49389 Author: Stefan Roese <sr@denx.de>
49390 Date:   Wed Jan 9 10:38:58 2008 +0100
49391
49392     POST: Execute SPR test after relocation
49393
49394     On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
49395     self modifying code and this doesn't work with stack in d-cache, since
49396     I can't move the code from d-cache to i-cache. We move the SPR test to
49397     be executed a little later, after relocation. Then stack is located in
49398     SDRAM and this self-modifying code is no problem anymore.
49399
49400     Signed-off-by: Stefan Roese <sr@denx.de>
49401
49402 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
49403 Author: Stefan Roese <sr@denx.de>
49404 Date:   Wed Jan 9 10:28:20 2008 +0100
49405
49406     ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
49407
49408     This patch configures the LWMON5 port to use d-cache as init-ram and
49409     the unused GPT0_COMP6 as POST WORD storage.
49410
49411     Signed-off-by: Stefan Roese <sr@denx.de>
49412
49413 commit 1754f50b710194f886b6f2831803d8960171a14d
49414 Author: Stefan Roese <sr@denx.de>
49415 Date:   Wed Jan 9 10:25:46 2008 +0100
49416
49417     ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
49418
49419     The privious 4xx POST implementation only supported storing the POST
49420     WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
49421     we need to store the POST WORD in some other non volatile location.
49422     This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
49423     a location.
49424
49425     Signed-off-by: Stefan Roese <sr@denx.de>
49426
49427 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
49428 Author: Stefan Roese <sr@denx.de>
49429 Date:   Wed Jan 9 10:23:16 2008 +0100
49430
49431     ppc4xx: Add 44x cache locking to better support init-ram in d-cache
49432
49433     This patch adds support for locking the init-ram/stack in d-cache,
49434     so that other regions may use d-cache as well
49435
49436     Note, that this current implementation locks exactly 4k of d-cache,
49437     so please make sure that you don't define a bigger init-ram area. Take
49438     a look at the lwmon5 440EPx implementation as a reference.
49439
49440     Signed-off-by: Stefan Roese <sr@denx.de>
49441
49442 commit 0ddb89601a8d29e808db450366752ffdc6267c53
49443 Author: Wolfgang Denk <wd@denx.de>
49444 Date:   Wed Jan 9 10:16:33 2008 +0100
49445
49446     Fix memset bug in ext2fs_read_file()
49447
49448     ext2fs_read_file() had the function arguments swapped.
49449
49450     Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
49451
49452     Signed-off-by: Wolfgang Denk <wd@denx.de>
49453
49454 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
49455 Author: Markus KlotzbĂ¼cher <mk@denx.de>
49456 Date:   Tue Jan 5 08:17:15 1988 +0100
49457
49458     Fix problems with usb storage devices on MPC5200 /TQM5200
49459
49460     The MPC5200 OHCI controller operates in big endian, so
49461     CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
49462
49463     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
49464
49465 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
49466 Author: Wolfgang Denk <wd@denx.de>
49467 Date:   Tue Jan 8 22:58:27 2008 +0100
49468
49469     Fix compile problem with new env code.
49470
49471     Signed-off-by: Wolfgang Denk <wd@denx.de>
49472
49473 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
49474 Author: Markus KlotzbĂ¼cher <mk@denx.de>
49475 Date:   Tue Nov 27 10:23:20 2007 +0100
49476
49477     tools: fix fw_printenv tool to compile again
49478
49479     This patch updates the fw_printenv/fw_setenv userspace tool to include
49480     the correct MTD header in order to compile against current kernel
49481     headers. Backward compatibility is preserved by introducing an option
49482     MTD_VERSION which can be set to "old" for compilation using the old MTD
49483     headers. Along with this a number of warnings are fixed.
49484
49485     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
49486
49487 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
49488 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49489 Date:   Tue Jan 8 15:40:09 2008 +0100
49490
49491     ppc4xx: assign PCI interrupts on seuqoia boards
49492
49493     Some operating systems rely on assigned PCI interrupts.
49494
49495     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49496
49497 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
49498 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49499 Date:   Tue Jan 8 15:50:49 2008 +0100
49500
49501     ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
49502
49503     This patch allows the use of 4xx interrupt vector number defines
49504     in board specific code outside cpu/ppc4xx.
49505
49506     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49507
49508 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
49509 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49510 Date:   Tue Jan 8 15:39:01 2008 +0100
49511
49512     ppc4xx: Fix UIC2 vector number base
49513
49514     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49515
49516 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
49517 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49518 Date:   Tue Jan 8 12:49:58 2008 +0100
49519
49520     ppc4xx: Update PLB/PCI divider for PMC440 board
49521
49522     This patch updates the PLB/PCI divider when running at
49523     400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
49524
49525     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49526
49527 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
49528 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49529 Date:   Tue Jan 8 11:13:09 2008 +0100
49530
49531     ppc4xx: Disable error message when no NAND chip is installed on PMC440
49532
49533     Add CFG_NAND_QUIET_TEST option to disable error message when
49534     no NAND chip is installed on PMC440 boards.
49535
49536     Disable a couple of config defines that are only used for NAND_U_BOOT.
49537
49538     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49539
49540 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
49541 Author: Wolfgang Denk <wd@denx.de>
49542 Date:   Tue Jan 8 22:58:27 2008 +0100
49543
49544     Fix compile problem with new env code.
49545
49546     Signed-off-by: Wolfgang Denk <wd@denx.de>
49547
49548 commit 6de66b35426312a21174a9bf0576a094e2904bea
49549 Author: Markus KlotzbĂ¼cher <mk@denx.de>
49550 Date:   Tue Nov 27 10:23:20 2007 +0100
49551
49552     tools: fix fw_printenv tool to compile again
49553
49554     This patch updates the fw_printenv/fw_setenv userspace tool to include
49555     the correct MTD header in order to compile against current kernel
49556     headers. Backward compatibility is preserved by introducing an option
49557     MTD_VERSION which can be set to "old" for compilation using the old MTD
49558     headers. Along with this a number of warnings are fixed.
49559
49560     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
49561
49562 commit ad3006fe7e84667021753b74247b0bafd97ba35f
49563 Author: Gerald Van Baren <vanbaren@cideas.com>
49564 Date:   Mon Jan 7 23:47:32 2008 -0500
49565
49566     LIBFDT: use memmove() instead of memcpy()
49567
49568     This is partial patch from the DTC/libfdt
49569     commit  67b6b33b9b413a450a72135b5dc59c0a1e33e647
49570     Author: David Gibson <david@gibson.dropbear.id.au>
49571     Date:   Wed Nov 21 11:56:14 2007 +1100
49572
49573         The patch also fixes one genuine bug caught by valgrind -
49574         _packblocks() in fdt_rw.c was using memcpy() where it should have been
49575         using memmove().
49576
49577     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49578
49579 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
49580 Author: David Gibson <david@gibson.dropbear.id.au>
49581 Date:   Mon Dec 17 14:42:07 2007 +1100
49582
49583     libfdt: Add more documentation (patch the seventh)
49584
49585     This patch adds more documenting comments to libfdt.h.  Specifically,
49586     these document the read/write functions (not including fdt_open_into()
49587     and fdt_pack(), for now).
49588
49589     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
49590
49591 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
49592 Author: David Gibson <david@gibson.dropbear.id.au>
49593 Date:   Mon Dec 17 14:41:52 2007 +1100
49594
49595     libfdt: Add more documentation (patch the sixth)
49596
49597     This patch adds some more documenting comments to libfdt.h.
49598     Specifically this documents all the write-in-place functions.
49599
49600     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
49601
49602 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
49603 Author: Gerald Van Baren <vanbaren@cideas.com>
49604 Date:   Sat Dec 29 22:45:27 2007 -0500
49605
49606     Fine grained per property /chosen updating.
49607
49608     Implement a suggestion by Scott Wood to make the /chosen handling fine
49609     grained.  Don't overwrite pre-existing properties on a per-property basis,
49610     so if /chosen exists but a necessary /chosen/property doesn't, it gets
49611     created.  If a /chosen property exists, it is NOT overwritten unless the
49612     "force" flag is true.
49613
49614     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49615
49616 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
49617 Author: Gerald Van Baren <vanbaren@cideas.com>
49618 Date:   Sat Jan 5 15:33:29 2008 -0500
49619
49620     Improve the FDT help message.
49621
49622     Add a note that "fdt copy" makes the new address active.
49623     Remove most of the extra hints at the end of the fdt help.
49624
49625     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49626
49627 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
49628 Author: Gerald Van Baren <vanbaren@cideas.com>
49629 Date:   Sat Jan 5 14:52:04 2008 -0500
49630
49631     Support setting FDT properties with optional values.
49632
49633     Fix a bug found and documented by Bartlomiej Sieka where the optional
49634     value on "fdt set <path> <prop> [<val>]" wasn't optional.
49635
49636     => fdt mknode / testnode
49637     => fdt print /testnode
49638     testnode {
49639     };
49640     => fdt set /testnode testprop
49641     => fdt print /testnode
49642     testnode {
49643             testprop;
49644     };
49645
49646     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49647
49648 commit 22fb2246df91bfc840d87f0c5910818bad55577a
49649 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49650 Date:   Fri Dec 28 11:56:30 2007 +0100
49651
49652     Add fdt_find_and_setprop() to fdt_support.h
49653
49654     fdt_find_and_setprop() is used by several 4xx boards and it's
49655     missing in the appropriate header. This patch eliminates a
49656     warning when building U-Boot for such boards.
49657
49658     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49659     Acked-by: Stefan Roese <sr@denx.de>
49660
49661 commit 802b769bac17b0560d3535a42c502469ee190cd1
49662 Author: Stefan Roese <sr@denx.de>
49663 Date:   Tue Jan 8 18:39:30 2008 +0100
49664
49665     ppc4xx: Return 0 on success in 4xx ethernet driver
49666
49667     Signed-off-by: Stefan Roese <sr@denx.de>
49668
49669 commit 6775c68683a53c7abc778774641aac6f833a2cbf
49670 Author: Kim Phillips <kim.phillips@freescale.com>
49671 Date:   Tue Jan 8 09:59:49 2008 -0600
49672
49673     mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
49674
49675     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49676
49677 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
49678 Author: Kim Phillips <kim.phillips@freescale.com>
49679 Date:   Thu Dec 20 16:28:34 2007 -0600
49680
49681     mpc83xx: rm remaining FLAT_TREE code
49682
49683     ..in board pci.c files
49684
49685     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49686
49687 commit b3458d2cd55d01732e30a76d898afd99e871cd67
49688 Author: Kim Phillips <kim.phillips@freescale.com>
49689 Date:   Thu Dec 20 15:57:28 2007 -0600
49690
49691     mpc83xx: remove FLAT_TREE code
49692
49693     need to rm it from pci code, too!
49694
49695     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49696
49697 commit 5b8bc606c61456566af6912f818a153b6b06f242
49698 Author: Kim Phillips <kim.phillips@freescale.com>
49699 Date:   Thu Dec 20 14:09:22 2007 -0600
49700
49701     mpc83xx: convert to using do_fixup_*()
49702
49703     convert to using simpler mpc85xx style fdt update code; streamline by
49704     eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
49705     the old school FLAT_TREE code from 83xx (since the sbc8349 was just
49706     converted over to using libfdt).
49707
49708     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49709
49710 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
49711 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
49712 Date:   Thu Dec 20 12:58:51 2007 -0500
49713
49714     sbc8349: enable libfdt by default on WRS SBC8349 board.
49715
49716     Make libfdt the default for the WRS SBC8349 board.
49717     Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
49718     done for the other 83xx based boards.  Also fix a typo in CONFIG_PCI.
49719
49720     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
49721
49722 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
49723 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
49724 Date:   Thu Dec 20 12:58:16 2007 -0500
49725
49726     sbc8349: migrate board to libfdt
49727
49728     This adds libfdt support code for the Wind River sbc8349 board.
49729
49730     Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
49731     the other Freescale 83xx boards.
49732
49733     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
49734
49735 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
49736 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
49737 Date:   Thu Dec 20 12:56:19 2007 -0500
49738
49739     sbc8349: Remove board specific ECC code
49740
49741     ECC code is now shared for all 83xx boards, so remove board specific one.
49742     See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
49743
49744     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
49745
49746 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
49747 Author: Kim Phillips <kim.phillips@freescale.com>
49748 Date:   Thu Dec 20 01:30:48 2007 -0600
49749
49750     mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
49751
49752     continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
49753
49754     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49755
49756 commit ccf21c311e68d48399eff1e72936052885f6e3f7
49757 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
49758 Date:   Thu Dec 6 16:43:40 2007 +0100
49759
49760     Add support CONFIG_UEC_ETH3 in MPC83xx
49761
49762     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
49763
49764 commit e6af9932d31171e35db880e7b2f29f903b1b7660
49765 Author: Kumar Gala <galak@kernel.crashing.org>
49766 Date:   Mon Nov 26 11:00:54 2007 -0600
49767
49768     Remove CONFIG options related to OF that we dont use
49769
49770     The MPC8360E MDS config defined:
49771         CONFIG_OF_HAS_BD_T
49772         CONFIG_OF_HAS_UBOOT_ENV
49773
49774     Which we don't use or ever needed.  This seems like copy-paste feature creep.
49775
49776     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49777
49778 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
49779 Author: Kim Phillips <kim.phillips@freescale.com>
49780 Date:   Mon Dec 10 14:16:22 2007 -0600
49781
49782     mpc83xx: supress compiler warning
49783
49784     mpc8360emds.c: In function â€˜ft_board_setup’:
49785     mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
49786     mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
49787
49788     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49789
49790 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
49791 Author: Kim Phillips <kim.phillips@freescale.com>
49792 Date:   Tue Nov 27 14:17:29 2007 -0600
49793
49794     mpc83xx: fix remaining fdt_find_node_by_path references
49795
49796     rename to fdt_path_offset
49797
49798     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49799
49800 commit 921d4b19ad1be704df58725485d9292dc0414adf
49801 Author: Kim Phillips <kim.phillips@freescale.com>
49802 Date:   Mon Nov 19 12:30:09 2007 -0600
49803
49804     mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
49805
49806     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
49807     This change guarantees that the environment will be located on the
49808     first flash sector after the U-Boot image.
49809
49810     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49811
49812 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
49813 Author: Kim Phillips <kim.phillips@freescale.com>
49814 Date:   Fri Nov 9 14:28:08 2007 -0600
49815
49816     mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
49817
49818     u-boot itself uses GMII mode on the 8360.  Fix up UCC phy-connection-type
49819     properties in the device tree so the PHY gets configured for internal delay on
49820     RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
49821
49822     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49823
49824 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
49825 Author: Dave Liu <r63238@freescale.com>
49826 Date:   Tue Sep 18 12:41:15 2007 +0800
49827
49828     mpc83xx: update the CREDITS and MAINTAINERS
49829
49830     update the CREDITS and MAINTAINERS.
49831
49832     Signed-off-by: Dave Liu <daveliu@freescale.com>
49833
49834 commit b21add4b42af7b767448251b599b91066a160e0d
49835 Author: Dave Liu <r63238@freescale.com>
49836 Date:   Tue Sep 18 12:40:21 2007 +0800
49837
49838     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
49839
49840     Add the MAINTAINER and MAKEALL entries for mpc837xemds
49841
49842     Signed-off-by: Dave Liu <daveliu@freescale.com>
49843
49844 commit f8900ce9094c462355eb792eea264ff16ac8fd16
49845 Author: Dave Liu <r63238@freescale.com>
49846 Date:   Tue Sep 18 12:38:53 2007 +0800
49847
49848     mpc83xx: Add the MPC837xEMDS board readme
49849
49850     Add the README.mpc837xemds to /doc
49851
49852     Signed-off-by: Dave Liu <daveliu@freescale.com>
49853
49854 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
49855 Author: Dave Liu <r63238@freescale.com>
49856 Date:   Tue Sep 18 12:37:57 2007 +0800
49857
49858     mpc83xx: Add the support of MPC837xEMDS board
49859
49860     The MPC837xEMDS board support:
49861     * DDR2 400MHz hardcoded and SPD init
49862     * Local bus NOR Flash
49863     * I2C, UART, MII and RTC
49864     * eTSEC RGMII
49865     * PCI host
49866
49867     Signed-off-by: Dave Liu <daveliu@freescale.com>
49868
49869 commit 555da61702771fe0f76f3de23b4e7590f3704161
49870 Author: Dave Liu <r63238@freescale.com>
49871 Date:   Tue Sep 18 12:36:58 2007 +0800
49872
49873     mpc83xx: Add the support of MPC8315E SoC
49874
49875     The MPC8315E SoC including e300c3 core and new IP blocks,
49876     such as TDM, PCI Express and SATA controller.
49877
49878     Signed-off-by: Dave Liu <daveliu@freescale.com>
49879
49880 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
49881 Author: Dave Liu <r63238@freescale.com>
49882 Date:   Tue Sep 18 12:36:11 2007 +0800
49883
49884     mpc83xx: Add the support of MPC837x SoC
49885
49886     The MPC837x SoC including e300c4 core and new IP blocks,
49887     such as SDHC, PCI Express and SATA controller.
49888
49889     Signed-off-by: Dave Liu <daveliu@freescale.com>
49890
49891 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
49892 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
49893 Date:   Wed Nov 14 18:54:53 2007 +0300
49894
49895     MPC8360E-MDS: configure and enable second UART
49896
49897     Despite user manual, BCSR9.7 is negated (high) on HRST, so
49898     UART2 is disabled. Fix that and configure QE pins properly.
49899
49900     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
49901
49902 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
49903 Author: Timur Tabi <timur@freescale.com>
49904 Date:   Mon Nov 5 09:34:06 2007 -0600
49905
49906     83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
49907
49908     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
49909     currently-defined 83xx boards.  This change guarantees that the environment
49910     will be located on the first flash sector after the U-Boot image.
49911
49912     Signed-off-by: Timur Tabi <timur@freescale.com>
49913     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49914
49915 commit e05329516a13616b53240cd85b739217c2bf87f1
49916 Author: Larry Johnson <lrj@acm.org>
49917 Date:   Fri Jan 4 13:27:02 2008 -0500
49918
49919     ppc4xx: Remove weak binding from common Denali data-eye search code
49920
49921     Now that there are no board-specific versions of
49922     "denali_core_search_data_eye()", the weak binding on the common version
49923     can be removed.
49924
49925     Signed-off-by: Larry Johnson <lrj@acm.org>
49926
49927 commit 5ba576c01602fd328800a427964c36a0a05c5dce
49928 Author: Stefan Roese <sr@denx.de>
49929 Date:   Sat Jan 5 09:13:46 2008 +0100
49930
49931     ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
49932
49933     Signed-off-by: Stefan Roese <sr@denx.de>
49934
49935 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
49936 Author: Stefan Roese <sr@denx.de>
49937 Date:   Sat Jan 5 09:12:41 2008 +0100
49938
49939     ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
49940
49941     On Katmai the complete auto-calibration somehow doesn't seem to
49942     produce the best results, meaning optimal values for RQFD/RFFD.
49943     This was discovered by GDA using a high bandwidth scope,
49944     analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
49945     so now on Katmai "only" RFFD is auto-calibrated.
49946
49947     This patch also adds RDCC calibration as mentioned on page 7 of
49948     the AMCC PowerPC440SP/SPe DDR2 application note:
49949     "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
49950
49951     Signed-off-by: Stefan Roese <sr@denx.de>
49952
49953 commit 49db47b8ae6afff2b898be312948ff501357dc80
49954 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49955 Date:   Wed Jan 2 16:48:42 2008 +0100
49956
49957     ppc4xx: Remove sdram.h from PMC440 board
49958
49959     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49960
49961 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
49962 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49963 Date:   Wed Jan 2 16:48:34 2008 +0100
49964
49965     ppc4xx: use common denali core defines and data eye search code for PMC440
49966
49967     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49968
49969 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
49970 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49971 Date:   Wed Jan 2 12:05:14 2008 +0100
49972
49973     ppc4xx: More cleanup for esd's LCD code
49974
49975     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49976
49977 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
49978 Author: Stefan Roese <sr@denx.de>
49979 Date:   Fri Jan 4 12:00:01 2008 +0100
49980
49981     ppc4xx: Fix Sequoia NAND booting target
49982
49983     The Sequoia NAND booting target now uses the recently extracted
49984     cpu/ppc4xx/denali_data_eye.c file too.
49985
49986     Signed-off-by: Stefan Roese <sr@denx.de>
49987
49988 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
49989 Author: Lawrence R. Johnson <lrj@acm.org>
49990 Date:   Thu Jan 3 15:02:02 2008 -0500
49991
49992     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
49993
49994     Signed-off-by: Larry Johnson <lrj@acm.org>
49995
49996 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
49997 Author: Lawrence R. Johnson <lrj@acm.org>
49998 Date:   Fri Jan 4 02:11:56 2008 -0500
49999
50000     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
50001
50002     Note: this patch changes the configuration of some GPIO registers:
50003
50004        Register      Old Value   New Value
50005     ---------------  ----------  ----------
50006     DCR GPIO0_TCR    0x0000000F  0x0000F0CF
50007     DCR GPIO0_TSRH   0x55005000  0x00000000
50008     DCR GPIO1_TCR    0xC2000000  0xE2000000
50009     DCR GPIO1_TSRL   0x0C000000  0x00200000
50010     DCR GPIO1_ISR2L  0x00050000  0x00110000
50011
50012     Signed-off-by: Larry Johnson <lrj@acm.org>
50013
50014 commit 5ab884b254ca2e707ab50545cd705f30108cf491
50015 Author: Lawrence R. Johnson <lrj@acm.org>
50016 Date:   Thu Jan 3 18:54:00 2008 -0500
50017
50018     ppc4xx: Add functionality to GPIO support
50019
50020     This patch makes two additions to GPIO support:
50021
50022     First, it adds function gpio_read_in_bit() to read the a bit from the
50023     GPIO Input Register (GPIOx_IR) in the same way that function
50024     gpio_read_out_bit() reads a bit from the GPIO Output Register
50025     (GPIOx_OR).
50026
50027     Second, it modifies function gpio_set_chip_configuration() to provide
50028     an additional option for configuring the GPIO from the
50029     "CFG_4xx_GPIO_TABLE".
50030
50031     According to the 440EPx User's Manual, when an alternate output is used,
50032     the three-state control is configured in one of two ways, depending on
50033     the particular output.  The first option is to select the corresponding
50034     alternate three-state control in the GPIOx_TRSH/L registers.  The second
50035     option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
50036     the GPIOx_TRSH/L registers, and set the corresponding bit in the
50037     GPIOx_TCR register to enable the output.  For example, the Manual
50038     specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
50039     the alternate three-state control (first option), and specifies
50040     configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
50041     enabled in the GPIOx_TCR register (second option).
50042
50043     Currently, gpio_set_chip_configuration() configures all alternate signal
50044     outputs to use the first option.  This patch allow the second option to
50045     be selected by setting the "out_val" element in the table entry to
50046     "GPIO_OUT_1".  The first option is used when the "out_val" element is
50047     set to "GPIO_OUT_0".  Because "out_val" is not currently used when an
50048     alternate signal is selected, and because all current GPIO tables set
50049     "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
50050     not change any existing configurations.
50051
50052     Signed-off-by: Larry Johnson <lrj@acm.org>
50053
50054 commit 196404cdc1de495d6182e84731c200fc5748df15
50055 Author: Larry Johnson <lrj@arlinx.com>
50056 Date:   Sun Dec 30 01:01:54 2007 -0500
50057
50058     PPC4xx: Remove sdram.h from board/lwmon5
50059
50060     These definitions are now in "include/ppc440.h".
50061
50062     Signed-off-by: Larry Johnson <lrj@acm.org>
50063
50064 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
50065 Author: Larry Johnson <lrj@arlinx.com>
50066 Date:   Sun Dec 30 01:01:32 2007 -0500
50067
50068     PPC4xx: Use common code for LWMON5 board SDRAM support
50069
50070     This patch also modifies the functionality of the code so that the data-eye
50071     search is now done with with the cache disabled.
50072
50073     Signed-off-by: Larry Johnson <lrj@acm.org>
50074
50075 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
50076 Author: Larry Johnson <lrj@arlinx.com>
50077 Date:   Sun Dec 30 01:01:14 2007 -0500
50078
50079     PPC4xx: Remove sdram.h from board/amcc/sequoia
50080
50081     These definitions are now in "include/ppc440.h".
50082
50083     Signed-off-by: Larry Johnson <lrj@acm.org>
50084
50085 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
50086 Author: Larry Johnson <lrj@arlinx.com>
50087 Date:   Sun Dec 30 01:00:50 2007 -0500
50088
50089     PPC4xx: Use common code for Sequoia board SDRAM support
50090
50091     Signed-off-by: Larry Johnson <lrj@acm.org>
50092
50093 commit 8b0c5c127690335758100c25eaec2b84db97c101
50094 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50095 Date:   Thu Dec 27 16:58:41 2007 +0100
50096
50097     net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
50098
50099     When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
50100     networking stack does not automatically switch to
50101     another interface. This patch does not touch the default
50102     behavior.
50103
50104     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50105     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50106
50107 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
50108 Author: Upakul Barkakaty <upakul@gmail.com>
50109 Date:   Thu Nov 29 12:16:13 2007 +0530
50110
50111     NET: Proper return code handling in eth_init() function in file eth.c
50112
50113     This patch modifies the return code handling in the eth_init()
50114     function, to be compatible with the handling of the return codes in
50115     the other network stack files. It now returns a 0 on Success and -1 on
50116     error.
50117
50118     Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
50119     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50120
50121 commit 5ca2d0953e4579a80810966cca2077e20d912c97
50122 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
50123 Date:   Mon Nov 19 20:27:04 2007 +0900
50124
50125     net/eth.c: Fix env_enetaddr signed overflow
50126
50127     Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
50128     warned as below:
50129
50130       U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
50131
50132       DRAM:  256 MB
50133       Flash: 32 MB
50134       In:    serial
50135       Out:   serial
50136       Err:   serial
50137       Net:   NEC-Candy
50138       Warning: NEC-Candy MAC addresses don't match:
50139       Address in SROM is         00:00:4C:80:92:A2
50140       Address in environment is  FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
50141
50142     This patch changes env_enetaddr type from `char' to `unsigned char'.
50143
50144     Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
50145     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
50146     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50147
50148 commit f85b60710571b37293d2233933b76e2aa3db5635
50149 Author: Rafal Jaworowski <raj@semihalf.com>
50150 Date:   Thu Dec 27 18:19:02 2007 +0100
50151
50152     Introduce new eth_receive routine
50153
50154     The purpose of this routine is receiving a single network frame, outside of
50155     U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
50156     U-Boot will let them utilise networking facilities. For sending a raw frame
50157     the already existing eth_send() can be used.
50158
50159     The direct consumer of this routine is the newly introduced API layer for
50160     external applications (enabled with CONFIG_API).
50161
50162     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
50163     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
50164     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50165
50166 commit 5c740711f0ea5b51414b341b71597c4a0751be74
50167 Author: Jon Loeliger <jdl@freescale.com>
50168 Date:   Thu Jan 3 10:41:04 2008 -0600
50169
50170     8610: Move include of config.h earlier.
50171
50172     Include config.h earlier in the set of #includes
50173     so as to avoid a incidental and duplicate definition
50174     of CFG_CACHELINE_SIZE.
50175
50176     Signed-off-by: Jon Loeliger
50177
50178 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
50179 Author: Jon Loeliger <jdl@freescale.com>
50180 Date:   Tue Dec 4 10:53:34 2007 -0600
50181
50182     Don't slam #undef DEBUG in the 8641HPCN config file.
50183
50184     Doing so prevents it from being individually set
50185     and useful in other files.
50186
50187     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50188
50189 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
50190 Author: Jon Loeliger <jdl@freescale.com>
50191 Date:   Wed Nov 28 14:47:18 2007 -0600
50192
50193     Convert MPC8641HPCN to use libfdt.
50194
50195     Assumes the presence of the aliases node in the DTS to
50196     locate the ethernet, pci and serial nodes for fixups.
50197
50198     Use consistent fdtaddr and fdtfile in environment variables.
50199
50200     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50201
50202 commit ce37422d0002e10490e268392e0c4e3028e52cec
50203 Author: Stefan Roese <sr@denx.de>
50204 Date:   Wed Jan 2 14:06:26 2008 +0100
50205
50206     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
50207
50208     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
50209     flash chips connected to a 32bit wide port.
50210
50211     Signed-off-by: Stefan Roese <sr@denx.de>
50212
50213 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
50214 Author: Wolfgang Denk <wd@denx.de>
50215 Date:   Wed Jan 2 15:58:44 2008 +0100
50216
50217     Fix compile problem introduced by "cleanup" commit 3dfd708c
50218
50219     Signed-off-by: Wolfgang Denk <wd@denx.de>
50220
50221 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
50222 Author: Wolfgang Denk <wd@denx.de>
50223 Date:   Wed Jan 2 15:54:45 2008 +0100
50224
50225     Make scripts and Makefiles POSIX compliant
50226
50227     The bash builtin versions of the "test" (resp. "[") command allow
50228     using "==" for string comparisons, but POSIX compatible implemen-
50229     tations (like /usr/bin/test) insist on using "=" only. On such systems
50230     you will see:
50231
50232         $ /usr/bin/test a == a && echo OK
50233         /usr/bin/test: ==: binary operator expected
50234
50235     This patch fixes Makefiles and scripts to use POSIX style.
50236
50237     Signed-off-by: Wolfgang Denk <wd@denx.de>
50238
50239 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
50240 Author: Stefan Roese <sr@denx.de>
50241 Date:   Wed Jan 2 14:05:37 2008 +0100
50242
50243     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
50244
50245     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
50246     flash chips connected to a 32bit wide port.
50247
50248     Signed-off-by: Stefan Roese <sr@denx.de>
50249
50250 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
50251 Author: Wolfgang Denk <wd@denx.de>
50252 Date:   Wed Jan 2 12:38:43 2008 +0100
50253
50254     Minor coding style cleanup.
50255
50256     Signed-off-by: Wolfgang Denk <wd@denx.de>
50257
50258 commit e174ac34adf5d5653df12bc3cf19c52063a71269
50259 Author: Stefan Roese <sr@denx.de>
50260 Date:   Fri Dec 28 17:29:56 2007 +0100
50261
50262     ppc4xx: Coding style cleanup
50263
50264     Signed-off-by: Stefan Roese <sr@denx.de>
50265
50266 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
50267 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50268 Date:   Fri Dec 28 17:07:24 2007 +0100
50269
50270     ppc4xx: Complete PMC440 board support
50271
50272     This patch brings the PMC440 board configuration file.
50273     Finally it enables the PMC440 board support.
50274
50275     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50276
50277 commit 407843a582560fc5231299561ab3c2b6b6cd3397
50278 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50279 Date:   Fri Dec 28 17:07:18 2007 +0100
50280
50281     ppc4xx: Add FPGA support and BSP commands for PMC440 boards
50282
50283     This patch adds some BSP commands and FPGA booting support
50284     for esd's PMC440 boards.
50285
50286     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50287
50288 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
50289 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50290 Date:   Fri Dec 28 17:07:14 2007 +0100
50291
50292     ppc4xx: Add initial esd PMC440 board files
50293
50294     This patch adds the first files for the new esd PMC440 boards.
50295     The next two patches will complete the PMC440 board support.
50296
50297     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50298
50299 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
50300 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50301 Date:   Fri Dec 28 17:10:36 2007 +0100
50302
50303     ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
50304
50305     - add EEPROM write protection for esd PLU405 boards.
50306     - initialize NAND GPIOs
50307     - use correct io accessors
50308     - cleanup
50309
50310     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50311
50312 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
50313 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50314 Date:   Fri Dec 28 17:10:44 2007 +0100
50315
50316     ppc4xx: use correct io accessors for esd's LCD code
50317
50318     This patch fixes esd's LCD dectection code to work correctly with
50319     newer gcc versions.
50320
50321     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50322
50323 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
50324 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50325 Date:   Fri Dec 28 17:10:42 2007 +0100
50326
50327     ppc4xx: Maintenance patch for VOH405 boards
50328
50329     - add EEPROM write protection
50330     - initialize NAND GPIOs
50331     - use correct io accessors
50332     - slow down I2C clock to 100kHz
50333     - enable ext. I2C bus
50334     - cleanup
50335
50336     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50337
50338 commit c05569066dbcba3fdf36d4d1943df265dc316a86
50339 Author: Stefan Roese <sr@denx.de>
50340 Date:   Fri Dec 28 16:08:08 2007 +0100
50341
50342     ppc4xx: Enable 405EP PCI arbiter per default on all boards
50343
50344     In an attmemt to clean up the 4xx start.S file, I removed the enabling
50345     of the internal 405EP PCI arbiter. This is needed for multiple other
50346     405EP platforms, like most of the esd 405EP. Now the internal PCI
50347     arbiter is enabled again per default as it has been before.
50348
50349     Signed-off-by: Stefan Roese <sr@denx.de>
50350     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50351
50352 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
50353 Author: Stefan Roese <sr@denx.de>
50354 Date:   Fri Dec 28 15:53:46 2007 +0100
50355
50356     ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
50357
50358     Signed-off-by: Stefan Roese <sr@denx.de>
50359     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50360
50361 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
50362 Author: Stefan Roese <sr@denx.de>
50363 Date:   Fri Dec 28 06:06:04 2007 +0100
50364
50365     ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
50366
50367     Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
50368     platforms mentioned above.
50369
50370     Signed-off-by: Stefan Roese <sr@denx.de>
50371
50372 commit b568fd25574181a3b12ae3d66b2913903442cb83
50373 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50374 Date:   Thu Dec 27 17:03:46 2007 +0100
50375
50376     Remove CPCI440 board
50377
50378     This board never left prototyping state and it
50379     became a millstone round my neck. So remove it.
50380
50381     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50382
50383 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
50384 Author: Larry Johnson <lrj@arlinx.com>
50385 Date:   Thu Dec 27 11:28:51 2007 -0500
50386
50387     Add support for Korat PPC440EPx board
50388
50389     These patches add support for the PPC440EPx-based "Korat" board to
50390     U-Boot.  They are based primarily on support for the Sequoia board.
50391
50392     Signed-off-by: Larry Johnson <lrj@acm.org>
50393
50394 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
50395 Author: Larry Johnson <lrj@arlinx.com>
50396 Date:   Sat Dec 22 15:16:25 2007 -0500
50397
50398     Add configuration file for Korat board
50399
50400     This patch supplies the configuration file for the Korat PPC440EPx-
50401     processor board.
50402
50403     Signed-off-by: Larry Johnson <lrj@acm.org>
50404
50405 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
50406 Author: Larry Johnson <lrj@arlinx.com>
50407 Date:   Sat Dec 22 15:16:11 2007 -0500
50408
50409     Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
50410
50411     Signed-off-by: Larry Johnson <lrj@acm.org>
50412
50413 commit aba19604d848b2838cfb9ebe818909e6a216058e
50414 Author: Larry Johnson <lrj@arlinx.com>
50415 Date:   Thu Dec 27 10:54:48 2007 -0500
50416
50417     Add 440EPx DDR2 SPD DIMM support
50418
50419     This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
50420     controller.  It should also work on the 440GRx.  It is based on the DDR2
50421     SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
50422
50423     This code has been tested on prototype Korat boards with three Kingston
50424     DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
50425     (two ranks).  The Korat board has a single DIMM socket, but support has
50426     been provided (though not tested) for boards with two DIMM sockets.
50427
50428     Signed-off-by: Larry Johnson <lrj@acm.org>
50429
50430 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
50431 Author: Larry Johnson <lrj@arlinx.com>
50432 Date:   Sat Dec 22 15:15:30 2007 -0500
50433
50434     Copy 440EPx/GRx SDRAM data-eye search to common directory
50435
50436     This patch creates a non-board-specific file for performing the SDRAM
50437     data-eye search.  It also adds ECC error checking to the test of valid
50438     data on readback when ECC is enabled.
50439
50440     Signed-off-by: Larry Johnson <lrj@acm.org>
50441
50442 commit c46f53333b22b1f9098676bea8884fc7db820cf3
50443 Author: Larry Johnson <lrj@arlinx.com>
50444 Date:   Sat Dec 22 15:15:13 2007 -0500
50445
50446     Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
50447
50448     This patch adds the Denali SDRAM controller definitions to "ppc440.h".
50449     It also fixes two typos in the definitions, so the board-specific
50450     "sdram.h" files containing these definitions are also fixed to avoid
50451     compiler warnings.
50452
50453     Signed-off-by: Larry Johnson <lrj@acm.org>
50454
50455 commit c348578bf612d0c56d8d376d23cae16defbd86af
50456 Author: Larry Johnson <lrj@arlinx.com>
50457 Date:   Thu Dec 27 10:50:55 2007 -0500
50458
50459     Add Ethernet 1000BASE-X support for PPC4xx
50460
50461     This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG".  When this symbol
50462     is defined, the PHY will advertise it's capabilities for autonegotiation
50463     based on the capabilities shown in the PHY's status registers, including
50464     1000BASE-X.  When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
50465     advertise hard-coded capabilities, as before.
50466
50467     Signed-off-by: Larry Johnson <lrj@acm.org>
50468
50469 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
50470 Author: Larry Johnson <lrj@arlinx.com>
50471 Date:   Thu Dec 27 09:52:17 2007 -0500
50472
50473     Add driver for National Semiconductor LM73 temperature sensor
50474
50475     This driver is based on the driver for the LM75.
50476
50477     Signed-off-by: Larry Johnson <lrj@acm.org>
50478
50479 commit 12618278688ea9b3d76536960a5ad2e3790fac40
50480 Author: Larry Johnson <lrj@arlinx.com>
50481 Date:   Sat Dec 22 15:14:00 2007 -0500
50482
50483     Add driver for STMicroelectronics M41T60 RTC
50484
50485     This driver is based on the driver for the M41T11.  In the intended
50486     application, the RTC will be powered by a large capacitor, rather than a
50487     battery.  The driver therefore checks to see whether the RTC has lost
50488     power.  The chip's OUT bit is normally reset from its power-up state.  If
50489     the OUT bit is read as set, or if the date and time are not valid, then the
50490     RTC is assumed to have lost power, and its date and time are reset to
50491     1900-01-01 00:00:00.
50492
50493     Support for adjusting the speed of the clock to improve accuracy is
50494     provided through an environment variable.
50495
50496     Signed-off-by: Larry Johnson <lrj@acm.org>
50497
50498 commit d3471173e14b7544bb60339eda8d3d3906694b0a
50499 Author: Larry Johnson <lrj@arlinx.com>
50500 Date:   Sat Dec 22 15:34:39 2007 -0500
50501
50502     Use out_be32() and friends to access memory-mapped registers in sequoia.c
50503
50504     Signed-off-by: Larry Johnson <lrj@acm.org>
50505
50506 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
50507 Author: Larry Johnson <lrj@arlinx.com>
50508 Date:   Sat Dec 22 15:34:20 2007 -0500
50509
50510     Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
50511
50512     Signed-off-by: Larry Johnson <lrj@acm.org>
50513
50514 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
50515 Author: Larry Johnson <lrj@arlinx.com>
50516 Date:   Sat Dec 22 15:23:50 2007 -0500
50517
50518     Cosmetic changes to ECC POST for AMCC Denali core
50519
50520     Signed-off-by: Larry Johnson <lrj@acm.org>
50521
50522 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
50523 Author: Stefan Roese <sr@denx.de>
50524 Date:   Wed Dec 26 20:20:19 2007 +0100
50525
50526     ppc4xx: Fix compilation problem in 405 cache POST test
50527
50528     Signed-off-by: Stefan Roese <sr@denx.de>
50529
50530 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
50531 Author: Stefan Roese <sr@denx.de>
50532 Date:   Sat Dec 22 12:20:09 2007 +0100
50533
50534     ppc4xx: Move virtual address of POST cache test to bigger address
50535
50536     On Sequoia & LWMON5 the virtual address of the POST cache test is now
50537     moved to a bigger address. This enables usage of more memory on those
50538     boards.
50539
50540     Signed-off-by: Stefan Roese <sr@denx.de>
50541
50542 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
50543 Author: Stefan Roese <sr@denx.de>
50544 Date:   Sat Dec 22 12:18:26 2007 +0100
50545
50546     ppc4xx: Fix problem in 44x cache POST routine
50547
50548     As repoted by Larry Johnson, running "diag run cache" caused a crash
50549     in U-Boot. This problem was introduced by a patch that removed the
50550     TLB entry for the cache test after the test has completed. Since this
50551     TLB was only setup once, a 2nd attempt to run this cache test
50552     failed with a crash. Now this TLB entry is created every time the
50553     routine is called.
50554
50555     Signed-off-by: Stefan Roese <sr@denx.de>
50556
50557 commit b0265b576bb8fa9465f99e99c323768b562fadc2
50558 Author: Stefan Roese <sr@denx.de>
50559 Date:   Fri Dec 21 07:51:29 2007 +0100
50560
50561     ppc4xx: Update Makalu fdt support
50562
50563     Signed-off-by: Stefan Roese <sr@denx.de>
50564
50565 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
50566 Author: Stefan Roese <sr@denx.de>
50567 Date:   Wed Dec 19 09:05:40 2007 +0100
50568
50569     ppc4xx: Add fdt support to AMCC Katmai eval board
50570
50571     Signed-off-by: Stefan Roese <sr@denx.de>
50572
50573 commit 328a340392a5df9aaf00792be989df73e750859e
50574 Author: Stefan Roese <sr@denx.de>
50575 Date:   Tue Dec 18 08:44:51 2007 +0100
50576
50577     ppc4xx: fdt: Cleanup setup of cpu node setup
50578
50579     Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
50580     without using the absolute path to the cpu node. This makes it possible
50581     to use this U-Boot version with both versions of cpu-node naming
50582     "cpu@0" and the former "PowerPC,440EPx@0".
50583
50584     Signed-off-by: Stefan Roese <sr@denx.de>
50585
50586 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
50587 Author: Stefan Roese <sr@denx.de>
50588 Date:   Mon Dec 17 17:26:21 2007 +0100
50589
50590     ppc4xx: Fix lwmon5 compilation problem
50591
50592     Now that the 440EPx ECC test is not board specific anymore
50593     remove this Makefile.
50594
50595     Signed-off-by: Stefan Roese <sr@denx.de>
50596
50597 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
50598 Author: Anatolij Gustschin <agustschin@t-online.de>
50599 Date:   Wed Dec 5 17:43:20 2007 +0100
50600
50601     Fix ppc4xx clear_bss() code
50602
50603     ppc4xx clear_bss() fails if BSS segment size is not
50604     divisible by 4 without remainder. This patch provides
50605     fix for this problem.
50606
50607     Signed-off-by: Anatolij Gustschin <agust@denx.de>
50608
50609 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
50610 Author: Niklaus Giger <niklausgiger@gmx.ch>
50611 Date:   Fri Nov 30 18:35:11 2007 +0100
50612
50613     PPC4xx: Minimal changes to add vxWorks support
50614
50615     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
50616
50617 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
50618 Author: Markus KlotzbĂ¼cher <mk@denx.de>
50619 Date:   Fri Nov 23 13:09:18 2007 +0100
50620
50621     ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
50622
50623     When using dhcp/bootp the "netmask" environment variable is not
50624     set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
50625     desireable, so the following patch adds this this option to the board
50626     config.
50627
50628     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
50629     Signed-off-by: Stefan Roese <sr@denx.de>
50630
50631 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
50632 Author: Larry Johnson <lrj@arlinx.com>
50633 Date:   Sat Oct 27 12:48:15 2007 -0400
50634
50635     Fix/enhance ECC POST for 440EPx/GRx
50636
50637     This patch allows the ECC POST to be used for different boards with the
50638     PPC440 Denali SDRAM controller.  Modifications include skipping the test
50639     if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
50640     to prevent timing errors.
50641
50642     Signed-off-by: Larry Johnson <lrj@acm.org>
50643
50644 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
50645 Author: Larry Johnson <lrj@arlinx.com>
50646 Date:   Sat Oct 27 12:48:05 2007 -0400
50647
50648     PPC4xx: Move/rename ECC POST for 440EPx/GRx
50649
50650     Signed-off-by: Larry Johnson <lrj@acm.org>
50651
50652 commit c29d2d3680046d430022c55e50fcb27f5866517e
50653 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50654 Date:   Fri Dec 14 11:20:33 2007 +0100
50655
50656     ppc4xx: use correct io accessors for 4xx ethernet POST
50657
50658     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50659
50660 commit ba79fde58a48c0a6ff8e2a96caba951594142203
50661 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50662 Date:   Fri Dec 14 11:19:56 2007 +0100
50663
50664     ppc4xx: fix flush + invalidate_dcache_range arguments
50665
50666     flush + invalidate_dcache_range() expect the start and stop+1 address.
50667     So the stop address is the first address behind (!) the range.
50668
50669     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50670
50671 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
50672 Author: Stefan Roese <sr@denx.de>
50673 Date:   Fri Dec 14 08:41:29 2007 +0100
50674
50675     ppc4xx: fdt: use fdt_fixup_ethernet()
50676
50677     By using aliases in the dts file, the ethernet node fixup is
50678     much easier with the recently added functions.
50679
50680     Please note that the dts file needs the aliases for this to work.
50681
50682     Signed-off-by: Stefan Roese <sr@denx.de>
50683
50684 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
50685 Author: Stefan Roese <sr@denx.de>
50686 Date:   Thu Dec 13 14:52:53 2007 +0100
50687
50688     ppc4xx: Bring 4xx fdt support up-to-date
50689
50690     This patch update the 4xx fdt support. It enabled fdt booting
50691     on the AMCC Kilauea and Sequoia for now. More can follow later
50692     quite easily.
50693
50694     Signed-off-by: Stefan Roese <sr@denx.de>
50695
50696 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
50697 Author: Stefan Roese <sr@denx.de>
50698 Date:   Thu Dec 27 07:50:54 2007 +0100
50699
50700     cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
50701
50702     The check for an sufficiently erased destination was missing in the
50703     buffered write function of the cfi flash driver (when
50704     CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
50705     writing to such a region will fail with the currect error message.
50706
50707     Signed-off-by: Stefan Roese <sr@denx.de>
50708
50709 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
50710 Author: Martin Krause <martin.krause@tqs.de>
50711 Date:   Mon Nov 12 10:56:17 2007 +0100
50712
50713     Some configuration updates for the TQM5200 based TB5200 board:
50714
50715     - enable command line history
50716     - increase malloc space (because of bigger flash sectors)
50717
50718     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50719
50720 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
50721 Author: Martin Krause <martin.krause@tqs.de>
50722 Date:   Thu Sep 27 11:10:08 2007 +0200
50723
50724     TQM8xx: use the CFI flash driver on all TQM8xx boards
50725
50726     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50727
50728 commit 11d9eec479b470eab9242ab937fca70a876d9376
50729 Author: Martin Krause <martin.krause@tqs.de>
50730 Date:   Wed Sep 26 17:55:56 2007 +0200
50731
50732     TQM885D: adjust for doubled flash sector size + some minor fixes
50733
50734     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50735
50736 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
50737 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
50738 Date:   Wed Sep 26 17:55:54 2007 +0200
50739
50740     TQM885D: Exchanged SDRAM timing by a more relaxed timing.
50741
50742     CAS-Latency=2, Write Recovery Time tWR=2
50743     The max. supported bus frequency is 66 MHz. Therefore, changed
50744     threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
50745
50746     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50747
50748 commit b988b8cd443989be65161888eea0127ad03f846f
50749 Author: Martin Krause <martin.krause@tqs.de>
50750 Date:   Wed Sep 26 17:55:56 2007 +0200
50751
50752     TQM885D: use calculated cpuclk instead of measuring it
50753
50754     On the TQM885D the measurement of cpuclk with the PIT reference
50755     timer ist not necessary. Since all module variants use the same
50756     external 10 MHz oscillator, the cpuclk only depends on the PLL
50757     configuration - which is readable by software.
50758
50759     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50760
50761 commit 492c7049869348d31168de8dad89651315e468e0
50762 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
50763 Date:   Thu Sep 27 14:54:46 2007 +0200
50764
50765     TQM885D: fix SDRAM refresh
50766
50767     At 133 MHz the current SDRAM refresh rate is too fast
50768     (measured 4 * 1.17 us).
50769     CFG_MAMR_PTA changes from 39 to 128. This result
50770     in a refresh rate of 4 * 7.8 us at the default clock
50771     66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
50772     This is a compromise until a new method is found to
50773     adjust the refresh rate.
50774
50775     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50776
50777 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
50778 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
50779 Date:   Thu Sep 27 14:54:46 2007 +0200
50780
50781     TQM860M: Support for 10col SDRAMs, max. 128 MiB
50782
50783     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50784
50785 commit 61fb15c516fef5631e305f1976d7b3a679725856
50786 Author: Wolfgang Denk <wd@denx.de>
50787 Date:   Thu Dec 27 01:52:50 2007 +0100
50788
50789     Fix coding style issues; update CHANGELOG.
50790
50791     Signed-off-by: Wolfgang Denk <wd@denx.de>
50792
50793 commit 467bcee11fe26ad422f2de971aa70866079870f2
50794 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50795 Date:   Fri Dec 14 15:36:18 2007 +0100
50796
50797     cfi_flash: Add manufacturer-specific fixups
50798
50799     Run fixups based on the JEDEC manufacturer ID independent of the
50800     command set ID.
50801
50802     This changes current behaviour: Previously, geometry reversal for AMD
50803     chips were done based on the command set ID, while they are now done
50804     based on the JEDEC manufacturer and device ID.
50805
50806     Also add fixup for top-boot Atmel chips. A fixup is needed for
50807     AT49BV6416(T) too, but since u-boot currently only reads the low byte
50808     of the device ID, there's no way to tell it apart from AT49BV642D,
50809     which should not have this fixup. Since AT49BV642D support is
50810     necessary to get ATNGW100 board support into mainline, I've commented
50811     out the fixup for now.
50812
50813     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50814
50815 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
50816 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50817 Date:   Fri Dec 14 15:36:17 2007 +0100
50818
50819     cfi_flash: Add cmdset-specific init functions
50820
50821     Move things like reading JEDEC IDs and fixing up geometry reversal
50822     into separate functions. The geometry reversal fixup is now performed
50823     by altering the qry structure directly, which makes the sector init
50824     code slightly cleaner.
50825
50826     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50827
50828 commit e23741f4a6d8047520ef0d4971762749b3587d32
50829 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50830 Date:   Fri Dec 14 15:36:16 2007 +0100
50831
50832     cfi_flash: Read whole QRY structure in one go
50833
50834     Read out the whole CFI Standard Query structure after successful cfi
50835     identification. This allows subsequent code to access this information
50836     directly without having to go through flash_read_uchar() and friends.
50837
50838     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50839
50840 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
50841 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50842 Date:   Mon Dec 17 11:02:44 2007 +0100
50843
50844     AVR32: Fix logic inversion in disable_interrupts()
50845
50846     disable_interrupts() should return nonzero if interrupts were
50847     _enabled_ before, not disabled.
50848
50849     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50850
50851 commit acac475212cbedb17b321a363a1c878e2b47b37f
50852 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50853 Date:   Fri Dec 14 16:51:22 2007 +0100
50854
50855     AVR32: Enable interrupts at bootup
50856
50857     The timer code depends on the timer interrupt to keep track of the
50858     upper 32 bits of the cycle counter. This obviously doesn't work when
50859     interrupts are disabled the whole time.
50860
50861     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50862
50863 commit 9570bcd87f4db255514f43b6701746c412f8fef0
50864 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50865 Date:   Thu Nov 15 10:03:45 2007 +0100
50866
50867     AVR32: Fix wrong pin setup for USART3
50868
50869     As reported by Gerhard Berghofer:
50870
50871     in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
50872     instead of PB18 and PB19.
50873
50874     which is obviously correct. There's currently no code that uses
50875     USART3, but custom boards may run into problems.
50876
50877     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50878
50879 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
50880 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50881 Date:   Thu Nov 1 12:44:20 2007 +0100
50882
50883     README: Remove ATSTK1000 daughterboard list
50884
50885     As noted by Kim Phillips, these lists tend to become out of date.
50886
50887     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50888
50889 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
50890 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50891 Date:   Tue Oct 30 14:56:36 2007 +0100
50892
50893     Add ATSTK100[234] to MAINTAINERS
50894
50895     Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
50896     "mother". Also update the entry for ATSTK1000 to be not only about the
50897     AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
50898
50899     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50900
50901 commit 64ff2357b1727213803591813dbc779c924bf772
50902 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50903 Date:   Mon Oct 29 13:02:54 2007 +0100
50904
50905     AVR32: Add support for the ATSTK1004 board
50906
50907     ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
50908     which is a derivative of AT32AP7000.
50909
50910     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50911
50912 commit 667568db157f374b85abd7e03596ddd1f0b25681
50913 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50914 Date:   Mon Oct 29 13:02:54 2007 +0100
50915
50916     AVR32: Add support for the ATSTK1003 board
50917
50918     ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
50919     which is a derivative of AT32AP7000.
50920
50921     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50922
50923 commit 5fee84a794a51ec830548cda485a770efb018b92
50924 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50925 Date:   Mon Oct 29 13:23:33 2007 +0100
50926
50927     AVR32: Make some AT32AP700x peripherals optional
50928
50929     Add a chip-features file providing definitions of the form
50930
50931     AT32AP700x_CHIP_HAS_<peripheral>
50932
50933     to indicate the availability of the given peripheral on the currently
50934     selected chip.
50935
50936     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50937
50938 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
50939 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50940 Date:   Mon Oct 29 13:09:56 2007 +0100
50941
50942     AVR32: Rename at32ap7000 -> at32ap700x
50943
50944     The SoC-specific code for all the AT32AP700x CPUs is practically
50945     identical; the only difference is that some chips have less features
50946     than others. By doing this rename, we can add support for the AP7000
50947     derivatives simply by making some features conditional.
50948
50949     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50950
50951 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
50952 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50953 Date:   Fri Jun 29 18:22:34 2007 +0200
50954
50955     atmel_mci: Show SR when block read fails
50956
50957     Show controller status as well as card status when an error occurs
50958     during block read.
50959
50960     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50961
50962 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
50963 Author: Stefan Roese <sr@denx.de>
50964 Date:   Thu Dec 13 14:52:53 2007 +0100
50965
50966     ppc4xx: Bring 4xx fdt support up-to-date
50967
50968     This patch update the 4xx fdt support. It enabled fdt booting
50969     on the AMCC Kilauea and Sequoia for now. More can follow later
50970     quite easily.
50971
50972     Signed-off-by: Stefan Roese <sr@denx.de>
50973
50974 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
50975 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50976 Date:   Thu Dec 13 12:56:34 2007 +0100
50977
50978     cfi_flash: Use map_physmem() and unmap_physmem()
50979
50980     Use map_physmem() and unmap_physmem() to convert from physical to
50981     virtual addresses. This gives the arch a chance to provide an uncached
50982     mapping for flash accesses.
50983
50984     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
50985
50986 commit 4d7d6936eb29af7cca330937808312aa5f61454d
50987 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
50988 Date:   Thu Dec 13 12:56:33 2007 +0100
50989
50990     Introduce map_physmem() and unmap_physmem()
50991
50992     map_physmem() returns a virtual address which can be used to access a
50993     given physical address without involving the cache. unmap_physmem()
50994     should be called when the virtual address returned by map_physmem() is
50995     no longer needed.
50996
50997     This patch adds a stub implementation which simply returns the
50998     physical address cast to a uchar * for all architectures except AVR32,
50999     which converts the physical address to an uncached virtual mapping.
51000     unmap_physmem() is a no-op on all architectures, but if any
51001     architecture needs to do such mappings through the TLB, this is the
51002     hook where those TLB entries can be invalidated.
51003
51004     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51005
51006 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
51007 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51008 Date:   Thu Dec 13 12:56:32 2007 +0100
51009
51010     cfi_flash: Introduce read and write accessors
51011
51012     Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
51013     them to access the flash memory. This makes it clearer when the flash
51014     is actually being accessed; merely dereferencing a volatile pointer
51015     looks just like any other kind of access.
51016
51017     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51018
51019 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
51020 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51021 Date:   Thu Dec 13 12:56:31 2007 +0100
51022
51023     Implement __raw_{read,write}[bwl] on all architectures
51024
51025     This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
51026     m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
51027     from Linux.
51028
51029     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51030
51031 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
51032 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51033 Date:   Sat Oct 6 18:55:36 2007 +0200
51034
51035     cfi_flash: Reorder functions and eliminate extra prototypes
51036
51037     Reorder the functions in cfi_flash.c so that each function only uses
51038     functions that have been defined before it. This allows the static
51039     prototype declarations near the top to be eliminated and might allow
51040     gcc to do a better job inlining functions.
51041
51042     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51043
51044 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
51045 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51046 Date:   Thu Dec 13 12:56:29 2007 +0100
51047
51048     cfi_flash: Make some needlessly global functions static
51049
51050     Make functions not declared in any header file static.
51051
51052     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51053
51054 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
51055 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51056 Date:   Thu Dec 13 12:56:28 2007 +0100
51057
51058     cfi_flash: Break long lines
51059
51060     This patch tries to keep all lines in the cfi_flash driver below 80
51061     columns. There are a few lines left which don't fit this requirement
51062     because I couldn't find any trivial way to break them (i.e. it would
51063     take some restructuring, which I intend to do in a later patch.)
51064
51065     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51066
51067 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
51068 Author: Bartlomiej Sieka <tur@semihalf.com>
51069 Date:   Tue Dec 11 13:59:57 2007 +0100
51070
51071     CFI: synchronize command offsets with Linux CFI driver
51072
51073     Fixes non-working CFI Flash on the Inka4x0 board.
51074
51075     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
51076
51077 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
51078 Author: Kumar Gala <galak@kernel.crashing.org>
51079 Date:   Fri Dec 7 12:17:34 2007 -0600
51080
51081     Handle MPC85xx PCIe reset errata (PCI-Ex 38)
51082
51083     On the MPC85xx boards that have PCIe enable the PCIe errata fix.
51084     (MPC8544DS, MPC8548CDS, MPC8568MDS).
51085
51086     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51087
51088 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
51089 Author: Kumar Gala <galak@kernel.crashing.org>
51090 Date:   Fri Dec 7 12:04:30 2007 -0600
51091
51092     Update Freescale MPC85xx ADS/CDS/MDS board config
51093
51094     * Enabled CONFIG_CMD_ELF
51095
51096     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51097
51098 commit d435793229ce29a42797c1edc39f5b34f987f91a
51099 Author: Kumar Gala <galak@kernel.crashing.org>
51100 Date:   Fri Dec 7 04:59:26 2007 -0600
51101
51102     Handle Asynchronous DDR clock on 85xx
51103
51104     The MPC8572 introduces the concept of an asynchronous DDR clock with
51105     regards to the platform clock.
51106
51107     Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
51108     mode.
51109
51110     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51111
51112 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
51113 Author: Kumar Gala <galak@kernel.crashing.org>
51114 Date:   Thu Nov 29 10:34:28 2007 -0600
51115
51116     Update Freescale MPC85xx ADS/CDS/MDS board config
51117
51118     * Removed some misc environment setup
51119     * Enabled CONFIG_CMDLINE_EDITING
51120
51121     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51122
51123 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
51124 Author: Kumar Gala <galak@kernel.crashing.org>
51125 Date:   Thu Nov 29 10:47:44 2007 -0600
51126
51127     Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
51128
51129     Minor path corrections needed to ensure buildability.
51130
51131     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51132
51133 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
51134 Author: Kumar Gala <galak@kernel.crashing.org>
51135 Date:   Thu Nov 29 10:16:18 2007 -0600
51136
51137     Move the MPC8540 ADS board under board/freescale.
51138
51139     Minor path corrections needed to ensure buildability.
51140
51141     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51142
51143 commit 870ceac5b3a3486c109396e005af81ae762b5710
51144 Author: Kumar Gala <galak@kernel.crashing.org>
51145 Date:   Thu Nov 29 10:14:50 2007 -0600
51146
51147     Move the MPC8560 ADS board under board/freescale.
51148
51149     Minor path corrections needed to ensure buildability.
51150
51151     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51152
51153 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
51154 Author: Kumar Gala <galak@kernel.crashing.org>
51155 Date:   Thu Nov 29 10:13:47 2007 -0600
51156
51157     Move the MPC8568 MDS board under board/freescale.
51158
51159     Minor path corrections needed to ensure buildability.
51160
51161     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51162
51163 commit a853d56c59b33415304531443633808736acfc6e
51164 Author: Kumar Gala <galak@kernel.crashing.org>
51165 Date:   Thu Nov 29 02:18:59 2007 -0600
51166
51167     Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
51168
51169     We already had defines for LAWAR_TRGT_IF_* that we should use
51170     rather than creating new ones.  Also, added some missing defines for
51171     PCIE targets.
51172
51173     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51174
51175 commit 04db400892da37b76a585e332a0c137954ad2015
51176 Author: Kumar Gala <galak@kernel.crashing.org>
51177 Date:   Thu Nov 29 02:10:09 2007 -0600
51178
51179     Stop using immap_t on 85xx
51180
51181     In the future the offsets to various blocks may not be in same location.
51182     Move to using CFG_MPC85xx_*_ADDR as the base of the registers
51183     instead of getting it via &immap.
51184
51185     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51186
51187 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
51188 Author: Kumar Gala <galak@kernel.crashing.org>
51189 Date:   Thu Nov 29 01:23:09 2007 -0600
51190
51191     Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
51192
51193     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51194
51195 commit c480861bf000156e6a3e932c258db59ff2212dd3
51196 Author: Kumar Gala <galak@kernel.crashing.org>
51197 Date:   Thu Nov 29 01:06:19 2007 -0600
51198
51199     Update MPC8568 MDS to use libfdt
51200
51201     Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
51202     ethernet, pci, and serial for the various fixups that are done.
51203
51204     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51205
51206 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
51207 Author: Haiying Wang <Haiying.Wang@freescale.com>
51208 Date:   Wed Nov 14 15:52:06 2007 -0500
51209
51210     Add PCI Express support on MPC8568MDS
51211
51212     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
51213     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51214
51215 commit b90d25497625b90ffa3f2911a0895ca237556ff5
51216 Author: Kumar Gala <galak@kernel.crashing.org>
51217 Date:   Thu Nov 29 00:11:44 2007 -0600
51218
51219     Update MPC85xx CDS to use libfdt
51220
51221     Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
51222     ethernet, pci, and serial for the various fixups that are done.
51223
51224     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51225
51226 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
51227 Author: Kumar Gala <galak@kernel.crashing.org>
51228 Date:   Wed Nov 28 22:54:27 2007 -0600
51229
51230     Update MPC8540 ADS to use libfdt
51231
51232     Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
51233     ethernet, pci, and serial for the various fixups that are done.
51234
51235     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51236
51237 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
51238 Author: Kumar Gala <galak@kernel.crashing.org>
51239 Date:   Wed Nov 28 22:40:31 2007 -0600
51240
51241     Update MPC8560 ADS to use libfdt
51242
51243     Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
51244     ethernet, pci, and serial for the various fixups that are done.
51245
51246     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51247
51248 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
51249 Author: Kumar Gala <galak@kernel.crashing.org>
51250 Date:   Wed Nov 28 00:36:33 2007 -0600
51251
51252     Stop using immap_t for cpm offset on 85xx
51253
51254     In the future the offsets to various blocks may not be in same location.
51255     Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
51256     instead of getting it via &immap->im_cpm.
51257
51258     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51259
51260 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
51261 Author: Kumar Gala <galak@kernel.crashing.org>
51262 Date:   Tue Nov 27 23:25:02 2007 -0600
51263
51264     Stop using immap_t for guts offset on 85xx
51265
51266     In the future the offsets to various blocks may not be in same location.
51267     Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
51268     instead of getting it via &immap->im_gur.
51269
51270     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51271
51272 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
51273 Author: Kumar Gala <galak@kernel.crashing.org>
51274 Date:   Tue Nov 27 22:42:34 2007 -0600
51275
51276     Update MPC8544 DS config
51277
51278     * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
51279     * Removed some misc environment setup
51280     * Moved to using fdtfile & fdtaddr as fdt env var names
51281     * Enabled CONFIG_CMDLINE_EDITING
51282
51283     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51284
51285 commit addce57e2e4c49e77ffb2020a84690713bb18b47
51286 Author: Kumar Gala <galak@kernel.crashing.org>
51287 Date:   Mon Nov 26 17:12:24 2007 -0600
51288
51289     Update MPC8544DS to use libfdt
51290
51291     Updated the MPC8544DS config to use libfdt and assume use of aliases for
51292     ethernet, pci, and serial for the various fixups that are done.
51293
51294     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51295
51296 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
51297 Author: Kumar Gala <galak@kernel.crashing.org>
51298 Date:   Thu Nov 29 00:15:30 2007 -0600
51299
51300     Add libfdt based ft_cpu_setup for mpc85xx
51301
51302     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51303
51304 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
51305 Author: Stefan Roese <sr@denx.de>
51306 Date:   Tue Dec 11 13:38:19 2007 +0100
51307
51308     ppc4xx: Correct GPIO offset in gpio_config()
51309
51310     Thanks to Gary Jennejohn for pointing this out.
51311
51312     Signed-off-by: Stefan Roese <sr@denx.de>
51313
51314 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
51315 Author: Stefan Roese <sr@denx.de>
51316 Date:   Tue Dec 11 11:46:01 2007 +0100
51317
51318     rtc: Fix merging problem
51319
51320     Signed-off-by: Stefan Roese <sr@denx.de>
51321
51322 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
51323 Author: Stefan Roese <sr@denx.de>
51324 Date:   Sat Dec 8 14:47:34 2007 +0100
51325
51326     ppc4xx: 405EX: Correctly enable USB pins
51327
51328     This patch selects the USB data pins in the 405EX GPIO and MFC (multi
51329     function control) registers. This is done for the AMCC Kilauea and
51330     Makalu eval boards.
51331
51332     Signed-off-by: Stefan Roese <sr@denx.de>
51333
51334 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
51335 Author: Stefan Roese <sr@denx.de>
51336 Date:   Sat Dec 8 08:25:09 2007 +0100
51337
51338     CFI: Coding style cleanup
51339
51340     Signed-off-by: Stefan Roese <sr@denx.de>
51341
51342 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
51343 Author: Michael Schwingen <michael@schwingen.org>
51344 Date:   Fri Dec 7 23:35:02 2007 +0100
51345
51346     CFI: support JEDEC flash roms in CFI-flash framework
51347
51348     The following patch adds support for non-CFI flash ROMS, by hooking into the
51349     CFI flash code and using most of its code, as recently discussed here in the
51350     thread "Mixing CFI and non-CFI flashs".
51351
51352     Signed-off-by: Michael Schwingen <michael@schwingen.org>
51353     Signed-off-by: Stefan Roese <sr@denx.de>
51354
51355 commit c01b17dd856fa120b2970f50d9598546a4927ec3
51356 Author: Gerald Van Baren <vanbaren@cideas.com>
51357 Date:   Wed Nov 28 21:24:50 2007 -0500
51358
51359     Conditionally compile fdt_fixup_ethernet()
51360
51361     Fix compiler warnings: On boards that don't have ethernets defined,
51362     don't compile fdt_fixup_ethernet().
51363
51364 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
51365 Author: Kumar Gala <galak@kernel.crashing.org>
51366 Date:   Tue Nov 27 21:59:46 2007 -0600
51367
51368     Convert boards that set memory node to use fdt_fixup_memory()
51369
51370     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51371
51372 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
51373 Author: Kumar Gala <galak@kernel.crashing.org>
51374 Date:   Mon Nov 26 17:06:15 2007 -0600
51375
51376     Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
51377
51378     We use a combination of the serialN alias and CONFIG_CONS_INDEX to
51379     determine which serial alias we should set linux,stdout-path to.
51380
51381     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51382
51383 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
51384 Author: Kumar Gala <galak@kernel.crashing.org>
51385 Date:   Mon Nov 26 14:57:45 2007 -0600
51386
51387     Add common memory fixup function
51388
51389     Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
51390
51391     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51392
51393 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
51394 Author: Kumar Gala <galak@kernel.crashing.org>
51395 Date:   Mon Nov 26 11:19:12 2007 -0600
51396
51397     Conditionally compile fdt_support.c
51398
51399     Modify common/Makefile to conditionally compile fdt_support.c based
51400     on CONFIG_OF_LIBFDT.
51401
51402     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51403
51404 commit d88e7ba0980773479e1a64badb293116071b7ef0
51405 Author: Kumar Gala <galak@kernel.crashing.org>
51406 Date:   Mon Nov 26 10:41:40 2007 -0600
51407
51408     Fix build breakage due to libfdt import
51409
51410     The IDS8247 got lost in the update and need an API update
51411     do to rename of functions in libfdt.
51412
51413     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51414
51415 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
51416 Author: Gerald Van Baren <vanbaren@cideas.com>
51417 Date:   Fri Nov 23 19:43:20 2007 -0500
51418
51419     Add spaces around the = in the fdt print format.
51420
51421     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
51422
51423 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
51424 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51425 Date:   Fri Dec 7 01:25:38 2007 +0900
51426
51427     sh: Moved driver of the SuperH dependence
51428
51429     The composition of the directory in the drivers/ changed.
51430     I moved SuperH serial driver and marubun PCMCIA driver.
51431
51432     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51433
51434 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
51435 Author: Wolfgang Denk <wd@denx.de>
51436 Date:   Thu Dec 6 10:21:19 2007 +0100
51437
51438     Release v1.3.1
51439
51440     Signed-off-by: Wolfgang Denk <wd@denx.de>
51441
51442 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
51443 Author: Wolfgang Denk <wd@denx.de>
51444 Date:   Thu Dec 6 10:21:03 2007 +0100
51445
51446     ADS5121 Board: fix compile problem.
51447
51448     Signed-off-by: Wolfgang Denk <wd@denx.de>
51449
51450 commit a27044b14a9e93678a82d7b35f202b93e7687abc
51451 Author: Stefan Roese <sr@denx.de>
51452 Date:   Thu Dec 6 05:58:43 2007 +0100
51453
51454     ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
51455
51456     This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
51457     setting the FIXD bit in the SDR0_MFR register. Here a description of the
51458     symptoms:
51459
51460     Problem Description
51461     ------------------------------
51462     If a DMA is performed between memory and PCI with the DMA 1 Controller
51463     using prefetch, and as a result uses a special purpose buffer selected by
51464     the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
51465     the first part of the transfer sequence is performed twice. The
51466     PPC440SPe PCI Controller requests more data than was needed such that in
51467     the case of enforce memory protection, a host CPU  exception can occur.
51468     No data is corrupted, because data transfer is stopped in the PCI
51469     Controller. Prefetch enable is specified by setting DMA Configuration
51470     Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
51471
51472     Behavior that may be observed in a running system
51473     ---------------------------------------------------------------------------
51474
51475     1. DMA performance is decreased because of the double access on the PCI bus
51476     interface.
51477     2. If an illegal access to some address on the PCI bus is detected at the
51478     system level, a machine check or similar system error may occur.
51479
51480     Workarounds Available
51481     ----------------------------------
51482
51483     1. Do not program prefetch. Note that a prefetch command cannot be programmed
51484     without selecting a special purpose buffer.
51485     2. To avoid crossing a physical boundary of the PCI slave device, add 512
51486     bytes of address to the PCI address range.
51487
51488     This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
51489     from AMCC and slighly changed.
51490
51491     Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
51492     Signed-off-by: Stefan Roese <sr@denx.de>
51493
51494 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
51495 Author: Stefan Roese <sr@denx.de>
51496 Date:   Tue Dec 4 16:29:48 2007 +0100
51497
51498     ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
51499
51500     Signed-off-by: Stefan Roese <sr@denx.de>
51501
51502 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
51503 Author: Wolfgang Denk <wd@denx.de>
51504 Date:   Mon Dec 3 00:15:28 2007 +0100
51505
51506     Prepare for 1.3.1-rc1
51507
51508     Signed-off-by: Wolfgang Denk <wd@denx.de>
51509
51510 commit e15e33433e7c05111968dc9b434a52fd42cbd221
51511 Author: Stefan Roese <sr@denx.de>
51512 Date:   Fri Nov 30 07:15:41 2007 +0100
51513
51514     ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
51515
51516     This manual PCIe reset triggering solves the problem seen with the
51517     Intel EPRO/1000 card, which was not detected (link not established)
51518     upon power-up reset.
51519
51520     Signed-off-by: Stefan Roese <sr@denx.de>
51521
51522 commit 260eea5676ca46903a335686cc020b29c4ca46fe
51523 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51524 Date:   Thu Nov 29 01:21:54 2007 +0900
51525
51526     sh: Add SuperH boards maintainer to MAINTAINERS file
51527
51528     Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
51529
51530     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51531
51532 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
51533 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51534 Date:   Thu Nov 29 00:13:04 2007 +0900
51535
51536     sh: Add ms7750se support in MAKEALL
51537
51538     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51539
51540 commit c7144373427a178332bf9754131c8c34c52c200a
51541 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51542 Date:   Tue Nov 27 09:44:53 2007 +0100
51543
51544     sh: Add sh3 and sh4 support in MAKEALL
51545
51546     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51547     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51548
51549 commit 130080874a3d28450098481a262c5f7c855e908d
51550 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51551 Date:   Sun Nov 25 02:51:17 2007 +0900
51552
51553     sh: Add document for SuperH.
51554
51555     This document is a summary of information concerning SuperH of U-Boot.
51556
51557     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51558
51559 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
51560 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51561 Date:   Sun Nov 25 02:39:31 2007 +0900
51562
51563     sh: Add marubun's pcmcia driver
51564
51565     Marubun pcmcia is a chip for PCMCIA used with SuperH.
51566     Of course, this can be used even by other architectures.
51567     When use this driver, came to be able to use CompactFlash
51568     and Ethernet.
51569
51570     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51571
51572 commit febd86b969b975289ed948f1ac0eb9722da41ced
51573 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51574 Date:   Sun Nov 25 02:32:13 2007 +0900
51575
51576     sh: Update SuperH SCIF driver
51577
51578     - Changed volatile unsigned to vu_.
51579     - Changed Makefile for kconfig.
51580
51581     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51582
51583 commit 8be760903645af09871be50ad0a6f9ebb62b311d
51584 Author: Stefan Roese <sr@denx.de>
51585 Date:   Tue Nov 27 11:57:35 2007 +0100
51586
51587     ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
51588
51589     After an error in the AMCC 405EX users manual now correctly configure
51590     IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
51591     usage.
51592
51593     Signed-off-by: Stefan Roese <sr@denx.de>
51594
51595 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
51596 Author: Wolfgang Denk <wd@denx.de>
51597 Date:   Mon Nov 26 19:18:21 2007 +0100
51598
51599     Cleanup coding style; update CHANGELOG
51600
51601     Signed-off-by: Wolfgang Denk <wd@denx.de>
51602
51603 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
51604 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51605 Date:   Sun Nov 25 22:39:25 2007 +0100
51606
51607     MAKEALL: add missing 512x boards in ppc
51608
51609     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51610
51611 commit a340c325e668ca7386c2276387681720be9c3757
51612 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51613 Date:   Sun Nov 25 18:45:47 2007 +0100
51614
51615     Makefile : fix tags ctags etags with new drivers organization
51616
51617     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51618
51619 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
51620 Author: Stefan Roese <sr@denx.de>
51621 Date:   Mon Nov 26 15:06:14 2007 +0100
51622
51623     ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
51624
51625     As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
51626     operation.
51627
51628     Signed-off-by: Stefan Roese <sr@denx.de>
51629
51630 commit ca1ce226287270bb01e25b8e3674c701f12edf19
51631 Author: Stefan Roese <sr@denx.de>
51632 Date:   Mon Nov 26 15:01:45 2007 +0100
51633
51634     ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
51635
51636     Signed-off-by: Stefan Roese <sr@denx.de>
51637
51638 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
51639 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51640 Date:   Sun Nov 25 18:45:47 2007 +0100
51641
51642     Makefile : fix tags ctags etags with new drivers organization
51643
51644     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51645
51646 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
51647 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51648 Date:   Sat Nov 24 21:26:56 2007 +0100
51649
51650     drivers/mtd : move mtd drivers to drivers/mtd
51651
51652     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51653
51654 commit 318c0b90431f2648552e5ade78833f42652ce859
51655 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51656 Date:   Sat Nov 24 21:17:55 2007 +0100
51657
51658     drivers/misc : move misc drivers to drivers/misc
51659
51660     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51661
51662 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
51663 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51664 Date:   Sat Nov 24 21:13:59 2007 +0100
51665
51666     drivers/block : move block drivers to drivers/block
51667
51668     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51669
51670 commit 0c698dcaa70275eb8814f665b545547cee013892
51671 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51672 Date:   Sat Nov 24 20:59:50 2007 +0100
51673
51674     drivers/rtc : move rtc drivers to drivers/rtc
51675
51676     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51677
51678 commit f868cc5a50757d94f36c312395481cb0f187d9e6
51679 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51680 Date:   Sat Nov 24 20:14:44 2007 +0100
51681
51682     drivers/hwmon : move hardware monitor drviers to drivers/hwmon
51683
51684     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51685
51686 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
51687 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51688 Date:   Sat Nov 24 19:46:45 2007 +0100
51689
51690     drivers/input : move input drivers to drivers/input
51691
51692     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51693
51694 commit e4558666293364fc3af1c1d9381ca933fa0f1275
51695 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51696 Date:   Sat Nov 24 19:40:11 2007 +0100
51697
51698     drivers/usb : move usb drivers to drivers/usb
51699
51700     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51701
51702 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
51703 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51704 Date:   Sat Nov 24 19:33:38 2007 +0100
51705
51706     drivers/serial : move serial drivers to drivers/serial
51707
51708     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51709
51710 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
51711 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51712 Date:   Wed Nov 21 21:19:24 2007 +0100
51713
51714     drivers/net : move net drivers to drivers/net
51715
51716     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51717
51718 commit 352d259130b349fe9593b8dada641bd78a9659e5
51719 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51720 Date:   Tue Nov 20 20:41:48 2007 +0100
51721
51722     drivers/video : move video drivers to drivers/video
51723
51724     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51725
51726 commit 73646217186aa17afc8e305c5f06f06dd335eaad
51727 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51728 Date:   Tue Nov 20 20:33:09 2007 +0100
51729
51730     drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
51731
51732     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51733
51734 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
51735 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51736 Date:   Tue Nov 20 20:28:09 2007 +0100
51737
51738     drivers/pci : move pci drivers to drivers/pci
51739
51740     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51741
51742 commit 9162352817579840d7802da6d85872b3ca003c97
51743 Author: Gerald Van Baren <vanbaren@cideas.com>
51744 Date:   Thu Nov 22 17:23:23 2007 -0500
51745
51746     Fix fdt printing for updated libfdt
51747
51748     Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
51749
51750     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
51751
51752 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
51753 Author: Kumar Gala <galak@kernel.crashing.org>
51754 Date:   Wed Nov 21 13:30:15 2007 -0600
51755
51756     Add additional fdt fixup helper functions
51757
51758     Added the following fdt fixup helpers:
51759      * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
51760      * do_fixup_by_compat{_u32} - Find matching nodes by compat
51761
51762     The _u32 variants work the same only the property they are setting
51763     is know to be a 32-bit integer instead of a byte buffer.
51764
51765     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51766
51767 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
51768 Author: Kumar Gala <galak@kernel.crashing.org>
51769 Date:   Wed Nov 21 11:11:03 2007 -0600
51770
51771     Add fdt_fixup_ethernet helper to set mac addresses
51772
51773     Added a fixup helper that uses aliases to set mac addresses
51774     in the device tree based on the bd_t
51775
51776     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51777
51778 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
51779 Author: Kumar Gala <galak@kernel.crashing.org>
51780 Date:   Wed Nov 21 14:07:46 2007 -0600
51781
51782     Fix warnings from import of libfdt
51783
51784     cmd_fdt.c: In function fdt_print:
51785     cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
51786     cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
51787     cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
51788     cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
51789
51790     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51791
51792 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
51793 Author: Kumar Gala <galak@kernel.crashing.org>
51794 Date:   Wed Oct 24 11:04:22 2007 -0500
51795
51796     Update libfdt from device tree compiler (dtc)
51797
51798     Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
51799     the device tree compiler (dtc) project.
51800
51801     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51802
51803 commit e93becf80d732b64aef81b23e8b6ece02c40533d
51804 Author: Kumar Gala <galak@kernel.crashing.org>
51805 Date:   Sat Nov 3 19:46:28 2007 -0500
51806
51807     Move do_fixup* for libfdt into common code
51808
51809     Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
51810     into common/fdt_support.c and renamed:
51811
51812     do_fixup()  -> do_fixup_by_path()
51813     do_fixup_u32()      -> do_fixup_by_path_u32()
51814
51815     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51816
51817 commit f738b4a75998f42a7408defadc9baac7a31c92db
51818 Author: Kumar Gala <galak@kernel.crashing.org>
51819 Date:   Thu Oct 25 16:15:07 2007 -0500
51820
51821     Make no options to fdt print default to '/'
51822
51823     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51824
51825 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
51826 Author: Kumar Gala <galak@kernel.crashing.org>
51827 Date:   Wed Oct 24 10:21:57 2007 -0500
51828
51829     Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
51830
51831     Removed:
51832         fdt_node_is_compatible
51833         fdt_find_node_by_type
51834         fdt_find_compatible_node
51835
51836     To ease merge of newer libfdt as we aren't using them anywhere at this time.
51837
51838     Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
51839     reason.
51840
51841     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51842
51843 commit 98e2867cc85409b919f862e6c16026461ec955df
51844 Author: Grant Likely <grant.likely@secretlab.ca>
51845 Date:   Wed Nov 21 09:19:37 2007 -0700
51846
51847     [BUILD] Remove libraries when updating autoconf.mk
51848
51849     Fix library problems caused by conditional compilation.  Using
51850     autoconf.mk to decide which files to compile has caused a problem when
51851     changing configuration from one board to another without clearing out
51852     the library (*.a) files.
51853
51854     It used to be that the linker was always passed the same list of .o
51855     files when building the .a files.  However, that is not longer true
51856     with conditional compilation.  Now, a different board config will have
51857     a different file list passed to the linker.  The problem occurs when
51858     a library has already been built and the board config is changed.
51859
51860     Since the linker will update instead of replace a preexisting library,
51861     then if the file list changes to remove some object files the old
51862     objects will still exist in the library.
51863
51864     The solution is to remove all old library files when autoconf.mk is
51865     made.
51866
51867     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
51868
51869 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
51870 Author: Kumar Gala <galak@kernel.crashing.org>
51871 Date:   Wed Nov 21 08:49:50 2007 -0600
51872
51873     [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
51874
51875     Modify libfdt/Makefile to conditionally compile the *.c files based
51876     on the board config.
51877
51878     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51879
51880 commit 4a43719a7738712811d822ca8125427b27a55cdc
51881 Author: Grant Likely <grant.likely@secretlab.ca>
51882 Date:   Mon Sep 24 09:05:31 2007 -0600
51883
51884     [BUILD] conditionally compile common/cmd_*.c in common/Makefile
51885
51886     Modify common/Makefile to conditionally compile the cmd_*.c files based
51887     on the board config.
51888
51889     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
51890
51891 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
51892 Author: Grant Likely <grant.likely@secretlab.ca>
51893 Date:   Mon Sep 24 09:05:31 2007 -0600
51894
51895     [BUILD] Generate include/autoconf.mk from board config files
51896
51897     Use cpp and sed to postprocess config.h and import the defined values
51898     into include/autoconf.mk.  autoconf.mk is then included by config.mk to
51899     give 'make' access to the board configuration.
51900
51901     Doing this enables conditional compilation at the Makefile level instead
51902     of by wrapping every .c file with #ifdef/#endif wrappers.
51903
51904     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
51905
51906 commit 68b88999da87ab88e71e1306192905be3450198e
51907 Author: Jon Loeliger <jdl@freescale.com>
51908 Date:   Tue Nov 20 15:02:26 2007 -0600
51909
51910     8610HPCD: Enable the 8610 Display Interface Unit
51911
51912     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51913
51914 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
51915 Author: Jon Loeliger <jdl@freescale.com>
51916 Date:   Tue Nov 20 15:00:53 2007 -0600
51917
51918     Move 8610 DIU interface structure definitions to header file.
51919
51920     These two structures are still needed during the
51921     initialization and setup of the DIU hardware.
51922     So move them to the fsl_diu_fb.h file for now.
51923     Official "blah".
51924
51925     Noticed-by: York Sun <yorksun@freescale.com>
51926     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51927
51928 commit 080c646dbf474a109c3f85718fb01ce042a38c45
51929 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51930 Date:   Tue Nov 20 20:14:18 2007 +0100
51931
51932     drivers/i2c : move i2c drivers to drivers/i2c
51933
51934     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51935
51936 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
51937 Author: Wolfgang Denk <wd@denx.de>
51938 Date:   Mon Nov 19 22:20:24 2007 +0100
51939
51940     Prepare for 1.3.0 release.
51941
51942     Signed-off-by: Wolfgang Denk <wd@denx.de>
51943
51944 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
51945 Author: Haiying Wang <Haiying.Wang@freescale.com>
51946 Date:   Mon Nov 19 10:02:13 2007 -0500
51947
51948     Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
51949
51950     CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
51951
51952     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
51953
51954 commit f8c320609366176b31104d9bf5e295232e1c7f1d
51955 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
51956 Date:   Mon Nov 19 11:14:16 2007 +0900
51957
51958     [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
51959
51960     lowlevel_init.S: Assembler messages:
51961     lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
51962
51963     Looking at codes, the `memtest' and `clearmem' are intentional mixed
51964     use of `global symbols' and `label' for debugging purpose. To make it
51965     build, just disable global-symbols-use for now. As a result `memtest'
51966     still remains as unused, but leave it be...
51967
51968     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
51969
51970 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
51971 Author: Wolfgang Denk <wd@denx.de>
51972 Date:   Mon Nov 19 12:59:14 2007 +0100
51973
51974     Fix build problems with mp2usb board
51975
51976     Signed-off-by: Wolfgang Denk <wd@denx.de>
51977
51978 commit 6bf4c686afca1e86e1c384d59218f914605713bf
51979 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51980 Date:   Sun Nov 18 18:36:11 2007 +0100
51981
51982     s3c24x0: Fix usb_ohci.c missing in Makefile
51983     and usb_ohci.c warning differ in signedness
51984
51985     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51986
51987 commit 6073f61e078da5ddb521b56256bcc36508589883
51988 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51989 Date:   Sun Nov 18 12:55:02 2007 +0100
51990
51991     pb1x00 board: Fix u16 status declaration when PCMCIA is defined
51992
51993     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51994
51995 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
51996 Author: Wolfgang Denk <wd@denx.de>
51997 Date:   Sun Nov 18 17:11:09 2007 +0100
51998
51999     Fix compiler warnings for ARM systems.
52000
52001     Signed-off-by: Wolfgang Denk <wd@denx.de>
52002
52003 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
52004 Author: Wolfgang Denk <wd@denx.de>
52005 Date:   Sun Nov 18 16:36:27 2007 +0100
52006
52007     Fix compiler warnings for PPC systems. Update CHANGELOG.
52008
52009     Signed-off-by: Wolfgang Denk <wd@denx.de>
52010
52011 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
52012 Author: Stefan Roese <sr@denx.de>
52013 Date:   Sun Nov 18 14:44:44 2007 +0100
52014
52015     ppc4xx: Correct 405EX PCIe UTL register mapping
52016
52017     Map 4k mem space for UTL registers for each port.
52018
52019     Signed-off-by: Stefan Roese <sr@denx.de>
52020
52021 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
52022 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52023 Date:   Sat Nov 17 11:31:10 2007 +0100
52024
52025     Fix warning differ in signedness in net/net.c and net/nfs.c
52026
52027 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
52028 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52029 Date:   Sat Nov 17 20:42:45 2007 +0900
52030
52031     gth2.c: Fix a warning on gth2 build.
52032
52033     gth2.c: In function 'misc_init_r':
52034     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
52035
52036     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52037
52038 commit 2309c130aa4c84b91bd874a41269c923eb61b555
52039 Author: Stefan Roese <sr@denx.de>
52040 Date:   Sat Nov 17 07:58:25 2007 +0100
52041
52042     Fix warning differ in signedness in common/cmd_scsi.c
52043
52044     Signed-off-by: Stefan Roese <sr@denx.de>
52045
52046 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
52047 Author: Stefan Roese <sr@denx.de>
52048 Date:   Sat Nov 17 14:52:29 2007 +0100
52049
52050     ppc4xx: Update AMCC Kilauea config file
52051
52052     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
52053
52054     Signed-off-by: Stefan Roese <sr@denx.de>
52055
52056 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
52057 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52058 Date:   Sat Nov 17 20:05:26 2007 +0900
52059
52060     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
52061
52062     Current trick to pick up GNU assembler minor version does not work with the
52063     latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
52064     "(GNU Binutils) ".
52065
52066       $ sde-as --version |grep "GNU assembler"
52067       GNU assembler 2.15.94 mipssde-6.02.02-20050602
52068       $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
52069       2.15.94
52070       $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
52071       15
52072       $
52073
52074       $ mips-linux-as --version |grep "GNU assembler"
52075       GNU assembler (GNU Binutils) 2.18
52076       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
52077       (GNU
52078       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
52079       (no output)
52080       $
52081
52082     As a result of above, you'll see many noises with such binutils:
52083
52084       make -C cpu/mips/
52085       /bin/sh: line 0: [: : integer expression expected
52086       /bin/sh: line 0: [: : integer expression expected
52087       make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
52088       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
52089       /bin/sh: line 0: [: : integer expression expected
52090       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
52091       /bin/sh: line 0: [: : integer expression expected
52092       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
52093       /bin/sh: line 0: [: : integer expression expected
52094
52095     This patch simplifies the trick and makes it work with both versions of gas.
52096     I also replace an expensive `awk (or gawk)' with `cut'.
52097
52098     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52099
52100 commit 16664f72850846e645616da1c0fa5afcd6d15f15
52101 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52102 Date:   Sat Nov 17 20:05:26 2007 +0900
52103
52104     [MIPS] Remove useless instructions for initializing $gp.
52105
52106     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52107
52108 commit 03c031d5660ea946c39af6e2e16267da857c609f
52109 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52110 Date:   Sat Oct 27 15:27:06 2007 +0900
52111
52112     [MIPS] MIPS 4K core: Coding style cleanups
52113
52114     No logical changes.
52115
52116     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52117
52118 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
52119 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52120 Date:   Sat Nov 17 20:05:20 2007 +0900
52121
52122     [MIPS] gth2.c: Fix a warning on gth2 build.
52123
52124     gth2.c: In function 'misc_init_r':
52125     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
52126
52127     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52128
52129 commit 4fbd0741b2b6441da10be93e10267122581b7079
52130 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52131 Date:   Sat Oct 27 15:22:33 2007 +0900
52132
52133     [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
52134
52135     au1x00_eth.c: In function 'au1x00_miiphy_write':
52136     au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
52137
52138     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52139
52140 commit f01320459736f156707425cf8112f98606301aa4
52141 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52142 Date:   Sat Oct 27 15:00:25 2007 +0900
52143
52144     [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
52145
52146     au1x00_eth.c: In function 'au1x00_enet_initialize':
52147     au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
52148     au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
52149     au1x00_eth.c:246: error: for each function it appears in.)
52150     au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
52151     au1x00_eth.c: In function 'au1x00_miiphy_write':
52152     au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
52153     make[1]: *** [au1x00_eth.o] Error 1
52154
52155     Fixed by moving these two functions forward.
52156
52157     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52158
52159 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
52160 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52161 Date:   Sat Oct 27 15:00:25 2007 +0900
52162
52163     MAKEALL: Added missing pb1000 board
52164
52165     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52166
52167 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
52168 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52169 Date:   Sat Oct 27 15:00:24 2007 +0900
52170
52171     [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
52172
52173     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52174
52175 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
52176 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52177 Date:   Sat Oct 27 15:00:24 2007 +0900
52178
52179     [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
52180
52181     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52182
52183 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
52184 Author: Wolfgang Denk <wd@denx.de>
52185 Date:   Sat Nov 17 02:34:38 2007 +0100
52186
52187     Update CHANGELOIG, prepare for -rc4
52188
52189     Signed-off-by: Wolfgang Denk <wd@denx.de>
52190
52191 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
52192 Author: Luotao Fu <l.fu@pengutronix.de>
52193 Date:   Wed Nov 14 18:58:33 2007 +0100
52194
52195     Fix the i2c frequency and default address in rsdproto board
52196
52197     rsdproto board support has wrong I2C frequency and wrong return value
52198     handling.
52199
52200     Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
52201
52202 commit 429c180edad038f91c989cb14b478228092e7054
52203 Author: Wolfgang Denk <wd@denx.de>
52204 Date:   Sat Nov 17 01:45:38 2007 +0100
52205
52206     powerpc: Backout relocation changes for MPC5121, too.
52207
52208     Apply Grant Likely's backout to MPC5121 code, too.
52209
52210     Pointed out by Rafal Jaworowski <raj@semihalf.com>
52211
52212     Signed-off-by: Wolfgang Denk <wd@denx.de>
52213
52214 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
52215 Author: Grant Likely <grant.likely@secretlab.ca>
52216 Date:   Tue Nov 13 22:18:33 2007 -0700
52217
52218     powerpc: Backout relocation changes.
52219
52220     Ugh.  I *hate* to back this change out, but these compiler flags don't
52221     work for relocation on all versions of GCC.  I've not been able to
52222     reproduce the environment in my setup (and hence, not been able to
52223     find a combination that *does* work), so I've got no choice but to go
52224     back to the old gcc flags and linker script.
52225
52226     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52227
52228 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
52229 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52230 Date:   Tue Nov 13 09:11:05 2007 +0100
52231
52232     Fixed mips_io_port_base build errors.
52233
52234     This patch has been sent on:
52235     - 29 Sep 2007
52236
52237     Although mips_io_port_base is currently a part of IDE command, it is quite
52238     fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
52239     it to MIPS general part, and introduce `set_io_port_base()' from Linux.
52240
52241     This patch is triggered by multiple definition of `mips_io_port_base' build
52242     error on gth2 (and tb0229 also needs this fix.)
52243
52244     board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
52245     /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
52246     common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
52247     make: *** [u-boot] Error 1
52248
52249     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52250     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52251
52252 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
52253 Author: Wolfgang Denk <wd@denx.de>
52254 Date:   Sat Nov 17 01:30:40 2007 +0100
52255
52256     Fix a bug in the slave serial programming mode for the Xilinx
52257     Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
52258     the most significant bit was set, which did not work on any
52259     architecture where "char" defaulted to be an unsigned type.
52260
52261     Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
52262
52263     Signed-off-by: Wolfgang Denk <wd@denx.de>
52264
52265 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
52266 Author: Jon Loeliger <jdl@freescale.com>
52267 Date:   Thu Nov 1 12:23:29 2007 -0500
52268
52269     86xx: Fix broken variable reference when #def DEBUGing.
52270
52271     Sometimes you can't reference the DDR2 controller variables.
52272
52273     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52274
52275 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
52276 Author: Jason Jin <Jason.jin@freescale.com>
52277 Date:   Fri Oct 26 18:32:00 2007 +0800
52278
52279     make 8610 board use pixis reset
52280
52281     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
52282
52283 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
52284 Author: Jason Jin <Jason.jin@freescale.com>
52285 Date:   Mon Oct 29 19:26:21 2007 +0800
52286
52287     Unify pixis_reset altbank across board families
52288
52289     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
52290     into the separate board config files.
52291
52292     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
52293     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52294
52295 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
52296 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52297 Date:   Wed Nov 7 08:19:21 2007 +0100
52298
52299     Fix warning: pointer targets in assignment differ in signedness
52300
52301     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52302
52303 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
52304 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52305 Date:   Wed Nov 7 08:19:19 2007 +0100
52306
52307     Fix warning differ in signedness in common/cmd_ide.c
52308
52309     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52310
52311 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
52312 Author: Stefan Roese <sr@denx.de>
52313 Date:   Fri Nov 16 14:16:54 2007 +0100
52314
52315     ppc4xx: Enable 405EX PCIe UTL register configuration
52316
52317     Till now the UTL registers on 405EX were not initialized but left with
52318     their default values. This patch new initializes some of the UTL
52319     registers on 405EX.
52320
52321     Signed-off-by: Stefan Roese <sr@denx.de>
52322
52323 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
52324 Author: Stefan Roese <sr@denx.de>
52325 Date:   Fri Nov 16 14:00:59 2007 +0100
52326
52327     ppc4xx: Update AMCC Makalu for board rev 1.1
52328
52329     This patch adds changes needed for Makalu rev 1.1:
52330
52331     - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
52332     - Enable 2nd ethernet port EMAC1
52333     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
52334     - Reset PCIe ports via GPIO upon bootup
52335
52336     Signed-off-by: Stefan Roese <sr@denx.de>
52337
52338 commit 4d4faae65e115e327425cd514c1a35146a85166b
52339 Author: Grant Likely <grant.likely@secretlab.ca>
52340 Date:   Mon Sep 24 09:05:31 2007 -0600
52341
52342     Group PCI and PCMCIA drivers in drivers/Makefile
52343
52344     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52345
52346 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
52347 Author: Grant Likely <grant.likely@secretlab.ca>
52348 Date:   Mon Sep 24 09:05:31 2007 -0600
52349
52350     Group block/flash drivers in drivers/Makefile
52351
52352     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52353
52354 commit df58c81551700f058b44cacf55a7997fa63bfe0a
52355 Author: Grant Likely <grant.likely@secretlab.ca>
52356 Date:   Mon Sep 24 09:05:31 2007 -0600
52357
52358     Group USB drivers in drivers/Makefile
52359
52360     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52361
52362 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
52363 Author: Grant Likely <grant.likely@secretlab.ca>
52364 Date:   Mon Sep 24 09:05:30 2007 -0600
52365
52366     Group i2c drivers in drivers/Makefile
52367
52368     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52369
52370 commit ec00c76de0e5971273905998d62d6bb119324218
52371 Author: Grant Likely <grant.likely@secretlab.ca>
52372 Date:   Mon Sep 24 09:05:30 2007 -0600
52373
52374     Group console drivers in drivers/Makefile
52375
52376     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52377
52378 commit 754f230aa01b8c789fc31f8013c2487954073300
52379 Author: Grant Likely <grant.likely@secretlab.ca>
52380 Date:   Mon Sep 24 09:05:30 2007 -0600
52381
52382     Group network drivers in drivers/Makefile
52383
52384     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52385
52386 commit f0037c56b0d12cd46215124667b9f83d60ef9391
52387 Author: Grant Likely <grant.likely@secretlab.ca>
52388 Date:   Mon Sep 24 09:05:30 2007 -0600
52389
52390     Build: split COBJS value into multiple lines
52391
52392     This change is in preparation for condtitionial compile support in the
52393     build system.  By spliting them all into seperate lines now, subsequent
52394     patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
52395     be less invasive and easier to review
52396
52397     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52398
52399 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
52400 Author: Grant Likely <grant.likely@secretlab.ca>
52401 Date:   Mon Sep 24 09:05:30 2007 -0600
52402
52403     Add .gitignore files
52404
52405     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52406     Acked-by: Kim Phillips <kim.phillips@freescale.com>
52407
52408 commit 955413f35f054a82e40042f1dbcf501c6a05719b
52409 Author: Grant Likely <grant.likely@secretlab.ca>
52410 Date:   Thu Nov 15 08:27:52 2007 -0700
52411
52412     Revert "Correct relocation fixup for mpc5xx"
52413
52414     This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
52415     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52416
52417 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
52418 Author: Grant Likely <grant.likely@secretlab.ca>
52419 Date:   Thu Nov 15 08:24:32 2007 -0700
52420
52421     Revert "Correct fixup relocation for MPC5xxx"
52422
52423     This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
52424     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52425
52426 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
52427 Author: Grant Likely <grant.likely@secretlab.ca>
52428 Date:   Thu Nov 15 08:21:04 2007 -0700
52429
52430     Revert "Correct fixup relocation for mpc8220"
52431
52432     This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
52433     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52434
52435 commit 70922342369e5e39b286fe21e768a239ca07a514
52436 Author: Grant Likely <grant.likely@secretlab.ca>
52437 Date:   Thu Nov 15 08:20:57 2007 -0700
52438
52439     Revert "Correct fixup relocation for mpc824x"
52440
52441     This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
52442     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52443
52444 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
52445 Author: Grant Likely <grant.likely@secretlab.ca>
52446 Date:   Thu Nov 15 08:20:50 2007 -0700
52447
52448     Revert "Correct fixup relocation for mpc8260"
52449
52450     This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
52451     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52452
52453 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
52454 Author: Grant Likely <grant.likely@secretlab.ca>
52455 Date:   Thu Nov 15 08:20:43 2007 -0700
52456
52457     Revert "Correct fixup relocation for mpc83xx"
52458
52459     This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
52460     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52461
52462 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
52463 Author: Grant Likely <grant.likely@secretlab.ca>
52464 Date:   Thu Nov 15 08:20:25 2007 -0700
52465
52466     Revert "[MPC512x] Correct fixup relocation"
52467
52468     This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
52469     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52470
52471 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
52472 Author: Stefan Roese <sr@denx.de>
52473 Date:   Thu Nov 15 14:25:09 2007 +0100
52474
52475     ppc4xx: Small AMCC Kilauea cleanup
52476
52477     Remove not needed pci_target_init() function.
52478
52479     Signed-off-by: Stefan Roese <sr@denx.de>
52480
52481 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
52482 Author: Stefan Roese <sr@denx.de>
52483 Date:   Thu Nov 15 14:23:55 2007 +0100
52484
52485     ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
52486
52487     - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
52488     - Cleanup of the 4xx GPIO functions
52489     - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
52490
52491     Signed-off-by: Stefan Roese <sr@denx.de>
52492
52493 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
52494 Author: Stefan Roese <sr@denx.de>
52495 Date:   Thu Nov 15 14:20:08 2007 +0100
52496
52497     ppc4xx: AMCC Taihu board config file cleanup
52498
52499     This patch makes the AMCC Taihu a little more compatible to the other
52500     AMCC eval boards.
52501
52502     Signed-off-by: Stefan Roese <sr@denx.de>
52503
52504 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
52505 Author: Marian Balakowicz <m8@semihalf.com>
52506 Date:   Thu Nov 15 13:37:28 2007 +0100
52507
52508     [INKA4x0] NG hardware: flash support
52509
52510     Disabled and remove inka4x0 custom flash driver, use CFI flash
52511     driver instead.
52512
52513     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
52514
52515 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
52516 Author: Marian Balakowicz <m8@semihalf.com>
52517 Date:   Thu Nov 15 13:29:55 2007 +0100
52518
52519     [INKA4x0] NG hardware: SDRAM support
52520
52521     Add support for three new DDR chips that may  be present on a NG
52522     INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
52523
52524     Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
52525
52526     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
52527
52528 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
52529 Author: Marian Balakowicz <m8@semihalf.com>
52530 Date:   Thu Nov 15 13:24:43 2007 +0100
52531
52532     [INKA4x0] NG hardware: platform code update
52533
52534     - Cleanup compile warnings.
52535     - Add missing '\0' in default environment.
52536     - Increase CFG_MONITOR_LEN to 256 KiB.
52537     - Add required CFG_USE_PPCENV.
52538
52539     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
52540
52541 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
52542 Author: Peter Pearse <peter.pearse@arm.com>
52543 Date:   Thu Nov 15 08:58:00 2007 +0000
52544
52545     Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
52546     Remove warnings re onenand_read() & write()
52547
52548 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
52549 Author: Peter Pearse <peter.pearse@arm.com>
52550 Date:   Thu Nov 15 08:45:13 2007 +0000
52551
52552     Correction patch
52553
52554 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
52555 Author: Roy Zang <tie-fei.zang@freescale.com>
52556 Date:   Thu Sep 13 18:52:28 2007 +0800
52557
52558     Enable ULi1575 Ethernet support in 8610HPCD config
52559
52560     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
52561     Acked-by: Jon Loeliger <jdl@freescale.com>
52562
52563 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
52564 Author: Stefan Roese <sr@denx.de>
52565 Date:   Tue Nov 13 08:18:20 2007 +0100
52566
52567     ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
52568
52569     Signed-off-by: Stefan Roese <sr@denx.de>
52570
52571 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
52572 Author: Stefan Roese <sr@denx.de>
52573 Date:   Tue Nov 13 08:06:11 2007 +0100
52574
52575     ppc4xx: Fix 405EX PCIe UTLSET register setup
52576
52577     Signed-off-by: Stefan Roese <sr@denx.de>
52578
52579 commit 1ce55151c85d068f70317a8d65c61058b891afb4
52580 Author: Heiko Schocher <hs@denx.de>
52581 Date:   Tue Nov 13 07:50:29 2007 +0100
52582
52583     [UC101] SRAM now with 2 MB working.
52584
52585     Signed-off-by: Heiko Schocher <hs@denx.de>
52586
52587 commit 2d14684341109a69616e4d6016cd61402d55086f
52588 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52589 Date:   Fri Nov 9 15:37:53 2007 +0100
52590
52591     ppc4xx: Use generic usb-ohci driver for sequoia board
52592
52593     This patch makes the sequoia board use the generic usb-ohci driver
52594     instead of cpu/ppc4xx/usb_ohci.c.
52595
52596     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52597     Signed-off-by: Stefan Roese <sr@denx.de>
52598
52599 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
52600 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52601 Date:   Fri Nov 9 15:37:23 2007 +0100
52602
52603     ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
52604
52605     This patch disables the 44x d-cache on 'usb start' and
52606     reenables it on 'usb stop'. This should be seen as a
52607     temporary fix until the generic usb-ohci driver can
52608     life with d-cache enabled.
52609
52610     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52611     Signed-off-by: Stefan Roese <sr@denx.de>
52612
52613 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
52614 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52615 Date:   Fri Nov 9 15:36:44 2007 +0100
52616
52617     ppc4xx: Remove redundant code from 4xx network driver
52618
52619     This patch removes some redundant code and decrements the end
52620     address of cache flush and invalidate by 1.
52621
52622     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52623     Signed-off-by: Stefan Roese <sr@denx.de>
52624
52625 commit 5ca9881aad8c413ac2a82868a5e3719178254502
52626 Author: Peter Pearse <peter.pearse@arm.com>
52627 Date:   Fri Nov 9 15:24:26 2007 +0000
52628
52629     Add apollon board support
52630     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
52631
52632 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
52633 Author: Stefan Roese <sr@denx.de>
52634 Date:   Fri Nov 9 12:19:58 2007 +0100
52635
52636     ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
52637
52638     Signed-off-by: Stefan Roese <sr@denx.de>
52639
52640 commit c7f69c340277935a6c19a956421852da944a365f
52641 Author: Stefan Roese <sr@denx.de>
52642 Date:   Fri Nov 9 12:18:54 2007 +0100
52643
52644     ppc4xx: Make output a little shorter on I2C bootrom detection
52645
52646     Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
52647     already print a line with the information which I2C bootrom is
52648     used for bootstrap configuration. So we don't need this extra line
52649     with "I2C boot EEPROM en-/dis-abled".
52650
52651     This patch also has a little code cleanup integrated.
52652
52653     Signed-off-by: Stefan Roese <sr@denx.de>
52654
52655 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
52656 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52657 Date:   Thu Nov 8 12:50:18 2007 -0600
52658
52659     ColdFire: MCF5329 - Remove reset registers from CCM
52660
52661     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52662
52663 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
52664 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52665 Date:   Thu Nov 8 12:31:11 2007 -0600
52666
52667     ColdFire: MCF5329 - Add Reset structure to immap_5329.h
52668
52669     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52670
52671 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
52672 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52673 Date:   Thu Nov 8 12:19:01 2007 -0600
52674
52675     ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
52676
52677     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52678
52679 commit 225a24b5e062ad94627424508ae814f51dbe1a34
52680 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52681 Date:   Wed Nov 7 18:00:54 2007 -0600
52682
52683     ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
52684
52685     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52686
52687 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
52688 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52689 Date:   Wed Nov 7 17:56:15 2007 -0600
52690
52691     ColdFire: MCF532x - Update do_reset() using core reset
52692
52693     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52694
52695 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
52696 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52697 Date:   Wed Nov 7 17:51:00 2007 -0600
52698
52699     ColdFire: Update cpu flag for 4.2-xx compiler
52700
52701     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
52702
52703 commit 070ba56115b4da63b46e974287fa4550d4023386
52704 Author: York Sun <yorksun@freescale.com>
52705 Date:   Wed Oct 31 14:59:04 2007 -0500
52706
52707     8610: Add console frame buffer support to FSL 8610 DIU driver.
52708
52709     Add cfb console support to FSL 8610 DIU driver.
52710     Inspect board version from PIXIS to obtain correct pixel format.
52711
52712     Use #define CONFIG_VIDEO in config file to enable fb console.
52713
52714     To switch monitor, set monitor variable to
52715     0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
52716     followed by "diufb init".
52717
52718     Preserve logo bitmap at the top of the fb console.
52719
52720     Signed-off-by: York Sun <yorksun@freescale.com>
52721     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52722
52723 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
52724 Author: York Sun <yorksun@freescale.com>
52725 Date:   Mon Oct 29 13:58:39 2007 -0500
52726
52727     8610: Add 8610 DIU display driver
52728
52729     1280x1024 and 1024x768 @ 32 bpp are supported now.
52730     DVI, Single-link LVDS, Double-link LVDS are all supported.
52731
52732     Environmental variable "monitor" is used to specify monitor port.
52733
52734     A new command "diufb" is introduced to reinitialize monitor
52735     and display a BMP file in the memory. So far, 1-bit, 4-bit,
52736     8-bit and 24-bit BMP formats are supported.
52737
52738         diufb init
52739             - initialize the diu driver
52740         Enable the port specified in the environmental variable "monitor"
52741
52742         diufb addr
52743             - display bmp file in memory.
52744         The bmp image should be no bigger than the resolution, 1280x1024
52745         for DVI and double-link LVDS, 1024x768 for single-link LVDS.
52746
52747     Note, this driver allocate memory but doesn't free it after use
52748     It is written on purpose -- to avoid a failure of reallocation
52749     due to memory fragement.
52750
52751     ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
52752
52753     Signed-off-by: York Sun <yorksun@freescale.com>
52754     Signed-off-by: Jon loeliger <jdl@freescale.com>
52755
52756 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
52757 Author: York Sun <yorksun@freescale.com>
52758 Date:   Wed Oct 31 10:43:59 2007 -0500
52759
52760     FSL: Add a freescale bitmap logo.
52761
52762     This Freescale logo is a 340 x 128 x 4bpp BMP file
52763     that can be displayed by the DIU Framebuffer driver.
52764
52765     Signed-off-by: York Sun <yorksun@freescale.com>
52766     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52767
52768 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
52769 Author: York Sun <yorksun@freescale.com>
52770 Date:   Mon Oct 29 13:57:53 2007 -0500
52771
52772     8610: Make some extra debug environment variables conditional.
52773
52774     One may #define ENV_DEBUG to get them back again.
52775
52776     Signed-off-by: York Sun <yorksun@freescale.com>
52777
52778 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
52779 Author: Jason Jin <Jason.jin@freescale.com>
52780 Date:   Mon Oct 29 19:26:21 2007 +0800
52781
52782     8610: Actually enable pixis_reset CONFIGs
52783
52784     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
52785
52786 commit f3bceaab230b4748d0afc4109b6837308f018b40
52787 Author: Jason Jin <Jason.jin@freescale.com>
52788 Date:   Fri Oct 26 18:31:59 2007 +0800
52789
52790     Fix the BAT definition of PCI IO on 8610 board
52791
52792     The address in the BAT register is aligned with the BAT size.
52793     The original definition actually did not define BAT for PCIE2 IO.
52794     This patch fix this.
52795
52796     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
52797
52798 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
52799 Author: Jason Jin <Jason.jin@freescale.com>
52800 Date:   Mon Oct 29 19:26:21 2007 +0800
52801
52802     Unify pixis_reset altbank across board families
52803
52804     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
52805     into the separate board config files.
52806
52807     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
52808     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52809
52810 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
52811 Author: Jason Jin <Jason.jin@freescale.com>
52812 Date:   Fri Oct 26 18:32:00 2007 +0800
52813
52814     make 8610 board use pixis reset
52815
52816     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
52817
52818 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
52819 Author: Jon Loeliger <jdl@freescale.com>
52820 Date:   Thu Nov 1 12:23:29 2007 -0500
52821
52822     86xx: Fix broken variable reference when #def DEBUGing.
52823
52824     Sometimes you can't reference the DDR2 controller variables.
52825
52826     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52827
52828 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
52829 Author: Roy Zang <tie-fei.zang@freescale.com>
52830 Date:   Mon Nov 5 17:39:24 2007 +0800
52831
52832     Implement general ULi 526x Ethernet driver support in U-boot
52833
52834     This patch implements general ULi 526x Ethernet driver.
52835     Until now, it is the only native Ethernet port on
52836     MPC8610HPCD board, but it could be used on other boards
52837     with ULi 526x Ethernet port as well.
52838
52839     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
52840     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
52841     Acked-by: Jon Loeliger <jdl@freescale.com>
52842     Signed-off-by: Ben Warren <bwarren@qstreams.com>
52843
52844 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
52845 Author: Larry Johnson <lrj@arlinx.com>
52846 Date:   Thu Nov 1 08:46:50 2007 -0500
52847
52848     NET: Add Ethernet 1000BASE-X support for PPC4xx
52849
52850     This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
52851     "miiphy_duplex()".  It also adds function "miiphy_is_1000base_x ()", which
52852     returns non-zero iff the PHY registers are configured for 1000BASE-X.  The
52853     "mii info" command is modified to distinguish between 1000BASE-T and -X.
52854
52855     Signed-off-by: Larry Johnson <lrj@acm.org>
52856     Signed-off-by: Ben Warren <bwarren@qstreams.com>
52857
52858 commit 298035df4948b113d29ac0e694717d34b95bc5dc
52859 Author: Larry Johnson <lrj@arlinx.com>
52860 Date:   Wed Oct 31 11:21:29 2007 -0500
52861
52862     NET: Cosmetic changes
52863
52864     Signed-off-by: Larry Johnson <lrj@acm.org>
52865     Signed-off-by: Ben Warren <bwarren@qstreams.com>
52866
52867 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
52868 Author: Stefan Roese <sr@denx.de>
52869 Date:   Mon Nov 5 07:43:05 2007 +0100
52870
52871     ppc4xx: Make output a little shorter on PCIe detection
52872
52873     Now not max 3 lines but 2 lines are printed per PCIe port.
52874
52875     Signed-off-by: Stefan Roese <sr@denx.de>
52876
52877 commit 992742a5b09d9040adbd156fb90756af66ade310
52878 Author: Wolfgang Denk <wd@denx.de>
52879 Date:   Sat Nov 3 23:09:27 2007 +0100
52880
52881     Cleanup coding style; update CHANGELOG
52882
52883     Signed-off-by: Wolfgang Denk <wd@denx.de>
52884
52885 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
52886 Author: Bruce Adler <bruce.adler@ccpu.com>
52887 Date:   Fri Nov 2 13:15:42 2007 -0700
52888
52889     fix wording in README
52890
52891     Changed the wording to properly describe the shadowing
52892     of the environment from ROM to RAM
52893
52894     Signed-off-by: Bruce Adler <bruce.adler@acm.org>
52895
52896 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
52897 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52898 Date:   Wed Oct 31 02:18:15 2007 +0900
52899
52900     blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
52901
52902     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52903
52904 commit ec22755799466c8a103664bb3a5e647bf9c238f4
52905 Author: Vlad Lungu <vlad@comsys.ro>
52906 Date:   Thu Oct 25 16:08:14 2007 +0300
52907
52908     Trimmed some variables in ne2000.c
52909
52910     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
52911
52912 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
52913 Author: Zhang Wei <wei.zhang@freescale.com>
52914 Date:   Thu Oct 25 17:51:27 2007 +0800
52915
52916     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
52917
52918     The scan code of the key 'z' is 0x1d, which should be handled.
52919
52920     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
52921     controller.
52922
52923     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
52924
52925 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
52926 Author: Zhang Wei <wei.zhang@freescale.com>
52927 Date:   Thu Oct 25 17:30:04 2007 +0800
52928
52929     Fix USB support issue for MPC8641HPCN board.
52930
52931     The configuration file has already enabled USB, but it
52932     missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
52933     on MPC8641HPCN can not work because of the wrong USB
52934     register endian.
52935
52936     And add the USB command to U-Boot commands list.
52937
52938     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
52939
52940 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
52941 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52942 Date:   Wed Oct 24 18:16:01 2007 +0200
52943
52944     Use config_cmd_default.h instead of config_cmd_all.h
52945
52946     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52947
52948 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
52949 Author: Marian Balakowicz <m8@semihalf.com>
52950 Date:   Wed Oct 24 01:37:36 2007 +0200
52951
52952     TQM5200: Call usb_cpu_init() during board init
52953
52954     usb_cpu_init() configures GPS USB pins, clocks, etc. and
52955     is required for proper operation of kernel USB subsystem.
52956     This setup was previously done in the kernel by the fixup
52957     code which is being removed, thus low level init must be
52958     done by U-boot now.
52959
52960     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
52961
52962 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
52963 Author: Guennadi Liakhovetski <lg@denx.de>
52964 Date:   Tue Oct 23 16:25:50 2007 +0200
52965
52966     Fix typo in nfs.c
52967
52968     An obvious typo. Originally fixed in linkstation u-boot port.
52969
52970     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
52971
52972 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
52973 Author: Guennadi Liakhovetski <lg@denx.de>
52974 Date:   Tue Oct 23 14:35:05 2007 +0200
52975
52976     Fix a typo in cpu/mpc824x/interrupts.c
52977
52978     Since December 2003 the timer_interrupt_cpu() function in
52979     cpu/mpc824x/interrupts.c contains what seems to be a superfluous
52980     parameter. Remove it.
52981
52982     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
52983
52984 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
52985 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
52986 Date:   Wed Oct 17 11:13:51 2007 +0200
52987
52988     add ft_cpu_setup(..) on mpc8260
52989
52990     Add ft_cpu_setup(..)-function to adapt it for use with libfdt
52991     based on code from mpc5xxx
52992
52993     Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
52994     --
52995
52996 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
52997 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
52998 Date:   Wed Oct 17 11:18:42 2007 +0200
52999
53000     changes for IDS8247 board support
53001
53002     To get the IDS8247 board working following are done:
53003      - FCC2 is deactivated
53004      - FCC1 is activated
53005      - I2C is activated
53006      - CFI driver is activated
53007      - Adapted for use with LIBFDT
53008
53009     Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
53010     --
53011
53012 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
53013 Author: Stefan Roese <sr@denx.de>
53014 Date:   Sat Nov 3 12:08:28 2007 +0100
53015
53016     ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
53017
53018     This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
53019     Again, only one image supports both targets.
53020
53021     Signed-off-by: Stefan Roese <sr@denx.de>
53022
53023 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
53024 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53025 Date:   Wed Oct 24 15:48:37 2007 +0200
53026
53027     ATSTK1002: Remove default ethernet addresses
53028
53029     Wolfgang is right: It's not a good idea to set up default initial
53030     ethernet addresses for a board, even though they belong to the local
53031     range.
53032
53033     This will change the failure mode from "IT manager screams at you for
53034     using duplicate ethernet addresses" to a nice error message explaining
53035     that the ethernet address hasn't been set properly.
53036
53037     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53038
53039 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
53040 Author: Justin Flammia <jflammia@savantav.com>
53041 Date:   Mon Oct 29 17:40:35 2007 -0400
53042
53043     DHCP Client Fix
53044
53045     This is a multi-part message in MIME format.
53046
53047     commit e6e505eae94ed721e123e177489291fc4544b7b8
53048     Author: Justin Flammia <jflammia@savantav.com>
53049     Date:   Mon Oct 29 17:19:03 2007 -0400
53050
53051         Found a bug in the way the DHCP Request packet is built, where the IP address
53052         that is offered by the server is bound to prematurely. This patch is a fix of
53053         that bug where the IP address offered by the DHCP server is not used until
53054         after the DHCP ACK from the server is received.
53055
53056     Signed-off-by: Justin Flammia <jflammia@savantav.com>
53057     Signed-off-by: Ben Warren <bwarren@qstreams.com>
53058
53059 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
53060 Author: Stefan Roese <sr@denx.de>
53061 Date:   Wed Oct 31 20:58:34 2007 +0100
53062
53063     ppc4xx: Fix acadia_nand build problem
53064
53065     Since the cache handling functions were moved from start.S into cache.S
53066     the acadia NAND booting Makfile needs to be adapted accordingly.
53067
53068     Signed-off-by: Stefan Roese <sr@denx.de>
53069
53070 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
53071 Author: Stefan Roese <sr@denx.de>
53072 Date:   Wed Oct 31 20:57:11 2007 +0100
53073
53074     ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
53075
53076     This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
53077     and to the Sequoia TLB init code. Now the cache can be enabled on 44x
53078     boards by defining CONFIG_4xx_DCACHE in the board config file. This
53079     option will disappear, when more boards use is successfully and no
53080     more known problems exist.
53081
53082     This is tested successfully on Sequoia and Katmai. The only problem that
53083     needs to be fixed is, that USB is not working on Sequoia right now, since
53084     it will need some cache handling code too, similar to the 4xx EMAC driver.
53085
53086     Signed-off-by: Stefan Roese <sr@denx.de>
53087
53088 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
53089 Author: Stefan Roese <sr@denx.de>
53090 Date:   Wed Oct 31 20:51:10 2007 +0100
53091
53092     ppc4xx: Enable CPU POST test for 4xx with dcache enabled
53093
53094     Now with caches enabled (i- and d-cache) on 44x, we need a chance to
53095     disable the cache for the CPU POST tests, since these tests consist
53096     of self modifying code. This is done via the new change_tlb() function.
53097
53098     Signed-off-by: Stefan Roese <sr@denx.de>
53099
53100 commit f71b2888b4b3c870909a0341427b2a914246f81f
53101 Author: Stefan Roese <sr@denx.de>
53102 Date:   Wed Oct 31 20:47:26 2007 +0100
53103
53104     ppc4xx: Change 4xx POST ethernet test to handle cached memory too
53105
53106     This patch enables the 4xx EMAC POST driver to work too, when dcache is
53107     enabled.
53108
53109     Signed-off-by: Stefan Roese <sr@denx.de>
53110
53111 commit a2685904061b35a17583d65fe47cdc2686a69eaa
53112 Author: Stefan Roese <sr@denx.de>
53113 Date:   Wed Oct 31 20:45:53 2007 +0100
53114
53115     ppc4xx: Remove temporary TLB entry in POST cache test only for 440
53116
53117     Signed-off-by: Stefan Roese <sr@denx.de>
53118
53119 commit ff768cb168d8157c24a25016dbfbeb465e47f420
53120 Author: Stefan Roese <sr@denx.de>
53121 Date:   Wed Oct 31 18:01:24 2007 +0100
53122
53123     ppc4xx: Change 4xx ethernet driver to handle cached memory too
53124
53125     This patch enables the 4xx EMAC driver to work too, when dcache is
53126     enabled.
53127
53128     Signed-off-by: Stefan Roese <sr@denx.de>
53129
53130 commit 483e09a223c666269ef81d3573a6591b1046b0ef
53131 Author: Stefan Roese <sr@denx.de>
53132 Date:   Wed Oct 31 17:59:22 2007 +0100
53133
53134     ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
53135
53136     This function is used to either turn cache on or off in a specific
53137     memory area.
53138
53139     Signed-off-by: Stefan Roese <sr@denx.de>
53140
53141 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
53142 Author: Stefan Roese <sr@denx.de>
53143 Date:   Wed Oct 31 17:57:52 2007 +0100
53144
53145     ppc4xx: Remove cache definition from 4xx board config files
53146
53147     All 4xx board config files don't need the cache definitions anymore.
53148     These are now defined in common headers.
53149
53150     Signed-off-by: Stefan Roese <sr@denx.de>
53151
53152 commit 9b94ac61d2176185c30adf0793e079ec30e68687
53153 Author: Stefan Roese <sr@denx.de>
53154 Date:   Wed Oct 31 17:55:58 2007 +0100
53155
53156     ppc4xx: Rework 4xx cache support
53157
53158     New cache handling functions added and all existing functions
53159     moved from start.S into seperate cache.S.
53160
53161     Signed-off-by: Stefan Roese <sr@denx.de>
53162
53163 commit 06713773da4ac3d390c63d82641eb553224b27c2
53164 Author: Stefan Roese <sr@denx.de>
53165 Date:   Tue Oct 23 18:03:12 2007 +0200
53166
53167     ppc4xx: Remove compiler warning from previous commit
53168
53169     Signed-off-by: Stefan Roese <sr@denx.de>
53170
53171 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
53172 Author: Stefan Roese <sr@denx.de>
53173 Date:   Tue Oct 23 14:40:30 2007 +0200
53174
53175     ppc4xx: Remove temporary TLB entry in POST cache test
53176
53177     Signed-off-by: Stefan Roese <sr@denx.de>
53178
53179 commit 1338e6a81834099ba19733b69aafd8ef5f098094
53180 Author: Stefan Roese <sr@denx.de>
53181 Date:   Tue Oct 23 14:05:08 2007 +0200
53182
53183     ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
53184
53185     I lately noticed, that newer 4xx board with GBit support sometimes don't
53186     finish link autonegotiation in 4 seconds. Changing this timeout to 5
53187     seconds seems fine here.
53188
53189     Signed-off-by: Stefan Roese <sr@denx.de>
53190
53191 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
53192 Author: Stefan Roese <sr@denx.de>
53193 Date:   Tue Oct 23 14:03:17 2007 +0200
53194
53195     ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
53196
53197     This patch changes all in32/out32 calls to use the recommended in_be32/
53198     out_be32 macros instead.
53199
53200     Signed-off-by: Stefan Roese <sr@denx.de>
53201
53202 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
53203 Author: Stefan Roese <sr@denx.de>
53204 Date:   Thu Oct 25 12:24:59 2007 +0200
53205
53206     ppc4xx: Fix POST ethernet test for Haleakala
53207
53208     The POST ethernet test needed to be changed to dynamically determine
53209     the count of ethernet devices. This code is cloned from the 4xx
53210     ethernet driver.
53211
53212     Signed-off-by: Stefan Roese <sr@denx.de>
53213
53214 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
53215 Author: Stefan Roese <sr@denx.de>
53216 Date:   Tue Oct 23 11:31:05 2007 +0200
53217
53218     ppc4xx: Correct UART input clock calculation and passing to fdt
53219
53220     We now use a value in the gd (global data) structure for the UART input
53221     frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
53222     in get_sys_info().
53223
53224     Signed-off-by: Stefan Roese <sr@denx.de>
53225
53226 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
53227 Author: Stefan Roese <sr@denx.de>
53228 Date:   Tue Oct 23 10:10:08 2007 +0200
53229
53230     ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
53231
53232     The Haleakala is nearly identical with the Kilauea eval board. The only
53233     difference is that the 405EXr only supports one EMAC and one PCIe
53234     interface. This patch adds support for the Haleakala board by using
53235     the identical image for Kilauea and Haleakala. The distinction is done
53236     by comparing the PVR.
53237
53238     Signed-off-by: Stefan Roese <sr@denx.de>
53239
53240 commit 9f798766aa85e62eb8fa8c721e148df609b78137
53241 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
53242 Date:   Tue Oct 23 08:29:10 2007 +0200
53243
53244     ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
53245
53246     This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
53247
53248     Note:
53249     As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
53250     DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
53251     modules are still plugged in. So it is recommended to remove the DIMM
53252     modules while using the NAND booting code with the fixed SDRAM setup!
53253
53254     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
53255     Signed-off-by: Stefan Roese <sr@denx.de>
53256
53257 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
53258 Author: Stefan Roese <sr@denx.de>
53259 Date:   Mon Oct 22 16:24:44 2007 +0200
53260
53261     ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
53262
53263     Signed-off-by: Stefan Roese <sr@denx.de>
53264
53265 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
53266 Author: Stefan Roese <sr@denx.de>
53267 Date:   Mon Oct 22 16:22:40 2007 +0200
53268
53269     ppc4xx: Rework of 4xx serial driver (4)
53270
53271     Change 4xx_uart.c:
53272
53273     - Use in_8/out_8 macros instead of in8/out8
53274     - No need for UART_BASE marco anymore, now really handled via function
53275       parameter
53276     - serial_init_common() introduced
53277     - Further coding style cleanup
53278
53279     Signed-off-by: Stefan Roese <sr@denx.de>
53280
53281 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
53282 Author: Stefan Roese <sr@denx.de>
53283 Date:   Mon Oct 22 15:45:49 2007 +0200
53284
53285     ppc4xx: Rework of 4xx serial driver (3)
53286
53287     Change all linker scripts to reference the changed driver name iop480_uart.o.
53288
53289     Signed-off-by: Stefan Roese <sr@denx.de>
53290
53291 commit 882ae41274921f9016131806bdeb27e19606f47a
53292 Author: Stefan Roese <sr@denx.de>
53293 Date:   Mon Oct 22 15:44:39 2007 +0200
53294
53295     ppc4xx: Rework of 4xx serial driver (2)
53296
53297     Change all linker scripts to reference the changed driver name 4xx_uart.o.
53298
53299     Note: In most cased all these explicit referencing of these object files
53300     in the linker scripts is not neccessary. Only for manually embedded
53301     environment into the U-Boot image, which is not done is most cases.
53302
53303     Signed-off-by: Stefan Roese <sr@denx.de>
53304
53305 commit ad31e40bed042cb670d0036fea96435007afb838
53306 Author: Stefan Roese <sr@denx.de>
53307 Date:   Mon Oct 22 15:09:59 2007 +0200
53308
53309     ppc4xx: Rework of 4xx serial driver (1)
53310
53311     This patch starts the rework of the PPC4xx serial driver. First we split
53312     the file into two seperate files, one 4xx_uart.c with the 405/440 UART
53313     handling code and the other one iop480_uart.c with the UART code for the
53314     PLX-Tech IOP480 PPC (PPC403 based).
53315
53316     Signed-off-by: Stefan Roese <sr@denx.de>
53317
53318 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
53319 Author: Stefan Roese <sr@denx.de>
53320 Date:   Mon Oct 22 10:30:38 2007 +0200
53321
53322     ppc4xx: Correct UART input clock calculation and passing to fdt
53323
53324     Signed-off-by: Stefan Roese <sr@denx.de>
53325
53326 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
53327 Author: Stefan Roese <sr@denx.de>
53328 Date:   Mon Oct 22 07:34:34 2007 +0200
53329
53330     ppc4xx: Add initial AMCC Makalu 405EX support
53331
53332     Signed-off-by: Stefan Roese <sr@denx.de>
53333
53334 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
53335 Author: Stefan Roese <sr@denx.de>
53336 Date:   Mon Oct 22 07:33:52 2007 +0200
53337
53338     ppc4xx: Add freqUART to CPU speed detection
53339
53340     This value is needed later for the device tree configuration of
53341     the uart clock.
53342
53343     Signed-off-by: Stefan Roese <sr@denx.de>
53344
53345 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
53346 Author: Stefan Roese <sr@denx.de>
53347 Date:   Sun Oct 21 14:26:29 2007 +0200
53348
53349     ppc: Small Kilauea cleanup of config file
53350
53351     Signed-off-by: Stefan Roese <sr@denx.de>
53352
53353 commit 758c037aeead34b49631b8da3a90b1bba14c0410
53354 Author: Stefan Roese <sr@denx.de>
53355 Date:   Sun Oct 21 08:16:12 2007 +0200
53356
53357     rtc: Add Xicor/Intersil X1205 RTC support
53358
53359     This patch adds support for the Xicor/Intersil X1205 RTC used on the
53360     AMCC Makalu eval board. This driver is basically cloned from the Linux
53361     driver version (2.6.23).
53362
53363     This patch also introduces the Linux bcd.h header for the BCD2BIN/
53364     BIN2BCD conversions. In the future some of the other U-Boot RTC driver
53365     should be converted to also use this header instead of implementing
53366     their own local copy of these functions/macros.
53367
53368     Signed-off-by: Stefan Roese <sr@denx.de>
53369
53370 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
53371 Author: Stefan Roese <sr@denx.de>
53372 Date:   Sun Oct 21 08:12:41 2007 +0200
53373
53374     ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
53375
53376     This patch moves some common 4xx macros and the PPC405_SYS_INFO/
53377     PPC440_SYS_INFO structure into the common ppc4xx.h header.
53378
53379     Lot's of other macros are good candidates to be consolidated this way
53380     in the future.
53381
53382     Signed-off-by: Stefan Roese <sr@denx.de>
53383
53384 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
53385 Author: Stefan Roese <sr@denx.de>
53386 Date:   Sun Oct 21 08:05:18 2007 +0200
53387
53388     ppc4xx: Fix size setup in Kilauea DDR2 init routine
53389
53390     The size was initilized wrong. Instead of 256MB, the DDR2 controller
53391     was setup to 512MB. Now the correct values is used.
53392
53393     This patch also does a little cleanup and adds a comment here.
53394
53395     Signed-off-by: Stefan Roese <sr@denx.de>
53396
53397 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
53398 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
53399 Date:   Thu Oct 18 17:29:04 2007 +0200
53400
53401     ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
53402
53403     CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
53404     number is used to access system registers.
53405
53406     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
53407     Signed-off-by: Stefan Roese <sr@denx.de>
53408
53409 commit c36c68160333ac5fe41ec3db12a728b7075b3912
53410 Author: Stefan Roese <sr@denx.de>
53411 Date:   Thu Oct 18 07:42:27 2007 +0200
53412
53413     ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
53414
53415     On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
53416     is the internal SRAM. Since I now ported and tested this endpoint mode
53417     on Kilauea successfully to map to 0 (SDRAM), I also changed this for
53418     Katmai.
53419
53420     Yucca will stay at internal SRAM for now. Not sure if somebody relies on
53421     this setup.
53422
53423     Signed-off-by: Stefan Roese <sr@denx.de>
53424
53425 commit 5cb4af4791f61843432155142b6cfac901f66c10
53426 Author: Stefan Roese <sr@denx.de>
53427 Date:   Thu Oct 18 07:39:38 2007 +0200
53428
53429     ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
53430
53431     This patch adds endpoint support for the AMCC Kilauea eval board. It can
53432     be tested by connecting a reworked PCIe cable (only 1x lane singles
53433     connected) to another root-complex.
53434
53435     In this test setup, a 64MB inbound window is configured at BAR0 which maps
53436     to 0 on the PLB side. So accessing this BAR0 from the root-complex will
53437     access the first 64MB of the SDRAM on the PPC side.
53438
53439     Signed-off-by: Stefan Roese <sr@denx.de>
53440
53441 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
53442 Author: Stefan Roese <sr@denx.de>
53443 Date:   Sat Oct 13 16:43:23 2007 +0200
53444
53445     ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
53446
53447     This patch adds support for dynamic configuration of PCIe ports for the
53448     AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
53449     boards Yucca & Katmai and the 405EX board Kilauea.
53450
53451     This dynamic configuration is done via the "pcie_mode" environement
53452     variable. This variable can be set to "EP" or "RP" for endpoint or
53453     rootpoint mode. Multiple values can be joined via the ":" delimiter.
53454     Here an example:
53455
53456     pcie_mode=RP:EP:EP
53457
53458     This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
53459     as endpoint.
53460
53461     Per default Yucca will be configured as:
53462     pcie_mode=RP:EP:EP
53463
53464     Per default Katmai will be configured as:
53465     pcie_mode=RP:RP:REP
53466
53467     Per default Kilauea will be configured as:
53468     pcie_mode=RP:RP
53469
53470     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
53471     Signed-off-by: Stefan Roese <sr@denx.de>
53472
53473 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
53474 Author: Stefan Roese <sr@denx.de>
53475 Date:   Thu Oct 11 11:15:59 2007 +0200
53476
53477     ppc4xx: Enable device tree support (fdt) on Kilauea per default
53478
53479     This patch enables the fdt support on the AMCC Kilauea eval board.
53480     Additionally now EBC ranges fdt fixup is included to support NOR
53481     FLASH mapping via the Linux physmap_of driver.
53482
53483     This Kilauea port now support booting arch/ppc and arch/powerpc
53484     Linux kernels. The default environment "net_nfs" is for arch/ppc
53485     and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
53486     support will be removed.
53487
53488     Signed-off-by: Stefan Roese <sr@denx.de>
53489
53490 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
53491 Author: Stefan Roese <sr@denx.de>
53492 Date:   Thu Oct 11 11:11:45 2007 +0200
53493
53494     ppc4xx: Add additional debug info to 4xx fdt support
53495
53496     Signed-off-by: Stefan Roese <sr@denx.de>
53497
53498 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
53499 Author: Stefan Roese <sr@denx.de>
53500 Date:   Fri Oct 5 21:28:58 2007 +0200
53501
53502     ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
53503
53504     Signed-off-by: Stefan Roese <sr@denx.de>
53505
53506 commit 1941cce71b1ae975602854045061e82f94ecd012
53507 Author: Stefan Roese <sr@denx.de>
53508 Date:   Fri Oct 5 17:35:10 2007 +0200
53509
53510     ppc4xx: Fix small merge problem in 4xx_enet.c
53511
53512     Signed-off-by: Stefan Roese <sr@denx.de>
53513
53514 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
53515 Author: Stefan Roese <sr@denx.de>
53516 Date:   Fri Oct 5 17:11:30 2007 +0200
53517
53518     ppc4xx: Add initial AMCC Kilauea 405EX support
53519
53520     Signed-off-by: Stefan Roese <sr@denx.de>
53521
53522 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
53523 Author: Stefan Roese <sr@denx.de>
53524 Date:   Fri Oct 5 17:10:59 2007 +0200
53525
53526     ppc4xx: Add PPC405EX support
53527
53528     Signed-off-by: Stefan Roese <sr@denx.de>
53529
53530 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
53531 Author: Stefan Roese <sr@denx.de>
53532 Date:   Fri Oct 5 17:09:36 2007 +0200
53533
53534     ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
53535
53536     Signed-off-by: Stefan Roese <sr@denx.de>
53537
53538 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
53539 Author: Stefan Roese <sr@denx.de>
53540 Date:   Fri Oct 5 17:07:50 2007 +0200
53541
53542     ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
53543
53544     Signed-off-by: Stefan Roese <sr@denx.de>
53545
53546 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
53547 Author: Stefan Roese <sr@denx.de>
53548 Date:   Fri Oct 5 17:04:57 2007 +0200
53549
53550     POST: Add 405EX support to 4xx UART POST test
53551
53552     Signed-off-by: Stefan Roese <sr@denx.de>
53553
53554 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
53555 Author: Stefan Roese <sr@denx.de>
53556 Date:   Fri Oct 5 15:10:02 2007 +0200
53557
53558     DTT: Prepare DS1775 driver for use of different I2C addresses
53559
53560     Signed-off-by: Stefan Roese <sr@denx.de>
53561
53562 commit 19e93b1e16d267220440d827b920fbad8abfa70f
53563 Author: Stefan Roese <sr@denx.de>
53564 Date:   Fri Oct 5 14:23:43 2007 +0200
53565
53566     ppc4xx: 4xx_pcie: Change PCIe status output to match common style
53567
53568     Signed-off-by: Stefan Roese <sr@denx.de>
53569
53570 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
53571 Author: Stefan Roese <sr@denx.de>
53572 Date:   Fri Oct 5 09:22:33 2007 +0200
53573
53574     ppc4xx: 4xx_pcie: Disable debug output as default
53575
53576     Signed-off-by: Stefan Roese <sr@denx.de>
53577
53578 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
53579 Author: Stefan Roese <sr@denx.de>
53580 Date:   Fri Oct 5 09:18:23 2007 +0200
53581
53582     ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
53583
53584     Signed-off-by: Stefan Roese <sr@denx.de>
53585
53586 commit 4dbee8a90df613eb517aadbecebd70f168913d30
53587 Author: Stefan Roese <sr@denx.de>
53588 Date:   Fri Oct 5 07:57:20 2007 +0200
53589
53590     ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
53591
53592     128MB seems to be the smallest possible value for the memory size
53593     for on PCIe port. With this change now the BAR's of the PCIe cards
53594     are accessible under U-Boot.
53595
53596     One big note: This only works for PCIe port 0 & 1. For port 2 this
53597     currently doesn't work, since the base address is now 0xc0000000
53598     (0xb0000000 + 2 * 0x08000000), and this is already occupied by
53599     CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
53600     to change the base addresses completely and this change would have
53601     too much impact right now.
53602
53603     This patch adds debug output to the 4xx pcie driver too.
53604
53605     Signed-off-by: Stefan Roese <sr@denx.de>
53606
53607 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
53608 Author: Stefan Roese <sr@denx.de>
53609 Date:   Wed Oct 3 21:16:32 2007 +0200
53610
53611     ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
53612
53613     Signed-off-by: Stefan Roese <sr@denx.de>
53614
53615 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
53616 Author: Stefan Roese <sr@denx.de>
53617 Date:   Wed Oct 3 15:01:02 2007 +0200
53618
53619     ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
53620
53621     These files were introduced with the IBM 405GP but are currently used on all
53622     4xx PPC platforms. So the name doesn't match the content anymore. This patch
53623     renames the files to 4xx_pci.c/h.
53624
53625     Signed-off-by: Stefan Roese <sr@denx.de>
53626
53627 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
53628 Author: Stefan Roese <sr@denx.de>
53629 Date:   Wed Oct 3 14:14:58 2007 +0200
53630
53631     ppc4xx: Add a comment for 405EX PCIe endpoint configuration
53632
53633     Signed-off-by: Stefan Roese <sr@denx.de>
53634
53635 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
53636 Author: Stefan Roese <sr@denx.de>
53637 Date:   Wed Oct 3 10:38:09 2007 +0200
53638
53639     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
53640
53641     (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
53642         the SDR registers of the PCIe ports. This makes the overall design
53643         clearer, since it removed a lot of switch statements which are not
53644         needed anymore.
53645
53646         Also, the functions ppc4xx_init_pcie_rootport() and
53647         ppc4xx_init_pcie_entport() are merged into a single function
53648         ppc4xx_init_pcie_port(), since most of the code was duplicated.
53649         This makes maintainance and porting to other 4xx platforms
53650         easier.
53651
53652     Signed-off-by: Stefan Roese <sr@denx.de>
53653
53654 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
53655 Author: Stefan Roese <sr@denx.de>
53656 Date:   Wed Oct 3 07:48:09 2007 +0200
53657
53658     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
53659
53660     This patch is the first patch of a series to make the 440SPe PCIe code
53661     usable on different 4xx PPC platforms. In preperation for the new 405EX
53662     which is also equipped with PCIe interfaces.
53663
53664     (2) This patch renames the functions from 440spe_ to 4xx_ with a
53665         little additional cleanup
53666
53667     Signed-off-by: Stefan Roese <sr@denx.de>
53668
53669 commit c7c6da23028f146d912514b95aefa3da7cf37699
53670 Author: Stefan Roese <sr@denx.de>
53671 Date:   Wed Oct 3 07:34:10 2007 +0200
53672
53673     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
53674
53675     This patch is the first patch of a series to make the 440SPe PCIe code
53676     usable on different 4xx PPC platforms. In preperation for the new 405EX
53677     which is also equipped with PCIe interfaces.
53678
53679     (1) This patch renames the files from 440spe_pcie to 4xx_pcie
53680
53681     Signed-off-by: Stefan Roese <sr@denx.de>
53682
53683 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
53684 Author: Marian Balakowicz <m8@semihalf.com>
53685 Date:   Wed Oct 24 01:37:36 2007 +0200
53686
53687     TQM5200: Call usb_cpu_init() during board init
53688
53689     usb_cpu_init() configures GPS USB pins, clocks, etc. and
53690     is required for proper operation of kernel USB subsystem.
53691     This setup was previously done in the kernel by the fixup
53692     code which is being removed, thus low level init must be
53693     done by U-boot now.
53694
53695     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53696     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
53697
53698 commit b5af773f8d92677e06f3295b45557c9d0a487c24
53699 Author: Zhang Wei <wei.zhang@freescale.com>
53700 Date:   Thu Oct 25 17:51:27 2007 +0800
53701
53702     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
53703
53704     The scan code of the key 'z' is 0x1d, which should be handled.
53705
53706     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
53707     controller.
53708
53709     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
53710     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
53711
53712 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
53713 Author: Rodolfo Giometti <giometti@enneenne.com>
53714 Date:   Mon Oct 15 11:59:17 2007 +0200
53715
53716     PXA USB OHCI: "usb stop" implementation.
53717
53718     Some USB keys need to be switched off before loading the kernel
53719     otherwise they can remain in an undefined status which prevents them
53720     to be correctly recognized by the kernel.
53721
53722     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
53723     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
53724
53725 commit 31548249decf18a6b877a18436b6139dd483fe4a
53726 Author: Justin Flammia <jflammia@savantav.com>
53727 Date:   Mon Oct 29 17:40:35 2007 -0400
53728
53729     DHCP Client Fix
53730
53731     This is a multi-part message in MIME format.
53732
53733     commit e6e505eae94ed721e123e177489291fc4544b7b8
53734     Author: Justin Flammia <jflammia@savantav.com>
53735     Date:   Mon Oct 29 17:19:03 2007 -0400
53736
53737         Found a bug in the way the DHCP Request packet is built, where the IP address
53738         that is offered by the server is bound to prematurely. This patch is a fix of
53739         that bug where the IP address offered by the DHCP server is not used until
53740         after the DHCP ACK from the server is received.
53741
53742     Signed-off-by: Justin Flammia <jflammia@savantav.com>
53743     Signed-off-by: Ben Warren <bwarren@qstreams.com>
53744
53745 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
53746 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53747 Date:   Thu Oct 25 17:16:22 2007 -0500
53748
53749     ColdFire 54455: Fix correct boot location for atmel and intel
53750
53751     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53752
53753 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
53754 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53755 Date:   Thu Oct 25 17:14:00 2007 -0500
53756
53757     ColdFire: Fix build error when CONFIG_WATCHDOG is defined
53758
53759     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53760
53761 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
53762 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53763 Date:   Thu Oct 25 17:12:36 2007 -0500
53764
53765     ColdFire 5329: Assign correct SDRAM size and fix cache
53766
53767     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53768
53769 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
53770 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53771 Date:   Thu Oct 25 17:10:23 2007 -0500
53772
53773     ColdFire 5253: Assign correct SDRAM size
53774
53775     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53776
53777 commit 2acefa72ee0026f862ab65597ca687428f63a973
53778 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53779 Date:   Thu Oct 25 17:09:17 2007 -0500
53780
53781     ColdFire 5282: Fix external flash boot and return dramsize
53782
53783     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53784
53785 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
53786 Author: Bartlomiej Sieka <tur@semihalf.com>
53787 Date:   Thu Oct 25 17:20:01 2007 +0200
53788
53789     TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
53790
53791     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53792
53793 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
53794 Author: Martin Krause <martin.krause@tqs.de>
53795 Date:   Wed Oct 24 08:42:25 2007 +0200
53796
53797     TQM5200: fix spurious characters on second serial interface
53798
53799     With this patch PSC3 is configured as UART. This is done, because if
53800     the pins of PSC3 are not configured at all (-> all pins are GPI),
53801     due to crosstalk, spurious characters may be send over the RX232_2_TXD
53802     signal line.
53803
53804     Signed-off-by: Martin Krause <martin.krause@tqs.de>
53805     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53806
53807 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
53808 Author: Martin Krause <martin.krause@tqs.de>
53809 Date:   Wed Oct 24 08:41:27 2007 +0200
53810
53811     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
53812
53813     Some commands for the STK52xx base board try to access the SM501 grafic
53814     controller. But the TQM5200S has no grafic controller (only the TQM5200
53815     and the TQM5200B have). This patch deactivates the commands accessing
53816     the SM501 for the TQM5200S.
53817
53818     Signed-off-by: Martin Krause <martin.krause@tqs.de>
53819     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53820
53821 commit b31f64343ead9482cd439b1adbe4c34026a641b1
53822 Author: Martin Krause <martin.krause@tqs.de>
53823 Date:   Mon Oct 22 16:45:53 2007 +0200
53824
53825     TQM5200: fix spurious characters on second serial interface
53826
53827     With this patch PSC3 is configured as UART. This is done, because if
53828     the pins of PSC3 are not configured at all (-> all pins are GPI),
53829     due to crosstalk, spurious characters may be send over the RX232_2_TXD
53830     signal line.
53831
53832     Signed-off-by: Martin Krause <martin.krause@tqs.de>
53833
53834 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
53835 Author: Martin Krause <martin.krause@tqs.de>
53836 Date:   Mon Oct 22 16:40:06 2007 +0200
53837
53838     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
53839
53840     Some commands for the STK52xx base board try to access the SM501 grafic
53841     controller. But the TQM5200S has no grafic controller (only the TQM5200
53842     and the TQM5200B have). This patch deactivates the commands accessing
53843     the SM501 for the TQM5200S.
53844
53845     Signed-off-by: Martin Krause <martin.krause@tqs.de>
53846
53847 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
53848 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53849 Date:   Sun Oct 21 09:14:28 2007 +0200
53850
53851     Mips: Fix string functions differ prototype declaration
53852
53853     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53854
53855 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
53856 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
53857 Date:   Fri Oct 19 17:51:40 2007 -0500
53858
53859     fsl_pci_init enable COMMAND_MEMORY if inbound window
53860
53861     Patch 16e23c3f removed PCSRBAR allocation.  But passing zero windows
53862     to pciauto_setup_device has the side effect of not getting
53863     COMMAND_MEMORY set.
53864
53865     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
53866
53867 commit e9d0d527992566ebef9826962ff1745b2f082b92
53868 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53869 Date:   Fri Oct 19 10:55:24 2007 +0200
53870
53871     delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
53872
53873     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53874
53875 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
53876 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53877 Date:   Fri Oct 19 08:10:15 2007 +0200
53878
53879     fix warning: no return statement in function returning non-void
53880
53881     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53882
53883 commit e78220f6e514206757acfe247297fc9a328a881f
53884 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53885 Date:   Fri Oct 19 06:33:45 2007 +0200
53886
53887     xsengine: Fix no partition type specified, use DOS as default
53888
53889     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53890
53891 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
53892 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53893 Date:   Fri Oct 19 00:24:59 2007 +0200
53894
53895     lubbock: Fix no partition type specified, use DOS as default
53896
53897     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53898
53899 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
53900 Author: Wolfgang Denk <wd@denx.de>
53901 Date:   Tue Oct 23 16:50:03 2007 +0200
53902
53903     Coding style: keep lists sorted; update CHANGELOG
53904
53905     Signed-off-by: Wolfgang Denk <wd@denx.de>
53906
53907 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
53908 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53909 Date:   Fri Oct 19 00:09:05 2007 +0200
53910
53911     Fix missing drivers makefile entries ds1722.c mw_eeprom.c
53912
53913     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53914
53915 commit 96455bfebc9887837095c9051d216f53c61b5f10
53916 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53917 Date:   Fri Oct 19 00:07:39 2007 +0200
53918
53919     Fix warning differ in signedness in board/innokom/innokom.c
53920
53921     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53922
53923 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
53924 Author: Marcel Ziswiler <marcel@ziswiler.com>
53925 Date:   Fri Oct 19 00:25:33 2007 +0200
53926
53927     fix pxa255_idp board
53928
53929     The pxa255_idp being an old unmaintained board showed several issues:
53930     1. CONFIG_INIT_CRITICAL was still defined.
53931     2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
53932     3. Symbol flash_addr was undeclared.
53933     4. The boards lowlevel_init function was still called memsetup.
53934     5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
53935     6. Using -march=armv5 instead of -march=armv5te resulted in lots of
53936     'target CPU does not support interworking' warnings on recent compilers.
53937     7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
53938     indexes rather than the register definitions from the pxa-regs header
53939     file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
53940     avoid any ambiguities.
53941     8. There were several redefinition warnings concerning ICMR, OSMR3,
53942     OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
53943     9. The board configuration file was rather outdated.
53944     10. The part header file defined the vendor, product and revision arrays
53945     as unsigned chars instead of just chars in the block_dev_desc_t
53946     structure.
53947
53948     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
53949
53950 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
53951 Author: Rune Torgersen <runet@innovsys.com>
53952 Date:   Wed Oct 17 11:56:31 2007 -0500
53953
53954     Make MPC8266ADS command selection more robust
53955
53956     Fix MPC8266 command line definition so it won't break when new commands
53957     are added to u-boot.
53958     Signed-off-by Rune Torgersen <runet@innovsys.com>
53959
53960 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
53961 Author: Bartlomiej Sieka <tur@semihalf.com>
53962 Date:   Tue Oct 23 13:14:10 2007 +0200
53963
53964     Motion-PRO: Update configuration to accomodate next generation board.
53965
53966     New board has faster oscillator and a different Flash chip. This affects:
53967     - CFG_MPC5XXX_CLKIN
53968     - SDRAM timings
53969     - Flash CS configuration (timings)
53970     - Flash sector size, and thus MTD partition layout
53971     - malloc() arena size (due to bigger Flash sectors)
53972     - smaller memory test range (due to bigger malloc() arena)
53973
53974     This patch also enables more extensive memory testing via "mtest".
53975
53976     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53977
53978 commit eff501904df2bf1724a750062628ba2c51dbb1f8
53979 Author: Bartlomiej Sieka <tur@semihalf.com>
53980 Date:   Tue Oct 23 11:36:07 2007 +0200
53981
53982     Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
53983
53984     Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
53985     register must be written a value of 0x00000004 as the first step of the
53986     SDRAM contorller configuration.
53987
53988     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53989
53990 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
53991 Author: Peter Pearse <peter.pearse@arm.com>
53992 Date:   Tue Oct 23 10:22:16 2007 +0100
53993
53994     Move PL01* serial drivers to drivers/serial and adjust Makefiles.
53995
53996 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
53997 Author: Stefan Roese <sr@denx.de>
53998 Date:   Tue Oct 23 10:17:42 2007 +0200
53999
54000     ppc4xx: lwmon5: Some further GPIO config changes
54001
54002     Signed-off-by: Stefan Roese <sr@denx.de>
54003
54004 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
54005 Author: Vlad Lungu <vlad@comsys.ro>
54006 Date:   Sun Oct 21 22:10:10 2007 +0900
54007
54008     [MIPS] Fix UNCACHED_SDRAM
54009
54010     PHYSADDR is for physical address, KSEG1ADDR is for uncached.
54011
54012     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
54013     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54014
54015 commit 00101dd7a32d12f698150123e47e4b3420279f86
54016 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54017 Date:   Sun Oct 21 21:30:42 2007 +0900
54018
54019     [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
54020
54021     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54022
54023 commit eb700636db017d310edaeb559b13d82588560674
54024 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54025 Date:   Sun Oct 21 10:55:37 2007 +0900
54026
54027     [MIPS] u-boot.lds: Define _gp in a standard manner
54028
54029     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54030
54031 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
54032 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54033 Date:   Sun Oct 21 10:55:36 2007 +0900
54034
54035     [MIPS] Fix $gp usage
54036
54037     Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
54038     As a general principle, we should use _gp for $gp.
54039
54040     Thanks to linker script's help we fortunately have _gp which equals to
54041     _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
54042     be able to access to GOT entires, global variables and procedure entry
54043     points. The right thing to do is to use _gp.
54044
54045     This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
54046     which holds the offset from _gp. When updating GOT entries, we use this
54047     offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
54048
54049     This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
54050     I made some change to leave over num_got_entries.
54051
54052     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54053     Cc: Vlad Lungu <vlad@comsys.ro>
54054
54055 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
54056 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54057 Date:   Sun Oct 21 10:55:36 2007 +0900
54058
54059     [MIPS] u-boot.lds: Fix __got_start and __got_end
54060
54061     Ensure that __got_start points to top of the `.got', and __got_end points
54062     to bottom as well, so that we never fail to count num_got_entries.
54063
54064     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54065
54066 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
54067 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54068 Date:   Sun Oct 21 10:55:36 2007 +0900
54069
54070     [MIPS] u-boot.lds: Remove duplicated .sdata section
54071
54072     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54073
54074 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
54075 Author: Wolfgang Denk <wd@denx.de>
54076 Date:   Sun Oct 21 01:01:17 2007 +0200
54077
54078     Minor coding style cleanup; update CHANGELOG
54079
54080     Signed-off-by: Wolfgang Denk <wd@denx.de>
54081
54082 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
54083 Author: Vlad Lungu <vlad@comsys.ro>
54084 Date:   Thu Oct 4 20:47:10 2007 +0300
54085
54086     Fix NE2000 driver:
54087
54088     Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
54089     to do anything in eth_stop() if eth_init() was not called.
54090     Simplified RX path in order to avoid timeouts on really really
54091     fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
54092     clever enough to cope with 1 packet per eth_rx().
54093
54094     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
54095
54096 commit df90968b48fb34fa9072fab150db2ac89678f537
54097 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
54098 Date:   Mon Sep 24 13:32:13 2007 -0400
54099
54100     Setting MSR[DE] in do_reset
54101
54102     Hello,
54103        This patch ensures the soft reset of the board for the 85xx boards
54104        by setting the MSR[DE] in the do_reset function.
54105
54106     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
54107
54108 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
54109 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
54110 Date:   Mon Sep 24 13:36:01 2007 -0400
54111
54112     MSR overwrite fix
54113
54114     Hello,
54115       This patch fixes the MSR overwrite in the start.S when moving out of
54116       the last 4K page.
54117
54118     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
54119
54120 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
54121 Author: Dan Wilson <dwilson@fulcrummicro.com>
54122 Date:   Fri Oct 19 11:33:48 2007 -0500
54123
54124     tsec driver should clear RHALT on startup
54125
54126     This was causing problems for some people.
54127
54128     Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
54129     Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
54130     Signed-off-by: Andy Fleming <afleming@freescale.com>
54131
54132 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
54133 Author: Kumar Gala <galak@kernel.crashing.org>
54134 Date:   Thu Oct 11 00:29:18 2007 -0500
54135
54136     Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
54137
54138     On the MPC85xx CDS we have two issues:
54139
54140     1. The device tree fixup code did not check to see if the property we are
54141     trying to update is actually found.  Its possible that it would update
54142     random memory starting at 0.
54143
54144     2. Newer Linux kernel's have moved the location of the PCI nodes to be
54145     sibilings of the soc node and not children.  The explicit PATH to the PCI
54146     node would not be found for these device trees.  Add the ability to handle
54147     both paths.  In the future we shouldn't handle such fixups by explicit path.
54148
54149     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54150
54151 commit a3063eec775719b7e91023bbec3f64b3118791df
54152 Author: Kumar Gala <galak@kernel.crashing.org>
54153 Date:   Thu Oct 11 00:18:48 2007 -0500
54154
54155     Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
54156
54157     On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
54158     console.  Make it so we match that config what we tell Linux as the early
54159     STDOUT console.
54160
54161     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54162
54163 commit e1ce3cb617bb06f91f82f98915391175addf3e82
54164 Author: Kumar Gala <galak@kernel.crashing.org>
54165 Date:   Tue Oct 2 11:12:27 2007 -0500
54166
54167     Remove magic numbers from cache related operations for mpc85xx
54168
54169     The mpc85xx start code uses some magic numbers that we actually
54170     have #defines for in <config.h> so use those instead.
54171
54172     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54173
54174 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
54175 Author: Detlev Zundel <dzu@denx.de>
54176 Date:   Fri Oct 19 16:47:26 2007 +0200
54177
54178     Fix two typos.
54179
54180     Signed-off-by: Detlev Zundel <dzu@denx.de>
54181
54182 commit 281df457c1aa50d2752165d0c5c3282d4027b974
54183 Author: Tony Li <tony.li@freescale.com>
54184 Date:   Thu Oct 18 17:47:19 2007 +0800
54185
54186     mpc83xx: Add configure entry for MPC83xx ATM support
54187
54188     Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
54189     Makfile and MAKEALL
54190
54191     Signed-off-by: Tony Li <tony.li@freescale.com>
54192     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54193
54194 commit d2646554f529a9577515eceb0ec5eceee18244ba
54195 Author: Tony Li <tony.li@freescale.com>
54196 Date:   Thu Oct 18 17:44:38 2007 +0800
54197
54198     mpc83xx: pq-mds-pib.c typo error
54199
54200     Correct to val8 from val.
54201
54202     Signed-off-by: Tony Li <tony.li@freescale.com>
54203     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54204
54205 commit 3e11ae80fec1ee12194940955431186abf6009c2
54206 Author: Stefan Roese <sr@denx.de>
54207 Date:   Wed Oct 17 15:40:19 2007 +0200
54208
54209     ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
54210
54211     Signed-off-by: Stefan Roese <sr@denx.de>
54212
54213 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
54214 Author: Jon Loeliger <jdl@freescale.com>
54215 Date:   Tue Oct 16 15:27:43 2007 -0500
54216
54217     Initial mpc8610hpcd Makefile files.
54218
54219     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54220     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
54221     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
54222     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54223
54224 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
54225 Author: Jon Loeliger <jdl@freescale.com>
54226 Date:   Tue Oct 16 15:26:51 2007 -0500
54227
54228     Initial mpc8610hpcd cpu/, README and include/ files.
54229
54230     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54231     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
54232     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
54233     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54234
54235 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
54236 Author: Jon Loeliger <jdl@freescale.com>
54237 Date:   Tue Oct 16 13:54:01 2007 -0500
54238
54239     Initial mpc8610hpcd board files.
54240
54241     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54242     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
54243     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
54244     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54245
54246 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
54247 Author: runet@innovsys.com <runet@innovsys.com>
54248 Date:   Tue Oct 16 14:50:40 2007 -0500
54249
54250     Make MPC8266ADS board compile again.
54251
54252     Signed-off-by: Runet Torgersen <runet@innovsys.com>
54253
54254 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
54255 Author: Jon Loeliger <jdl@freescale.com>
54256 Date:   Mon Aug 27 12:41:03 2007 -0500
54257
54258     86xx: Allow for fewer DDR slots per memory controller.
54259
54260     As a direct correlation exists between DDR DIMM slots
54261     and SPD EEPROM addresses used to configure them, use
54262     the individually defined SPD_EEPROM_ADDRESS* values to
54263     determine if a DDR DIMM slot should have its SPD
54264     configuration read or not.
54265
54266     Effectively, this now allows for 1 or 2 DIMM slots
54267     per memory controller.
54268
54269     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54270
54271 commit 4d4a945e189a2f384c66432316da2788a0ac1607
54272 Author: Rodolfo Giometti <giometti@enneenne.com>
54273 Date:   Mon Oct 15 11:59:17 2007 +0200
54274
54275     PXA USB OHCI: "usb stop" implementation.
54276
54277     Some USB keys need to be switched off before loading the kernel
54278     otherwise they can remain in an undefined status which prevents them
54279     to be correctly recognized by the kernel.
54280
54281     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
54282
54283 commit e2e93442e558cf1500e92861f99713b2f045ea22
54284 Author: Stefan Roese <sr@denx.de>
54285 Date:   Mon Oct 15 11:39:00 2007 +0200
54286
54287     ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
54288
54289     The I2C bootstrap values that can be setup via the "bootstrap" command,
54290     were setup incorrect regarding the generation of the internal sync PCI
54291     clock. The values for PLB clock == 133MHz were slighly incorrect and the
54292     values for PLB clock == 166MHz were totally incorrect. This could
54293     lead to a hangup upon booting while PCI configuration scan.
54294
54295     This patch fixes this issue and configures valid PCI divisor values
54296     for the sync PCI clock, with respect to the provided external async
54297     PCI frequency.
54298
54299     Here the values of the formula in the chapter 14.2 "PCI clocking"
54300     from the 440EPx users manual:
54301
54302     AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
54303
54304     33MHz async PCI frequency:
54305     PLB = 133:
54306     =>      32 <= 44.3 <= 65        (div = 3)
54307
54308     PLB = 166:
54309     =>      32 <= 55.3 <= 65        (div = 3)
54310
54311     66MHz async PCI frequency:
54312     PLB = 133:
54313     =>      65 <= 66.5 <= 132       (div = 2)
54314
54315     PLB = 166:
54316     =>      65 <= 83 <= 132         (div = 2)
54317
54318     Signed-off-by: Stefan Roese <sr@denx.de>
54319
54320 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
54321 Author: Stefan Roese <sr@denx.de>
54322 Date:   Mon Oct 15 11:29:33 2007 +0200
54323
54324     ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
54325
54326     The BCSR status bit for the 66MHz PCI operation was correctly
54327     addressed (MSB/LSB problem). Now the correct currently setup
54328     PCI frequency is displayed upon bootup.
54329
54330     This patch also fixes this problem on Rainier & Yellowstone, since these
54331     boards use the same souce code as Sequoia & Yosemite do.
54332
54333     Signed-off-by: Stefan Roese <sr@denx.de>
54334
54335 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
54336 Author: Martin Krause <martin.krause@tqs.de>
54337 Date:   Wed Sep 26 17:55:56 2007 +0200
54338
54339     TQM860M: adjust for doubled flash sector size.
54340
54341     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
54342     doubled sector size.
54343
54344     Signed-off-by: Martin Krause <martin.krause@tqs.de>
54345
54346 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
54347 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
54348 Date:   Wed Sep 26 17:55:54 2007 +0200
54349
54350     TQM8xx: Fix CAN timing.
54351
54352     Signed-off-by: Martin Krause <martin.krause@tqs.de>
54353
54354 commit d43e489baf02afae49077791fb22332d240d8656
54355 Author: Martin Krause <martin.krause@tqs.de>
54356 Date:   Thu Sep 27 14:54:36 2007 +0200
54357
54358     TQM866M: fix SDRAM refresh
54359
54360     At 133 MHz the current SDRAM refresh rate is too fast
54361     (measured 4 * 1.17 us).
54362     CFG_MAMR_PTA changes from 39 to 97. This result
54363     in a refresh rate of 4 * 7.8 us at the default clock
54364     50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
54365     This is a compromise until a new method is found to
54366     adjust the refresh rate.
54367
54368     Signed-off-by: Martin Krause <martin.krause@tqs.de>
54369
54370 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
54371 Author: Martin Krause <martin.krause@tqs.de>
54372 Date:   Wed Sep 26 17:55:55 2007 +0200
54373
54374     TQM866M: adjust for doubled flash sector size.
54375
54376     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
54377     doubled sector size.
54378
54379     Signed-off-by: Martin Krause <martin.krause@tqs.de>
54380
54381 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
54382 Author: Michal Simek <monstr@monstr.eu>
54383 Date:   Sun Oct 14 16:12:29 2007 +0200
54384
54385     [FIX] XUPV2P change command handling
54386     and remove code violation
54387
54388 commit 636400198228d96983c06657b17f760f5989958e
54389 Author: Wolfgang Denk <wd@denx.de>
54390 Date:   Sun Oct 14 00:13:19 2007 +0200
54391
54392     Prepare for 1.3.0-rc3 release
54393
54394     Signed-off-by: Wolfgang Denk <wd@denx.de>
54395
54396 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
54397 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54398 Date:   Sat Sep 29 13:41:37 2007 +0200
54399
54400     Fix warning differ in signedness in cpu/pxa/mmc.c
54401
54402     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54403
54404 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
54405 Author: Wolfgang Denk <wd@denx.de>
54406 Date:   Sat Oct 13 23:51:14 2007 +0200
54407
54408     Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
54409
54410     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54411     Signed-off-by: Wolfgang Denk <wd@denx.de>
54412
54413 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
54414 Author: Wolfgang Denk <wd@denx.de>
54415 Date:   Sat Oct 13 21:15:39 2007 +0200
54416
54417     Coding Style cleanup.
54418
54419     Signed-off-by: Wolfgang Denk <wd@denx.de>
54420
54421 commit e1893815b0999410d7a327589611c7b38e95299e
54422 Author: Wolfgang Denk <wd@denx.de>
54423 Date:   Fri Oct 12 15:49:39 2007 +0200
54424
54425     GP3 SSA: enable RTC
54426
54427     Signed-off-by: Wolfgang Denk <wd@denx.de>
54428
54429 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
54430 Author: Grzegorz Bernacki <gjb@semihalf.com>
54431 Date:   Tue Oct 9 13:58:24 2007 +0200
54432
54433     [ads5121] EEPROM support added.
54434
54435     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
54436
54437 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
54438 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54439 Date:   Sat Oct 6 18:55:35 2007 +0200
54440
54441     AVR32: Initialize bi_flash* in board_init_r
54442
54443     The ATSTK1000-specific flash driver intializes bi_flashstart,
54444     bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
54445     driver, don't.
54446
54447     Initialize these in board_init_r instead so that things will still be
54448     set up correctly when we switch to the CFI driver.
54449
54450     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54451
54452 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
54453 Author: Marian Balakowicz <m8@semihalf.com>
54454 Date:   Fri Oct 5 10:40:54 2007 +0200
54455
54456     tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
54457
54458     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54459
54460 commit 92869195ef8210758d2176230c0a36897afd50ed
54461 Author: Bartlomiej Sieka <tur@semihalf.com>
54462 Date:   Fri Oct 5 09:46:06 2007 +0200
54463
54464     CM5200: Fix missing null-termination in hostname manipulation code
54465
54466     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54467
54468 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
54469 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54470 Date:   Tue Oct 2 19:09:01 2007 +0200
54471
54472     Fix memtest breakage
54473
54474     CFG_MEMTEST_START uses weird magic involving gd, which fails to
54475     compile. Use hardcoded values instead (we actually know how much RAM
54476     we have on board.)
54477
54478     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54479
54480 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
54481 Author: Stefan Roese <sr@denx.de>
54482 Date:   Tue Oct 2 11:44:46 2007 +0200
54483
54484     ppc4xx: Coding style cleanup
54485
54486     Signed-off-by: Stefan Roese <sr@denx.de>
54487
54488 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
54489 Author: Stefan Roese <sr@denx.de>
54490 Date:   Tue Oct 2 11:44:19 2007 +0200
54491
54492     ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
54493
54494     Signed-off-by: Stefan Roese <sr@denx.de>
54495
54496 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
54497 Author: Grzegorz Bernacki <gjb@semihalf.com>
54498 Date:   Mon Oct 1 09:51:50 2007 +0200
54499
54500     Program EPLD to force full duplex mode for PHY.
54501
54502     EPLD forces modes of PHY operation. By default full duplex is turned off.
54503     This fix turns it on.
54504
54505     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
54506
54507 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
54508 Author: Timo Ketola <timo.ketola@exertus.fi>
54509 Date:   Mon Sep 24 14:50:32 2007 +0300
54510
54511     Bugfix: Use only one PTD for one endpoint
54512
54513     Original isp116x-hcd code prepared multiple PTDs for longer than 16
54514     byte transfers for one endpoint. That is unnecessary because the
54515     ISP116x is able to split long data from one PTD into multiple
54516     transactions based on the buffer size of the endpoint. It also caused
54517     serious problems if the endpoint NAKed some of the transactions. In
54518     that case ISP116x wouldn't notice that the other PTDs were for the same
54519     endpoint and would try the other PTDs possibly out of order. That would
54520     break the whole transfer.
54521
54522     This patch makes isp116x_submit_job to use one PTD for one transfer.
54523
54524     Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
54525     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
54526
54527 commit 86ec86c04326c3913178a7679aa910de071da75d
54528 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54529 Date:   Thu Sep 27 23:27:47 2007 +0200
54530
54531     Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
54532
54533     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54534
54535 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
54536 Author: Stefan Roese <sr@denx.de>
54537 Date:   Tue Sep 11 14:12:55 2007 +0200
54538
54539     ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
54540
54541     Signed-off-by: Stefan Roese <sr@denx.de>
54542
54543 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
54544 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
54545 Date:   Wed Sep 26 16:35:54 2007 -0500
54546
54547     85xx io out functions need sync after write.
54548
54549     This fixes the mc146818 rtc_read/write functions for 85xx.
54550
54551     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54552
54553 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
54554 Author: Grant Likely <grant.likely@secretlab.ca>
54555 Date:   Tue Sep 25 15:48:05 2007 -0600
54556
54557     Fpga: fix incorrect test of CFG_FPGA_XILINX macro
54558
54559     CFG_FPGA_XILINX is a bit value used to test against the value in
54560     CONFIG_FPGA.  Testing for a value will always return TRUE.  I don't
54561     think that is the intention in this code.
54562
54563     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54564
54565 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
54566 Author: Michal Simek <monstr@monstr.eu>
54567 Date:   Mon Sep 24 00:41:30 2007 +0200
54568
54569     [FIX] change command handling and removing code violation
54570
54571 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
54572 Author: Michal Simek <monstr@monstr.eu>
54573 Date:   Mon Sep 24 00:36:06 2007 +0200
54574
54575     [FIX] change sets of commands
54576     because changing of command handling brings
54577     compilation problems
54578
54579 commit cb1bc63b75a232571eb69aa2c8aa919321655845
54580 Author: Michal Simek <monstr@monstr.eu>
54581 Date:   Mon Sep 24 00:30:42 2007 +0200
54582
54583     [FIX] Email reparation & Copyright
54584     Both codes are written by myself without any
54585     support from CTU
54586
54587 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
54588 Author: Michal Simek <monstr@monstr.eu>
54589 Date:   Mon Sep 24 00:25:11 2007 +0200
54590
54591     [PATCH] Change macro name for UartLite
54592     because PowerPC 405 can use UartLite as console
54593
54594 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
54595 Author: Michal Simek <monstr@monstr.eu>
54596 Date:   Mon Sep 24 00:21:19 2007 +0200
54597
54598     [PATCH] Add support for design without interrupt controller
54599     Polling timer
54600
54601 commit 0731933ec8ec45d02ba89b52df673d526873cdde
54602 Author: Michal Simek <monstr@monstr.eu>
54603 Date:   Mon Sep 24 00:19:48 2007 +0200
54604
54605     [FIX] resolve problem with cpu without barrel shifter
54606
54607 commit db14d77995ce515b728b178b63f82babe60e3d56
54608 Author: Michal Simek <monstr@monstr.eu>
54609 Date:   Mon Sep 24 00:18:46 2007 +0200
54610
54611     [FIX] repair email address
54612
54613 commit 481d4328618804add1f818a6c96296121cd0528e
54614 Author: Michal Simek <monstr@monstr.eu>
54615 Date:   Mon Sep 24 00:17:42 2007 +0200
54616
54617     [FIX] repair MFSL commands
54618
54619 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
54620 Author: Michal Simek <monstr@monstr.eu>
54621 Date:   Mon Sep 24 00:08:37 2007 +0200
54622
54623     synchronizition with mainline
54624
54625 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
54626 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54627 Date:   Sun Sep 23 02:42:38 2007 +0900
54628
54629     sh: Add support command of ide with sh
54630
54631     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54632
54633 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
54634 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54635 Date:   Sun Sep 23 02:38:42 2007 +0900
54636
54637     sh: Update Makefile
54638
54639     Add support MS7722SE01 to Makefile.
54640
54641     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54642
54643 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
54644 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54645 Date:   Sun Sep 23 02:31:13 2007 +0900
54646
54647     sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
54648
54649     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54650
54651 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
54652 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54653 Date:   Sun Sep 23 02:19:24 2007 +0900
54654
54655     sh: Update MS7750SE01 platform
54656
54657     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54658
54659 commit 516ad760db3553766267ada01b7d5d727faa4bbd
54660 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54661 Date:   Sun Sep 23 02:17:08 2007 +0900
54662
54663     sh: Remove comment out code from include/asm-sh/cpu_sh4.h
54664
54665     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54666
54667 commit b02bad128669e567fce87d8df823b06a0144b8db
54668 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54669 Date:   Sun Sep 23 02:12:30 2007 +0900
54670
54671     sh: Update core code of SuperH.
54672
54673     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54674
54675 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
54676 Author: Wolfgang Denk <wd@denx.de>
54677 Date:   Thu Sep 20 00:04:14 2007 +0200
54678
54679     v1.3.0-rc2
54680
54681     Signed-off-by: Wolfgang Denk <wd@denx.de>
54682
54683 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
54684 Author: Wolfgang Denk <wd@denx.de>
54685 Date:   Tue Sep 18 21:36:35 2007 +0200
54686
54687     Avoid compiler warning.
54688
54689     Signed-off-by: Wolfgang Denk <wd@denx.de>
54690
54691 commit 8a783a65851bc7421ab69f442261215e21b8891a
54692 Author: Grant Likely <grant.likely@secretlab.ca>
54693 Date:   Tue Sep 18 12:24:57 2007 -0600
54694
54695     Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
54696
54697     /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
54698     nulls in a string differently.  For example, the following statement:
54699         echo "this is a string\0" > afile
54700     Will produce the following with /bin/bash:
54701         "this is a string\0"
54702     But with /bin/dash, will produce:
54703         "this is a string
54704
54705     Bug fixed by moving the embedded null out of the makefile and into the
54706     config header.  Also renamed the macro to avoid usage colision with the same
54707     macro used by other board ports.
54708
54709     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54710
54711 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
54712 Author: Wolfgang Denk <wd@denx.de>
54713 Date:   Tue Sep 18 17:40:27 2007 +0200
54714
54715     MCC200: fix build warning
54716
54717     The MCC200 board config file includes version.h for some customer-
54718     specific setting, which causes warnings with "make depend"; build
54719     version.h before depend.
54720
54721     Signed-off-by: Wolfgang Denk <wd@denx.de>
54722
54723 commit bd86220f58b99d6896198c385fda132f0c980915
54724 Author: Peter Pearse <peter.pearse@arm.com>
54725 Date:   Tue Sep 18 13:07:54 2007 +0100
54726
54727     Move coloured led API to status_led.h
54728     Improve indentation in drivers/at45.c
54729
54730 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
54731 Author: Eirik Aanonsen <eaa@wprmedical.com>
54732 Date:   Tue Sep 18 08:47:20 2007 +0200
54733
54734     Update atstk1002 bootargs.
54735
54736     Updates to atstk1002 U-Boot header file:
54737     - Changed bootargs:
54738         * Set the bootargs for at1002 to point to the SD-card partition instead
54739         * ... of the boot flash.
54740         * Removing the rootfstype since that argument are not needed.
54741
54742     Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
54743     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54744
54745 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
54746 Author: Eirik Aanonsen <eaa@wprmedical.com>
54747 Date:   Wed Sep 12 13:32:37 2007 +0200
54748
54749     Add some comments to clocks in atstk1002.h
54750
54751     This patch applies some clarifying comments to how the different
54752     clocks are setup according to atstk1002.h Some of the previous
54753     comments where stating wrongful information.
54754
54755     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54756
54757 commit 97213f32416ead885deafea86774e912ffd60ad0
54758 Author: David Saada <David.Saada@ecitele.com>
54759 Date:   Mon Sep 17 17:04:47 2007 +0200
54760
54761     Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
54762
54763     Signed-off-by: David Saada <david.saada@ecitele.com>
54764
54765 commit 30363e98fa470fbecea5e8bc0f1443352754f303
54766 Author: Stefan Roese <sr@denx.de>
54767 Date:   Mon Sep 17 08:20:47 2007 +0200
54768
54769     Small whitespace cleanup of OneNAND patch
54770
54771     Signed-off-by: Stefan Roese <sr@denx.de>
54772
54773 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
54774 Author: Kyungmin Park <kmpark@infradead.org>
54775 Date:   Mon Sep 10 17:15:14 2007 +0900
54776
54777     OneNAND support (take #2)
54778
54779     [PATCH 3/3] OneNAND support (take #2)
54780
54781     OneNAND support at U-Boot
54782
54783     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
54784
54785 commit 17aa2800457df0c06b41516f46f126712c196219
54786 Author: Kyungmin Park <kmpark@infradead.org>
54787 Date:   Mon Sep 10 17:14:34 2007 +0900
54788
54789     OneNAND support (take #2)
54790
54791     [PATCH 2/3] OneNAND support (take #2)
54792
54793     OneNAND support at U-Boot
54794
54795     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
54796
54797 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
54798 Author: Kyungmin Park <kmpark@infradead.org>
54799 Date:   Mon Sep 10 17:13:49 2007 +0900
54800
54801     OneNAND support (take #2)
54802
54803     [PATCH 1/3] OneNAND support (take #2)
54804
54805     OneNAND support at U-Boot
54806
54807     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
54808
54809 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
54810 Author: Michal Simek <monstr@monstr.eu>
54811 Date:   Sun Sep 16 20:51:57 2007 +0200
54812
54813     [FIX] remove files form repository
54814
54815 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
54816 Author: Wolfgang Denk <wd@denx.de>
54817 Date:   Sun Sep 16 17:10:04 2007 +0200
54818
54819     TQM8xx[LM]: Fix broken environment alignment.
54820
54821     With recent toolchains, the environment sectors were no longer aligned to
54822     sector boundaries. The reason was a combination of two bugs:
54823
54824     1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
54825        for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
54826        this gets defined, is not included here (and cannot be included
54827        without causing lots of problems).
54828
54829        Added a new #define CFG_USE_PPCENV for all boards which really
54830        want to put the environment is a ".ppcenv" section.
54831
54832     2) The linker scripts just include environment.o, silently assuming
54833        that the objects in that file are really in the order in which
54834        they are coded in the C file, i. e. "environment" first, then
54835        "redundand_environment", and "env_size" last. However, current
54836        toolchains (GCC-4.x) reorder the objects, causing the environment
54837        data not to start on a flash sector boundary:
54838
54839        Instead of:                                      we got:
54840
54841         40008000 T environment                  40008000 T env_size
54842         4000c000 T redundand_environment        40008004 T redundand_environment
54843         40010000 T env_size                     4000c004 T environment
54844
54845        Note: this patch fixes just the first part, and cures the alignment
54846        problem by making sure that "env_size" gets placed correctly. However,
54847        we still have a potential issue because primary and redundant
54848        environment sectors are actually swapped, i. e. we have now:
54849
54850         40008000 T redundand_environment
54851         4000c000 T environment
54852         40010000 T env_size
54853
54854        This shall be fixed in the next version.
54855
54856     Signed-off-by: Wolfgang Denk <wd@denx.de>
54857
54858 commit eb6da8050797c204c9d010548424186c7ce32fc1
54859 Author: Wolfgang Denk <wd@denx.de>
54860 Date:   Sun Sep 16 02:39:35 2007 +0200
54861
54862     TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
54863
54864     Signed-off-by: Wolfgang Denk <wd@denx.de>
54865
54866 commit cd2d1602c54cc6957bdef3872272a4b264893960
54867 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
54868 Date:   Mon Sep 10 14:54:56 2007 -0400
54869
54870     Typo fix in tsec.c
54871
54872     Fixup for the break statement in wrong place.
54873
54874     [Patch by urwithsughosh@gmail.com]
54875     Acked-by: Andy Fleming <afleming@freescale.com>
54876     Signed-off-by:      Wolfgang Denk <wd@denx.de>
54877
54878 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
54879 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54880 Date:   Tue Sep 11 17:04:00 2007 +0200
54881
54882     Fix do_div() usage in nand process output
54883
54884     Fix usage of do_div() in nand erase|read|write process output.
54885
54886     The last patch to nand_util.c introduced do_div() instead of libgcc's
54887     implementation. But do_div() returns the quotient in its first
54888     macro parameter and not as result.
54889
54890     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54891
54892 commit c750d2e6692a000a82f29de7bf24e3dc21239161
54893 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54894 Date:   Wed Sep 12 12:36:53 2007 +0200
54895
54896     NAND: Add CFG_NAND_QUIET option
54897
54898     This config option sets the default for the progress information
54899     output behavior that can also be configured through the 'quiet'
54900     environment variable.
54901
54902     The legacy NAND code does not print the current progress info
54903     on the console. So this option is for backward compatibility for
54904     units that are in the field and where setting the quiet variable
54905     is not an option. With CFG_NAND_QUIET set to '1' the console
54906     progress info is turned off. This can still be overwritten
54907     through the environment variable.
54908
54909     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54910
54911 commit dcb88630290d2bcd803386dd4c2be73142994c4f
54912 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
54913 Date:   Thu Sep 13 16:06:05 2007 -0700
54914
54915     ColdFire: fix build error becasue of bad type of mii_init()
54916
54917     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54918
54919 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
54920 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
54921 Date:   Thu Sep 13 16:04:05 2007 -0700
54922
54923     ColdFire: Fix build error caused by pixis.c
54924
54925     Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
54926
54927     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54928
54929 commit e21659e30660a1377c42af135a6114efe39801d9
54930 Author: Sam Sparks <SSparks@twacs.com>
54931 Date:   Fri Sep 14 11:14:42 2007 -0600
54932
54933     Update MPC8349ITX*_config to place config.tmp in right place.
54934
54935     MPC834ITX*_config does not store config.tmp at the correct locatation,
54936     causing MPC8349ITXGP to have the wrong TEXT_BASE.
54937
54938     Signed-off-by: Sam Sparks <SSparks@twacs.com>
54939     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54940
54941 commit 1218abf1b5817a39a82399b4b928b00750575bda
54942 Author: Wolfgang Denk <wd@denx.de>
54943 Date:   Sat Sep 15 20:48:41 2007 +0200
54944
54945     Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
54946
54947     Signed-off-by: Wolfgang Denk <wd@denx.de>
54948
54949 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
54950 Author: Dirk Behme <dirk.behme@googlemail.com>
54951 Date:   Sat Sep 15 11:55:42 2007 +0200
54952
54953     Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
54954
54955     As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
54956     function local.
54957
54958     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
54959
54960     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
54961
54962 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
54963 Author: Michal Simek <monstr@monstr.eu>
54964 Date:   Sat Sep 15 00:03:35 2007 +0200
54965
54966     Synchronize with U-BOOT mainline
54967
54968 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
54969 Author: Sam Sparks <SSparks@twacs.com>
54970 Date:   Fri Sep 14 11:14:42 2007 -0600
54971
54972     Update MPC8349ITX*_config to place config.tmp in right place.
54973
54974     MPC834ITX*_config does not store config.tmp at the correct locatation,
54975     causing MPC8349ITXGP to have the wrong TEXT_BASE.
54976
54977     Signed-off-by: Sam Sparks <SSparks@twacs.com>
54978     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54979     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54980
54981 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
54982 Author: Bartlomiej Sieka <tur@semihalf.com>
54983 Date:   Thu Sep 13 18:21:48 2007 +0200
54984
54985     cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
54986
54987     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54988
54989 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
54990 Author: Bartlomiej Sieka <tur@semihalf.com>
54991 Date:   Thu Sep 13 16:33:59 2007 +0200
54992
54993     tqm5200: Restore customary env. variable boot commands for powerpc kernels
54994
54995     - update default definitions of kernel_addr and fdt_addr env. variables
54996     - make arch/powerpc booting the default scenario
54997     - update MTD partition layout to match the above
54998
54999     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
55000
55001 commit f34024d4a328e6edd906456da98d2c537155c4f7
55002 Author: Wolfgang Denk <wd@denx.de>
55003 Date:   Wed Sep 12 00:48:57 2007 +0200
55004
55005     Fix memory corruption problem on STX GP3 SSA Board.
55006
55007     Signed-off-by: Wolfgang Denk <wd@denx.de>
55008
55009 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
55010 Author: Peter Pearse <peter.pearse@arm.com>
55011 Date:   Tue Sep 11 15:35:01 2007 +0100
55012
55013     Final tidy
55014
55015 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
55016 Author: Grzegorz Bernacki <gjb@semihalf.com>
55017 Date:   Tue Sep 11 15:42:11 2007 +0200
55018
55019     [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
55020     scan on second pci bus.
55021
55022     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55023
55024 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
55025 Author: Grzegorz Bernacki <gjb@semihalf.com>
55026 Date:   Tue Sep 11 12:57:52 2007 +0200
55027
55028     [ppc4xx] Individual handling of sdram.c for bamboo_nand build
55029
55030     Bamboo has a file sdram.c which needs special treatment when building in
55031     separate directory. It has to be linked to build directory otherwise it is
55032     not seen.
55033
55034     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55035
55036 commit d45963854eff39d575124d859419bb4953ce2c87
55037 Author: Michal Simek <monstr@monstr.eu>
55038 Date:   Tue Sep 11 00:37:04 2007 +0200
55039
55040     [FIX] Microblaze ML401 - repare FLASH handling
55041
55042 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
55043 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
55044 Date:   Mon Sep 10 16:55:59 2007 +0100
55045
55046     Allocate CPU Architecture Code for STMicroelectronics' ST200.
55047
55048     Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
55049     ---------------------------------------------------
55050
55051 commit 754bac48156f8958d8f6a53a51eda88ab5758929
55052 Author: Wolfgang Denk <wd@denx.de>
55053 Date:   Mon Sep 10 20:42:31 2007 +0200
55054
55055     Update version to match current state.
55056
55057     Signed-off-by: Wolfgang Denk <wd@denx.de>
55058
55059 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
55060 Author: Grzegorz Bernacki <gjb@semihalf.com>
55061 Date:   Mon Sep 10 17:39:08 2007 +0200
55062
55063     [MPC512x] Streamline frame handling in the FEC driver
55064
55065     - convert frame size settings to be derived from a single base
55066     - set frame size to the recommended default value
55067
55068     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55069
55070 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
55071 Author: Kyungmin Park <kmpark@infradead.org>
55072 Date:   Mon Sep 10 11:34:00 2007 +0900
55073
55074     Remove compiler warning: target CPU does not support interworking
55075
55076     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55077
55078 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
55079 Author: Wolfgang Denk <wd@denx.de>
55080 Date:   Sun Sep 9 21:21:33 2007 +0200
55081
55082     Fix compile error in spc1920 config.
55083
55084     Signed-off-by: Markus KlotzbĂ¼cher <mk@denx.de>
55085     Signed-off-by: Wolfgang Denk <wd@denx.de>
55086
55087 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
55088 Author: Grant Likely <grant.likely@secretlab.ca>
55089 Date:   Fri Sep 7 09:25:07 2007 -0600
55090
55091     Bugfix: make bootm+libfdt compile on boards with no flash
55092
55093     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
55094
55095 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
55096 Author: Grzegorz Bernacki <gjb@semihalf.com>
55097 Date:   Fri Sep 7 18:35:37 2007 +0200
55098
55099     [PPC440SPe] PCIe environment settings for Katmai and Yucca
55100
55101     - 'pciconfighost' is set by default in order to be able to scan bridges
55102     behind the primary host/PCIe
55103
55104     - 'pciscandelay' env variable is recognized to allow for user-controlled
55105     delay before the PCIe bus enumeration; some peripheral devices require a
55106     significant delay before they can be scanned (e.g. LSI8408E); without the
55107     delay they are not detected
55108
55109     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55110
55111 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
55112 Author: Grzegorz Bernacki <gjb@semihalf.com>
55113 Date:   Fri Sep 7 18:20:23 2007 +0200
55114
55115     [PPC440SPe] Improve PCIe configuration space access
55116
55117     - correct configuration space mapping
55118     - correct bus numbering
55119     - better access to config space
55120
55121     Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
55122     first device on the first bus. We now allow to configure up to 16 buses;
55123     also, scanning for devices behind the PCIe-PCIe bridge is supported, so
55124     peripheral devices farther in hierarchy can be identified.
55125
55126     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55127
55128 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
55129 Author: Grzegorz Bernacki <gjb@semihalf.com>
55130 Date:   Fri Sep 7 17:46:18 2007 +0200
55131
55132     [PPC440SPe] Convert machine check exceptions handling
55133
55134     Convert using fixup mechanism to suppressing MCK for the duration of config
55135     read/write transaction: while fixups work fine with the case of a precise
55136     exception, we identified a major drawback with this approach when there's
55137     an imprecise case. In this scenario there is the following race condition:
55138     the fixup is (by design) set to catch the instruction following the one
55139     actually causing the exception; if an interrupt (e.g. decrementer) happens
55140     between those two instructions, the ISR code is executed before the fixup
55141     handler the machine check is no longer protected by the fixup handler as it
55142     appears as within the ISR code. In consequence the fixup approach is being
55143     phased out and replaced with explicit suppressing of MCK during a PCIe
55144     config read/write cycle.
55145
55146     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55147
55148 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
55149 Author: Wolfgang Denk <wd@denx.de>
55150 Date:   Fri Sep 7 17:43:36 2007 +0200
55151
55152     Fix typo in MAKEALL script.
55153
55154     Signed-off-by: Wolfgang Denk <wd@denx.de>
55155
55156 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
55157 Author: Grzegorz Bernacki <gjb@semihalf.com>
55158 Date:   Fri Sep 7 17:09:21 2007 +0200
55159
55160     [MPC512x] Proper handling of larger frames in the FEC driver
55161
55162     When frame larger than local RX buffer is received, it is split and handled
55163     by two buffer descriptors. Prior to this patch the FEC driver discarded
55164     contents of a buffer descriptor without the 'LAST' bit set, so the first
55165     part of the frame was lost in case of larger frames. This fix allows to
55166     safely combine the two pieces into the whole frame.
55167
55168     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55169
55170 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
55171 Author: Rafal Jaworowski <raj@semihalf.com>
55172 Date:   Fri Sep 7 17:05:36 2007 +0200
55173
55174     [MPC512x] Correct fixup relocation
55175
55176     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
55177
55178 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
55179 Author: Wolfgang Denk <wd@denx.de>
55180 Date:   Fri Sep 7 01:21:25 2007 +0200
55181
55182     Update CHANGELOG, minor coding style cleanup.
55183
55184 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
55185 Author: stefano babic <sbabic@denx.de>
55186 Date:   Thu Aug 30 23:01:49 2007 +0200
55187
55188     PXA270: Added support for TrizepsIV board.
55189
55190     This patch add support for the Trizeps IV module (520Mhz).
55191
55192     Signed-off-by: Stefano Babic <sbabic@denx.de>
55193
55194 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
55195 Author: stefano babic <sbabic@denx.de>
55196 Date:   Thu Aug 30 22:57:04 2007 +0200
55197
55198     PXA270: Add support for multiple serial ports.
55199
55200     This patch adds support for multiple serial ports to the PXA target.
55201     FFUART, BTUART and STUART are supported.
55202
55203     Signed-off-by: Stefano Babic <sbabic@denx.de>
55204
55205 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
55206 Author: stefano babic <sbabic@denx.de>
55207 Date:   Thu Aug 30 22:48:47 2007 +0200
55208
55209     PXA270: fix compile issue (invalid lvalue)
55210
55211     Code is broken for PXA270 due to "invalid lvalue in assignment".
55212
55213     This patch fix it in pxa-regs.h
55214
55215     Signed-off-by: Stefano Babic <sbabic@denx.de>
55216
55217 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
55218 Author: Jason Jin <Jason.jin@freescale.com>
55219 Date:   Thu Aug 30 18:19:05 2007 +0800
55220
55221     Add BUILD_DIR support for bios emulator.
55222
55223     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
55224
55225 commit b4d8a55145442f136982634862341a3e02002bda
55226 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55227 Date:   Fri Aug 31 14:41:51 2007 +0900
55228
55229     [MIPS] Remove inline asm string functions
55230
55231     Stop using inline string functions on MIPS as other ARCHs do so,
55232     since the optimized inline asm versions are not small.
55233
55234     This change is triggered by a following MIPS build error:
55235     common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
55236     common/exports.c:32: undefined reference to `strcmp'
55237     make: *** [u-boot] Error 1
55238
55239     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55240
55241 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
55242 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55243 Date:   Fri Aug 31 14:41:45 2007 +0900
55244
55245     [MIPS] Update asm string header
55246
55247     This patches contains several bugfixes and cleanups in the latest upstream:
55248
55249      - Don't include linux/config.h
55250      - Remove buggy inline version of memscan.
55251      - Merge with Linux 2.6.11-rc3.
55252      - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
55253      - Goodbye mips64.  31704 lines of code bite the dust.
55254      - Replace extern inline with static inline.
55255      - Fix return value of strncpy.
55256      - Remove a bunch more "$1" clobbers.
55257
55258     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55259
55260 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
55261 Author: Bartlomiej Sieka <tur@semihalf.com>
55262 Date:   Tue Sep 4 17:31:22 2007 +0200
55263
55264     Fix do_bootm_linux() so that multi-file images with FDT blob boot.
55265
55266     Fix incorrect blob address calculation in do_bootm_linux() that prevents
55267     booting the kernel from a multi-file image (kernel + initrd + blob).
55268
55269     Also, make minor updates to the U-Boot's output and to the coding style.
55270
55271     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
55272
55273 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
55274 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
55275 Date:   Fri Aug 31 14:29:04 2007 +0200
55276
55277     Add support for Sil680 IDE controller.
55278
55279     o add drivers/sil680.c to support the Sil680 IDE-controller.
55280     o drivers/Makefile: add sil680.o.
55281
55282     Signed-off-by: Gary Jennejohn <garyj@denx.de>
55283
55284 commit e79021223bc339df655e360645a52c457a74b067
55285 Author: Grant Likely <grant.likely@secretlab.ca>
55286 Date:   Thu Sep 6 09:47:40 2007 -0600
55287
55288     bootm/fdt: Only process the fdt if an fdt address was provided
55289
55290     Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
55291     kernels using the board info structure (instead of passing a device tree)
55292     This change allows the old style booting to be used if the fdt argument
55293     was not passed to 'bootm'.
55294
55295     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
55296     Acked-by: Kim Phillips <kim.phillips@freescale.com>
55297
55298 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
55299 Author: Grant Likely <grant.likely@secretlab.ca>
55300 Date:   Thu Sep 6 09:46:23 2007 -0600
55301
55302     Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
55303
55304     Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
55305
55306     Tested on: lite5200b
55307
55308     Note: the fixup functions have not been moved to a common place.  This
55309     patch is targeted for immediate merging as in solves a build issue, but
55310     the final name/location of the fixups is still subject to debate.  I
55311     propose to merge this now, and move the fixups in the next merge window
55312     to be usable by all targets.
55313
55314     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
55315
55316 commit 41bb76e941929f54a73206fb132f7a4c275543a3
55317 Author: Grant Likely <grant.likely@secretlab.ca>
55318 Date:   Thu Sep 6 09:46:17 2007 -0600
55319
55320     libfdt: add convenience function fdt_find_and_setprop()
55321
55322     Given the path to a node, fdt_find_and_setprop() allows a property value
55323     to be set directly.
55324
55325     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
55326
55327 commit 80767a6cead9990d9e77e62be947843c2c72f469
55328 Author: Peter Pearse <peter.pearse@arm.com>
55329 Date:   Wed Sep 5 16:04:41 2007 +0100
55330
55331     Changed API name to coloured_led.h
55332     Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
55333     Tidied other cpu/arm920t/start.S code
55334
55335 commit 56a9270521baaa00e12639a978302a67f61ef060
55336 Author: Kumar Gala <galak@kernel.crashing.org>
55337 Date:   Thu Aug 30 16:18:18 2007 -0500
55338
55339     Fix ULI RTC support on MPC8544 DS
55340
55341     The RTC on the M1575 ULI chipset requires a dummy read before
55342     we are able to talk to the RTC.  We accomplish this by adding a
55343     second memory region to the PHB the ULI is on and read from it.
55344
55345     The second region is added to maintain compatiabilty with Linux's
55346     view of the PCI memory map.
55347
55348     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55349
55350 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
55351 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
55352 Date:   Thu Aug 30 01:58:48 2007 -0500
55353
55354     ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
55355
55356     pcie is now differentiated from pci.  Add 8641 bus-range updates.
55357
55358     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55359
55360 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
55361 Author: Peter Pearse <peter.pearse@arm.com>
55362 Date:   Tue Sep 4 16:18:38 2007 +0100
55363
55364     Add coloured led interface for ARM boards.
55365     Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
55366
55367 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
55368 Author: Peter Pearse <peter.pearse@arm.com>
55369 Date:   Tue Sep 4 14:49:28 2007 +0100
55370
55371     Move include/led.h to board/at91rm9200dk
55372
55373 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
55374 Author: Peter Pearse <peter.pearse@arm.com>
55375 Date:   Tue Sep 4 14:25:51 2007 +0100
55376
55377     Ran Lindent on drivers/at45.c
55378
55379 commit 557ab89d294f08dd532f21d19861b40093200a33
55380 Author: Peter Pearse <peter.pearse@arm.com>
55381 Date:   Tue Sep 4 14:23:50 2007 +0100
55382
55383     Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
55384
55385 commit 81b73dec16fd1227369a191e725e10044a9d56b8
55386 Author: Gary Jennejohn <garyj@denx.de>
55387 Date:   Fri Aug 31 15:21:46 2007 +0200
55388
55389     ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
55390
55391     The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
55392     set to non-zero, because it doesn't support MRM (memory-read-
55393     multiple) correctly. We now added the possibility to configure
55394     this register in the board config file, so that the default value
55395     of 8 can be overridden.
55396
55397     Here the details of this patch:
55398
55399     o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
55400       board-specific settings. As an example the sequoia board requires 0.
55401       Idea from Stefan Roese <sr@denx.de>.
55402     o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
55403       PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
55404     o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
55405       CFG_PCI_CACHE_LINE_SIZE to 0.
55406
55407     Signed-off-by: Gary Jennejohn <garyj@denx.de>
55408     Signed-off-by: Stefan Roese <sr@denx.de>
55409
55410 commit 60174746c668b309378a91488dded898e9553eae
55411 Author: Wolfgang Denk <wd@denx.de>
55412 Date:   Fri Aug 31 10:01:51 2007 +0200
55413
55414     Fix TFTP OACK code for short packets.
55415
55416     The old code had a loop limit overflow bug which caused a semi-
55417     infinite loop for small packets, because in "i<len-8", "i" was signed,
55418     but "len" was unsigned, and "len-8" became a huge number for small
55419     values of "len".
55420
55421     This is a workaround which replaces broken commit 8f1bc284.
55422
55423     Signed-off-by: Wolfgang Denk <wd@denx.de>
55424
55425 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
55426 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
55427 Date:   Thu Aug 30 15:03:05 2007 +0200
55428
55429     Reduce BOOTDELAY variable to 1 second by default for STK1002
55430
55431     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
55432     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55433
55434 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
55435 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
55436 Date:   Thu Aug 30 15:03:04 2007 +0200
55437
55438     Remove double quotation marks around MAC address for STK1002
55439
55440     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
55441     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55442
55443 commit ff13ac8c7bbebb238e339592de765c546dba1073
55444 Author: Wolfgang Denk <wd@denx.de>
55445 Date:   Thu Aug 30 14:42:15 2007 +0200
55446
55447     Backout commit 8f1bc284 as it causes TFTP to fail.
55448
55449     Signed-off-by: Wolfgang Denk <wd@denx.de>
55450
55451 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
55452 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
55453 Date:   Thu Aug 30 02:26:17 2007 -0500
55454
55455     Revert "Fix MPC8544DS PCIe3 scsi."
55456
55457     This reverts commit 9468e680.
55458     Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
55459
55460     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55461
55462 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
55463 Author: Grant Likely <grant.likely@secretlab.ca>
55464 Date:   Wed Aug 29 18:26:24 2007 -0600
55465
55466     tftp: don't implicity trust the format of recevied packets
55467
55468     The TFTP OACK code trusts that the incoming packet is formated as
55469     ASCII text and can be processed by string functions. It also has a
55470     loop limit overflow bug where if the packet length is less than 8, it
55471     ends up looping over *all* of memory to find the 'blksize' string.
55472
55473     This patch solves the problem by forcing the packet to be null
55474     terminated and using strstr() to search for the sub string.
55475
55476     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
55477
55478 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
55479 Author: Stefan Roese <sr@denx.de>
55480 Date:   Wed Aug 29 16:31:18 2007 +0200
55481
55482     ppc4xx: Change lwmon5 default environment to support Linux RTC
55483
55484     The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
55485     to supply the RTC I2C address as bootline parameter. This patch
55486     adds support for this rtc probing parameter to the bootargs:
55487
55488     "rtc-pcf8563.probe=0,0x51"
55489
55490     Signed-off-by: Stefan Roese <sr@denx.de>
55491
55492 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
55493 Author: Kim Phillips <kim.phillips@freescale.com>
55494 Date:   Wed Aug 29 09:06:05 2007 -0500
55495
55496     sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
55497
55498     this had slipped through the cracks, since the sbc board was added
55499     after I wrote the original patch to remove all these symbols, and
55500     before it was merged.
55501
55502     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55503
55504 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
55505 Author: Wolfgang Denk <wd@denx.de>
55506 Date:   Wed Aug 29 14:05:30 2007 +0200
55507
55508     Add mii_init() prototype
55509
55510     to get rid of a *lot* of compiler warnings.
55511
55512     Signed-off-by: Wolfgang Denk <wd@denx.de>
55513
55514 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
55515 Author: Wolfgang Denk <wd@denx.de>
55516 Date:   Wed Aug 29 13:35:03 2007 +0200
55517
55518     Disable network support on cmi_mpc5xx board
55519
55520     ..because it caused compiler errors and there seems to be no
55521     board maintainer to take care of this.
55522
55523     Signed-off-by: Wolfgang Denk <wd@denx.de>
55524
55525 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
55526 Author: Kumar Gala <galak@kernel.crashing.org>
55527 Date:   Mon Aug 20 09:44:00 2007 -0500
55528
55529     Fix MPC8544DS PCIe3 scsi.
55530
55531     <ed.swarthout@freescale.com>
55532
55533     The problem is pciauto_setup_device() getting called from fsl_pci_init.c
55534     is allocating memory space it doesn't need.
55535
55536     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
55537     Signed-off-by: Andy Fleming <afleming@freescale.com>
55538
55539 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
55540 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
55541 Date:   Tue Aug 21 09:38:59 2007 -0500
55542
55543     8548cds fixes
55544
55545     Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
55546     correct consoledev needed for linux boot.
55547     Standardize on fdt{file,addr} var to hold dtb file name.
55548
55549     Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
55550
55551     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55552
55553 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
55554 Author: Haiying Wang <Haiying.Wang@freescale.com>
55555 Date:   Thu Aug 23 15:20:54 2007 -0400
55556
55557     Enable L2 cache for MPC8568MDS board
55558
55559     The L2 cache size is 512KB for 8568, print out the correct informaiton.
55560
55561     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
55562
55563 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
55564 Author: Jason Jin <Jason.jin@freescale.com>
55565 Date:   Wed Aug 22 17:54:49 2007 +0800
55566
55567     Remove the bios emulator binary files from MAI board
55568
55569     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
55570
55571 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
55572 Author: Kim Phillips <kim.phillips@freescale.com>
55573 Date:   Tue Aug 21 17:00:17 2007 -0500
55574
55575     support board vendor-common makefiles
55576
55577     if a board/$(VENDOR)/common/Makefile exists, build it.
55578
55579     also add the first such case, board/freescale/common/Makefile, to
55580     handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
55581     dictated by board configuration.
55582
55583     thusly get rid of alternate build dir errors such as:
55584
55585     FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
55586
55587     by putting the common/ mkdir command in its proper place (the common
55588     Makefile). Common bits from existing individual board Makefiles have
55589     been removed.
55590
55591     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55592
55593 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
55594 Author: stefano babic <sbabic@denx.de>
55595 Date:   Tue Aug 21 15:52:33 2007 +0200
55596
55597     Fix: TFTP is not working on little endian systems
55598
55599     TFTP does not work anymore after multicast tftp
55600     patch was applied on little endian systems.
55601     This patch fix it.
55602
55603     Signed-off-by: Stefano Babic <sbabic@denx.de>
55604
55605 commit 5f470948570526e9186f053a3003da7719604e90
55606 Author: stefano babic <sbabic@denx.de>
55607 Date:   Tue Aug 21 15:50:33 2007 +0200
55608
55609     Fix MAC address setting in DM9000 driver.
55610
55611     The logic to check if there is a correct MAC address in the DM9000
55612     EEPROM, added in the last patch, is wrong. Now the MAC address is
55613     always taken from the environment, even if a suitable MAC is present
55614     in the EEPROM.
55615
55616     Signed-off-by: Stefano Babic <sbabic@denx.de>
55617
55618 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
55619 Author: Martin Krause <martin.krause@tqs.de>
55620 Date:   Tue Aug 21 12:40:34 2007 +0200
55621
55622     MPC5xxx: fix some compiler warnings in USB code
55623
55624     Fix the following warnings:
55625     - usb.c:xx: warning: function declaration isn't a prototype
55626     - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
55627       from pointer wihtout a cast
55628
55629     Signed-off-by: Martin Krause <martin.krase@tqs.de>
55630
55631 commit 16e23c3f5dab6937f5109365416808c7f15c122b
55632 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
55633 Date:   Mon Aug 20 23:55:33 2007 -0500
55634
55635     fsl_pci_init - Remove self PCSRBAR allocation
55636
55637     CPU physical address space was being wasted by allocating a
55638     PCSRBAR PCI inbound region to it's memory space.
55639
55640     As a rule, PCSRBAR should be left alone since it does not affect
55641     transactions from self and other masters may have changed it.
55642
55643     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
55644
55645 commit 0e700ce03a23bb1921149bc77008ace7103d5289
55646 Author: Martin Krause <martin.krause@tqs.de>
55647 Date:   Mon Aug 20 13:56:47 2007 +0200
55648
55649     Fix compiler warning in include/s3c2410.h
55650
55651     This patch fixes the "type qualifiers ignored on fuction return tpye"
55652     warning for include/s3c2410.h
55653
55654     Signed-off-by: Martin Krause <martin.krause@tqs.de>
55655
55656 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
55657 Author: Dirk Behme <dirk.behme@googlemail.com>
55658 Date:   Mon Aug 20 07:09:05 2007 +0200
55659
55660     Fix compilation error for omap2420h4_config.
55661
55662     omap2420h4 switched to cfi, so remove old (already disabled) flash.c
55663     and flash_probe() calls in env_flash.c.
55664
55665     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
55666
55667 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
55668 Author: Kim Phillips <kim.phillips@freescale.com>
55669 Date:   Fri Aug 10 14:34:14 2007 -0500
55670
55671     fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
55672
55673     and make some minor corrections to the FDT part of the README.
55674
55675     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55676
55677 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
55678 Author: Wolfgang Denk <wd@denx.de>
55679 Date:   Wed Aug 29 01:32:05 2007 +0200
55680
55681     Minor coding style cleanup.
55682
55683     Signed-off-by: Wolfgang Denk <wd@denx.de>
55684
55685 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
55686 Author: Heiko Schocher <hs@pollux.denx.de>
55687 Date:   Tue Aug 28 17:40:33 2007 +0200
55688
55689     [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
55690
55691     Signed-off-by: Heiko Schocher <hs@denx.de>
55692
55693 commit f98984cb194bb34dbe1db9429d3b51133af30d07
55694 Author: Heiko Schocher <hs@pollux.denx.de>
55695 Date:   Tue Aug 28 17:39:14 2007 +0200
55696
55697     IDE:        - make ide_inb () and ide_outb () "weak", so boards can
55698               define there own I/O functions.
55699               (Needed for the pcs440ep board).
55700             - The default I/O Functions are again 8 Bit accesses.
55701             - Added CONFIG_CMD_IDE for the pcs440ep Board.
55702
55703     Signed-off-by: Heiko Schocher <hs@denx.de>
55704
55705 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
55706 Author: Semih Hazar <semih.hazar@indefia.com>
55707 Date:   Mon Aug 20 19:00:01 2007 +0300
55708
55709     AVR32: Change prototype of memset
55710
55711     Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
55712     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55713
55714 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
55715 Author: Yuri Tikhonov <yur@emcraft.com>
55716 Date:   Sat Aug 25 05:07:16 2007 +0200
55717
55718     POST: limit memory test area to not touch global data anymore
55719
55720     As experienced on lwmon5, on some boards the POST memory test can
55721     corrupt the global data buffer (bd). This patch fixes this issue
55722     by checking and limiting this area.
55723
55724     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
55725     Signed-off-by: Stefan Roese <sr@denx.de>
55726
55727 commit 75e1a84d483e36be10e206e539b028c4889e1158
55728 Author: Stefan Roese <sr@denx.de>
55729 Date:   Fri Aug 24 15:41:42 2007 +0200
55730
55731     ppc4xx: Add RTC POST test to lwmon5 board configuration
55732
55733     Since this RTC POST test is taking quite a while to complete
55734     it's only initiated upon special keypress same as the complete
55735     memory POST.
55736
55737     Signed-off-by: Stefan Roese <sr@denx.de>
55738
55739 commit d7bfa620037a6d2210159387571bdf93aa32c162
55740 Author: Stefan Roese <sr@denx.de>
55741 Date:   Fri Aug 24 15:19:10 2007 +0200
55742
55743     ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
55744
55745     Signed-off-by: Stefan Roese <sr@denx.de>
55746
55747 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
55748 Author: Stefan Roese <sr@denx.de>
55749 Date:   Thu Aug 23 11:02:37 2007 +0200
55750
55751     ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
55752
55753     This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
55754     board. Now the "eeprom" command can be used to read/write from/to this
55755     device. Additionally a new command was added "eepromwp" to en-/disable
55756     the write-protect of this 2nd EEPROM.
55757
55758     The 1st EEPROM is not affected by this write-protect command.
55759
55760     Signed-off-by: Stefan Roese <sr@denx.de>
55761
55762 commit c64fb30e4c5976007d56fc1789c7a0666082b536
55763 Author: Stefan Roese <sr@denx.de>
55764 Date:   Wed Aug 22 08:56:09 2007 +0200
55765
55766     ppc4xx: Remove unused option CFG_INIT_RAM_OCM
55767
55768     Signed-off-by: Stefan Roese <sr@denx.de>
55769
55770 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
55771 Author: Stefan Roese <sr@denx.de>
55772 Date:   Tue Aug 21 16:27:57 2007 +0200
55773
55774     ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
55775
55776     This patch adds support for the matrix keyboard on the lwmon5 board.
55777     Since the implementation in the dsPCI is kind of compatible with the
55778     "old" lwmon board, most of the code is copied from the lwmon
55779     board directory.
55780
55781     Signed-off-by: Stefan Roese <sr@denx.de>
55782
55783 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
55784 Author: Wolfgang Denk <wd@denx.de>
55785 Date:   Sun Aug 19 10:27:34 2007 +0200
55786
55787     Fix some build errors.
55788
55789     Signed-off-by: Wolfgang Denk <wd@denx.de>
55790
55791 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
55792 Author: Wolfgang Denk <wd@denx.de>
55793 Date:   Sat Aug 18 22:00:38 2007 +0200
55794
55795     Update CHANGELOG.
55796
55797 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
55798 Author: Kim Phillips <kim.phillips@freescale.com>
55799 Date:   Thu Aug 16 22:52:39 2007 -0500
55800
55801     lib_ppc: make board_add_ram_info weak
55802
55803     platforms wishing to display RAM diagnostics in addition to size,
55804     can do so, on one line, in their own board_add_ram_info()
55805     implementation.
55806
55807     this consequently eliminates CONFIG_ADD_RAM_INFO.
55808
55809     Thanks to Stefan for the hint.
55810
55811     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55812
55813 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
55814 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55815 Date:   Fri Aug 17 12:43:44 2007 +0900
55816
55817     PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
55818
55819     This patch has been sent on:
55820     - 6 Jun 2007
55821
55822     Many users of PCI config read routines tend to ignore the function
55823     ret value, and are only concerned about the contents of *val. Based
55824     on this, pci_hose_read_config_{byte,word}_via_dword should initialize
55825     the *val on dword read error.
55826
55827     Without this fix, for example, we'll go on scanning bus with vendor or
55828     header_type uninitialized. This brings many unnecessary config trials.
55829
55830     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55831
55832 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
55833 Author: Stefan Roese <sr@denx.de>
55834 Date:   Sat Aug 18 14:37:52 2007 +0200
55835
55836     ColdFire: Fix some remaining problems with CFG_CMD_
55837
55838     Signed-off-by: Stefan Roese <sr@denx.de>
55839
55840 commit 8280f6a1c43247616b68224675188e5ccd124650
55841 Author: Stefan Roese <sr@denx.de>
55842 Date:   Sat Aug 18 14:33:02 2007 +0200
55843
55844     Coding style cleanup
55845
55846     Signed-off-by: Stefan Roese <sr@denx.de>
55847
55848 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
55849 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55850 Date:   Thu Aug 16 19:23:50 2007 -0500
55851
55852     ColdFire: Add M5235EVB Platform for MCF523x
55853
55854     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55855
55856 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
55857 Author: Kim Phillips <kim.phillips@freescale.com>
55858 Date:   Fri Aug 17 09:30:00 2007 -0500
55859
55860     mpc83xx: fix typo in DDR2 programming
55861
55862     introduced in the implement board_add_ram_info patch as I was cleaning out the
55863     magic numbers.  sorry.
55864
55865     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55866
55867 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
55868 Author: Kim Phillips <kim.phillips@freescale.com>
55869 Date:   Thu Aug 16 22:53:09 2007 -0500
55870
55871     mpc83xx: move freescale boards to boards/freescale
55872
55873     includes build fixes.
55874
55875     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55876
55877 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
55878 Author: Kim Phillips <kim.phillips@freescale.com>
55879 Date:   Thu Aug 16 22:52:59 2007 -0500
55880
55881     mpc83xx: suppress unused variable 'val8' warning
55882
55883     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55884
55885 commit bbea46f76f767b919070b4829bf34c86bd223248
55886 Author: Kim Phillips <kim.phillips@freescale.com>
55887 Date:   Thu Aug 16 22:52:48 2007 -0500
55888
55889     mpc83xx: implement board_add_ram_info
55890
55891     add board_add_ram_info, to make memory diagnostic output more
55892     consistent. u-boot banner output now looks like:
55893
55894     DRAM:  256 MB (DDR1, 64-bit, ECC on)
55895
55896     and for boards with SDRAM on the local bus, a line such as this is
55897     added:
55898
55899     SDRAM: 64 MB (local bus)
55900
55901     also replaced some magic numbers with their equivalent define names.
55902
55903     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55904
55905 commit 14778585d1389d86d5846efec29e5fce892680ce
55906 Author: Tony Li <tony.li@freescale.com>
55907 Date:   Fri Aug 17 10:35:59 2007 +0800
55908
55909     mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
55910
55911     The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
55912     And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
55913
55914     Signed-off-by Tony Li <tony.li@freescale.com>
55915
55916 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
55917 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55918 Date:   Thu Aug 16 15:05:11 2007 -0500
55919
55920     ColdFire: Add M54455EVB for MCF5445x
55921
55922     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55923
55924 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
55925 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55926 Date:   Thu Aug 16 13:20:50 2007 -0500
55927
55928     ColdFire: Add M5253EVBE platform for MCF52x2
55929
55930     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55931
55932 commit a605aacd8324094199402816cc6d9124aba57b8d
55933 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55934 Date:   Thu Aug 16 05:04:31 2007 -0500
55935
55936     ColdFire: Add M5249EVB platform for MCF52x2
55937
55938     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55939
55940 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
55941 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55942 Date:   Wed Aug 15 20:32:06 2007 -0500
55943
55944     ColdFire: Update Freescale MCF52x2 platforms
55945
55946     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55947
55948 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
55949 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55950 Date:   Wed Aug 15 19:55:10 2007 -0500
55951
55952     ColdFire: Update EB+MCF-EV123 platform
55953
55954     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55955
55956 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
55957 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55958 Date:   Wed Aug 15 19:46:38 2007 -0500
55959
55960     ColdFire: update TASREG platform for MCF52x2
55961
55962     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55963
55964 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
55965 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55966 Date:   Wed Aug 15 19:45:51 2007 -0500
55967
55968     ColdFire: update r5200 platform for MCF52x2
55969
55970     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55971
55972 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
55973 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55974 Date:   Wed Aug 15 19:43:20 2007 -0500
55975
55976     ColdFire: idmr platform MCF52x2 update
55977
55978     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55979
55980 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
55981 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55982 Date:   Wed Aug 15 19:41:06 2007 -0500
55983
55984     ColdFire: cobra5272 platform for MCF52x2 update
55985
55986     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55987
55988 commit 56115665b4a64c10c01440c57749b265e0908fa4
55989 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55990 Date:   Wed Aug 15 19:38:15 2007 -0500
55991
55992     ColdFire: MCF52x2 Header files update
55993
55994     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55995
55996 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
55997 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55998 Date:   Wed Aug 15 19:21:21 2007 -0500
55999
56000     ColdFire: MCF52x2 update
56001
56002     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56003
56004 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
56005 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56006 Date:   Wed Aug 15 18:46:11 2007 -0500
56007
56008     ColdFire: MCF5329 update cache
56009
56010     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56011
56012 commit 7171977fb8fd77cfb6676953fa9a05789c450513
56013 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56014 Date:   Wed Aug 15 15:40:20 2007 -0500
56015
56016     ColdFire: MCF5329 header file clean up
56017
56018     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56019
56020 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
56021 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56022 Date:   Wed Aug 15 15:39:17 2007 -0500
56023
56024     ColdFire: MCF5329 Update and cleanup
56025
56026     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56027
56028 commit 10327dc5541f947c0cf7e31fef86c4706169607a
56029 Author: Andy Fleming <afleming@freescale.com>
56030 Date:   Thu Aug 16 16:35:02 2007 -0500
56031
56032     Add CONFIG_HAS_ETH0 to all boards with TSEC
56033
56034     The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
56035     to update TSEC1's device-tree node, so we need to add it
56036     to all the boards with TSECs.  Do this for 83xx and 86xx, too,
56037     since they will eventually do something similar.
56038
56039     Signed-off-by: Andy Fleming <afleming@freescale.com>
56040
56041 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
56042 Author: Kumar Gala <galak@kernel.crashing.org>
56043 Date:   Thu Aug 16 15:05:04 2007 -0500
56044
56045     Update MPC8544 DS PCI memory map
56046
56047     The PCIe bus that the ULI M1575 is connected to has no possible way of
56048     needing more than the fixed amount of IO & Memory space needed by the ULI.
56049
56050     So make it use far less IO & memory space and have it use the shared LAW.  This
56051     free's up a LAW for PCIe1 IO space.  Also reduce the amount of IO space needed
56052     by each bus.
56053
56054     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56055
56056 commit ea5877e31ed63ade948fd1293895ec23fe01472e
56057 Author: Kumar Gala <galak@kernel.crashing.org>
56058 Date:   Thu Aug 16 11:01:21 2007 -0500
56059
56060     Fix up some fdt issues on 8544DS
56061
56062     It looks like we had a merge issue that duplicated a bit of code
56063     in ft_board_setup.  Also, we need to set CONFIG_HAS_ETH0 to get
56064     the MAC address properly set in the device tree on boot for TSEC1
56065
56066     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56067
56068 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
56069 Author: Niklaus Giger <niklaus.giger@netstal.com>
56070 Date:   Thu Aug 16 15:16:03 2007 +0200
56071
56072     PPC4xx:HCU4/5 cleanup
56073
56074     Minor cleanups to confirm to the u-boot coding style.
56075     Some german expressions -> english.
56076     HCU5 enforces a unique IP adress for a given slot in the rack.
56077
56078     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
56079
56080 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
56081 Author: Niklaus Giger <niklaus.giger@netstal.com>
56082 Date:   Thu Aug 16 15:16:02 2007 +0200
56083
56084     PPC4xx:HCU4/5 cleanup ecc/sdram init
56085
56086     Make ecc initialisation robust, as DDR2-ECC errors may be generated
56087     while zeroing the RAM.
56088
56089     Return 16 bytes (a cacheline) less than the available memory, as the
56090     board and/or PPC440EPx might have problems accessing the last bytes.
56091
56092     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
56093
56094 commit d35b508a55508535b6e8445b718585d27df733d3
56095 Author: Kim Phillips <kim.phillips@freescale.com>
56096 Date:   Wed Aug 15 22:29:56 2007 -0500
56097
56098     fdt: suppress unused variable 'bd' warning
56099
56100     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56101
56102 commit 82bd9ee77490588d4da785d75829ca63d0176baf
56103 Author: Andy Fleming <afleming@freescale.com>
56104 Date:   Wed Aug 15 20:06:50 2007 -0500
56105
56106     Fix warnings from of_data copy fix
56107
56108     Forgot to cast of_flat_tree to ulong.
56109
56110     Signed-off-by: Andy Fleming <afleming@freescale.com>
56111
56112 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
56113 Author: Andy Fleming <afleming@freescale.com>
56114 Date:   Wed Aug 15 20:03:44 2007 -0500
56115
56116     Don't wait for disconnected TSECs
56117
56118     The TSEC driver's PHY code waits a long time for autonegotiation to
56119     complete, even if the link is down.  The PHY knows the link is
56120     down or up before autonegotiation completes, so we can short-circuit
56121     the process if the link is down.
56122
56123     Signed-off-by: Andy Fleming <afleming@freescale.com>
56124
56125 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
56126 Author: Andy Fleming <afleming@freescale.com>
56127 Date:   Wed Aug 15 20:03:34 2007 -0500
56128
56129     Fix numerous bugs in the 8568 UEC support
56130
56131     Actually, fixed a large bug in the UEC for *all* platforms.
56132     How did this ever work?
56133
56134     uec_init() did not follow the spec for eth_init(), and returned
56135     0 on success.  Switch it to return the link like tsec_init()
56136     (and 0 on error)
56137
56138     The immap for the 8568 was defined based on MPC8568, rather than
56139     CONFIG_MPC8568
56140
56141     CONFIG_QE was off
56142
56143     CONFIG_ETHPRIME was set to "Freescale GETH".  Now is "FSL UEC0"
56144
56145     Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
56146     enabled
56147
56148     Signed-off-by: Andy Fleming <afleming@freescale.com>
56149
56150 commit 3a79013e2adda53332dfd0b511066a805e929a9d
56151 Author: Andy Fleming <afleming@freescale.com>
56152 Date:   Wed Aug 15 20:03:25 2007 -0500
56153
56154     Define tsec flag values in config files
56155
56156     The tsec_info structure and array has a "flags" field for each
56157     ethernet controller.  This field is the only reason there are
56158     settings.  Switch to defining TSECn_FLAGS for each controller
56159     in the config header, and we can greatly simplify the array, and
56160     also simplify the addition of future boards.
56161
56162     Signed-off-by: Andy Fleming <afleming@freescale.com>
56163
56164 commit ec7238229507e7f47533a611ea8c53319d234cf3
56165 Author: Andy Fleming <afleming@freescale.com>
56166 Date:   Wed Aug 15 20:03:13 2007 -0500
56167
56168     Add support for building all boards with a TSEC
56169
56170     Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
56171     Now we can do a MAKEALL test on all of them!
56172
56173     Signed-off-by: Andy Fleming <afleming@freescale.com>
56174
56175 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
56176 Author: Andy Fleming <afleming@freescale.com>
56177 Date:   Wed Aug 15 17:30:56 2007 -0500
56178
56179     Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
56180
56181     The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
56182     neglected to *also* put the code inside the similar #ifdef
56183     for CONFIG_OF_FLAT_TREE.
56184
56185     Signed-off-by: Andy Fleming <afleming@freescale.com>
56186
56187 commit 78f9fef7f406078c8bf7191e665a73f795157746
56188 Author: Scott Wood <scottwood@freescale.com>
56189 Date:   Wed Aug 15 15:46:46 2007 -0500
56190
56191     mpc885ads: Don't define CONFIG_BZIP2.
56192
56193     bzip2 requires a significant chunk of malloc space, and there isn't
56194     enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
56195     and a downloaded image at 0x400000.
56196
56197     Signed-off-by: Scott Wood <scottwood@freescale.com>
56198
56199 commit 002275a3ed8b114885f6702d6d544d0780dfe689
56200 Author: Michal Simek <Monstr@seznam.cz>
56201 Date:   Thu Aug 16 08:54:10 2007 +0200
56202
56203     Bios emulator - fix microblaze toolchain problem
56204
56205     microblaze CPU have problem with bios_emulator code.
56206     Microblaze toolchain doesn't support PRAGMA PACK.
56207
56208     Signed-off-by: Michal Simek <monstr@monstr.eu>
56209
56210 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
56211 Author: Wolfgang Denk <wd@denx.de>
56212 Date:   Thu Aug 16 11:51:04 2007 +0200
56213
56214     Minor Coding Style fix; Update CHANGELOG file.
56215
56216     Signed-off-by: Wolfgang Denk <wd@denx.de>
56217
56218 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
56219 Author: Stefan Roese <sr@denx.de>
56220 Date:   Thu Aug 16 11:21:49 2007 +0200
56221
56222     ppc4xx: Remove #warning in esd auto_update.c
56223
56224     Signed-off-by: Stefan Roese <sr@denx.de>
56225
56226 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
56227 Author: Stefan Roese <sr@denx.de>
56228 Date:   Fri Jun 22 17:32:28 2007 +0200
56229
56230     ppc7xx: Update CPCI750 board
56231
56232     This small CPCI750 update extends the board specific command
56233     "show_config" to display the Marvell strapping registers and
56234     extends the PCI IDE controller.
56235
56236     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
56237     Signed-off-by: Stefan Roese <sr@denx.de>
56238
56239 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
56240 Author: Michal Simek <monstr@monstr.eu>
56241 Date:   Thu Aug 16 10:46:28 2007 +0200
56242
56243     [FIX] Changes for bios_emulator code for others architecture
56244
56245 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
56246 Author: Michal Simek <monstr@monstr.eu>
56247 Date:   Thu Aug 16 10:45:09 2007 +0200
56248
56249     [FIX] Remove unused include file
56250
56251 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
56252 Author: Stefan Roese <sr@denx.de>
56253 Date:   Thu Aug 16 10:18:33 2007 +0200
56254
56255     ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
56256
56257     Signed-off-by: Stefan Roese <sr@denx.de>
56258
56259 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
56260 Author: Stefan Roese <sr@denx.de>
56261 Date:   Thu Aug 16 09:54:51 2007 +0200
56262
56263     Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
56264
56265     Signed-off-by: Stefan Roese <sr@denx.de>
56266
56267 commit 02ba7022f62bb75908296c58c63866e1d294b69a
56268 Author: Stefan Roese <sr@denx.de>
56269 Date:   Thu Aug 16 09:52:29 2007 +0200
56270
56271     ppc4xx: Update Sequoia/Rainier bootstrap command
56272
56273     As suggested by David Mitchell, here an update for the Sequoia/Rainier
56274     bootstrap command.
56275
56276     Signed-off-by: Stefan Roese <sr@denx.de>
56277
56278 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
56279 Author: Kim Phillips <kim.phillips@freescale.com>
56280 Date:   Wed Aug 15 22:30:39 2007 -0500
56281
56282     mpc83xx: enable libfdt by default on freescale boards
56283
56284     this enables libfdt code by default for the
56285     freescale mpc8313erdb, mpc832xemds, mpc8349emds,
56286     mpc8349itx and gp boards.
56287
56288     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56289
56290 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
56291 Author: Kim Phillips <kim.phillips@freescale.com>
56292 Date:   Wed Aug 15 22:30:33 2007 -0500
56293
56294     mpc83xx: migrate remaining freescale boards to libfdt
56295
56296     this adds libfdt support code for the freescale
56297     mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
56298     and gp boards.
56299
56300     Boards remain compatible with OF_FLAT_TREE.
56301
56302     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56303
56304 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
56305 Author: Kim Phillips <kim.phillips@freescale.com>
56306 Date:   Wed Aug 15 22:30:26 2007 -0500
56307
56308     mpc83xx: move common /memory node update mechanism to cpu.c
56309
56310     also adds common prototypes to include/common.h.
56311
56312     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56313
56314 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
56315 Author: Kim Phillips <kim.phillips@freescale.com>
56316 Date:   Wed Aug 15 22:30:19 2007 -0500
56317
56318     mpc83xx: remaining 8360 libfdt fixes
56319
56320     PCI clocks and QE frequencies weren't being updated, and the core clock
56321     was being updated incorrectly.  This patch also adds a /memory node if
56322     it doesn't already exist prior to update.
56323
56324     plus some cosmetic trimming to single line comments.
56325
56326     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56327
56328 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
56329 Author: Kim Phillips <kim.phillips@freescale.com>
56330 Date:   Wed Aug 15 22:30:12 2007 -0500
56331
56332     mpc83xx: fix UEC2->1 typo in libfdt setup code
56333
56334     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56335
56336 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
56337 Author: Kim Phillips <kim.phillips@freescale.com>
56338 Date:   Wed Aug 15 22:30:05 2007 -0500
56339
56340     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
56341
56342     and reorder the existing 83xx maintainers alpha.
56343
56344     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56345
56346 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
56347 Author: Michal Simek <monstr@monstr.eu>
56348 Date:   Wed Aug 15 21:15:05 2007 +0200
56349
56350     [FIX] Resolve problem with warnings
56351     microblaze toolchain don't support PRAGMA PACK.
56352
56353 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
56354 Author: Michal Simek <monstr@monstr.eu>
56355 Date:   Wed Aug 15 21:05:07 2007 +0200
56356
56357     [FIX] Correction command setting for Microblaze boards
56358
56359 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
56360 Author: Michal Simek <monstr@monstr.eu>
56361 Date:   Wed Aug 15 21:03:41 2007 +0200
56362
56363     [FIX] Correction command definition
56364
56365 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
56366 Author: Jon Loeliger <jdl@freescale.com>
56367 Date:   Wed Aug 15 11:55:35 2007 -0500
56368
56369     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
56370
56371     Remove a leftover in net/tftp.c while we're at it.
56372
56373     Signed-off-by: Jon Loeliger <jdl@freescale.com>
56374
56375 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
56376 Author: Jon Loeliger <jdl@freescale.com>
56377 Date:   Wed Aug 15 12:20:40 2007 -0500
56378
56379     Move the MPC8641HPCN board under board/freescale.
56380
56381     Minor path corrections needed to ensure buildability.
56382
56383     Signed-off-by: Jon Loeliger <jdl@freescale.com>
56384
56385 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
56386 Author: Jon Loeliger <jdl@freescale.com>
56387 Date:   Wed Aug 15 11:46:22 2007 -0500
56388
56389     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
56390
56391     Remove a leftover in net/tftp.c while we're at it.
56392
56393     Signed-off-by: Jon Loeliger <jdl@freescale.com>
56394
56395 commit 210f463c71917b7a4495c2103c228b9c179ae64d
56396 Author: Jerry Van Baren <gvb.uboot@gmail.com>
56397 Date:   Wed Aug 15 11:13:15 2007 -0400
56398
56399     Fix where the #ifdef CFG_BOOTMAPSZ is placed.
56400
56401     Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
56402     interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
56403     when it should have gone inside of the conditional.  As a result, it
56404     broke non-LIBFDT board builds.
56405
56406     Also added a missing "not." to the comment.
56407
56408     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
56409
56410 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
56411 Author: Niklaus Giger <niklaus.giger@netstal.com>
56412 Date:   Wed Aug 15 12:14:23 2007 +0200
56413
56414     PPC4xx:HCU4/5-Board fix compile warning
56415
56416     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
56417
56418 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
56419 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56420 Date:   Tue Aug 14 14:06:45 2007 -0500
56421
56422     Fix malloc size error in ahci_init_one.
56423
56424     Typically this causes scsi init to corrupt the
56425     devlist and break the coninfo command.
56426     Fix a compiler size warning.
56427
56428     Signed-off-by: Jason Jin <jason.jin@freescale.com>
56429     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56430     Acked-by: Andy Fleming <afleming@freescale.com>
56431
56432 commit b361acd64fd2525c081b9b288b0804efe209c0e9
56433 Author: ksi@koi8.net <ksi@koi8.net>
56434 Date:   Tue Aug 14 10:02:16 2007 -0700
56435
56436     TI DaVinci - fix unsupported %hhx format
56437
56438     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
56439
56440 commit f01dbb5424a81453c81190dd30e945891466f621
56441 Author: Wolfgang Denk <wd@denx.de>
56442 Date:   Tue Aug 14 18:42:36 2007 +0200
56443
56444     Coding style cleanup. Update CHANGELOG.
56445
56446     Signed-off-by: Wolfgang Denk <wd@denx.de>
56447
56448 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
56449 Author: Andy Fleming <afleming@freescale.com>
56450 Date:   Tue Aug 14 10:32:59 2007 -0500
56451
56452     Fix initrd/dtb interaction
56453
56454     The original code would wrongly relocate the blob to be right before
56455     the initrd if it existed.  The blob *must* be within CFG_BOOTMAPSZ,
56456     if it is defined.  So we make two changes:
56457
56458     1) flag the blob for relocation whenever its address is above BOOTMAPSZ
56459
56460     2) If the blob is being relocated, relocate it before kbd, not initrd
56461
56462     Signed-off-by: Andy Fleming <afleming@freescale.com>
56463
56464 commit e54b970173769307a116bd34028b6d0c2eea2a4e
56465 Author: Peter Pearse <peter.pearse@arm.com>
56466 Date:   Tue Aug 14 15:40:00 2007 +0100
56467
56468     Supply spi interface in at45.c
56469
56470 commit 4ce846ec59f36b85d6644a769690ad3feb667575
56471 Author: Stefan Roese <sr@denx.de>
56472 Date:   Tue Aug 14 15:12:01 2007 +0200
56473
56474     POST: Fix merge problem
56475
56476     Signed-off-by: Stefan Roese <sr@denx.de>
56477
56478 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
56479 Author: Stefan Roese <sr@denx.de>
56480 Date:   Tue Aug 14 15:03:17 2007 +0200
56481
56482     Coding style cleanup
56483
56484     Signed-off-by: Stefan Roese <sr@denx.de>
56485
56486 commit 779e975117a75e91fcebe226a63104dbfb924ab1
56487 Author: Stefan Roese <sr@denx.de>
56488 Date:   Tue Aug 14 14:44:41 2007 +0200
56489
56490     ppc4xx: Add initial Zeus (PPC405EP) board support
56491
56492     Signed-off-by: Stefan Roese <sr@denx.de>
56493
56494 commit c5a172a5fd636c12467429e3f7910e53773979c6
56495 Author: Stefan Roese <sr@denx.de>
56496 Date:   Tue Aug 14 14:41:55 2007 +0200
56497
56498     POST: Add option for external ethernet loopback test
56499
56500     When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
56501     is not done using an internal loopback connection, but by assuming
56502     that an external loopback connector is plugged into the board.
56503
56504     Signed-off-by: Stefan Roese <sr@denx.de>
56505
56506 commit eb2b4010ae426245172988804ee8d9193fb41038
56507 Author: Stefan Roese <sr@denx.de>
56508 Date:   Tue Aug 14 14:39:44 2007 +0200
56509
56510     POST: Add ppc405 support to cache and UART POST
56511
56512     Signed-off-by: Stefan Roese <sr@denx.de>
56513
56514 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
56515 Author: Peter Pearse <peter.pearse@arm.com>
56516 Date:   Tue Aug 14 10:46:32 2007 +0100
56517
56518     Replace lost end of at45.c.
56519
56520 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
56521 Author: Peter Pearse <peter.pearse@arm.com>
56522 Date:   Tue Aug 14 10:30:06 2007 +0100
56523
56524     Update Makefiles for merged and split at45.c.
56525
56526 commit 3454cece2db57cb9eb7087995f7e73066a163f71
56527 Author: Peter Pearse <peter.pearse@arm.com>
56528 Date:   Tue Aug 14 10:21:06 2007 +0100
56529
56530     Delete the merged files.
56531
56532 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
56533 Author: Peter Pearse <peter.pearse@arm.com>
56534 Date:   Tue Aug 14 10:14:05 2007 +0100
56535
56536     Add the files.
56537
56538 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
56539 Author: Peter Pearse <peter.pearse@arm.com>
56540 Date:   Tue Aug 14 10:10:52 2007 +0100
56541
56542     Add MACH_TYPE records for several AT91 boards.
56543     Merge to two at45.c files into a common file, split to at45.c and spi.c
56544     Fix spelling error in DM9161 PHY Support.
56545     Initialize at91rm9200 board (and set LED).
56546     Add PIO control for at91rm9200dk LEDs and Mux.
56547     Change dataflash partition boundaries to be compatible with Linux 2.6.
56548
56549     Signed-off-by:      Peter Pearse <peter.pearse@arm.com>
56550     Signed-off-by:      Ulf Samuelsson <ulf@atmel.com>
56551
56552 commit 4ef35e53c693556c54b0c22d6f873de87bade253
56553 Author: Wolfgang Denk <wd@denx.de>
56554 Date:   Tue Aug 14 09:54:46 2007 +0200
56555
56556     Coding style cleanup, update CHANGELOG
56557
56558     Signed-off-by: Wolfgang Denk <wd@denx.de>
56559
56560 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
56561 Author: Wolfgang Denk <wd@denx.de>
56562 Date:   Tue Aug 14 09:47:27 2007 +0200
56563
56564     Coding style cleanup; rebuild CHANGELOG
56565
56566 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
56567 Author: Randy Vinson <rvinson@linuxbox.(none)>
56568 Date:   Tue Feb 27 19:42:22 2007 -0700
56569
56570     85xxCDS: Add make targets for legacy systems.
56571
56572     The PCI ID select values on the Arcadia main board differ depending
56573     on the version of the hardware. The standard configuration supports
56574     Rev 3.1. The legacy target supports Rev 2.x.
56575
56576     Signed-off-by Randy Vinson <rvinson@mvista.com>
56577
56578 commit e41094c7e38177c755fbd9b182018069614f080d
56579 Author: Andy Fleming <afleming@freescale.com>
56580 Date:   Tue Aug 14 01:50:09 2007 -0500
56581
56582     85xxCDS: Enable the VIA PCI-to-ISA bridge.
56583
56584     Author: Randy Vinson <rvinson@linuxbox.(none)>
56585
56586     Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
56587     Arcadia main board.
56588
56589     Signed-off-by: Randy Vinson <rvinson@mvista.com>
56590     Signed-off-by: York Sun <yorksun@freescale.com>
56591
56592 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
56593 Author: Andy Fleming <afleming@freescale.com>
56594 Date:   Tue Aug 14 00:14:25 2007 -0500
56595
56596     Add support for UEC to 8568
56597
56598     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
56599     Signed-off-by: Andy Fleming <afleming@freescale.com>
56600
56601 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
56602 Author: Haiying Wang <Haiying.Wang@freescale.com>
56603 Date:   Tue Jun 19 14:18:34 2007 -0400
56604
56605     Add PCI support for MPC8568MDS board
56606
56607     This patch is against u-boot-mpc85xx.git of www.denx.com
56608
56609     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
56610     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
56611
56612 commit d111d6382c99fdea08c2312eeeae8786945e189a
56613 Author: Haiying Wang <Haiying.Wang@freescale.com>
56614 Date:   Tue Jun 19 14:18:32 2007 -0400
56615
56616     Empirically set cpo and clk_adjust for mpc85xx DDR2 support
56617
56618     This patch is against u-boot-mpc85xx.git of www.denx.com
56619
56620     Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
56621     both MPC8548CDS board and MPC8568MDS board, especially for supporting
56622     533MHz DDR2.
56623
56624     Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
56625     DDR2 on all current board versions especially ver 1.92 or later to bring
56626     up.
56627
56628     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
56629
56630 commit 3db0bef59eab1155801618cef5c481e97553b597
56631 Author: Kumar Gala <galak@kernel.crashing.org>
56632 Date:   Tue Aug 7 18:07:27 2007 -0500
56633
56634     Use an absolute address when jumping out of 4k boot page
56635
56636     On e500 when we leave the 4k boot page we should use an absolute address since
56637     we don't know where the board code may want us to be really running at.
56638
56639     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56640
56641 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
56642 Author: Andy Fleming <afleming@freescale.com>
56643 Date:   Mon Aug 13 14:49:59 2007 -0500
56644
56645     MPC85xx BA bits not set for 3-bit bank address DIMM
56646
56647     The current implementation does not set the number of bank address bits
56648     (BA) in the processor. The default assumes 2 logical bank bits. This
56649     works fine for a DIMM that uses devices with 4 internal banks (SPD
56650     byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
56651     devices with 8 internal banks (SPD byte17 = 0x8).
56652
56653     Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
56654
56655 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
56656 Author: Andy Fleming <afleming@freescale.com>
56657 Date:   Mon Aug 13 14:38:06 2007 -0500
56658
56659     Fix minor 85xx warnings
56660
56661     Some patches had inserted warnings into the build:
56662     * mpc8560ads declared data without using it
56663     * cpu_init declared ecm and immap without using it in all CONFIGs
56664     * MPC8548CDS.h had its default filenames changed so that they contained
56665       "\m" in the paths.  Made the defaults not Windows-specific (or
56666       anything-specific)
56667
56668     Signed-off-by: Andy Fleming <afleming@freescale.com>
56669
56670 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
56671 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56672 Date:   Fri Jul 27 01:50:52 2007 -0500
56673
56674     8548cds PCIE support.
56675
56676     Make the early L1 cache stack region guarded to prevent speculative
56677     fetches outside the locked range.
56678
56679     Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
56680     init.S whitespace cleanup.
56681
56682     Allow TEXT_BASE value to be specified on command line.  This allows it
56683     to be set to 0xfffc0000 which cuts the uboot binary in half.
56684
56685     Clear and enable lbc and ecm errors.
56686
56687     Update last_busno in device-tree for pci and pcie.
56688
56689     Remove load of obsolete cpu/mpc85xx/pci.0
56690
56691     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56692     Acked-by: Andy Fleming <afleming@freescale.com>
56693
56694 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
56695 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56696 Date:   Fri Jul 27 01:50:51 2007 -0500
56697
56698     8544ds PCIE support
56699
56700     PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
56701
56702     Enable LBC and ECM errors and clear error registers.
56703
56704     Add tftpflash env var to get uboot from tftp server and flash it.
56705
56706     Add pci/pcie convenience env vars to display register space:
56707       "run pcie3regs" to see all pcie3 ccsr registers
56708       "run pcie3cfg" to see all cfg registers
56709     Whitespace cleanup and MPC8544DS.h
56710
56711     Enable CONFIG_INTERRUPTS.
56712
56713     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56714     Acked-by: Andy Fleming <afleming@freescale.com>
56715
56716 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
56717 Author: Andy Fleming <afleming@freescale.com>
56718 Date:   Tue Aug 14 01:34:21 2007 -0500
56719
56720     85xx start.S cleanup and exception support
56721
56722     From: Ed Swarthout <Ed.Swarthout@freescale.com>
56723
56724     Support external interrupts from platform to eliminate system hangs.
56725     Define CONFIG_INTERRUPTS board configure option to enable.
56726     Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
56727
56728     Remove extra cpu initialization redundant with hardware initialization.
56729     Whitespace cleanup.
56730
56731     Define and use _START_OFFSET consistent with other processors using
56732     ppc_asm.tmpl
56733
56734     Move additional code from .text to boot page to make room for
56735     exception vectors at start of image.
56736
56737     Handle Machine Check, External and Critical exceptions.
56738
56739     Fix e500 machine check error determination in traps.c
56740
56741     TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
56742
56743     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56744     Acked-by: Andy Fleming <afleming@freescale.com>
56745
56746 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
56747 Author: Andy Fleming <afleming@freescale.com>
56748 Date:   Tue Aug 14 01:33:18 2007 -0500
56749
56750     Add MPC8544DS README
56751
56752     Signed-off-by: Andy Fleming <afleming@freescale.com>
56753
56754 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
56755 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56756 Date:   Fri Jul 27 01:50:48 2007 -0500
56757
56758     85xx allow debugger to configure ddr.
56759
56760     Only check for mpc8548 rev 1 when compiled for 8548.
56761
56762     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56763     Acked-by: Andy Fleming <afleming@freescale.com>
56764
56765 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
56766 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56767 Date:   Fri Jul 27 01:50:47 2007 -0500
56768
56769     mpc85xx L2 cache reporting and SRAM relocation option.
56770
56771     Allow debugger to override flash cs0/cs1 settings to enable alternate
56772     boot regions
56773
56774     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56775     Acked-by: Andy Fleming <afleming@freescale.com>
56776
56777 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
56778 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56779 Date:   Fri Jul 27 01:50:46 2007 -0500
56780
56781     e500 needs ppc_asm.tmp MCK_EXCEPTION
56782
56783     Always define MCK_EXCEPTION macro - so e500 can use it too.
56784
56785     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56786     Acked-by: Andy Fleming <afleming@freescale.com>
56787
56788 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
56789 Author: David Updegraff <dave@cray.com>
56790 Date:   Mon Jun 11 10:41:07 2007 -0500
56791
56792     multicast tftp: RFC2090
56793
56794     Implemented IETF RFC2090, Multicast TFTP.  Initial implementation
56795     on Realtek RTL8139 and Freescale TSEC.
56796
56797     Signed-off-by: David Updegraff <dave@cray.com>
56798     Signed-off-by: Ben Warren <bwarren@qstreams.com>
56799
56800 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
56801 Author: Wilson Callan <wcallan@savantav.com>
56802 Date:   Sat Jul 28 10:56:13 2007 -0400
56803
56804     New CONFIG_BOOTP_SERVERIP option
56805
56806     Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
56807     from the bootp server
56808
56809     Signed-off-by: Wilson Callan <wcallan@savantav.com>
56810     Signed-off-by: Ben Warren <bwarren@qstreams.com>
56811
56812 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
56813 Author: Mike Rapoport <mike@compulab.co.il>
56814 Date:   Sun Aug 12 08:48:27 2007 +0300
56815
56816     Add ability to take MAC address from the environment to DM9000 driver
56817
56818     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
56819     Signed-off-by: Ben Warren <bwarren@qstreams.com>
56820
56821 commit be5d72d10d47609326226225181e301fb9a33b58
56822 Author: Wolfgang Denk <wd@denx.de>
56823 Date:   Mon Aug 13 21:57:53 2007 +0200
56824
56825     Minor coding style cleanup. Update CHANGELOG.
56826
56827     Signed-off-by: Wolfgang Denk <wd@denx.de>
56828
56829 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
56830 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
56831 Date:   Sat Aug 11 06:54:58 2007 -0500
56832
56833     Modify SBC8641D to use new Freescale PCI routines
56834
56835     PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
56836     adapter.
56837
56838     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
56839     Signde-off-by: Jon Loeliger <jdl@freescale.com>
56840
56841 commit a08458303e7f9db67f296980036d3292c35cb45c
56842 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56843 Date:   Fri Jun 29 18:38:51 2007 +0200
56844
56845     atmel_mci: Fix data timeout value
56846
56847     Calculate the data timeout based on values from the CSD instead of
56848     just using a hardcoded DTOR value. This is a backport of a similar fix
56849     in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
56850     instead of down.
56851
56852     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56853
56854 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
56855 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56856 Date:   Mon Aug 13 17:22:31 2007 +0200
56857
56858     AVR32: Include <div64.h> instead of <asm/div64.h>
56859
56860     include/asm-avr32/div64.h was recently moved to include/div64.h, but
56861     cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
56862     the patch was merged perhaps?)
56863
56864     This patch updates cpu/at32ap/interrupts.c so that the avr32 port
56865     compiles again.
56866
56867     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56868
56869 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
56870 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56871 Date:   Wed Jun 27 13:34:26 2007 +0200
56872
56873     atmel_mci: Use 512 byte blocksize if possible
56874
56875     Instead of always using the largest blocksize the card supports, check
56876     if it can support smaller block sizes and use 512 bytes if possible.
56877     Most cards do support this, and other parts of u-boot seem to have
56878     trouble with block sizes different from 512 bytes.
56879
56880     Also enable underrun/overrun protection.
56881
56882     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56883     Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
56884
56885 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
56886 Author: Stefan Roese <sr@denx.de>
56887 Date:   Mon Aug 13 09:05:33 2007 +0200
56888
56889     ppc4xx: Fix problem in PLL clock calculation
56890
56891     This patch was originall provided by David Mitchell <dmitchell@amcc.com>
56892     and fixes a bug in the PLL clock calculation.
56893
56894     Signed-off-by: Stefan Roese <sr@denx.de>
56895
56896 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
56897 Author: Wolfgang Denk <wd@denx.de>
56898 Date:   Sun Aug 12 21:34:50 2007 +0200
56899
56900     Update CHANGELOG
56901
56902 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
56903 Author: Wolfgang Denk <wd@denx.de>
56904 Date:   Sun Aug 12 21:34:34 2007 +0200
56905
56906     Minor alignment of output, 2nd try.
56907     Also update CHANGELOG
56908
56909     Signed-off-by: Wolfgang Denk <wd@denx.de>
56910
56911 commit 6b309f22a724fad8418e811751a0741b893419cf
56912 Author: Wolfgang Denk <wd@denx.de>
56913 Date:   Sun Aug 12 20:35:49 2007 +0200
56914
56915     Minor alignment of output
56916
56917     Signed-off-by: Wolfgang Denk <wd@denx.de>
56918
56919 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
56920 Author: Wolfgang Denk <wd@denx.de>
56921 Date:   Sun Aug 12 18:28:18 2007 +0200
56922
56923     Cleanup output on ADS5121 board
56924
56925     Signed-off-by: Wolfgang Denk
56926
56927 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
56928 Author: Wolfgang Denk <wd@denx.de>
56929 Date:   Sun Aug 12 15:11:38 2007 +0200
56930
56931     Adapt board configuration and fix kernel crash on MCC200 board.
56932
56933     The update procedure was modified to turn off the USB subsystem
56934     before exit for MCC200 and TRAB. This is necessary as otherwise the
56935     USB controller continues to write periodically to system memory!
56936
56937     MCC200-specific notes:
56938     - the patch disables the magic key check for MCC200
56939     - the patch contains the configuration changes made
56940       for the new revision of the board.
56941
56942     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
56943     Signed-off-by: Wolfgang Denk <wd@denx.de>
56944
56945 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
56946 Author: Wolfgang Denk <wd@denx.de>
56947 Date:   Sun Aug 12 14:47:54 2007 +0200
56948
56949     Adjust default configuration of ADS5121 board.
56950
56951     Signed-off-by: Wolfgang Denk <wd@denx.de>
56952
56953 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
56954 Author: Wolfgang Denk <wd@denx.de>
56955 Date:   Sun Aug 12 14:27:39 2007 +0200
56956
56957     Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
56958
56959     Signed-off-by: Wolfgang Denk <wd@denx.de>
56960
56961 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
56962 Author: Gerald Van Baren <vanbaren@cideas.com>
56963 Date:   Tue Aug 7 21:14:22 2007 -0400
56964
56965     Improve error print messages.
56966
56967     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
56968
56969 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
56970 Author: Kim Phillips <kim.phillips@freescale.com>
56971 Date:   Tue Jul 17 13:57:04 2007 -0500
56972
56973     fdt: allow for builds that don't want env and bd_t nodes
56974
56975     protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
56976     area.
56977
56978     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56979
56980 commit 91148bf7aeba142d6f348805db7625db7da64d6f
56981 Author: Kim Phillips <kim.phillips@freescale.com>
56982 Date:   Tue Jul 17 13:56:53 2007 -0500
56983
56984     fdt: do board setup based on fdt address specified on bootm line
56985
56986     The last fdt patch to bootm did board setup based on the address
56987     specified by a prior fdt address command invocation.  The bootm
56988     code, as its call to fdt_chosen does, should use the fdt specified
56989     by the user on the bootm command.  Note this restores full
56990     functionality for the 8360's existing default boot environment
56991     values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
56992     before booting a kernel).
56993
56994     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56995
56996 commit e125a2ffc209dd34794e326c7175658253beadf3
56997 Author: Gerald Van Baren <vanbaren@cideas.com>
56998 Date:   Tue Jul 10 20:40:39 2007 -0400
56999
57000     Call ft_board_setup() from the bootm command.
57001
57002     In the patch titled "Create new fdt boardsetup command..." I removed the
57003     call to ft_board_setup() from the routine fdt_chosen(), but I forgot
57004     to add a direct call back into cmd_bootm.c
57005
57006     This fixes the oversight by adding the direct call to the bootm command.
57007
57008     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57009
57010 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
57011 Author: Gerald Van Baren <vanbaren@cideas.com>
57012 Date:   Mon Jun 25 23:25:28 2007 -0400
57013
57014     Create new fdt boardsetup command, fix bug parsing [] form of set values.
57015
57016     Previously ft_board_setup() was called by fdt_chosen() which was not
57017     really correctly structured.  This splits ft_board_setup() out by creating
57018     a new fdt boardsetup command.
57019
57020     Fix a bug when parsing fdt set command values which have the square
57021     bracket form [00 11 22 33] - the length was updated incorrectly in when
57022     parsing that form.
57023
57024     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57025
57026 commit 6f35ded9e85493595e0eb66a82b502a95326d049
57027 Author: Gerald Van Baren <vanbaren@cideas.com>
57028 Date:   Mon Jun 25 20:55:58 2007 -0400
57029
57030     Tighten up the error messages.
57031
57032     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57033
57034 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
57035 Author: Gerald Van Baren <vanbaren@cideas.com>
57036 Date:   Mon Jun 25 19:52:23 2007 -0400
57037
57038     Asthetic improvements: error messages and line lengths.
57039
57040     Tighten up the error messages, split overlength lines.
57041
57042     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57043
57044 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
57045 Author: Gerald Van Baren <vanbaren@cideas.com>
57046 Date:   Fri May 25 22:08:57 2007 -0400
57047
57048     Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
57049
57050     The fdt_chosen() function was adding/seting some properties ad-hoc
57051       improperly and duplicated (poorly) what was done in ft_board_setup()
57052
57053     Clean up long lines (setting properties, printing errors).
57054
57055     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57056
57057 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
57058 Author: Gerald Van Baren <vanbaren@cideas.com>
57059 Date:   Mon May 21 23:27:16 2007 -0400
57060
57061     For fdt_find_node_by_path(), handle the root path properly.
57062
57063     Also removes the special case root path detection in cmd_fdt.c since it
57064     is no longer necessary.
57065
57066     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57067
57068 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
57069 Author: Gerald Van Baren <vanbaren@cideas.com>
57070 Date:   Thu May 17 23:54:36 2007 -0400
57071
57072     Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
57073
57074     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
57075     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
57076
57077 commit 1a861169bc3758f9de3aead62b058736c6891246
57078 Author: Gerald Van Baren <vanbaren@cideas.com>
57079 Date:   Wed Jun 6 22:47:58 2007 -0400
57080
57081     Replace fdt_node_offset() with fdt_find_node_by_path().
57082
57083     The new name matches more closely the kernel's name, which is also
57084     a much better description.
57085
57086     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
57087     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
57088
57089 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
57090 Author: Gerald Van Baren <vanbaren@cideas.com>
57091 Date:   Wed May 16 22:39:59 2007 -0400
57092
57093     Fix cmd_fdt line lengths, refactor code.
57094
57095     Break lines that were greater than 80 characters in length.
57096     Move the fdt print and property parsing code to separate static functions
57097       to reduce coding clutter in the fdt_cmd handling body.
57098
57099     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57100
57101 commit 25114033ab21788810c48ba4df103b649da1223b
57102 Author: Gerald Van Baren <vanbaren@cideas.com>
57103 Date:   Sat May 12 09:47:25 2007 -0400
57104
57105     FDT command improvements.
57106
57107     Fix "fdt set" so that it will create a non-existing property.
57108     Add "fdt mknode" to create nodes.
57109
57110     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57111
57112 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
57113 Author: Gerald Van Baren <vanbaren@cideas.com>
57114 Date:   Sat May 12 09:45:46 2007 -0400
57115
57116     Reorganize and fix problems (returns) in the bootm command.
57117
57118     Do *NOT* return after the "point of no return" has been passed.
57119       If something goes wrong, the board must be reset after that point.
57120     Move the "Transferring control to Linux" debug message back to where it
57121       belongs: just before transferring control to linux.
57122
57123     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57124
57125 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
57126 Author: Gerald Van Baren <vanbaren@cideas.com>
57127 Date:   Tue May 8 21:27:35 2007 -0400
57128
57129     Fix bugs in the CONFIG_OF_LIBFDT
57130
57131     Stupid coding mistakes (identified by Timur Tabi, thanks).
57132
57133     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57134
57135 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
57136 Author: Gerald Van Baren <vanbaren@cideas.com>
57137 Date:   Wed Apr 25 22:47:15 2007 -0400
57138
57139     Improve fdt move length handling.
57140
57141     Make the length parameter optional: if not specified, do the move using
57142     the current size unchanged.
57143
57144     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57145
57146 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
57147 Author: Gerald Van Baren <vanbaren@cideas.com>
57148 Date:   Wed Apr 25 22:23:36 2007 -0400
57149
57150     Minor code clean up.
57151
57152     Declare the variable fdt properly as extern.
57153     Call the "set_fn" function pointer the "short way" without the full
57154       dereferencing syntax.
57155
57156     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57157
57158 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
57159 Author: Gerald Van Baren <vanbaren@cideas.com>
57160 Date:   Wed Apr 25 21:24:27 2007 -0400
57161
57162     Improve error messages, more informative.
57163
57164     Print more than the raw libfdt error message strings.  This is especially
57165     useful for cluing in the user when the bootm command aborts due to
57166     blob problems.
57167
57168     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57169
57170 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
57171 Author: Gerald Van Baren <vanbaren@cideas.com>
57172 Date:   Fri Apr 20 22:46:53 2007 -0400
57173
57174     libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
57175
57176     This is the way u-boot reduces configured-out code.  At Wolfgang
57177     Grandegger and Wolfgang Denk's request, make libfdt conform.
57178
57179     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57180
57181 commit 923efd286411ed052d9e074f59f8986d6081061c
57182 Author: Bruce Adler <bruce.adler@ccpu.com>
57183 Date:   Fri Aug 10 14:54:47 2007 -0700
57184
57185     add image size and descriptors for Spartan 3E FPGA chips
57186
57187     Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
57188
57189     Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
57190
57191 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
57192 Author: Kim Phillips <kim.phillips@freescale.com>
57193 Date:   Fri Aug 10 15:34:48 2007 -0500
57194
57195     make MAKEALL more immune to merge conflicts
57196
57197     ..by placing board entries one per line, as suggested by jdl.
57198
57199     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57200
57201 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
57202 Author: Kim Phillips <kim.phillips@freescale.com>
57203 Date:   Fri Aug 10 13:28:25 2007 -0500
57204
57205     README: Remove outdated cpu type, board type, and NAME_config lists
57206
57207     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57208
57209 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
57210 Author: Dave Liu <r63238@freescale.com>
57211 Date:   Fri Aug 10 15:48:59 2007 +0800
57212
57213     mpc83xx: Suppress the warning 'burstlen'
57214
57215     suppress the warning 'burstlen' of spd_sdram.
57216
57217     Signed-off-by: Dave Liu <daveliu@freescale.com>
57218
57219 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
57220 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
57221 Date:   Thu Aug 9 15:11:03 2007 -0500
57222
57223     Add support for SBC8641D. Config files.
57224
57225     Add support for Wind River's SBC8641D reference board.
57226
57227     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
57228     Acked-by: Wolfgang Denk <wd@denx.de>
57229     Acked-by: Jon Loeliger <jdl@freescale.com>
57230
57231 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
57232 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
57233 Date:   Thu Aug 9 15:10:53 2007 -0500
57234
57235     Add support for SBC8641D.  Board files.
57236
57237     Add support for Wind River's SBC8641D reference board.
57238
57239     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
57240     Acked-by: Wolfgang Denk <wd@denx.de>
57241     Acked-by: Jon Loeliger <jdl@freescale.com>
57242
57243 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
57244 Author: Stefan Roese <sr@denx.de>
57245 Date:   Fri Aug 10 20:34:58 2007 +0200
57246
57247     Conding style cleanup
57248
57249     Signed-off-by: Stefan Roese <sr@denx.de>
57250
57251 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
57252 Author: Sergey Kubushyn <ksi@koi8.net>
57253 Date:   Fri Aug 10 20:26:18 2007 +0200
57254
57255     [ARM] TI DaVinci support, hopefully final
57256
57257     Add support for the following DaVinci boards:
57258     - DV_EVM
57259     - SCHMOOGIE
57260     - SONATA
57261
57262     Changes:
57263
57264     - Split into separate board directories
57265     - Removed changes to MTD_DEBUG (or whatever it's called)
57266     - New CONFIG_CMD party line followed
57267     - Some cosmetic fixes, cleanup etc.
57268     - Patches against the latest U-Boot tree as of now.
57269     - Fixed CONFIG_CMD_NET in net files.
57270     - Fixed CONFIG_CMD_EEPROM for schmoogie.
57271     - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
57272        DV_EVM. Can't check if it works on SONATA, don't have a board any more,
57273        but it at least compiles.
57274
57275     Here is an excerpt from session log on SCHMOOGIE...
57276
57277     U-Boot 1.2.0-g6c33c785-dirty (Aug  7 2007 - 13:07:17)
57278
57279     DRAM:  128 MB
57280     NAND:  128 MiB
57281     In:    serial
57282     Out:   serial
57283     Err:   serial
57284     ARM Clock : 297MHz
57285     DDR Clock : 162MHz
57286     ETH PHY   : DP83848 @ 0x01
57287     U-Boot > iprobe
57288     Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
57289     U-Boot > ping 192.168.253.10
57290     host 192.168.253.10 is alive
57291     U-Boot >
57292
57293     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
57294     Acked-by: Dirk Behme <dirk.behme@gmail.com>
57295     Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
57296     Acked-by: Stefan Roese <sr@denx.de>
57297
57298 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
57299 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57300 Date:   Fri Jul 27 01:50:45 2007 -0500
57301
57302     fsl_pci_init cleanup.
57303
57304     Do not enable normal errors created during probe (master abort, perr,
57305     and pcie Invalid Configuration access).
57306
57307     Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
57308
57309     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57310     Acked-by: Andy Fleming <afleming@freescale.com>
57311
57312 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
57313 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57314 Date:   Fri Jul 27 01:50:44 2007 -0500
57315
57316     pciauto_setup_device bars_num fix
57317
57318     Passing bars_num=0 to pciauto_setup_device should assign no bars.
57319
57320     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57321     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57322     Acked-by: Andy Fleming <afleming@freescale.com>
57323
57324 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
57325 Author: Jon Loeliger <jdl@freescale.com>
57326 Date:   Mon Aug 6 17:39:44 2007 -0500
57327
57328     8641hpcn: Do correct sized pointer math.
57329
57330     When I rebased Ed's patch and cleaned up a few compilation
57331     problems, I apparently rebased my brain on crack first.
57332     Fix that by doing (char *) sized pointer math as needed.
57333
57334     Signed-off-by: Jon Loeliger <jdl@freescale.com>
57335
57336 commit cfc7a7f5bb3273c9951173c788001d45118f141f
57337 Author: Jon Loeliger <jdl@freescale.com>
57338 Date:   Thu Aug 2 14:42:20 2007 -0500
57339
57340     cpu/86xx fixes.
57341
57342     Remove rev 1 fixes.
57343     Always set PICGCR_MODE.
57344     Enable machine check and provide board config option
57345     to set and handle SoC error interrupts.
57346
57347     Include MSSSR0 in error message.
57348
57349     Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
57350
57351     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57352     Signed-off-by: Jon Loeliger <jdl@freescale.com>
57353
57354 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
57355 Author: Stefan Roese <sr@denx.de>
57356 Date:   Fri Aug 10 10:42:25 2007 +0200
57357
57358     Coding style cleanup
57359
57360     Signed-off-by: Stefan Roese <sr@denx.de>
57361
57362 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
57363 Author: Dirk Behme <dirk.behme@googlemail.com>
57364 Date:   Thu Aug 2 17:42:08 2007 +0200
57365
57366     Make use of generic 64bit division in nand_util.c
57367
57368     Use generic 64bit division in nand_util.c. This makes nand_util.c
57369     independent of any toolchain 64bit division.
57370
57371     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
57372
57373 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
57374 Author: Dirk Behme <dirk.behme@googlemail.com>
57375 Date:   Thu Aug 2 17:41:14 2007 +0200
57376
57377     Move 64bit division from avr32 to generic lib
57378
57379     Move the 64bit division from lib_avr32 to lib_generic. With this, all
57380     boards can do_div/__div64_32 if needed, not only avr one. Code is put
57381     to lib_generic, so no larger memory footprint if not used. No code
57382     modifications. Thanks for proposal by HĂ¥vard Skinnemoen.
57383
57384     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
57385
57386 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
57387 Author: Niklaus Giger <niklausgiger@gmx.ch>
57388 Date:   Fri Jul 27 11:31:22 2007 +0200
57389
57390     Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
57391
57392     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57393
57394 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
57395 Author: Niklaus Giger <niklausgiger@gmx.ch>
57396 Date:   Fri Jul 27 11:30:33 2007 +0200
57397
57398     Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
57399
57400     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57401
57402 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
57403 Author: Niklaus Giger <niklausgiger@gmx.ch>
57404 Date:   Fri Jul 27 11:38:26 2007 +0200
57405
57406     Add PPC4xx-HCU4 and HCU5 boards: common files
57407
57408     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57409
57410 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
57411 Author: Niklaus Giger <niklausgiger@gmx.ch>
57412 Date:   Fri Jul 27 11:28:44 2007 +0200
57413
57414     Add PPC4xx-HCU4 and HCU5 boards: make related
57415
57416     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57417
57418 commit 137fdd9f474ecb853efdace5200576308c67f18d
57419 Author: Niklaus Giger <niklausgiger@gmx.ch>
57420 Date:   Fri Jul 27 11:28:03 2007 +0200
57421
57422     Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
57423
57424     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57425
57426 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
57427 Author: Niklaus Giger <niklausgiger@gmx.ch>
57428 Date:   Fri Jul 27 11:27:15 2007 +0200
57429
57430     Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
57431
57432     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57433
57434 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
57435 Author: Niklaus Giger <niklausgiger@gmx.ch>
57436 Date:   Fri Jul 27 11:25:31 2007 +0200
57437
57438     Add PPC4xx-HCU4 and HCU5 boards: READMEs
57439
57440     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57441
57442 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
57443 Author: Niklaus Giger <niklausgiger@gmx.ch>
57444 Date:   Fri Jul 27 11:37:40 2007 +0200
57445
57446     Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
57447
57448     This series of patches adds support for 2 boards from Netstal Maschinen.
57449
57450     The HCU4 has a PPC405Gpr and
57451     the HCU5 has a PPC440EPX.
57452
57453     The HCU4 has a somehow complicated flash setup, as the booteprom is
57454     only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
57455     elegant solution.
57456
57457     The HCU5 has only a booteprom as the whole code will be downloaded from a
57458     different board which has HD, CD-ROM, etc and where all code is stored.
57459
57460     This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
57461     Thanks them a lot.
57462
57463     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57464
57465 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
57466 Author: Stefan Roese <sr@denx.de>
57467 Date:   Fri Aug 10 08:42:55 2007 +0200
57468
57469     ppc4xx: Update lwmon5 POST configuration
57470
57471     Signed-off-by: Stefan Roese <sr@denx.de>
57472
57473 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
57474 Author: Yuri Tikhonov <yur@emcraft.com>
57475 Date:   Fri Aug 10 08:25:22 2007 +0200
57476
57477     POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
57478
57479     The patch adds support for UART POST on ppc44x-based boards with no
57480     external serial clocks installed.
57481
57482     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
57483     Acked-by: Stefan Roese <sr@denx.de>
57484
57485 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
57486 Author: Kim Phillips <kim.phillips@freescale.com>
57487 Date:   Mon Aug 6 18:18:34 2007 -0500
57488
57489     mpc83xx: fix ITX[GP] O=builddir builds
57490
57491     make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'.  Stop.
57492
57493     Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
57494     "BUILD_DIR=<some dir> ./MAKEALL ..."
57495
57496     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57497
57498 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
57499 Author: Dave Liu <r63238@freescale.com>
57500 Date:   Wed Aug 1 15:00:59 2007 +0800
57501
57502     mpc83xx: Correct the README for DDR ECC
57503
57504     Update the README for DDR ECC, change the name
57505     to README.mpc83xx.ddrecc.
57506
57507     Signed-off-by: Dave Liu <daveliu@freescale.com>
57508     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57509
57510 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
57511 Author: Dave Liu <r63238@freescale.com>
57512 Date:   Wed Aug 1 15:00:15 2007 +0800
57513
57514     mpc83xx: Consolidate the ECC support of 83xx
57515
57516     Remove the duplicated source code of ecc command on the <board>.c,
57517     for reused, move these code to cpu/mpc83xx directory.
57518
57519     Signed-off-by: Dave Liu <daveliu@freescale.com>
57520     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57521
57522 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
57523 Author: Dave Liu <r63238@freescale.com>
57524 Date:   Sat Aug 4 13:37:39 2007 +0800
57525
57526     mpc83xx: Correct the burst length for DDR2 with 32 bits
57527
57528     The burst length should be 4 for DDR2 with 32 bits bus
57529
57530     Signed-off-by: Dave Liu <daveliu@freescale.com>
57531
57532 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
57533 Author: Kim Phillips <kim.phillips@freescale.com>
57534 Date:   Wed Jul 25 19:25:33 2007 -0500
57535
57536     mpc83xx: add support for the MPC8323E RDB
57537
57538     MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
57539     five 10/100 ethernet ports connected via an ICPlus IP175C
57540     switch, one PCI slot, and serial.  Features not supported
57541     in this patch are SD card interface, 2 USB ports, and the
57542     two phone ports.
57543
57544     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
57545     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57546
57547 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
57548 Author: Kim Phillips <kim.phillips@freescale.com>
57549 Date:   Wed Jul 25 19:25:28 2007 -0500
57550
57551     mpc83xx: fixup generic pci for libfdt
57552
57553     add libfdt support to the generic 83xx pci code
57554
57555     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57556
57557 commit f57ac7a7b37109245b69db80839ebee26179966a
57558 Author: Kim Phillips <kim.phillips@freescale.com>
57559 Date:   Wed Jul 25 19:25:22 2007 -0500
57560
57561     mpc83xx: fix 8360 and cpu functions to update fdt being passed
57562
57563     ..and not the global fdt. Rename local fdt vars to blob so as not to
57564     be confused with the global var with the same three-letter name.
57565
57566     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57567
57568 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
57569 Author: Jerry Van Baren <gvb.uboot@gmail.com>
57570 Date:   Wed Jul 4 21:34:24 2007 -0400
57571
57572     mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
57573
57574     Several node strings were not correct (trailing slashes and properties
57575       in the strings)
57576     Added setting of the timebase-frequency.
57577     Improved error messages and use debug() instead of printf().
57578
57579     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57580     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57581
57582 commit 26d02c9bbac1751c5e19294f000100b48d43a920
57583 Author: Jerry Van Baren <gvb.uboot@gmail.com>
57584 Date:   Wed Jul 4 21:27:30 2007 -0400
57585
57586     mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
57587
57588     The new name matches more closely the kernel's name, which is also
57589     a much better description.
57590
57591     These are the mpc83xx changes made necessary by the function name change.
57592
57593     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
57594     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
57595     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57596
57597 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
57598 Author: Dave Liu <daveliu@freescale.com>
57599 Date:   Mon Jun 25 10:41:56 2007 +0800
57600
57601     mpc83xx: Add support for the display of reset status
57602
57603     83xx processor family has many reset sources, such as
57604     power on reset, software hard reset, software soft reset,
57605     JTAG, bus monitor, software watchdog, check stop reset,
57606     external hard reset, external software reset.
57607     sometimes, to figure out the fault of system, we need to
57608     know the cause of reset early before the prompt of
57609     u-boot present.
57610
57611     Signed-off-by: Dave Liu <daveliu@freescale.com>
57612     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57613
57614 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
57615 Author: Dave Liu <daveliu@freescale.com>
57616 Date:   Mon Jun 25 10:41:04 2007 +0800
57617
57618     mpc83xx: Fix the align bug of SDMA buffer
57619
57620     According to the latest user manual, the SDMA temporary
57621     buffer base address must be 4KB aligned.
57622
57623     Signed-off-by: Dave Liu <daveliu@freescale.com>
57624     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57625
57626 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
57627 Author: Dave Liu <daveliu@freescale.com>
57628 Date:   Mon Jun 25 13:21:12 2007 +0800
57629
57630     mpc83xx: Revise the MPC8360EMDS readme doc
57631
57632     When the rev2.x silicon mount on the MPC8360EMDS baord,
57633     and if you are using the u-boot version after the commit
57634     3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
57635     to make the ethernet interface usable, we have to setup
57636     the jumpers correctly.
57637
57638     Signed-off-by: Dave Liu <daveliu@freescale.com>
57639     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57640
57641 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
57642 Author: Timur Tabi <timur@freescale.com>
57643 Date:   Tue Jul 3 13:46:32 2007 -0500
57644
57645     FSL I2C driver programs the two I2C busses differently
57646
57647     The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
57648     The second I2C bus has its slave address programmed incorrectly and is
57649     missing a 5-us delay.
57650
57651     Signed-off-by: Timur Tabi <timur@freescale.com>
57652     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57653
57654 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
57655 Author: Timur Tabi <timur@freescale.com>
57656 Date:   Tue Jul 3 13:04:34 2007 -0500
57657
57658     Update SCCR programming in cpu_init_f() to support all 83xx processors
57659
57660     Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
57661     bitfields for all 83xx processors.  The code to update some bitfields was
57662     compiled only on some processors.  Now, the bitfields are programmed as long
57663     as the corresponding CFG_SCCR option is defined in the board header file.
57664     This means that the board header file should not define any CFG_SCCR macros
57665     for bitfields that don't exist on that processor, otherwise the SCCR will be
57666     programmed incorrectly.
57667
57668     Signed-off-by: Timur Tabi <timur@freescale.com>
57669     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57670
57671 commit 9546266999f0b9b51372636614211b88d90f0f25
57672 Author: Martin Krause <martin.krause@tqs.de>
57673 Date:   Fri Jun 22 13:04:22 2007 +0200
57674
57675     TQM834x: cleanup configuraton
57676
57677     Remove irritating #undef DEBUG
57678
57679     Signed-off-by: Martin Krause <martin.krause@tqs.de>
57680     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57681
57682 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
57683 Author: david.saada <David.Saada@ecitele.com>
57684 Date:   Mon Jun 18 09:09:53 2007 -0700
57685
57686     MPC83xx: Fix makefile to generate config.h file in the build directory
57687
57688     MPC83xx: Fix the Makefile config sections to generate the include/config.h
57689     file in the build directory instead of the source directory.
57690
57691     Signed-off-by: David Saada <david.saada@ecitele.com>
57692     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57693
57694 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
57695 Author: Lee Nipper <Lee.Nipper@freescale.com>
57696 Date:   Thu Jun 14 20:07:33 2007 -0500
57697
57698     mpc83xx: Add support for 8360 silicon revision 2.1
57699
57700     This change adds 8360 silicon revision 2.1 support to u-boot.
57701
57702     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
57703     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57704
57705 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
57706 Author: Kumar Gala <galak@kernel.crashing.org>
57707 Date:   Wed Aug 8 04:14:28 2007 -0500
57708
57709     Treat ppc64 host as ppc
57710
57711     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57712
57713 commit 0dc4279b08ff82472bec2e2c90858602459febe8
57714 Author: Jason Jin <Jason.jin@freescale.com>
57715 Date:   Wed Aug 8 09:01:46 2007 +0800
57716
57717     Minor fix for bios emulator makefile
57718
57719     Add $(obj) to LIB avoiding objects be built in the source dir
57720
57721     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
57722
57723 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
57724 Author: Jason Jin <Jason.jin@freescale.com>
57725 Date:   Wed Aug 8 08:33:11 2007 +0800
57726
57727     Add CONFIG_BIOSEMU define to guard all the bios emulator code
57728
57729     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
57730
57731     This patch fix the compile issue on the board that did not enable the bios emulator
57732
57733 commit ed8106433522f2ea8933e9808346860d061d7731
57734 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
57735 Date:   Tue Jul 31 12:27:25 2007 -0500
57736
57737     tsec: fix multiple PHY support
57738
57739     The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
57740     broke multiple PHY support in tsec.c.  This fixes it.
57741
57742     Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
57743     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57744
57745 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
57746 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
57747 Date:   Thu Aug 9 09:08:18 2007 -0500
57748
57749     tsec: Allow Ten Bit Interface address to be configurable
57750
57751     Allow the address of the Ten Bit Interface (TBI) to be changed in the
57752     event of a conflict with another device.
57753
57754     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
57755
57756 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
57757 Author: Stefan Roese <sr@denx.de>
57758 Date:   Wed Aug 8 09:54:26 2007 +0200
57759
57760     Coding style cleanup
57761
57762     Signed-off-by: Stefan Roese <sr@denx.de>
57763
57764 commit a41de1f0d373e09c782dea558385a06247111ba5
57765 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57766 Date:   Sun Aug 5 05:15:18 2007 -0500
57767
57768     Port enabled for I2C signals and chipselects port configuration.
57769
57770     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57771
57772 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
57773 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57774 Date:   Sun Aug 5 04:31:18 2007 -0500
57775
57776     Added NAND support
57777
57778     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57779
57780 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
57781 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57782 Date:   Sun Aug 5 04:11:20 2007 -0500
57783
57784     Added I2C support
57785
57786     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57787
57788 commit 99c03c175d2689093176facf17c58ce2cb320001
57789 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57790 Date:   Sun Aug 5 03:58:52 2007 -0500
57791
57792     Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
57793
57794     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57795
57796 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
57797 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57798 Date:   Sun Aug 5 03:55:21 2007 -0500
57799
57800     Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
57801
57802     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57803
57804 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
57805 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57806 Date:   Sun Aug 5 03:43:30 2007 -0500
57807
57808     Moved sync() from board file to include/asm-m68k/io.h
57809
57810     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57811
57812 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
57813 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57814 Date:   Sun Aug 5 03:30:44 2007 -0500
57815
57816     Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
57817
57818     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57819
57820 commit 9998bd37ead85e93953559720710d3b0685c81e6
57821 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57822 Date:   Sun Aug 5 03:19:10 2007 -0500
57823
57824     Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
57825
57826     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57827
57828 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
57829 Author: Jason Jin <Jason.jin@freescale.com>
57830 Date:   Tue Aug 7 16:17:06 2007 +0800
57831
57832     Add CONFIG_BIOSEMU define to guard all the bios emulator code
57833
57834     This patch fix the compile issue on the board that did not enable the bios emulator
57835
57836 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
57837 Author: Wolfgang Denk <wd@denx.de>
57838 Date:   Tue Aug 7 16:02:13 2007 +0200
57839
57840     Fix missing brace error in fs/fat/fat.c
57841     [pointed out by Roderik Wildenburg]
57842
57843     Signed-off-by: Wolfgang Denk <wd@denx.de>
57844
57845 commit 706714d97a0d08d59eda4de2268c39f504688329
57846 Author: Michal Simek <monstr@monstr.eu>
57847 Date:   Mon Aug 6 23:41:53 2007 +0200
57848
57849     [FIX] remove cute code
57850
57851 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
57852 Author: Michal Simek <monstr@monstr.eu>
57853 Date:   Mon Aug 6 23:35:26 2007 +0200
57854
57855     [FIX] Fix romfs code
57856
57857 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
57858 Author: Michal Simek <monstr@monstr.eu>
57859 Date:   Mon Aug 6 23:31:49 2007 +0200
57860
57861     [FIX] Coding style cleanup - Wolfgang's suggestions
57862
57863 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
57864 Author: Wolfgang Denk <wd@denx.de>
57865 Date:   Mon Aug 6 23:21:05 2007 +0200
57866
57867     Fixed typo in README (pointed out by Martin Jost).
57868
57869     Signed-off-by: Wolfgang Denk <wd@denx.de>
57870
57871 commit 537223afa61f64480df31ce440a9cb386df4a814
57872 Author: Stefan Roese <sr@denx.de>
57873 Date:   Mon Aug 6 21:10:17 2007 +0200
57874
57875     ppc4xx: Update AMCC Bamboo README doc/README.bamboo
57876
57877     As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
57878     here an updated Bamboo README.
57879
57880     Signed-off-by: Stefan Roese <sr@denx.de>
57881
57882 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
57883 Author: Wolfgang Denk <wd@denx.de>
57884 Date:   Mon Aug 6 02:17:36 2007 +0200
57885
57886     Coding style cleanup. Update CHANGELOG.
57887
57888     Signed-off-by: Wolfgang Denk <wd@denx.de>
57889
57890 commit 221838cc7eb178370ff62aa05920a582e12ac322
57891 Author: Jason Jin <Jason.jin@freescale.com>
57892 Date:   Tue Jul 10 09:03:22 2007 +0800
57893
57894     Remove the bios emulator from MAI board.
57895
57896     The bios emulator in the MAI board can not pass compile
57897     and have a lot of crap in it. remove it and will have a
57898     clean and small bios emulator in the drivers directory
57899     which can be uesed for every board.
57900
57901     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
57902
57903 commit 5618332409bb96f4448d1712899369fc80c0b489
57904 Author: Jason Jin <Jason.jin@freescale.com>
57905 Date:   Fri Jul 13 12:14:59 2007 +0800
57906
57907     Fix some compile issues for MAI board.
57908
57909     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
57910
57911 commit 0f460a1ee148b648ee242c3157650287d4296260
57912 Author: Jason Jin <Jason.jin@freescale.com>
57913 Date:   Fri Jul 13 12:14:58 2007 +0800
57914
57915     Configurations for ATI video card BIOS emulator
57916
57917     This patch add definition of the BIOS emulator and the ATI framebuffer
57918     driver for MPC8641HPCN board.
57919
57920     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
57921     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
57922
57923 commit ece92f85053b8df613edcf05b26a416cbc3d629c
57924 Author: Jason Jin <Jason.jin@freescale.com>
57925 Date:   Fri Jul 6 08:34:56 2007 +0800
57926
57927     This is a BIOS emulator, porting from SciTech for u-boot, mainly for
57928     ATI video card BIOS. and can be used for x86 code emulation by some
57929     modifications.
57930
57931     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
57932
57933 commit 5072188acabde3178fac7f5a597150e6e74fd40c
57934 Author: Jason Jin <Jason.jin@freescale.com>
57935 Date:   Fri Jul 6 08:33:33 2007 +0800
57936
57937     This is a framebuffer driver for ATI video card, can work for PCI9200,
57938     X300, X700, X800 ATI video cards.
57939
57940     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
57941     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
57942
57943 commit 5728be389e65fd47f34b33c2596271eb4db751ae
57944 Author: Wolfgang Denk <wd@denx.de>
57945 Date:   Mon Aug 6 01:01:49 2007 +0200
57946
57947     Coding style cleanup. Update CHANGELOG.
57948
57949     Signed-off-by: Wolfgang Denk <wd@denx.de>
57950
57951 commit 8092fef4c29b395958bb649647da7e3775731517
57952 Author: Martin Krause <Martin.Krause@tqs.de>
57953 Date:   Tue Dec 12 14:26:01 2006 +0100
57954
57955     Add functions to list of exported functions
57956
57957     Additionally export the following fuctions (to make trab_config build again):
57958     - simple_strtol()
57959     - strcmp()
57960
57961     Also bump the ABI version to reflect this change
57962
57963     Signed-off-by: Martin Krause <martin.krause@tqs.de>
57964
57965 commit 63cec5814fab5d2b1c86982327433807a5ac0249
57966 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57967 Date:   Thu Aug 2 14:09:49 2007 -0500
57968
57969     Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
57970
57971     All of the PCI/PCI-Express driver and initialization code that
57972     was in the MPC8641HPCN port has now been moved into the common
57973     drivers/fsl_pci_init.c.  In a subsequent patch, this will be
57974     utilized by the 85xx ports as well.
57975
57976     Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
57977
57978     Also enable the second PCI-Express controller on 8641
57979     by getting its BATS and CFG_ setup right.
57980
57981     Fixed a u16 vendor compiler warning in AHCI driver too.
57982
57983     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57984     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
57985     Signed-off-by: Jon Loeliger <jdl@freescale.com>
57986
57987 commit a274ca4f6d68830e7c916f897561cff8c4101c38
57988 Author: Michal Simek <monstr@monstr.eu>
57989 Date:   Sun Aug 5 22:33:05 2007 +0200
57990
57991     [FIX] Coding style cleanup
57992
57993 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
57994 Author: Michal Simek <monstr@monstr.eu>
57995 Date:   Sun Aug 5 16:13:31 2007 +0200
57996
57997     [FIX] Xilinx Uartlite driver
57998     Because PPC405 can use UARTLITE serial interface and
57999     Microblaze can use Uart16550 serial interface not only Uartlite.
58000
58001 commit 98889edd50aadf862071eb5664747ad0d568a20e
58002 Author: Michal Simek <monstr@monstr.eu>
58003 Date:   Sun Aug 5 15:54:53 2007 +0200
58004
58005     [FIX] Change configuration for XUPV2P Microblaze board
58006
58007 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
58008 Author: Michal Simek <monstr@monstr.eu>
58009 Date:   Sun Aug 5 15:53:50 2007 +0200
58010
58011     [PATCH] Added support for Xilinx Emac community driver
58012
58013 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
58014 Author: Bartlomiej Sieka <tur@semihalf.com>
58015 Date:   Fri Aug 3 12:08:16 2007 +0200
58016
58017     cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
58018
58019     Add the ability for modules from the Schindler cm5200 family to use a
58020     single U-Boot image:
58021     - rename cm1_qp1 to cm5200
58022     - add run-time module detection
58023     - parametrize SDRAM configuration according to the module we are running on
58024
58025     Few minor, board-specific fixes included in this patch:
58026     - better MAC address handling
58027     - updated default environment ('update' command uses +{filesize} now)
58028     - improved error messages in the auto-update code
58029     - allow booting U-Boot from RAM (CFG_RAMBOOT)
58030
58031     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58032     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
58033     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58034
58035 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
58036 Author: Andy Fleming <afleming@freescale.com>
58037 Date:   Fri Aug 3 04:05:25 2007 -0500
58038
58039     Add Marvell 1149 PHY support to the TSEC
58040
58041 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
58042 Author: Wolfgang Denk <wd@denx.de>
58043 Date:   Thu Aug 2 21:27:46 2007 +0200
58044
58045     Coding style cleanup, update CHANGELOG
58046
58047     Signed-off-by: Wolfgang Denk <wd@denx.de>
58048
58049 commit 63e22764d2f8653f68888c667eb65b3996b52680
58050 Author: Wolfgang Denk <wd@denx.de>
58051 Date:   Thu Aug 2 10:11:18 2007 +0200
58052
58053     Minor cleanup of <board>_nand build rules.
58054
58055 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
58056 Author: Stefan Roese <sr@denx.de>
58057 Date:   Thu Aug 2 08:33:56 2007 +0200
58058
58059     ppc4xx: Code cleanup
58060
58061     Signed-off-by: Stefan Roese <sr@denx.de>
58062
58063 commit c92409812206ac67a7fa7aae298539a9c3804a46
58064 Author: Grzegorz Bernacki <gjb@semihalf.com>
58065 Date:   Tue Jul 31 18:51:48 2007 +0200
58066
58067     [ppc440SPe] Graceful recovery from machine check during PCIe configuration
58068
58069     During config transactions on the PCIe bus an attempt to scan for a
58070     non-existent device can lead to a machine check exception with certain
58071     peripheral devices. In order to avoid crashing in such scenarios the
58072     instrumented versions of the config cycle read routines are introduced, so
58073     the exceptions fixups framework can gracefully recover.
58074
58075     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58076     Acked-by: Rafal Jaworowski <raj@semihalf.com>
58077
58078 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
58079 Author: Rafal Jaworowski <raj@semihalf.com>
58080 Date:   Tue Jul 31 18:19:54 2007 +0200
58081
58082     [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
58083
58084     This brings back separate settings for PCIe bus numbers depending on chip
58085     revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
58086     commit. 440SPe rev. A does NOT work properly with the same settings as for
58087     the rev. B (no devices are seen on the bus during enumeration).
58088
58089     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
58090
58091 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
58092 Author: Wolfgang Denk <wd@denx.de>
58093 Date:   Thu Aug 2 00:48:45 2007 +0200
58094
58095     Fix build errors and warnings / code cleanup.
58096
58097     Signed-off-by: Wolfgang Denk <wd@denx.de>
58098
58099 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
58100 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
58101 Date:   Tue Jul 31 10:24:56 2007 +0200
58102
58103     ppc4xx: Update AMCC Bamboo 440EP support
58104
58105     Changed storage type of cfg_simulate_spd_eeprom to const
58106     Changed storage type of gpio_tab to stack storage
58107     (Cannot access global data declarations in .bss until afer code relocation)
58108
58109     Improved SDRAM tests to catch problems where data is not uniquely addressable
58110     (e.g. incorrectly programmed SDRAM row or columns)
58111
58112     Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
58113     Fixed AM29LV320DT (OpCode Flash) sector map
58114
58115     Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
58116     Signed-off-by: Stefan Roese <sr@denx.de>
58117
58118 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
58119 Author: Stefan Roese <sr@denx.de>
58120 Date:   Tue Jul 31 08:37:01 2007 +0200
58121
58122     ppc4xx: Update 440EPx lwmon5 board support
58123
58124     - Clear ECC status regs after ECC POST test
58125     - Set dcbz for ECC generation with caches enabled as default
58126     - Code cleanup
58127
58128     Signed-off-by: Stefan Roese <sr@denx.de>
58129
58130 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
58131 Author: Stefan Roese <sr@denx.de>
58132 Date:   Mon Jul 30 11:04:57 2007 +0200
58133
58134     ppc4xx: Only print ECC related info when the error bis are set
58135
58136     Signed-off-by: Stefan Roese <sr@denx.de>
58137
58138 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
58139 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58140 Date:   Fri Jul 27 16:44:31 2007 +0200
58141
58142     new FPGA image for PLU405 board
58143
58144     new FPGA image for PLU405 board with improved CompactFlash timing
58145
58146     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58147
58148 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
58149 Author: Rafal Jaworowski <raj@semihalf.com>
58150 Date:   Fri Jul 27 14:43:59 2007 +0200
58151
58152     [ADS5121] Support for the ADS5121 board
58153
58154     The following MPC5121e subsystems are supported:
58155
58156     - low-level CPU init
58157     - NOR Boot Flash (common CFI driver)
58158     - DDR SDRAM
58159     - FEC
58160     - I2C
58161     - Watchdog
58162
58163     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58164     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
58165     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
58166
58167 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
58168 Author: Rafal Jaworowski <raj@semihalf.com>
58169 Date:   Fri Jul 27 14:22:04 2007 +0200
58170
58171     [PPC] Remove unused MSR_USER definition
58172
58173     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
58174
58175 commit d4024bb72dd81695ec099b2199eda0d27c623e62
58176 Author: John Otken <john@softadvances.com>
58177 Date:   Thu Jul 26 17:49:11 2007 +0200
58178
58179     ppc4xx: Add support for AMCC 405EP Taihu board
58180
58181     Signed-off-by: John Otken <john@softadvances.com>
58182
58183 commit b66091de6c7390620312c2501db23d8391e7cabb
58184 Author: Anatolij Gustschin <agust@denx.de>
58185 Date:   Thu Jul 26 15:08:01 2007 +0200
58186
58187     ppc4xx: lwmon5: Update Lime initialization
58188
58189     Change Lime SDRAM initialization to now support 100MHz and
58190     133MHz (if enabled). Also the framebuffer is initialized to
58191     display a blue rectangle with a white border.
58192
58193     Signed-off-by: Anatolij Gustschin <agust@denx.de>
58194     Signed-off-by: Stefan Roese <sr@denx.de>
58195
58196 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
58197 Author: Stefan Roese <sr@denx.de>
58198 Date:   Tue Jul 24 09:52:52 2007 +0200
58199
58200     ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
58201
58202     The used Intel NOR FLASH chips have internally two dies, and are now
58203     treated as two seperate chips.
58204
58205     Signed-off-by: Stefan Roese <sr@denx.de>
58206
58207 commit aedf5bde179ecfbd0a96130d18996a96518b785f
58208 Author: Stefan Roese <sr@denx.de>
58209 Date:   Tue Jul 24 07:20:09 2007 +0200
58210
58211     ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
58212
58213     As suggested by Hakan Eryigit, here an updated setup for the lwmon5
58214     interrupt controller.
58215
58216     Signed-off-by: Stefan Roese <sr@denx.de>
58217
58218 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
58219 Author: Stefan Roese <sr@denx.de>
58220 Date:   Fri Jul 20 15:03:44 2007 +0200
58221
58222     ppc4xx: Fix bug with default GPIO output value
58223
58224     As spotted by Matthias Fuchs, the default output values for all GPIO1
58225     outputs were not setup correctly. This patch fixes this issue.
58226
58227     Signed-off-by: Stefan Roese <sr@denx.de>
58228
58229 commit 531e3e8b831f357056448fa573137d5fb37000fd
58230 Author: Pavel Kolesnikov <concord@emcraft.com>
58231 Date:   Fri Jul 20 15:03:03 2007 +0200
58232
58233     POST: Add ECC POST for the lwmon5 board
58234
58235     This patch adds ECC Post test for the Lwmon5 board based
58236     on PPC440EPx to U-Boot.
58237
58238     Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
58239     Acked-by: Yuri Tikhonov <yur@emcraft.com>
58240     Acked-by: Stefan Roese <sr@denx.de>
58241
58242 commit cc3023b9f95d7ac959a764471a65001062aecf41
58243 Author: Rafal Jaworowski <raj@semihalf.com>
58244 Date:   Thu Jul 19 17:12:28 2007 +0200
58245
58246     Fix breakage of 8xx boards from recent commit.
58247
58248     This patch fixes the negative consequences for 8xx of the recent
58249     "ppc4xx: Clean up 440 exceptions handling" commit.
58250
58251     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
58252
58253 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
58254 Author: Stefan Roese <sr@denx.de>
58255 Date:   Mon Jul 16 13:11:12 2007 +0200
58256
58257     Coding style cleanup
58258
58259     Signed-off-by: Stefan Roese <sr@denx.de>
58260
58261 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
58262 Author: Stefan Roese <sr@denx.de>
58263 Date:   Mon Jul 16 10:02:12 2007 +0200
58264
58265     ppc4xx: Code cleanup
58266
58267     Signed-off-by: Stefan Roese <sr@denx.de>
58268
58269 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
58270 Author: Stefan Roese <sr@denx.de>
58271 Date:   Mon Jul 16 10:01:38 2007 +0200
58272
58273     ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
58274
58275     Signed-off-by: Stefan Roese <sr@denx.de>
58276
58277 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
58278 Author: Stefan Roese <sr@denx.de>
58279 Date:   Mon Jul 16 10:00:43 2007 +0200
58280
58281     ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
58282
58283     The new boardspecific DDR2 controller configuration is used for the Yucca
58284     board. Now the Yucca board with 440SPe Rev. A chips is also supported.
58285
58286     Signed-off-by: Stefan Roese <sr@denx.de>
58287
58288 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
58289 Author: Stefan Roese <sr@denx.de>
58290 Date:   Mon Jul 16 09:57:00 2007 +0200
58291
58292     ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
58293
58294     The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
58295     support non default, boardspecific DDR(2) controller configuration.
58296
58297     Signed-off-by: Stefan Roese <sr@denx.de>
58298
58299 commit 5743a9207a370b90f09b20ebd61167c806b937f3
58300 Author: Stefan Roese <sr@denx.de>
58301 Date:   Mon Jul 16 08:53:51 2007 +0200
58302
58303     ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
58304
58305     The new function remove_tlb() can be used to remove the TLB's used to
58306     map a specific memory region. This is especially useful for the DDR(2)
58307     setup routines which configure the SDRAM area temporarily as a cached
58308     area (for speedup on auto-calibration and ECC generation) and later
58309     need this area uncached for normal usage.
58310
58311     Signed-off-by: Stefan Roese <sr@denx.de>
58312
58313 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
58314 Author: Michal Simek <monstr@monstr.eu>
58315 Date:   Mon Jul 16 00:31:07 2007 +0200
58316
58317     [PATCH] Support for Xilinx EmacLite controller
58318
58319 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
58320 Author: Wolfgang Denk <wd@denx.de>
58321 Date:   Sat Jul 14 22:51:02 2007 +0200
58322
58323     Update CHANGELOG
58324
58325     Signed-off-by: Wolfgang Denk <wd@denx.de>
58326
58327 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
58328 Author: Michal Simek <monstr@monstr.eu>
58329 Date:   Sat Jul 14 13:11:28 2007 +0200
58330
58331     [FIX] support for simply measuring time
58332
58333 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
58334 Author: Michal Simek <monstr@monstr.eu>
58335 Date:   Sat Jul 14 12:41:23 2007 +0200
58336
58337     [FS] Added support for ROMFS
58338
58339 commit 011595307731a7a67a7445d107c279d031e8ab97
58340 Author: Heiko Schocher <hs@pollux.denx.de>
58341 Date:   Sat Jul 14 01:06:58 2007 +0200
58342
58343     [PCS440EP]  - fix compile error, if BUILD_DIR is used
58344
58345 commit 5a2f1098d81ad58b309e5e558d0492643166a799
58346 Author: Michal Simek <monstr@monstr.eu>
58347 Date:   Sat Jul 14 00:18:48 2007 +0200
58348
58349     [PATCH] Support time without timer
58350
58351 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
58352 Author: Michal Simek <monstr@monstr.eu>
58353 Date:   Fri Jul 13 21:43:55 2007 +0200
58354
58355     [PATCH] Remove problem with disabled BARREL SHIFTER
58356
58357 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
58358 Author: Michal Simek <monstr@monstr.eu>
58359 Date:   Fri Jul 13 21:41:44 2007 +0200
58360
58361     [FIX] correct help for rspr
58362
58363 commit fad63407154f46246ce80d53a9c669a44362ac67
58364 Author: Heiko Schocher <hs@pollux.denx.de>
58365 Date:   Fri Jul 13 09:54:17 2007 +0200
58366
58367     make show_boot_progress () weak.
58368
58369     Signed-off-by: Heiko Schocher <hs@denx.de>
58370
58371 commit 907902472391b6ca1876ec300687562ecaf459b1
58372 Author: Heiko Schocher <hs@pollux.denx.de>
58373 Date:   Fri Jul 13 08:26:05 2007 +0200
58374
58375     [PCS440EP]  - The DIAG LEDs are now blinking, if an error occur
58376                 - fix compile error, if BUILD_DIR is used
58377
58378     Signed-off-by: Heiko Schocher <hs@denx.de>
58379
58380 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
58381 Author: Stefan Roese <sr@denx.de>
58382 Date:   Thu Jul 12 16:32:08 2007 +0200
58383
58384     ppc4xx: Change receive buffer handling in the 4xx emac driver
58385
58386     This change fixes a bug in the receive buffer handling, that
58387     could lead to problems upon high network traffic (broadcasts...).
58388
58389     Signed-off-by: Stefan Roese <sr@denx.de>
58390
58391 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
58392 Author: Wolfgang Denk <wd@denx.de>
58393 Date:   Thu Jul 12 01:45:34 2007 +0200
58394
58395     Update CHANGELOG, minor coding style cleanup.
58396
58397     Signed-off-by: Wolfgang Denk <wd@denx.de>
58398
58399 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
58400 Author: Andy Fleming <afleming@freescale.com>
58401 Date:   Fri Jun 8 16:41:18 2007 -0500
58402
58403     Remove erroneous errata code from Marvel 88E1111S driver
58404
58405     The Marvel 88E1111S driver for the TSEC was copied from the
58406     88E1101 driver, and included a fix for an erratum which does not
58407     exist on that part.  Now it is removed
58408
58409     Signed-off-by: Andy Fleming <afleming@freescale.com>
58410
58411 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
58412 Author: Andy Fleming <afleming@freescale.com>
58413 Date:   Tue Jun 5 16:38:44 2007 -0500
58414
58415     From: eran liberty <eran.liberty@gmail.com>
58416
58417     adds the reset register to 85xx immap
58418
58419     Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
58420     Signed-off-by: Andy Fleming <afleming@freescale.com>
58421
58422 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
58423 Author: Andy Fleming <afleming@freescale.com>
58424 Date:   Thu May 10 17:50:01 2007 -0500
58425
58426     Polished the 85xx ADS config files
58427
58428     Made the boot commands use device trees by default.
58429     Also moved the ramdisk to 1000000 (I think the previous address
58430     was getting overridden during boot).
58431
58432     Signed-off-by: Andy Fleming <afleming@freescale.com>
58433
58434 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
58435 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
58436 Date:   Wed May 9 11:03:32 2007 -0500
58437
58438     8544ds: Fix Makefile after moving pixis to board/freescale.
58439
58440     The OBJTREE != SRCTREE build scenario was broken.
58441     This fixes it.
58442
58443     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
58444     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58445
58446 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
58447 Author: Andy Fleming <afleming@freescale.com>
58448 Date:   Wed May 9 00:54:20 2007 -0500
58449
58450     tsec: Fix PHY code to match first driver
58451
58452     Jarrold Wen noticed that the generic PHY code always matches
58453     under the current implementation.  Change it so the first match
58454     wins, and *only* unknown PHYs trigger the generic driver
58455
58456     Signed-off-by: Andy Fleming <afleming@freescale.com>
58457
58458 commit ccc091aac61a38cd998d575d92f7232e256d6312
58459 Author: Andy Fleming <afleming@freescale.com>
58460 Date:   Tue May 8 17:27:43 2007 -0500
58461
58462     Add support for CPM device tree configuration to 8560 ADS
58463
58464     * Adds code to modify CPM frequencies
58465     * Cleans up the config file to #define TSEC and (for now) #undef FCC
58466     * Adds the MII command for all 8560 ADS configurations
58467     * Updates config file to provide convenience commands for booting
58468       with a device tree
58469
58470     Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
58471     Signed-off-by: Andy Fleming <afleming@freescale.com>
58472
58473 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
58474 Author: Andy Fleming <afleming@freescale.com>
58475 Date:   Tue May 8 17:23:02 2007 -0500
58476
58477     Fix Marvell 88e1145 PHY init code
58478
58479     Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
58480     where the reset was being done after the errata code instead of
58481     before.
58482
58483     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
58484     Signed-off-by: Andy Fleming <afleming@freescale.com>
58485
58486 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
58487 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
58488 Date:   Wed Jul 11 14:52:16 2007 -0500
58489
58490     Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
58491
58492     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
58493
58494 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
58495 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
58496 Date:   Wed Jul 11 14:52:08 2007 -0500
58497
58498     pciauto setup bridge
58499
58500     The P2P bridge bus numbers programmed into the device are relative to
58501     hose->first_busno.
58502
58503     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
58504
58505 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
58506 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
58507 Date:   Wed Jul 11 14:52:01 2007 -0500
58508
58509     Support PCIe extended config registers
58510
58511     FSL PCIe block has extended cfg registers in the 100 and 400 range.
58512     For example, to read the LTSSM register: pci display <busn>.0 404 1
58513
58514     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
58515
58516 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
58517 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
58518 Date:   Wed Jul 11 14:51:48 2007 -0500
58519
58520     Minor improvements to drivers/pci_auto.c
58521
58522     - Make pciauto_{pre,post}scan_setup_bridge non-static
58523     - Added physical address display in debug messages.
58524
58525     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
58526
58527 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
58528 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
58529 Date:   Wed Jul 11 14:51:35 2007 -0500
58530
58531     Start pci hose scan from hose->current_busno.
58532
58533     Ensure hose->current_busno is not less than first_busno.  This fixes
58534     broken board code which leaves current_busno=0 when first_busno is
58535     greater than 0 for the cases with multiple controllers.
58536
58537     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
58538
58539 commit 3865b1fb7843a08ad49a6319a36415752276ff48
58540 Author: Stefan Roese <sr@denx.de>
58541 Date:   Wed Jul 11 12:13:53 2007 +0200
58542
58543     Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
58544
58545     Signed-off-by: Stefan Roese <sr@denx.de>
58546
58547 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
58548 Author: Bartlomiej Sieka <tur@semihalf.com>
58549 Date:   Wed Jul 11 20:11:07 2007 +0200
58550
58551     CM1.QP1: Support for the Schindler CM1.QP1 board.
58552
58553     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
58554     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58555
58556 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
58557 Author: Heiko Schocher <hs@pollux.denx.de>
58558 Date:   Wed Jul 11 18:39:11 2007 +0200
58559
58560     [PCS440EP]  - Show on the DIAG LEDs, if the SHA1 check failed
58561                 - now the Flash ST M29W040B is supported (not tested)
58562                 - fix the "led" command
58563                 - fix compile error, if BUILD_DIR is used
58564
58565     Signed-off-by: Heiko Schocher <hs@denx.de>
58566
58567 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
58568 Author: Stefan Roese <sr@denx.de>
58569 Date:   Sun Jul 8 13:44:27 2007 +0200
58570
58571     Fix malloc problem introduced with the relocation fixup for the PPC platform
58572
58573     The relocation fixup didn't handle the malloc pointer initialization
58574     correctly. This patch fixes this problem. Tested successfully on 4xx.
58575     The relocation fixup patches for 4xx will follow soon.
58576
58577     Signed-off-by: Stefan Roese <sr@denx.de>
58578
58579 commit 0dca874db62718e41253659e60f3a1de7eb418ce
58580 Author: TsiChung <tcliew@Goku.(none)>
58581 Date:   Tue Jul 10 15:45:43 2007 -0500
58582
58583     Cache update and added CFG_UNIFY_CACHE
58584
58585     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.
58586
58587     Signed-off-by: TsiChung <tcliew@Goku.(none)>
58588
58589 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
58590 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58591 Date:   Thu Jul 5 23:36:16 2007 -0500
58592
58593     Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
58594
58595     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
58596
58597     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58598
58599 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
58600 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58601 Date:   Thu Jul 5 23:31:25 2007 -0500
58602
58603     Update header files
58604
58605     Include immap.h and renamed mcfrtc.h to rtc.h
58606
58607     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58608
58609 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
58610 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58611 Date:   Thu Jul 5 23:29:21 2007 -0500
58612
58613     Add mcffec_initialize()
58614
58615     Added mcffec_initialize() in eth_initialize()
58616
58617     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58618
58619 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
58620 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58621 Date:   Thu Jul 5 23:27:40 2007 -0500
58622
58623     Update header file and clean up
58624
58625     Include immap.h
58626
58627     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58628
58629 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
58630 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58631 Date:   Thu Jul 5 23:23:15 2007 -0500
58632
58633     New uart structure and defines
58634
58635     Seperated from mcfuart.h
58636
58637     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58638
58639 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
58640 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58641 Date:   Thu Jul 5 23:22:31 2007 -0500
58642
58643     New timer structure and defines
58644
58645     Seperated from mcftimer.h
58646
58647     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58648
58649 commit e04acb2eba4782489417240eff76e20e176aec10
58650 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58651 Date:   Thu Jul 5 23:21:09 2007 -0500
58652
58653     Rename mcfrtc to rtc
58654
58655     Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
58656
58657     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58658
58659 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
58660 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58661 Date:   Thu Jul 5 23:17:36 2007 -0500
58662
58663     Rename mcfserial.c. Update include header
58664
58665     Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
58666
58667     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58668
58669 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
58670 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58671 Date:   Thu Jul 5 23:13:58 2007 -0500
58672
58673     Header file update, clean up and cache handling
58674
58675     Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
58676
58677     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58678
58679 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
58680 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58681 Date:   Thu Jul 5 23:10:40 2007 -0500
58682
58683     Create interrupts.c and modify Makefile
58684
58685     interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
58686
58687     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58688
58689 commit ddd104f1ed655eda50c06ba636237a83ed943f34
58690 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58691 Date:   Thu Jul 5 23:06:55 2007 -0500
58692
58693     Enable Icache
58694
58695     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58696
58697 commit b9bf3de377b2bae70c983c9b97feae914999e735
58698 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58699 Date:   Thu Jul 5 23:05:31 2007 -0500
58700
58701     Update header file and some clean up
58702
58703     Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
58704
58705     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58706
58707 commit 84a015b52ec820a5ae173717d78516de731c89c2
58708 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58709 Date:   Thu Jul 5 23:03:28 2007 -0500
58710
58711     Update header file and enable icache
58712
58713     Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
58714
58715     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58716
58717 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
58718 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58719 Date:   Thu Jul 5 23:01:22 2007 -0500
58720
58721     Update header file and removed interrupt_init()
58722
58723     Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
58724
58725     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58726
58727 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
58728 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58729 Date:   Thu Jul 5 22:57:46 2007 -0500
58730
58731     Update for flash.o and mii.o
58732
58733     Removed flash.o and added mii.o
58734
58735     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58736
58737 commit c5ded275d839e4ff79f41718d50a835d989f57bc
58738 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58739 Date:   Thu Jul 5 22:56:19 2007 -0500
58740
58741     MII functions calls.
58742
58743     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58744
58745 commit 427c814104560e29bda14955c67703245aaaa5b4
58746 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58747 Date:   Thu Jul 5 22:54:42 2007 -0500
58748
58749     Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
58750
58751     The removed MII routines will be placed in mii.c.
58752
58753     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58754
58755 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
58756 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58757 Date:   Thu Jul 5 22:51:05 2007 -0500
58758
58759     Duplicate code
58760
58761     There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
58762
58763     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58764
58765 commit 2744354a8437b8f78db178e30660215688bff570
58766 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58767 Date:   Thu Jul 5 22:46:38 2007 -0500
58768
58769     Seperate old structure defines and new structure defines
58770
58771     Removed new uart structure and defines to uart.h
58772
58773     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58774
58775 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
58776 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58777 Date:   Thu Jul 5 22:45:01 2007 -0500
58778
58779     Seperate old structure defines and new structure defines
58780
58781     New timer structure and defines will move to new timer.h
58782
58783     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58784
58785 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
58786 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58787 Date:   Thu Jul 5 22:42:23 2007 -0500
58788
58789     Clean up
58790
58791     Removed whitespace
58792
58793     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58794
58795 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
58796 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58797 Date:   Thu Jul 5 22:41:24 2007 -0500
58798
58799     Clean up
58800
58801     Replaced whitespace with tabs
58802
58803     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58804
58805 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
58806 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58807 Date:   Thu Jul 5 22:39:07 2007 -0500
58808
58809     Create new header file and move peripherals base address from configs file to new header file.
58810
58811     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.
58812
58813     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58814
58815 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
58816 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58817 Date:   Thu Jul 5 22:24:58 2007 -0500
58818
58819     Revert file mode
58820
58821     Changed MAKEALL file mode to executable, removed executable file mode from Makefile
58822
58823     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58824
58825 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
58826 Author: Jon Loeliger <jdl@freescale.com>
58827 Date:   Tue Jul 10 11:19:50 2007 -0500
58828
58829     disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
58830
58831     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
58832     Those always evaluated TRUE, and thus were always compiled
58833     even when IDE really wasn't defined/wanted.
58834
58835     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58836
58837 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
58838 Author: Jon Loeliger <jdl@freescale.com>
58839 Date:   Tue Jul 10 11:13:21 2007 -0500
58840
58841     drivers/: Remove lingering references to CFG_CMD_* symbols.
58842
58843     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
58844     Those always evaluated TRUE, and thus were always compiled
58845     even when IDE really wasn't defined/wanted.
58846
58847     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58848
58849 commit f40a7f3e3888b42a43674b099e5470022c8c544c
58850 Author: Jon Loeliger <jdl@freescale.com>
58851 Date:   Tue Jul 10 11:07:56 2007 -0500
58852
58853     fs/: Remove lingering references to CFG_CMD_* symbols.
58854
58855     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
58856     Those always evaluated TRUE, and thus were always compiled
58857     even when IDE really wasn't defined/wanted.
58858
58859     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58860
58861 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
58862 Author: Jon Loeliger <jdl@freescale.com>
58863 Date:   Tue Jul 10 11:05:02 2007 -0500
58864
58865     net/: Remove lingering references to CFG_CMD_* symbols.
58866
58867     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
58868     Those always evaluated TRUE, and thus were always compiled
58869     even when IDE really wasn't defined/wanted.
58870
58871     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58872
58873 commit 902531788376046da212afd1661cffb62f3daa1c
58874 Author: Jon Loeliger <jdl@freescale.com>
58875 Date:   Tue Jul 10 11:02:44 2007 -0500
58876
58877     common/: Remove lingering references to CFG_CMD_* symbols.
58878
58879     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
58880     Those always evaluated TRUE, and thus were always compiled
58881     even when IDE really wasn't defined/wanted.
58882
58883     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58884
58885 commit d39b57415838c73fb0a37eca84de3c68ba990586
58886 Author: Jon Loeliger <jdl@freescale.com>
58887 Date:   Tue Jul 10 10:48:22 2007 -0500
58888
58889     board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
58890
58891     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
58892     Those always evaluated TRUE, and thus were always compiled
58893     even when IDE really wasn't defined/wanted.
58894
58895     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58896
58897 commit 77a318545d57aefa844752465b94c7e09a3f26d0
58898 Author: Jon Loeliger <jdl@freescale.com>
58899 Date:   Tue Jul 10 10:39:10 2007 -0500
58900
58901     board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
58902
58903     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
58904     Those always evaluated TRUE, and thus were always compiled
58905     even when IDE really wasn't defined/wanted.
58906
58907     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58908
58909 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
58910 Author: Jon Loeliger <jdl@freescale.com>
58911 Date:   Tue Jul 10 10:27:39 2007 -0500
58912
58913     cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
58914
58915     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58916
58917 commit 079a136c3588814784561d6e4856970ee82d6e2a
58918 Author: Jon Loeliger <jdl@freescale.com>
58919 Date:   Tue Jul 10 10:12:10 2007 -0500
58920
58921     include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
58922
58923     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
58924     used to be included but CONFIG_BOOTP_MASK was not defined.
58925
58926     Remove lingering references to CFG_CMD_* symbols.
58927
58928     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58929
58930 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
58931 Author: Jon Loeliger <jdl@freescale.com>
58932 Date:   Tue Jul 10 09:38:02 2007 -0500
58933
58934     include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
58935
58936     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
58937     used to be included but CONFIG_BOOTP_MASK was not defined.
58938
58939     Remove lingering references to CFG_CMD_* symbols.
58940
58941     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58942
58943 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
58944 Author: Jon Loeliger <jdl@freescale.com>
58945 Date:   Tue Jul 10 09:29:01 2007 -0500
58946
58947     include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
58948
58949     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
58950     used to be included but CONFIG_BOOTP_MASK was not defined.
58951
58952     Remove lingering references to CFG_CMD_* symbols.
58953
58954     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58955
58956 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
58957 Author: Jon Loeliger <jdl@freescale.com>
58958 Date:   Tue Jul 10 09:22:23 2007 -0500
58959
58960     include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
58961
58962     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
58963     used to be included but CONFIG_BOOTP_MASK was not defined.
58964
58965     Remove lingering references to CFG_CMD_* symbols.
58966
58967     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58968
58969 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
58970 Author: Jon Loeliger <jdl@freescale.com>
58971 Date:   Tue Jul 10 09:10:49 2007 -0500
58972
58973     include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
58974
58975     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
58976     used to be included but CONFIG_BOOTP_MASK was not defined.
58977
58978     Remove lingering references to CFG_CMD_* symbols.
58979
58980     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58981
58982 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
58983 Author: Jon Loeliger <jdl@freescale.com>
58984 Date:   Tue Jul 10 09:02:57 2007 -0500
58985
58986     include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
58987
58988     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
58989     used to be included but CONFIG_BOOTP_MASK was not defined.
58990
58991     Remove lingering references to CFG_CMD_* symbols.
58992
58993     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58994
58995 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
58996 Author: Jon Loeliger <jdl@freescale.com>
58997 Date:   Mon Jul 9 22:08:34 2007 -0500
58998
58999     Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
59000
59001     All of the choices for CONFIG_BOOTP_ are now documented in
59002     the README file.  You must now individually select exactly
59003     the set that you want using a series of
59004         #define CONFIG_BOOTP_<x>
59005     statements in the board port config files now.
59006
59007     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59008
59009 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
59010 Author: Jon Loeliger <jdl@freescale.com>
59011 Date:   Mon Jul 9 21:57:31 2007 -0500
59012
59013     include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59014
59015     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59016
59017 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
59018 Author: Jon Loeliger <jdl@freescale.com>
59019 Date:   Mon Jul 9 21:48:26 2007 -0500
59020
59021     include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59022
59023     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59024
59025 commit 37d4bb70586659dedef1658ce1bed071be098aec
59026 Author: Jon Loeliger <jdl@freescale.com>
59027 Date:   Mon Jul 9 21:38:02 2007 -0500
59028
59029     include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59030
59031     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59032
59033 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
59034 Author: Jon Loeliger <jdl@freescale.com>
59035 Date:   Mon Jul 9 21:31:24 2007 -0500
59036
59037     include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59038
59039     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59040
59041 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
59042 Author: Jon Loeliger <jdl@freescale.com>
59043 Date:   Mon Jul 9 21:24:19 2007 -0500
59044
59045     include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59046
59047     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59048
59049 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
59050 Author: Jon Loeliger <jdl@freescale.com>
59051 Date:   Mon Jul 9 21:16:53 2007 -0500
59052
59053     include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59054
59055     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59056
59057 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
59058 Author: Jon Loeliger <jdl@freescale.com>
59059 Date:   Mon Jul 9 19:12:30 2007 -0500
59060
59061     Retire CONFIG_COMMANDS finally.
59062     Strip old CFG_CMD_* symbols out.
59063
59064     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59065
59066 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
59067 Author: Jon Loeliger <jdl@freescale.com>
59068 Date:   Mon Jul 9 19:10:03 2007 -0500
59069
59070     Update README.* to reference new CONFIG_CMD_* names now.
59071
59072     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59073
59074 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
59075 Author: Jon Loeliger <jdl@freescale.com>
59076 Date:   Mon Jul 9 19:06:00 2007 -0500
59077
59078     cpu/m*: Remove obsolete references to CONFIG_COMMANDS
59079
59080     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59081
59082 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
59083 Author: Jon Loeliger <jdl@freescale.com>
59084 Date:   Mon Jul 9 18:57:22 2007 -0500
59085
59086     cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
59087
59088     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59089
59090 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
59091 Author: Jon Loeliger <jdl@freescale.com>
59092 Date:   Mon Jul 9 18:45:16 2007 -0500
59093
59094     board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
59095
59096     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59097
59098 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
59099 Author: Jon Loeliger <jdl@freescale.com>
59100 Date:   Mon Jul 9 18:38:39 2007 -0500
59101
59102     board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
59103
59104     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59105
59106 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
59107 Author: Jon Loeliger <jdl@freescale.com>
59108 Date:   Mon Jul 9 18:31:28 2007 -0500
59109
59110     board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
59111
59112     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59113
59114 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
59115 Author: Jon Loeliger <jdl@freescale.com>
59116 Date:   Mon Jul 9 18:24:55 2007 -0500
59117
59118     board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
59119
59120     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59121
59122 commit fcec2eb93e126400009729328e797f12bc94f1fd
59123 Author: Jon Loeliger <jdl@freescale.com>
59124 Date:   Mon Jul 9 18:19:09 2007 -0500
59125
59126     board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
59127
59128     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59129
59130 commit a593814f2be0c9cdc3133cd550b167b8a988328f
59131 Author: Jon Loeliger <jdl@freescale.com>
59132 Date:   Mon Jul 9 18:10:50 2007 -0500
59133
59134     rtc/: Remove obsolete references to CONFIG_COMMANDS
59135
59136     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59137
59138 commit 67350568f9d46e66c21829f3513b3db0caeb948b
59139 Author: Jon Loeliger <jdl@freescale.com>
59140 Date:   Mon Jul 9 18:05:38 2007 -0500
59141
59142     lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
59143
59144     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59145
59146 commit 7def6b34f910f08d7ef0a14646da067719237ca2
59147 Author: Jon Loeliger <jdl@freescale.com>
59148 Date:   Mon Jul 9 18:02:11 2007 -0500
59149
59150     lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
59151
59152     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59153
59154 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
59155 Author: Jon Loeliger <jdl@freescale.com>
59156 Date:   Mon Jul 9 17:56:50 2007 -0500
59157
59158     fs/: Remove obsolete references to CONFIG_COMMANDS
59159
59160     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59161
59162 commit c91898bbc505aff3e12a807af88e76da18efb7ee
59163 Author: Jon Loeliger <jdl@freescale.com>
59164 Date:   Mon Jul 9 17:46:09 2007 -0500
59165
59166     tools/: Remove obsolete references to CONFIG_COMMANDS
59167
59168     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59169
59170 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
59171 Author: Jon Loeliger <jdl@freescale.com>
59172 Date:   Mon Jul 9 17:45:14 2007 -0500
59173
59174     net/: Remove obsolete references to CONFIG_COMMANDS
59175
59176     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59177
59178 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
59179 Author: Jon Loeliger <jdl@freescale.com>
59180 Date:   Mon Jul 9 17:39:42 2007 -0500
59181
59182     drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
59183
59184     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59185
59186 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
59187 Author: Jon Loeliger <jdl@freescale.com>
59188 Date:   Mon Jul 9 17:30:01 2007 -0500
59189
59190     drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
59191
59192     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59193
59194 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
59195 Author: Jon Loeliger <jdl@freescale.com>
59196 Date:   Mon Jul 9 17:22:37 2007 -0500
59197
59198     disk/: Remove obsolete references to CONFIG_COMMANDS
59199
59200     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59201
59202 commit 639221c76c88215bd55af83ad174fc30d1940f8f
59203 Author: Jon Loeliger <jdl@freescale.com>
59204 Date:   Mon Jul 9 17:15:49 2007 -0500
59205
59206     include/: Remove obsolete references to CONFIG_COMMANDS
59207     Mostly removed from comments here.
59208
59209     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59210
59211 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
59212 Author: Wolfgang Denk <wd@denx.de>
59213 Date:   Tue Jul 10 00:01:28 2007 +0200
59214
59215     Coding style cleanup; update CHANGELOG.
59216
59217     Signed-off-by: Wolfgang Denk <wd@denx.de>
59218
59219 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
59220 Author: Stefan Roese <sr@denx.de>
59221 Date:   Mon Jul 9 11:00:24 2007 +0200
59222
59223     Small coding style cleanup
59224
59225     Signed-off-by: Stefan Roese <sr@denx.de>
59226
59227 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
59228 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59229 Date:   Mon Jul 9 10:10:08 2007 +0200
59230
59231     Migrate esd 405EP boards to new NAND subsystem
59232
59233     Remove unused CFG_NAND_LEGACY define
59234
59235     These boards to not have NAND.
59236
59237     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59238
59239 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
59240 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59241 Date:   Mon Jul 9 10:10:06 2007 +0200
59242
59243     Migrate esd 405EP boards to new NAND subsystem
59244
59245     Migrate esd 405EP boards to new NAND subsystem
59246
59247     -cleanup
59248     -use correct io accessors (in/out_be32())
59249
59250     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59251
59252 commit e09f7ab5749c345f924da272bea0521a73af5b11
59253 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59254 Date:   Mon Jul 9 10:10:04 2007 +0200
59255
59256     Migrate esd 405EP boards to new NAND subsystem
59257
59258     This patch prepares the migration from the legacy NAND driver
59259     to U-Boot's new NAND subsystem for esd boards.
59260
59261     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59262
59263 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
59264 Author: Jon Loeliger <jdl@freescale.com>
59265 Date:   Sun Jul 8 18:10:08 2007 -0500
59266
59267     common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
59268
59269     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59270
59271 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
59272 Author: Jon Loeliger <jdl@freescale.com>
59273 Date:   Sun Jul 8 18:05:39 2007 -0500
59274
59275     common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
59276
59277     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59278
59279 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
59280 Author: Jon Loeliger <jdl@freescale.com>
59281 Date:   Sun Jul 8 18:02:23 2007 -0500
59282
59283     common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
59284
59285     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59286
59287 commit baa26db4113679b80970ff447d91cc10217742a6
59288 Author: Jon Loeliger <jdl@freescale.com>
59289 Date:   Sun Jul 8 17:51:39 2007 -0500
59290
59291     common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
59292
59293     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59294
59295 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
59296 Author: Jon Loeliger <jdl@freescale.com>
59297 Date:   Sun Jul 8 17:02:01 2007 -0500
59298
59299     Clear up confusion over the CMD_POST and POST_DIAG mess.
59300
59301     For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
59302     when it really means just CONFIG_CMD_DIAG.  There is no CMD_POST.
59303     Clear this mess up some.
59304
59305     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59306
59307 commit b3631487105a57ab7cbadfc26efbaf9676275018
59308 Author: Jon Loeliger <jdl@freescale.com>
59309 Date:   Sun Jul 8 15:45:08 2007 -0500
59310
59311     Remove references to the old cmd_confdefs.h include file.
59312
59313     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59314
59315 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
59316 Author: Jon Loeliger <jdl@freescale.com>
59317 Date:   Sun Jul 8 15:42:59 2007 -0500
59318
59319     include/configs: Catch some CONFIG_CMD_* conversion stragglers.
59320
59321     Use new CONFIG_CMD_* in lwmon5.h board config file.
59322     Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
59323
59324     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59325
59326 commit a5562901661bd428f7e5feb333f796372cb81019
59327 Author: Jon Loeliger <jdl@freescale.com>
59328 Date:   Sun Jul 8 15:31:57 2007 -0500
59329
59330     include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
59331
59332     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59333
59334 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
59335 Author: Jon Loeliger <jdl@freescale.com>
59336 Date:   Sun Jul 8 15:02:44 2007 -0500
59337
59338     include/configs: Use new CONFIG_CMD_* in various S* named board config files.
59339
59340     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59341
59342 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
59343 Author: Jon Loeliger <jdl@freescale.com>
59344 Date:   Sun Jul 8 15:12:40 2007 -0500
59345
59346     include/configs: Use new CONFIG_CMD_* in various R* named board config files.
59347
59348     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59349
59350 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
59351 Author: Jon Loeliger <jdl@freescale.com>
59352 Date:   Sun Jul 8 14:55:07 2007 -0500
59353
59354     include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
59355
59356     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59357
59358 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
59359 Author: Jon Loeliger <jdl@freescale.com>
59360 Date:   Sun Jul 8 14:49:44 2007 -0500
59361
59362     include/configs: Use new CONFIG_CMD_* in various P* named board config files.
59363
59364     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59365
59366 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
59367 Author: Jon Loeliger <jdl@freescale.com>
59368 Date:   Sun Jul 8 14:21:43 2007 -0500
59369
59370     include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
59371
59372     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59373
59374 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
59375 Author: Jon Loeliger <jdl@freescale.com>
59376 Date:   Sun Jul 8 14:14:17 2007 -0500
59377
59378     include/configs: Use new CONFIG_CMD_* in various M* named board config files.
59379
59380     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59381
59382 commit 348f258f24253433e4a2302a0bbceb6740a67246
59383 Author: Jon Loeliger <jdl@freescale.com>
59384 Date:   Sun Jul 8 13:46:18 2007 -0500
59385
59386     include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
59387
59388     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59389
59390 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
59391 Author: Jon Loeliger <jdl@freescale.com>
59392 Date:   Sun Jul 8 10:09:35 2007 -0500
59393
59394     include/configs: Use new CONFIG_CMD_* in various H* named board config files.
59395
59396     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59397
59398 commit 60a0876b5106b34220e459c208bbf648073306c0
59399 Author: Jon Loeliger <jdl@freescale.com>
59400 Date:   Sat Jul 7 21:04:26 2007 -0500
59401
59402     include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
59403
59404     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59405
59406 commit dcaa71562826a2466e894c868d132509dcda8444
59407 Author: Jon Loeliger <jdl@freescale.com>
59408 Date:   Sat Jul 7 20:56:05 2007 -0500
59409
59410     include/configs: Use new CONFIG_CMD_* in various E* named board config files.
59411
59412     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59413
59414 commit 3c3227f3c737502311b25b72084573901cbbf17d
59415 Author: Jon Loeliger <jdl@freescale.com>
59416 Date:   Sat Jul 7 20:40:43 2007 -0500
59417
59418     include/configs: Use new CONFIG_CMD_* in various D* named board config files.
59419
59420     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59421
59422 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
59423 Author: Jon Loeliger <jdl@freescale.com>
59424 Date:   Thu Jul 5 19:52:35 2007 -0500
59425
59426     include/configs: Use new CONFIG_CMD_* in various C* named board config files.
59427
59428     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59429
59430 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
59431 Author: Jon Loeliger <jdl@freescale.com>
59432 Date:   Thu Jul 5 19:32:07 2007 -0500
59433
59434     include/configs: Use new CONFIG_CMD_* in various B* named board config files.
59435
59436     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59437
59438 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
59439 Author: Jon Loeliger <jdl@freescale.com>
59440 Date:   Thu Jul 5 19:13:52 2007 -0500
59441
59442     include/configs: Use new CONFIG_CMD_* in various A* named board config files.
59443
59444     Since ADS860.h includes "board/fads/fads.h" with ramifications
59445     on the CONFIG_COMMAND treatment, it too has to be adjusted to
59446     exclude already configured commands in this same commit.
59447
59448     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59449
59450 commit 10e038932f22ee80ebd53de312531e70e6590a2f
59451 Author: Thomas Knobloch <knobloch@siemens.com>
59452 Date:   Fri Jul 6 14:58:39 2007 +0200
59453
59454     [NAND] Bad block skipping for command nboot
59455
59456     The old implementation of command nboot does not support reading the image from
59457     NAND flash with skipping of bad blocks. The patch implements a new version of
59458     the nboot command: by calling nboot.jffs2 from the u-boot command line the
59459     command will load the image from NAND flash with respect to bad blocks (by using
59460     nand_read_opts()). This is similar to e.g. the NAND read command: "nand
59461     read.jffs2 ...".
59462
59463     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
59464     Signed-off-by: Stefan Roese <sr@denx.de>
59465
59466 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
59467 Author: Stefan Roese <sr@denx.de>
59468 Date:   Fri Jul 6 12:26:51 2007 +0200
59469
59470     ppc4xx: Update lwmon5 default environment
59471
59472     Signed-off-by: Stefan Roese <sr@denx.de>
59473
59474 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
59475 Author: Stefan Roese <sr@denx.de>
59476 Date:   Fri Jul 6 11:48:24 2007 +0200
59477
59478     ppc4xx: Update lwmon5 board
59479
59480     Add unlock=yes environment variable to default variables to unlock
59481     the CFI flash by default.
59482
59483     Signed-off-by: Stefan Roese <sr@denx.de>
59484
59485 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
59486 Author: Stefan Roese <sr@denx.de>
59487 Date:   Fri Jul 6 09:45:47 2007 +0200
59488
59489     Fix problem with get/setdcr commands introduced by cfg patches
59490
59491     Signed-off-by: Stefan Roese <sr@denx.de>
59492
59493 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
59494 Author: Wolfgang Denk <wd@denx.de>
59495 Date:   Fri Jul 6 02:50:19 2007 +0200
59496
59497     Code cleanup and default config update for STC GP3 SSA board.
59498
59499     Signed-off-by: Wolfgang Denk <wd@denx.de>
59500
59501 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
59502 Author: Wolfgang Denk <wd@denx.de>
59503 Date:   Thu Jul 5 17:56:27 2007 +0200
59504
59505     Fixing some typos etc. introduced mainly by cfg patches.
59506
59507     Signed-off-by: Wolfgang Denk <wd@denx.de>
59508
59509 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
59510 Author: Wolfgang Denk <wd@denx.de>
59511 Date:   Thu Jul 5 11:12:16 2007 +0200
59512
59513     Minor coding style cleanup. Update CHANGELOG.
59514
59515 commit dca3b3d6d6396b67e5e84af53452164923c73443
59516 Author: Jon Loeliger <jdl@jdl.com>
59517 Date:   Wed Jul 4 22:33:46 2007 -0500
59518
59519     include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
59520
59521     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59522
59523 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
59524 Author: Jon Loeliger <jdl@jdl.com>
59525 Date:   Wed Jul 4 22:33:38 2007 -0500
59526
59527     include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
59528
59529     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59530
59531 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
59532 Author: Jon Loeliger <jdl@jdl.com>
59533 Date:   Wed Jul 4 22:33:30 2007 -0500
59534
59535     include/configs: Use new CONFIG_CMD_* in various s* named board config files.
59536
59537     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59538
59539 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
59540 Author: Jon Loeliger <jdl@jdl.com>
59541 Date:   Wed Jul 4 22:33:23 2007 -0500
59542
59543     include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
59544
59545     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59546
59547 commit 26a34560d56a9df5bc2ae23525d9229736134757
59548 Author: Jon Loeliger <jdl@jdl.com>
59549 Date:   Wed Jul 4 22:33:17 2007 -0500
59550
59551     include/configs: Use new CONFIG_CMD_* in various p* named board config files.
59552
59553     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59554
59555 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
59556 Author: Jon Loeliger <jdl@jdl.com>
59557 Date:   Wed Jul 4 22:33:13 2007 -0500
59558
59559     include/configs: Use new CONFIG_CMD_* in various o* named board config files.
59560
59561     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59562
59563 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
59564 Author: Jon Loeliger <jdl@jdl.com>
59565 Date:   Wed Jul 4 22:33:07 2007 -0500
59566
59567     include/configs: Use new CONFIG_CMD_* in various n* named board config files.
59568
59569     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59570
59571 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
59572 Author: Jon Loeliger <jdl@jdl.com>
59573 Date:   Wed Jul 4 22:33:01 2007 -0500
59574
59575     include/configs: Use new CONFIG_CMD_* in various m* named board config files.
59576
59577     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59578
59579 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
59580 Author: Jon Loeliger <jdl@jdl.com>
59581 Date:   Wed Jul 4 22:32:57 2007 -0500
59582
59583     include/configs: Use new CONFIG_CMD_* in various l* named board config files.
59584
59585     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59586
59587 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
59588 Author: Jon Loeliger <jdl@jdl.com>
59589 Date:   Wed Jul 4 22:32:51 2007 -0500
59590
59591     include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
59592
59593     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59594
59595 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
59596 Author: Jon Loeliger <jdl@jdl.com>
59597 Date:   Wed Jul 4 22:32:32 2007 -0500
59598
59599     include/configs: Use new CONFIG_CMD_* in various i* named board config files.
59600
59601     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59602
59603 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
59604 Author: Jon Loeliger <jdl@jdl.com>
59605 Date:   Wed Jul 4 22:32:25 2007 -0500
59606
59607     include/configs: Use new CONFIG_CMD_* in various h* named board config files.
59608
59609     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59610
59611 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
59612 Author: Jon Loeliger <jdl@jdl.com>
59613 Date:   Wed Jul 4 22:32:19 2007 -0500
59614
59615     include/configs: Use new CONFIG_CMD_* in various g* named board config files.
59616
59617     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59618
59619 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
59620 Author: Jon Loeliger <jdl@jdl.com>
59621 Date:   Wed Jul 4 22:32:10 2007 -0500
59622
59623     include/configs: Use new CONFIG_CMD_* in various e* named board config files.
59624
59625     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59626
59627 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
59628 Author: Jon Loeliger <jdl@jdl.com>
59629 Date:   Wed Jul 4 22:32:03 2007 -0500
59630
59631     include/configs: Use new CONFIG_CMD_* in various d* named board config files.
59632
59633     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59634
59635 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
59636 Author: Jon Loeliger <jdl@jdl.com>
59637 Date:   Wed Jul 4 22:31:56 2007 -0500
59638
59639     include/configs: Use new CONFIG_CMD_* in various c* named board config files.
59640
59641     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59642
59643 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
59644 Author: Jon Loeliger <jdl@jdl.com>
59645 Date:   Wed Jul 4 22:31:49 2007 -0500
59646
59647     include/configs: Use new CONFIG_CMD_* in various b* named board config files.
59648
59649     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59650
59651 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
59652 Author: Jon Loeliger <jdl@jdl.com>
59653 Date:   Wed Jul 4 22:31:42 2007 -0500
59654
59655     include/configs: Use new CONFIG_CMD_* in various a* named board config files.
59656
59657     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59658
59659 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
59660 Author: Jon Loeliger <jdl@jdl.com>
59661 Date:   Wed Jul 4 22:31:35 2007 -0500
59662
59663     include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
59664
59665     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59666
59667 commit d794cfefead5fc177cf4f41164e80382e9c9484a
59668 Author: Jon Loeliger <jdl@jdl.com>
59669 Date:   Wed Jul 4 22:31:15 2007 -0500
59670
59671     include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
59672
59673     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59674
59675 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
59676 Author: Jon Loeliger <jdl@jdl.com>
59677 Date:   Wed Jul 4 22:31:07 2007 -0500
59678
59679     include/configs: Use new CONFIG_CMD_* in STx board config files.
59680
59681     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59682
59683 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
59684 Author: Jon Loeliger <jdl@jdl.com>
59685 Date:   Wed Jul 4 22:30:58 2007 -0500
59686
59687     include/configs: Use new CONFIG_CMD_* in sbc* board config files.
59688
59689     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59690
59691 commit 2694690e285acaa34922f55f4b5ae030da60c55a
59692 Author: Jon Loeliger <jdl@jdl.com>
59693 Date:   Wed Jul 4 22:30:50 2007 -0500
59694
59695     include/configs: Use new CONFIG_CMD_* in TQM board config files.
59696
59697     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59698
59699 commit 1cc4c458329765b58e584a19821e796b3c10e976
59700 Author: Jon Loeliger <jdl@jdl.com>
59701 Date:   Wed Jul 4 22:30:28 2007 -0500
59702
59703     include/configs: Use new CONFIG_CMD_* in 82xx board config files.
59704
59705     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59706
59707 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
59708 Author: Jon Loeliger <jdl@jdl.com>
59709 Date:   Wed Jul 4 22:30:06 2007 -0500
59710
59711     include/configs: Use new CONFIG_CMD_* in 83xx board config files.
59712
59713     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59714
59715 commit b44896215a09c60fa40cae906f7ed207bbc2c492
59716 Author: Sergei Poselenov <sposelenov@emcraft.com>
59717 Date:   Thu Jul 5 08:17:37 2007 +0200
59718
59719     Merged POST framework with the current TOT.
59720
59721     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
59722
59723 commit b24629fa377214d63bb40d1360e354b6d3e4af56
59724 Author: Jon Loeliger <jdl@jdl.com>
59725 Date:   Wed Jun 13 13:23:15 2007 -0500
59726
59727     mpc86xx: Remove old CFG_CMD_* references.
59728
59729     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59730
59731 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
59732 Author: Jon Loeliger <jdl@jdl.com>
59733 Date:   Wed Jun 13 13:22:54 2007 -0500
59734
59735     Add MPC8568MDS to MAKEALL 85xx target.
59736
59737     It was missing from the original port submission.
59738
59739     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59740
59741 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
59742 Author: Jon Loeliger <jdl@jdl.com>
59743 Date:   Wed Jun 13 13:22:08 2007 -0500
59744
59745     include/configs: Use new CONFIG_CMD_* in 85xx board config files.
59746
59747     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59748
59749 commit 56b304ac2091689506088a9ae67f63fd6300cf16
59750 Author: Jon Loeliger <jdl@jdl.com>
59751 Date:   Wed Jun 13 13:21:37 2007 -0500
59752
59753     Fix #if typo in CONFIG_CMD_* changes.
59754
59755     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59756
59757 commit f780b83316d9af1f61d71cc88b1917b387b9b995
59758 Author: Niklaus Giger <niklausgiger@gmx.ch>
59759 Date:   Wed Jun 27 18:11:38 2007 +0200
59760
59761     resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
59762
59763     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
59764
59765 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
59766 Author: Stefan Roese <sr@denx.de>
59767 Date:   Wed Jul 4 10:06:30 2007 +0200
59768
59769     ppc4xx: Update lwmon5 board
59770
59771     - Add optional ECC generation routine to preserve existing
59772       RAM values. This is needed for the Linux log-buffer support
59773     - Add optional DDR2 setup with CL=4
59774     - GPIO50 not used anymore
59775     - Lime register setup added
59776
59777     Signed-off-by: Stefan Roese <sr@denx.de>
59778
59779 commit 6810a34677dbc446334f5e451f1682426dd33b49
59780 Author: Grant Likely <grant.likely@secretlab.ca>
59781 Date:   Tue Jul 3 00:17:28 2007 -0600
59782
59783     Fix Makefile to use $(MKCONFIG) macro for all board ports
59784
59785     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59786
59787 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
59788 Author: Grant Likely <grant.likely@secretlab.ca>
59789 Date:   Tue Jul 3 00:17:28 2007 -0600
59790
59791     Fix Makefile to use $(MKCONFIG) macro for all board ports
59792
59793     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59794
59795 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
59796 Author: Grant Likely <grant.likely@secretlab.ca>
59797 Date:   Tue Jul 3 00:34:49 2007 -0600
59798
59799     Correct fixup relocation for mpc83xx
59800
59801     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59802
59803 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
59804 Author: Grant Likely <grant.likely@secretlab.ca>
59805 Date:   Tue Jul 3 00:34:44 2007 -0600
59806
59807     Correct fixup relocation for mpc8260
59808
59809     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59810
59811 commit f3a52fe05923935db86985daf9438e2f70ac39aa
59812 Author: Grant Likely <grant.likely@secretlab.ca>
59813 Date:   Tue Jul 3 00:34:39 2007 -0600
59814
59815     Correct fixup relocation for mpc824x
59816
59817     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59818
59819 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
59820 Author: Grant Likely <grant.likely@secretlab.ca>
59821 Date:   Tue Jul 3 00:34:34 2007 -0600
59822
59823     Correct fixup relocation for mpc8220
59824
59825     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59826
59827 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
59828 Author: Grant Likely <grant.likely@secretlab.ca>
59829 Date:   Tue Jul 3 00:34:29 2007 -0600
59830
59831     Correct fixup relocation for MPC5xxx
59832
59833     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59834
59835 commit 3649cd99ba815b6601868735765602f00ef3692b
59836 Author: Grant Likely <grant.likely@secretlab.ca>
59837 Date:   Tue Jul 3 00:34:24 2007 -0600
59838
59839     Correct relocation fixup for mpc5xx
59840
59841     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59842
59843 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
59844 Author: Grant Likely <grant.likely@secretlab.ca>
59845 Date:   Tue Jul 3 00:34:19 2007 -0600
59846
59847     Don't set gd->reloc_off if relocation of .fixup works correctly
59848
59849     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59850
59851 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
59852 Author: Grant Likely <grant.likely@secretlab.ca>
59853 Date:   Tue Jul 3 00:34:14 2007 -0600
59854
59855     Remove obsolete mpc83xx linker scripts
59856
59857     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59858
59859 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
59860 Author: Grant Likely <grant.likely@secretlab.ca>
59861 Date:   Tue Jul 3 00:34:09 2007 -0600
59862
59863     Consolidate mpc8260 linker scripts
59864
59865     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59866
59867 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
59868 Author: Grant Likely <grant.likely@secretlab.ca>
59869 Date:   Tue Jul 3 00:34:04 2007 -0600
59870
59871     Remove obsolete mpc824x linker scripts
59872
59873     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59874
59875 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
59876 Author: Grant Likely <grant.likely@secretlab.ca>
59877 Date:   Tue Jul 3 00:33:59 2007 -0600
59878
59879     Remove obsolete mpc824x linker scripts (3 of 4)
59880
59881     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59882
59883 commit a71c084f3ac7fedf144537db2b2da47323068833
59884 Author: Grant Likely <grant.likely@secretlab.ca>
59885 Date:   Tue Jul 3 00:33:53 2007 -0600
59886
59887     Remove obsolete mpc824x linker scripts (2 of 4)
59888
59889     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59890
59891 commit f670a15468d1365241d40022b9408e1004181f5e
59892 Author: Grant Likely <grant.likely@secretlab.ca>
59893 Date:   Tue Jul 3 00:33:48 2007 -0600
59894
59895     Remove obsolete mpc824x linker scripts (1 of 4)
59896
59897     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59898
59899 commit 09555bd45a04c0e54f172528d21bc18896550d28
59900 Author: Grant Likely <grant.likely@secretlab.ca>
59901 Date:   Tue Jul 3 00:33:43 2007 -0600
59902
59903     Remove obsolete mpc8220 linker scripts
59904
59905     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59906
59907 commit 5efb992f046e51225c93d52f80fecbe433abd789
59908 Author: Grant Likely <grant.likely@secretlab.ca>
59909 Date:   Tue Jul 3 00:33:38 2007 -0600
59910
59911     Remove obsolete mpc5xxx linker scripts (3 of 3)
59912
59913     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59914
59915 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
59916 Author: Grant Likely <grant.likely@secretlab.ca>
59917 Date:   Tue Jul 3 00:33:33 2007 -0600
59918
59919     Remove obsolete mpc5xxx linker scripts (2 of 3)
59920
59921     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59922
59923 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
59924 Author: Grant Likely <grant.likely@secretlab.ca>
59925 Date:   Tue Jul 3 00:33:28 2007 -0600
59926
59927     Remove obsolete mpc5xxx linker scripts (1 of 3)
59928
59929     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59930
59931 commit b7d8e05f8675249b5f208aa73babeed384a4519d
59932 Author: Grant Likely <grant.likely@secretlab.ca>
59933 Date:   Tue Jul 3 00:33:23 2007 -0600
59934
59935     Remove obsolete mpc5xx linker scripts
59936
59937     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59938
59939 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
59940 Author: Grant Likely <grant.likely@secretlab.ca>
59941 Date:   Tue Jul 3 00:33:18 2007 -0600
59942
59943     Consolidate mpc83xx linker scripts
59944
59945     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59946
59947 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
59948 Author: Grant Likely <grant.likely@secretlab.ca>
59949 Date:   Tue Jul 3 00:33:13 2007 -0600
59950
59951     Consolidate mpc8260 linker scripts
59952
59953     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59954
59955 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
59956 Author: Grant Likely <grant.likely@secretlab.ca>
59957 Date:   Tue Jul 3 00:33:08 2007 -0600
59958
59959     Consolidate mpc824x linker scripts
59960
59961     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59962
59963 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
59964 Author: Grant Likely <grant.likely@secretlab.ca>
59965 Date:   Tue Jul 3 00:33:03 2007 -0600
59966
59967     Consolidate mpc8220 linker scripts
59968
59969     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59970
59971 commit d181c9a15cd41863fe24840d17848429f27d3c8c
59972 Author: Grant Likely <grant.likely@secretlab.ca>
59973 Date:   Tue Jul 3 00:32:58 2007 -0600
59974
59975     Consolidate mpc5xxx linker scripts
59976
59977     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59978
59979 commit 287ac924adb7291bebe5086652a362a30ab28b13
59980 Author: Grant Likely <grant.likely@secretlab.ca>
59981 Date:   Tue Jul 3 00:32:53 2007 -0600
59982
59983     Consolidate mpc5xx linker scripts
59984
59985     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59986
59987 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
59988 Author: Wolfgang Denk <wd@denx.de>
59989 Date:   Wed Jul 4 00:43:53 2007 +0200
59990
59991     Fix a few file permission problems.
59992
59993     Signed-off-by: Wolfgang Denk <wd@denx.de>
59994
59995 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
59996 Author: Wolfgang Denk <wd@denx.de>
59997 Date:   Wed Jul 4 00:38:38 2007 +0200
59998
59999     Minor coding style cleanup. Rebuild CHANGELOG file.
60000
60001 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
60002 Author: Jon Loeliger <jdl@jdl.com>
60003 Date:   Mon Jun 11 19:03:44 2007 -0500
60004
60005     configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
60006
60007     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60008
60009 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
60010 Author: Jon Loeliger <jdl@jdl.com>
60011 Date:   Mon Jun 11 19:03:39 2007 -0500
60012
60013     README: Rewrite command line config to use CONFIG_CMD_* names.
60014
60015     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60016
60017 commit 72a074cec68e5bad60d63206c050974e08afd804
60018 Author: Jon Loeliger <jdl@jdl.com>
60019 Date:   Mon Jun 11 19:03:34 2007 -0500
60020
60021     include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60022
60023     This is a compatibility step that allows both the older form
60024     and the new form to co-exist for a while until the older can
60025     be removed entirely.
60026
60027     All transformations are of the form:
60028     Before:
60029         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60030     After:
60031         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60032
60033     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60034
60035 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
60036 Author: Jon Loeliger <jdl@jdl.com>
60037 Date:   Mon Jun 11 19:03:28 2007 -0500
60038
60039     tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60040
60041     This is a compatibility step that allows both the older form
60042     and the new form to co-exist for a while until the older can
60043     be removed entirely.
60044
60045     All transformations are of the form:
60046     Before:
60047         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60048     After:
60049         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60050
60051     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60052
60053 commit 9107ebe0d352420895ab69b715697bdebc8caf50
60054 Author: Jon Loeliger <jdl@jdl.com>
60055 Date:   Mon Jun 11 19:03:23 2007 -0500
60056
60057     board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60058
60059     This is a compatibility step that allows both the older form
60060     and the new form to co-exist for a while until the older can
60061     be removed entirely.
60062
60063     All transformations are of the form:
60064     Before:
60065         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60066     After:
60067         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60068
60069     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60070
60071 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
60072 Author: Jon Loeliger <jdl@jdl.com>
60073 Date:   Mon Jun 11 19:03:19 2007 -0500
60074
60075     board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60076
60077     This is a compatibility step that allows both the older form
60078     and the new form to co-exist for a while until the older can
60079     be removed entirely.
60080
60081     All transformations are of the form:
60082     Before:
60083         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60084     After:
60085         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60086
60087     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60088
60089 commit 737184114ec9c9e0ab94d6713536126073bd2472
60090 Author: Jon Loeliger <jdl@jdl.com>
60091 Date:   Mon Jun 11 19:03:15 2007 -0500
60092
60093     cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60094
60095     This is a compatibility step that allows both the older form
60096     and the new form to co-exist for a while until the older can
60097     be removed entirely.
60098
60099     All transformations are of the form:
60100     Before:
60101         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60102     After:
60103         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60104
60105     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60106
60107 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
60108 Author: Jon Loeliger <jdl@jdl.com>
60109 Date:   Mon Jun 11 19:03:08 2007 -0500
60110
60111     cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60112
60113     This is a compatibility step that allows both the older form
60114     and the new form to co-exist for a while until the older can
60115     be removed entirely.
60116
60117     All transformations are of the form:
60118     Before:
60119         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60120     After:
60121         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60122
60123     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60124
60125 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
60126 Author: Jon Loeliger <jdl@jdl.com>
60127 Date:   Mon Jun 11 19:03:03 2007 -0500
60128
60129     lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60130
60131     This is a compatibility step that allows both the older form
60132     and the new form to co-exist for a while until the older can
60133     be removed entirely.
60134
60135     All transformations are of the form:
60136     Before:
60137         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60138     After:
60139         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60140
60141     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60142
60143 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
60144 Author: Jon Loeliger <jdl@jdl.com>
60145 Date:   Mon Jun 11 19:02:58 2007 -0500
60146
60147     lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60148
60149     This is a compatibility step that allows both the older form
60150     and the new form to co-exist for a while until the older can
60151     be removed entirely.
60152
60153     All transformations are of the form:
60154     Before:
60155         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60156     After:
60157         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60158
60159     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60160
60161 commit 98b79003c21c2578206003256de4e781d6b36ca8
60162 Author: Jon Loeliger <jdl@jdl.com>
60163 Date:   Mon Jun 11 19:02:53 2007 -0500
60164
60165     rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60166
60167     This is a compatibility step that allows both the older form
60168     and the new form to co-exist for a while until the older can
60169     be removed entirely.
60170
60171     All transformations are of the form:
60172     Before:
60173         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60174     After:
60175         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60176
60177     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60178
60179 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
60180 Author: Jon Loeliger <jdl@jdl.com>
60181 Date:   Mon Jun 11 19:02:49 2007 -0500
60182
60183     net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60184
60185     This is a compatibility step that allows both the older form
60186     and the new form to co-exist for a while until the older can
60187     be removed entirely.
60188
60189     All transformations are of the form:
60190     Before:
60191         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60192     After:
60193         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60194
60195     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60196
60197 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
60198 Author: Jon Loeliger <jdl@jdl.com>
60199 Date:   Mon Jun 11 19:02:34 2007 -0500
60200
60201     disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60202
60203     This is a compatibility step that allows both the older form
60204     and the new form to co-exist for a while until the older can
60205     be removed entirely.
60206
60207     All transformations are of the form:
60208     Before:
60209         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60210     After:
60211         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60212
60213     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60214
60215 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
60216 Author: Jon Loeliger <jdl@jdl.com>
60217 Date:   Mon Jun 11 19:02:20 2007 -0500
60218
60219     fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60220
60221     This is a compatibility step that allows both the older form
60222     and the new form to co-exist for a while until the older can
60223     be removed entirely.
60224
60225     All transformations are of the form:
60226     Before:
60227         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60228     After:
60229         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60230
60231     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60232
60233 commit d5be43de93ff905c465e509d45a3164ef48d26e7
60234 Author: Jon Loeliger <jdl@jdl.com>
60235 Date:   Mon Jun 11 19:02:10 2007 -0500
60236
60237     drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60238
60239     This is a compatibility step that allows both the older form
60240     and the new form to co-exist for a while until the older can
60241     be removed entirely.
60242
60243     All transformations are of the form:
60244     Before:
60245         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60246     After:
60247         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60248
60249     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60250
60251 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
60252 Author: Jon Loeliger <jdl@jdl.com>
60253 Date:   Mon Jun 11 19:02:05 2007 -0500
60254
60255     common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60256
60257     This is a compatibility step that allows both the older form
60258     and the new form to co-exist for a while until the older can
60259     be removed entirely.
60260
60261     All transformations are of the form:
60262     Before:
60263         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60264     After:
60265         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60266
60267     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60268
60269 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
60270 Author: Jon Loeliger <jdl@jdl.com>
60271 Date:   Mon Jun 11 19:01:54 2007 -0500
60272
60273     common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60274
60275     This is a compatibility step that allows both the older form
60276     and the new form to co-exist for a while until the older can
60277     be removed entirely.
60278
60279     All transformations are of the form:
60280     Before:
60281         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60282     After:
60283         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60284
60285     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60286
60287 commit a76adc8142c1d956385a109e0b70f9319ede4d66
60288 Author: Jon Loeliger <jdl@jdl.com>
60289 Date:   Mon Jun 11 19:01:43 2007 -0500
60290
60291     common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60292
60293     This is a compatibility step that allows both the older form
60294     and the new form to co-exist for a while until the older can
60295     be removed entirely.
60296
60297     All transformations are of the form:
60298     Before:
60299         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60300     After:
60301         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60302
60303     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60304
60305 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
60306 Author: Jon Loeliger <jdl@jdl.com>
60307 Date:   Mon Jun 11 19:01:34 2007 -0500
60308
60309     Introduce initial versions of new Command Config files.
60310
60311     Derive three new files from cmd_confdefs.h:
60312         config_bootp.h - Has BOOTP related config options, not commands
60313         config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
60314         config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
60315
60316     For now, include "config_bootp.h" for compatability until all
60317     users of it directly include it properly.
60318
60319     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60320
60321 commit 1f2a05898658900dc5717761e27abf2052e67e13
60322 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
60323 Date:   Sat Jun 30 18:50:48 2007 +0200
60324
60325     Fix S-ATA support.
60326
60327     Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
60328
60329 commit a5d71e290f3673269be8eefb4ec44f53412f9461
60330 Author: Heiko Schocher <hs@pollux.denx.de>
60331 Date:   Mon Jun 25 19:11:37 2007 +0200
60332
60333     [PCS440EP]  get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
60334
60335     Signed-off-by: Heiko Schocher <hs@denx.de>
60336
60337 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
60338 Author: Niklaus Giger <niklaus.giger@nestal.com>
60339 Date:   Mon Jun 25 17:03:13 2007 +0200
60340
60341     ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
60342
60343     This patch prints the DDR status registers upon machine check
60344     interrupt on the 440EPx/GRx. This can be useful especially when
60345     ECC support is enabled.
60346
60347     I added some small changes to the original patch from Niklaus to
60348     make it compile clean.
60349
60350     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
60351     Signed-off-by: Stefan Roese <sr@denx.de>
60352
60353 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
60354 Author: Niklaus Giger <niklaus.giger@nestal.com>
60355 Date:   Mon Jun 25 16:50:55 2007 +0200
60356
60357     ppc4xx: Fix O=buildir builds
60358
60359     This patch fixes the problem to assemble cpu/ppc4xx/start.S
60360     experienced last week where building failed having specified
60361     O=../build.sequoia.
60362
60363     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
60364
60365 commit 466fff1a7bb5fe764a06450626f6098219f446b8
60366 Author: Stefan Roese <sr@denx.de>
60367 Date:   Mon Jun 25 15:57:39 2007 +0200
60368
60369     ppc4xx: Add pci_pre_init() for 405 boards
60370
60371     This patch removes the CFG_PCI_PRE_INIT option completely, since
60372     it's not needed anymore with the patch from Matthias Fuchs with
60373     the "weak" pci_pre_init() implementation.
60374
60375     Signed-off-by: Stefan Roese <sr@denx.de>
60376
60377 commit 6f35c53166213c24a5a0e2390ed861136ff73870
60378 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60379 Date:   Sun Jun 24 17:41:21 2007 +0200
60380
60381     ppc4xx: Maintenance patch for esd's CPCI405 derivats
60382
60383     -add pci_pre_init() for pci interrupt fixup code
60384     -disable phy sleep mode via reset_phy() function
60385     -use correct io accessors
60386     -cleanup
60387
60388     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60389
60390 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
60391 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60392 Date:   Sun Jun 24 17:23:41 2007 +0200
60393
60394     ppc4xx: Add pci_pre_init() for 405 boards
60395
60396     This patch adds support for calling a plattform dependant
60397     pci_pre_init() function for 405 boards. This can be used to
60398     move the current pci_405gp_fixup_irq() function into the
60399     board code.
60400
60401     This patch also makes the CFG_PCI_PRE_INIT define obsolete.
60402     A default function with 'weak' attribute is used when
60403     a board specific pci_pre_init() is not implemented.
60404
60405     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60406
60407 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
60408 Author: Wolfgang Denk <wd@denx.de>
60409 Date:   Fri Jun 22 23:59:00 2007 +0200
60410
60411     Coding stylke cleanup; rebuild CHANGELOG
60412
60413 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
60414 Author: Igor Lisitsin <igor@emcraft.com>
60415 Date:   Wed Apr 18 14:55:19 2007 +0400
60416
60417     Adapt log buffer code to support Linux 2.6
60418
60419     A new environment variable, "logversion", selects the log buffer
60420     behaviour. If it is not set or set to a value other than 2, then the
60421     old, Linux 2.4.4, behaviour is selected.
60422
60423     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
60424     --
60425
60426 commit a11e06965ec91270c51853407ff1261d3c740386
60427 Author: Igor Lisitsin <igor@emcraft.com>
60428 Date:   Wed Mar 28 19:06:19 2007 +0400
60429
60430     Extend POST support for PPC440
60431
60432     Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
60433
60434     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
60435     --
60436
60437 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
60438 Author: Heiko Schocher <hs@pollux.denx.de>
60439 Date:   Fri Jun 22 19:11:54 2007 +0200
60440
60441     [PCS440EP]      upgrade the PCS440EP board:
60442                     - Show on the Status LEDs, some States of the board.
60443                     - Get the MAC addresses from the EEProm
60444                     - use PREBOOT
60445                     - use the CF on the board.
60446                     - check the U-Boot image in the Flash with a SHA1
60447                       checksum.
60448                     - use dynamic TLB entries generation for the SDRAM
60449
60450     Signed-off-by: Heiko Schocher <hs@denx.de>
60451
60452 commit 3a1f5c81b0b9557817a789bece839905581c2205
60453 Author: Stefan Roese <sr@denx.de>
60454 Date:   Fri Jun 22 16:58:40 2007 +0200
60455
60456     ppc4xx: Fix problem with extended program_tlb() funtion
60457
60458     The recently extended program_tlb() function had a problem when
60459     multiple TLB's had to be setup (for example with 512MB of SDRAM). The
60460     virtual address was not incremented. This patch fixes this issue
60461     and is tested on Katmai with 512MB SDRAM.
60462
60463     Signed-off-by: Stefan Roese <sr@denx.de>
60464
60465 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
60466 Author: Rafal Jaworowski <raj@semihalf.com>
60467 Date:   Fri Jun 22 14:58:04 2007 +0200
60468
60469     [ppc] Fix build breakage for all non-4xx PowerPC variants.
60470
60471     - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
60472     - minor 4xx cleanup
60473
60474 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
60475 Author: Mike Frysinger <vapier@gentoo.org>
60476 Date:   Fri Jun 22 10:34:12 2007 +0200
60477
60478     [patch] add nand_init() prototype to nand.h
60479
60480     since nand_init() is expected to be called by other parts of u-boot, there
60481     should be a prototype for it in nand.h
60482
60483     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
60484     Signed-off-by: Stefan Roese <sr@denx.de>
60485
60486 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
60487 Author: Wolfgang Denk <wd@denx.de>
60488 Date:   Wed Jun 20 18:14:24 2007 +0200
60489
60490     Coding style cleanup. Refresh CHANGELOG.
60491
60492 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
60493 Author: Stefan Roese <sr@denx.de>
60494 Date:   Tue Jun 19 17:22:44 2007 +0200
60495
60496     ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
60497
60498     This patch adds a board command to configure the I2C bootstrap EEPROM
60499     values. Right now 533 and 667MHz are supported for booting either via NOR
60500     or NAND FLASH. Here the usage:
60501
60502     => bootstrap 533 nor        ;to configure the board for 533MHz NOR booting
60503     => bootstrap 667 nand       ;to configure the board for 667MHz NNAND booting
60504
60505     Signed-off-by: Stefan Roese <sr@denx.de>
60506
60507 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
60508 Author: Stefan Roese <sr@denx.de>
60509 Date:   Tue Jun 19 16:42:31 2007 +0200
60510
60511     [ppc4xx] Fix problem with NAND booting on AMCC Acadia
60512
60513     The latest changes showed a problem with the location of the NAND-SPL
60514     image in the OCM and the init-data area (incl. cache). This patch
60515     fixes this problem.
60516
60517     Signed-off-by: Stefan Roese <sr@denx.de>
60518
60519 commit 86ba99e34194394052d24c04dc40d1263d29a26f
60520 Author: Stefan Roese <sr@denx.de>
60521 Date:   Tue Jun 19 16:40:58 2007 +0200
60522
60523     [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
60524
60525     Signed-off-by: Stefan Roese <sr@denx.de>
60526
60527 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
60528 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
60529 Date:   Mon Jun 18 13:50:13 2007 -0500
60530
60531     Added M5329AFEE and M5329BFEE Platforms
60532
60533     Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
60534     drivers/serial,  immap_5329.h, m5329.h, mcfrtc.h,
60535     include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
60536     rtc/mcfrtc.c
60537
60538     Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
60539     common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
60540     include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
60541     include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
60542     include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
60543     lib_m68k/time.c, net/eth.c and rtc/Makefile
60544
60545     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
60546
60547 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
60548 Author: Michal Simek <monstr@monstr.eu>
60549 Date:   Sun Jun 17 19:04:11 2007 +0200
60550
60551     [fix] email reparation
60552
60553 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
60554 Author: Michal Simek <monstr@monstr.eu>
60555 Date:   Sun Jun 17 19:03:21 2007 +0200
60556
60557     [FIX] fix microblaze file permitission
60558
60559 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
60560 Author: Stefan Roese <sr@denx.de>
60561 Date:   Fri Jun 15 11:33:41 2007 +0200
60562
60563     [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
60564
60565     Now CONFIG_440 has to be defined in all PPC440 board config files.
60566
60567     Signed-off-by: Stefan Roese <sr@denx.de>
60568
60569 commit efa35cf12d914d4caba942acd5a6c45f217de302
60570 Author: Grzegorz Bernacki <gjb@semihalf.com>
60571 Date:   Fri Jun 15 11:19:28 2007 +0200
60572
60573     ppc4xx: Clean up 440 exceptions handling
60574
60575     - Introduced dedicated switches for building 440 and 405 images required
60576       for 440-specific machine instructions like 'rfmci' etc.
60577
60578     - Exception vectors moved to the proper location (_start moved away from
60579       the critical exception handler space, which it occupied)
60580
60581     - CriticalInput now serviced (with default handler)
60582
60583     - MachineCheck properly serviced (added a dedicated handler and return
60584       subroutine)
60585
60586     - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
60587       unhandled and those not relevant for 4xx were eliminated)
60588
60589     - Eliminated Linux leftovers, removed dead code
60590
60591     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
60592     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
60593     Signed-off-by: Stefan Roese <sr@denx.de>
60594
60595 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
60596 Author: Stefan Roese <sr@denx.de>
60597 Date:   Fri Jun 15 08:18:01 2007 +0200
60598
60599     [ppc4xx] Add initial lwmon5 board support
60600
60601     This patch adds initial support for the Liebherr lwmon5 board euqipped
60602     with an AMCC 440EPx PowerPC.
60603
60604     Signed-off-by: Stefan Roese <sr@denx.de>
60605
60606 commit 85f737376d5ff3d5f0d45a8b657686326d175307
60607 Author: Stefan Roese <sr@denx.de>
60608 Date:   Fri Jun 15 07:39:43 2007 +0200
60609
60610     [ppc4xx] Extend 44x GPIO setup with default output state
60611
60612     The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
60613     is extended with the default GPIO output state (level).
60614
60615     Signed-off-by: Stefan Roese <sr@denx.de>
60616
60617 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
60618 Author: Stefan Roese <sr@denx.de>
60619 Date:   Thu Jun 14 11:14:32 2007 +0200
60620
60621     [ppc4xx] Extend program_tlb() with virtual & physical addresses
60622
60623     Now program_tlb() allows to program a TLB (or multiple) with
60624     different virtual and physical addresses. With this change, now one
60625     physical region (e.g. SDRAM) can be mapped 2 times, once with caches
60626     diabled and once with caches enabled.
60627
60628     Signed-off-by: Stefan Roese <sr@denx.de>
60629
60630 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
60631 Author: Detlev Zundel <dzu@denx.de>
60632 Date:   Wed May 23 19:02:41 2007 +0200
60633
60634     Change 'repeatable' attribute of some commands to sensible values.
60635
60636     Most prominently this changes 'erase' to be non-repeatable.
60637
60638     Signed-off-by: Detlev Zundel <dzu@denx.de>
60639
60640 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
60641 Author: Detlev Zundel <dzu@denx.de>
60642 Date:   Wed May 23 18:47:48 2007 +0200
60643
60644     Fix 'run' not to continue after interrupted command
60645
60646     Signed-off-by: Detlev Zundel <dzu@denx.de>
60647
60648 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
60649 Author: Jason Jin <Jason.jin@freescale.com>
60650 Date:   Mon Jun 11 15:14:24 2007 +0200
60651
60652     USB: This patch fix readl in ohci swap reg access.
60653
60654     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
60655
60656 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
60657 Author: Bartlomiej Sieka <tur@semihalf.com>
60658 Date:   Fri Jun 8 14:52:22 2007 +0200
60659
60660     TQM5200: Add Flat Device Tree support, update default env. accordingly.
60661
60662     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
60663     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
60664
60665 commit 9045f33c023f698660a2e45d1b2194c0711abebc
60666 Author: Wolfgang Denk <wd@denx.de>
60667 Date:   Fri Jun 8 10:24:58 2007 +0200
60668
60669     Fix config problems on SC3 board; make ide_reset_timeout work.
60670
60671 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
60672 Author: BenoĂ®t Monin <bmonin@adeneo.eu>
60673 Date:   Fri Jun 8 09:55:24 2007 +0200
60674
60675     [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
60676
60677     Set the correct value in GPIOx_TCR when configuring the gpio
60678     with CFG_440_GPIO_TABLE.
60679
60680     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
60681     Signed-off-by: Stefan Roese <sr@denx.de>
60682
60683 commit f539edc076cfe52bff919dd512ba8d7af0e22092
60684 Author: Vadim Bendebury <vbendeb@google.com>
60685 Date:   Thu May 24 15:52:25 2007 -0700
60686
60687     cosmetic changes to bcm570x driver
60688
60689     This is a cosmetic only changes submission.
60690     It affects files relevant to bcm570x driver.
60691     the commands used to generate this change was
60692
60693     cd drivers
60694     Lindent -pcs -l80  bcm570x.c   bcm570x_lm.h   bcm570x_mm.h  tigon3.c  tigon3.h
60695
60696     The BMW target (the only one using this chip so far) builds cleanly, the
60697     `before and after' generated object files for drivers/bcm570x.c and
60698     drivers/tigon3.o are identical as reported by objdump -d
60699
60700     Signed-off-by: Vadim Bendebury <vbendeb@google.com>
60701     Signed-off-by: Ben Warren <bwarren@qstreams.com>
60702
60703 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
60704 Author: Wolfgang Denk <wd@denx.de>
60705 Date:   Wed Jun 6 16:26:56 2007 +0200
60706
60707     Coding Style cleanup; generate new CHANGELOG file.
60708
60709     Signed-off-by: Wolfgang Denk <wd@denx.de>
60710
60711 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
60712 Author: Markus Klotzbuecher <mk@denx.de>
60713 Date:   Wed Jun 6 11:49:44 2007 +0200
60714
60715     TRAB, USB: update trab board configuration for use of generic ohci driver
60716
60717 commit dace45acd1c1357daa9322099d07c9a9e08b0024
60718 Author: Markus Klotzbuecher <mk@denx.de>
60719 Date:   Wed Jun 6 11:49:43 2007 +0200
60720
60721     USB: ohci fixes and cleanup for ppc4xx and yosemite board.
60722
60723 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
60724 Author: Markus Klotzbuecher <mk@denx.de>
60725 Date:   Wed Jun 6 11:49:43 2007 +0200
60726
60727     USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
60728
60729 commit fc43be478f2aa37ce38acd85355038866e4162af
60730 Author: Markus Klotzbuecher <mk@denx.de>
60731 Date:   Wed Jun 6 11:49:35 2007 +0200
60732
60733     USB/OHCI: endianness cleanup in the generic ohci driver
60734
60735 commit c440bfe6d6d92d66478a7e84402b31f48413617b
60736 Author: Stefan Roese <sr@denx.de>
60737 Date:   Wed Jun 6 11:42:13 2007 +0200
60738
60739     ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
60740
60741     This patch adds NAND booting support for the AMCC Acadia eval board.
60742
60743     Please make sure to configure jumper J7 to position 2-3 when booting
60744     from NOR, and to position 1-2 when booting for NAND.
60745
60746     I also added a board command to configure the I2C bootstrap EEPROM
60747     values. Right now only 267MHz is support for booting either via NOR
60748     or NAND FLASH. Here the usage:
60749
60750     => bootstrap 267 nor        ;to configure the board for 267MHz NOR booting
60751     => bootstrap 267 nand       ;to configure the board for 267MHz NNAND booting
60752
60753     Signed-off-by: Stefan Roese <sr@denx.de>
60754
60755 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
60756 Author: Rodolfo Giometti <giometti@linux.it>
60757 Date:   Wed Jun 6 10:08:14 2007 +0200
60758
60759     Files include/linux/byteorder/{big,little}_endian.h define
60760     __BIG_ENDIAN and __LITTLE_ENDIAN.
60761
60762     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
60763
60764 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
60765 Author: Zhang Wei <wei.zhang@freescale.com>
60766 Date:   Wed Jun 6 10:08:14 2007 +0200
60767
60768     Add USB PCI-OHCI, USB keyboard and event poll support to the
60769     MPC8641HPCN board config file.
60770
60771     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
60772
60773 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
60774 Author: Zhang Wei <wei.zhang@freescale.com>
60775 Date:   Wed Jun 6 10:08:14 2007 +0200
60776
60777     USB PCI-OHCI, interrupt pipe and usb event poll support
60778
60779     This patch added USB PCI-OHCI chips support, interrupt pipe support
60780     and usb event poll support. For supporting the USB interrupt pipe, the
60781     globe urb_priv is moved to purb in ed struct. Now, we can process
60782     several urbs at one time. The interrupt pipe support codes are ported
60783     from Linux kernel 2.4.
60784
60785     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
60786
60787 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
60788 Author: Zhang Wei <wei.zhang@freescale.com>
60789 Date:   Wed Jun 6 10:08:13 2007 +0200
60790
60791     USB event poll support
60792
60793     This patch adds USB event poll support, which could be used in usbkbd
60794     and other usb devices driver when the asynchronous interrupt
60795     processing is supported.
60796
60797     Signed-off-by: Zhang Wei <wei.zhang@freescale.com
60798
60799 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
60800 Author: Rodolfo Giometti <giometti@linux.it>
60801 Date:   Wed Jun 6 10:08:12 2007 +0200
60802
60803     ISP116x: delay for crappy USB keys
60804
60805     Using some (very) slow USB keys cause the USB host controller buffers
60806     are not ready to be read by the CPU so we need an extra delay before
60807     reading the USB storage data.
60808
60809     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
60810
60811 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
60812 Author: Markus Klotzbuecher <mk@denx.de>
60813 Date:   Wed Jun 6 10:08:12 2007 +0200
60814
60815     Change duplicate usb_cpu_init_fail to usb_board_init_fail
60816
60817     Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
60818     this out.
60819
60820     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
60821
60822 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
60823 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
60824 Date:   Tue Jun 5 12:30:52 2007 -0500
60825
60826     mpc8641 image size cleanup
60827
60828     e600 does not have a bootpg restriction.
60829     Move the version string to beginning of image at fff00000.
60830     Resetvec.S is not needed.
60831     Update flash copy instructions.
60832     Add tftpflash env variable
60833
60834     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
60835     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60836
60837 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
60838 Author: BenoĂ®t Monin <bmonin@adeneo.eu>
60839 Date:   Mon Jun 4 08:36:05 2007 +0200
60840
60841     [PATCH] Fix ppc4xx bootstrap letter displayed on startup
60842
60843     The attached patch is mainly cosmetic, allowing u-boot to
60844     display the correct bootstrap option letter according to the
60845     datasheets.
60846
60847     The original patch was extended with 405EZ support by Stefan
60848     Roese.
60849
60850     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
60851     Signed-off-by: Stefan Roese <sr@denx.de>
60852
60853 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
60854 Author: Nikita V. Youshchenko <yoush@debian.org>
60855 Date:   Wed May 23 12:45:19 2007 +0400
60856
60857     fix compilation problem for mpc8349itx CFG_RAMBOOT
60858
60859     Current include/configs/MPC8349ITX.h does contain some support for building
60860     image that will be started from memory (without putting in into flash).
60861     It could be triggered by building with TEXT_BASE set to a low value.
60862
60863     However, this support is incomplete: using of low TEXT_BASE causes
60864     defining configuration macros in inconsistent way, which later leads
60865     to compilation errors. In particular. flash support is being disabled,
60866     but then flash structures get referenced.
60867
60868     This patch fixes this, making it possible to build with low TEXT_BASE.
60869
60870     Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
60871
60872     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60873
60874 commit 8a364f0970de49949d635e60accf463c6443ef8c
60875 Author: Nikita V. Youshchenko <yoush@debian.org>
60876 Date:   Wed May 23 12:45:25 2007 +0400
60877
60878     add missing 'console' var to default mpc8349itx config
60879
60880     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60881
60882 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
60883 Author: Stefan Roese <sr@denx.de>
60884 Date:   Fri Jun 1 16:18:17 2007 +0200
60885
60886     ppc4xx: Add missing file for Bamboo NAND booting support
60887
60888     Signed-off-by: Stefan Roese <sr@denx.de>
60889
60890 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
60891 Author: Stefan Roese <sr@denx.de>
60892 Date:   Fri Jun 1 15:58:19 2007 +0200
60893
60894     ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
60895
60896     This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
60897     suggested by AMCC it is not recommended to dynamically change the EBC
60898     speed after bootup. So we undo this change to be on the safe side.
60899
60900     Signed-off-by: Stefan Roese <sr@denx.de>
60901
60902 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
60903 Author: Stefan Roese <sr@denx.de>
60904 Date:   Fri Jun 1 15:29:04 2007 +0200
60905
60906     ppc4xx: Update Sequoia NAND booting support with ECC
60907
60908     Signed-off-by: Stefan Roese <sr@denx.de>
60909
60910 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
60911 Author: Stefan Roese <sr@denx.de>
60912 Date:   Fri Jun 1 15:27:11 2007 +0200
60913
60914     ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
60915
60916     This patch adds NAND booting support for the AMCC Bamboo eval board.
60917     Since the NAND-SPL boot image is limited to 4kbytes, this version
60918     only supports the onboard 64MBytes of DDR. The DIMM modules can't be
60919     supported, since the setup code for I2C DIMM autodetection and
60920     configuration is too big for this NAND bootloader.
60921
60922     Signed-off-by: Stefan Roese <sr@denx.de>
60923
60924 commit 42be56f53c8b107868e6125c8524ae84293e95a7
60925 Author: Stefan Roese <sr@denx.de>
60926 Date:   Fri Jun 1 15:23:04 2007 +0200
60927
60928     NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
60929
60930     The U-Boot NAND booting support is now extended to support ECC
60931     upon loading of the NAND U-Boot image.
60932
60933     Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
60934
60935     Signed-off-by: Stefan Roese <sr@denx.de>
60936
60937 commit a471db07fbb65a841ffc9f4f112562b945230f98
60938 Author: Stefan Roese <sr@denx.de>
60939 Date:   Fri Jun 1 15:19:29 2007 +0200
60940
60941     ppc4xx: Prepare Bamboo port for NAND booting support
60942
60943     This patch updates the "normal" Bamboo NOR booting port, so
60944     that it is compatible with the coming soon NAND booting
60945     Bamboo port.
60946
60947     It also enables the 2nd NAND flash on the Bamboo.
60948
60949     Signed-off-by: Stefan Roese <sr@denx.de>
60950
60951 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
60952 Author: Stefan Roese <sr@denx.de>
60953 Date:   Fri Jun 1 15:16:58 2007 +0200
60954
60955     ppc4xx: Update in_be32() functions and friends to latest Linux version
60956
60957     Signed-off-by: Stefan Roese <sr@denx.de>
60958
60959 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
60960 Author: Stefan Roese <sr@denx.de>
60961 Date:   Fri Jun 1 15:15:12 2007 +0200
60962
60963     NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
60964
60965     This patch adds hardware ECC support to the NDFC driver. It also
60966     changes the register access from using the "simple" in32/out32
60967     functions to the in_be32/out_be32 functions, which make sure
60968     that the access is correctly synced. This is the only recommended
60969     access to SoC registers in the current Linux kernel.
60970
60971     Signed-off-by: Stefan Roese <sr@denx.de>
60972
60973 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
60974 Author: Stefan Roese <sr@denx.de>
60975 Date:   Fri Jun 1 15:12:15 2007 +0200
60976
60977     NAND: Update nand_ecc.c to latest Linux version
60978
60979     This patch updates the nand_ecc code to the latest Linux version.
60980     The main reason for this is the more compact code. This makes
60981     it possible to include the ECC code into the NAND bootloader
60982     image (NAND_SPL) for PPC4xx.
60983
60984     Signed-off-by: Stefan Roese <sr@denx.de>
60985
60986 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
60987 Author: Stefan Roese <sr@denx.de>
60988 Date:   Fri Jun 1 15:09:50 2007 +0200
60989
60990     ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
60991
60992     Signed-off-by: Stefan Roese <sr@denx.de>
60993
60994 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
60995 Author: Stefan Roese <sr@denx.de>
60996 Date:   Fri Jun 1 13:45:24 2007 +0200
60997
60998     ppc4xx: Change Luan config file to support ECC
60999
61000     With the updated 44x DDR2 driver the Luan board now supports
61001     ECC generation and checking.
61002
61003     Signed-off-by: Stefan Roese <sr@denx.de>
61004
61005 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
61006 Author: Stefan Roese <sr@denx.de>
61007 Date:   Fri Jun 1 13:45:00 2007 +0200
61008
61009     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
61010
61011     Add config option for 180 degree advance clock control as needed
61012     for the AMCC Luan eval board.
61013
61014     Signed-off-by: Stefan Roese <sr@denx.de>
61015
61016 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
61017 Author: Wolfgang Denk <wd@denx.de>
61018 Date:   Thu May 31 17:20:09 2007 +0200
61019
61020     Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
61021
61022     Signed-off-by: Wolfgang Denk <wd@denx.de>
61023
61024 commit 7049288fb1f16f1b317140226cdebd07bd416395
61025 Author: Bartlomiej Sieka <tur@semihalf.com>
61026 Date:   Sun May 27 17:26:46 2007 +0200
61027
61028     Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
61029
61030     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
61031
61032 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
61033 Author: Bartlomiej Sieka <tur@semihalf.com>
61034 Date:   Sun May 27 17:06:36 2007 +0200
61035
61036     Motion-PRO: Add support for redundant environment.
61037
61038     Enable redundant environment, add a MTD partition for it; also add env.
61039     variable command for passing MTD partitions to the kernel command line.
61040
61041     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
61042     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61043
61044 commit a26eabeec31746f06d309103690892805696e344
61045 Author: Bartlomiej Sieka <tur@semihalf.com>
61046 Date:   Sun May 27 17:05:11 2007 +0200
61047
61048     Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
61049
61050     Allow passing longer command line to the kernel - useful especially
61051     for passing MTD partition layout.
61052
61053     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
61054     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61055
61056 commit 9160b96f71483a116de81c68985e8ee306d36764
61057 Author: Bartlomiej Sieka <tur@semihalf.com>
61058 Date:   Sun May 27 17:04:18 2007 +0200
61059
61060     Fix: Add missing NULL termination in strings expanded by macros parser.
61061
61062     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
61063     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61064
61065 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
61066 Author: Bartlomiej Sieka <tur@semihalf.com>
61067 Date:   Sun May 27 17:03:37 2007 +0200
61068
61069     Motion-PRO: Update EEPROM's page write bits and write delay.
61070
61071     Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
61072     have a page write capability of two bytes", and "This device offers fast (1ms)
61073     byte write". Add 3ms of extra delay.
61074
61075     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
61076     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61077
61078 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
61079 Author: Bartlomiej Sieka <tur@semihalf.com>
61080 Date:   Sun May 27 16:58:45 2007 +0200
61081
61082     MPC5XXX, Motion-PRO: Fix PHY initialization problem.
61083
61084     After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
61085     networking does not function. This commit switches PHY to TX mode by clearing
61086     the FX_SEL bit of Mode Control Register. It also reverses commit
61087     008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
61088
61089     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
61090     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61091
61092 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
61093 Author: Bartlomiej Sieka <tur@semihalf.com>
61094 Date:   Sun May 27 16:57:15 2007 +0200
61095
61096     Motion-PRO: Add support for the temperature sensor.
61097
61098     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
61099     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61100
61101 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
61102 Author: Bartlomiej Sieka <tur@semihalf.com>
61103 Date:   Sun May 27 16:55:23 2007 +0200
61104
61105     Motion-PRO: Add displaying of CPLD revision information during boot.
61106
61107     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
61108     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61109
61110 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
61111 Author: Bartlomiej Sieka <tur@semihalf.com>
61112 Date:   Sun May 27 16:53:43 2007 +0200
61113
61114     MPC5xxx: Change names of defines related to IPB and PCI clocks.
61115
61116     Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
61117     them does not cause PCI or IPB clocks to run at the specified speed.
61118     Instead, they configure divisors used to calculate said clocks. This
61119     patch renames the defines according to their real function.
61120
61121     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
61122     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61123
61124 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
61125 Author: Bartlomiej Sieka <tur@semihalf.com>
61126 Date:   Sun May 27 16:51:48 2007 +0200
61127
61128     Motion-PRO: Add LED support.
61129
61130     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
61131     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61132     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61133
61134 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
61135 Author: Ulf Samuelsson <ulf@atmel.com>
61136 Date:   Thu May 24 12:12:47 2007 +0200
61137
61138     [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
61139
61140     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
61141     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
61142     Signed-off-by: Stefan Roese <sr@denx.de>
61143
61144 commit d756894722c888d09a9fa1df8323753772d3dcce
61145 Author: Stefan Roese <sr@denx.de>
61146 Date:   Thu May 24 09:49:00 2007 +0200
61147
61148     ppc4xx: Fix small 405EZ OCM initilization bug in start.S
61149
61150     As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
61151     fixes a small bug in the 405EZ OCM initialization. Thanks for
61152     spotting.
61153
61154     Signed-off-by: Stefan Roese <sr@denx.de>
61155
61156 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
61157 Author: Stefan Roese <sr@denx.de>
61158 Date:   Thu May 24 08:22:09 2007 +0200
61159
61160     ppc4xx: Update AMCC Acadia support for board revision 1.1
61161
61162     This patch updates the Acadia (405EZ) support for the new 1.1 board
61163     revision. It also adds support for NAND FLASH via the 4xx NDFC.
61164
61165     Please note that the jumper J7 must be in position 2-3 for this
61166     NAND support. Position 1-2 is for NAND booting only. NAND booting
61167     support will follow later.
61168
61169     Signed-off-by: Stefan Roese <sr@denx.de>
61170
61171 commit 822d55365bb557e084d0e33625a6dedcc866110b
61172 Author: Jon Loeliger <jdl@freescale.com>
61173 Date:   Wed May 23 14:09:46 2007 -0500
61174
61175     Add LIST_86xx MAKEALL target for PowerPC builds.
61176
61177     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61178
61179 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
61180 Author: Stefan Roese <sr@denx.de>
61181 Date:   Tue May 22 12:48:09 2007 +0200
61182
61183     ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
61184
61185     Signed-off-by: Stefan Roese <sr@denx.de>
61186
61187 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
61188 Author: Stefan Roese <sr@denx.de>
61189 Date:   Tue May 22 12:46:10 2007 +0200
61190
61191     ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
61192
61193     This patch adds support for 405 PPC's to the 4xx NAND driver
61194     ndfc.c. This is in preparation for the new AMCC 405EZ.
61195
61196     Signed-off-by: Stefan Roese <sr@denx.de>
61197
61198 commit 10603d76767426be803dadd4fb688b97eb69481c
61199 Author: Stefan Roese <sr@denx.de>
61200 Date:   Mon May 21 07:41:22 2007 +0200
61201
61202     ppc4xx: Fix problem in 405EZ OCM initialization
61203
61204     As spotted by Bruce Adler this patch fixes an initialization problem
61205     for the 405EZ OCM.
61206
61207     Signed-off-by: Stefan Roese <sr@denx.de>
61208
61209 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
61210 Author: Peter Pearse <peter.pearse@arm.com>
61211 Date:   Fri May 18 16:47:03 2007 +0100
61212
61213     Reduce line lengths to 80 characters max.
61214
61215 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
61216 Author: Peter Pearse <peter.pearse@arm.com>
61217 Date:   Fri May 18 14:34:07 2007 +0100
61218
61219     Makefile permissions
61220
61221 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
61222 Author: Peter Pearse <peter.pearse@arm.com>
61223 Date:   Fri May 18 14:33:11 2007 +0100
61224
61225     Makefile permissions
61226
61227 commit 255a3577c848706441daee0174543efe205a77f8
61228 Author: Kim Phillips <kim.phillips@freescale.com>
61229 Date:   Wed May 16 16:52:19 2007 -0500
61230
61231     Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
61232
61233     For all practical u-boot purposes, TSECs don't differ throughout the
61234     mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
61235
61236     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
61237
61238 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
61239 Author: Stefano Babic <sbabic@denx.de>
61240 Date:   Wed May 16 14:49:12 2007 +0200
61241
61242     Fix compile problem cause my Microblaze merge
61243
61244     Signed-off-by: Stefano Babic <sbabic@denx.de>
61245
61246 commit ada4697d0230d6da552867777f98a67ec3ba2579
61247 Author: Jeffrey Mann <mannj@embeddedplanet.com>
61248 Date:   Wed May 16 13:23:10 2007 +0200
61249
61250     [PATCH] Run new sequoia boards with an EBC speed of 83MHz
61251
61252     Because the Sequoia board does not boot with an EBC faster than 66MHz,
61253     the clock divider are changed after the initial boot process.
61254
61255     This allows for maximum clocking speeds  to be achieved on newer boards.
61256     Sequoia boards with 666.66 MHz processors require that the EBC divider
61257     be set to 3 in order to start the initial boot process at a slower EBC
61258     speed. After the initial boot process, the divider can be set back to 2,
61259     which will cause the boards to run at 83.333MHz. This is backward
61260     compatible with boards with 533.33 MHz processors, as these boards will
61261     already be set with an EBC divider of 2.
61262
61263     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
61264
61265 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
61266 Author: Wolfgang Denk <wd@denx.de>
61267 Date:   Wed May 16 01:16:53 2007 +0200
61268
61269     Minor Coding Style cleanup, update CHANGELOG.
61270
61271     Signed-off-by: Wolfgang Denk <wd@denx.de>
61272
61273 commit d62f64cc23a940eafe712c776b3249e4160753d1
61274 Author: Wolfgang Denk <wd@denx.de>
61275 Date:   Wed May 16 00:13:33 2007 +0200
61276
61277     Coding Style Cleanup, new CHANGELOG
61278
61279 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
61280 Author: Wolfgang Denk <wd@denx.de>
61281 Date:   Tue May 15 23:38:05 2007 +0200
61282
61283     Minor coding style cleanup.
61284
61285 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
61286 Author: mushtaq khan <mushtaq_k@procsys.com>
61287 Date:   Fri Apr 20 14:23:02 2007 +0530
61288
61289     Add driver for S-ATA-controller on Intel processors with South
61290     Bridge, ICH-5, ICH-6 and ICH-7.
61291
61292     Implementation:
61293
61294     1. Code is divided in to two files. All functions, which are
61295        controller specific are kept in "drivers/ata_piix.c" file and
61296        functions, which are not controller specific, are kept in
61297        "common/cmd_sata.c" file.
61298
61299     2. Reading and Writing from the S-ATA drive is done using PIO method.
61300
61301     3. Driver can be configured for 48-bit addressing by defining macro
61302        CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
61303        addressing.
61304
61305     4. S-ATA read function is hooked to the File system, commands like
61306        ext2ls and ext2load file can be used. This has been tested.
61307
61308     5. U-Boot command "SATA_init" is added, which initializes the S-ATA
61309        controller and identifies the S-ATA drives connected to it.
61310
61311     6. U-Boot command "sata" is added, which is used to read/write, print
61312        partition table and get info about the drives present. This I have
61313        implemented in same way as "ide" command is implemented in U-Boot.
61314
61315     7. This driver is for S-ATA in native mode.
61316
61317     8. This driver does not support the Native command queuing and
61318        Hot-plugging.
61319
61320     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
61321
61322 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
61323 Author: mushtaq khan <mushtaq_k@procsys.com>
61324 Date:   Mon Apr 30 15:57:22 2007 +0530
61325
61326     Fixes bug clearing the bss section for i386
61327
61328     Hi,
61329     There is a bug in the code of clearing the bss section for processor
61330     i386.(File: cpu/i386/start.S)
61331     In the code, bss_start addr (starting addr of bss section) is put into
61332     the register %eax, but the code which clears the bss section refers to
61333     the addr pointed by %edi.
61334
61335     This patch fixes this bug by putting bss_start into %edi register.
61336
61337     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
61338
61339 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
61340 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
61341 Date:   Mon Apr 30 16:47:28 2007 -0500
61342
61343     Add support for BCM5464 Quad Phy
61344
61345     Added support for Broadcom's BCM5464 Quad Phy
61346
61347     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
61348
61349 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
61350 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
61351 Date:   Wed May 9 08:10:57 2007 +0800
61352
61353     Search the exception table with linear algorithm
61354
61355     Search the exception table with linear algorithm instead of
61356     bisecting algorithm.
61357     Because the exception table might be unsorted.
61358
61359     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
61360
61361 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
61362 Author: Aubrey.Li <aubrey.adi@gmail.com>
61363 Date:   Mon May 14 11:47:35 2007 +0800
61364
61365     Fix compilation issues on MACOSX
61366
61367     Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
61368     Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
61369
61370 commit 56fd7162985c412317bbf763a225fba23c64fd31
61371 Author: Stephen Williams <steve@icarus.com>
61372 Date:   Tue May 15 07:55:42 2007 -0700
61373
61374     Fix for compile of JSE target
61375
61376     The attached patch fixes the compile of the JSE board in the
61377     denx git as of 14 may 2007. It is an extremely simple patch,
61378     it just adds the missing define of CFG_SYSTEMACE_WIDTH.
61379
61380      Fix to compile JSE against 20070514 git of u-boot
61381
61382 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
61383 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
61384 Date:   Sun May 13 21:01:03 2007 +0900
61385
61386     sh: MS7750SE support.
61387
61388     This adds support for the Hitachi MS7750SE.
61389
61390     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61391
61392 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
61393 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
61394 Date:   Sun May 13 20:58:00 2007 +0900
61395
61396     sh: First support code of SuperH.
61397
61398     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61399
61400 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
61401 Author: Stefan Roese <sr@denx.de>
61402 Date:   Fri May 11 12:01:49 2007 +0200
61403
61404     ppc4xx: Add mtcpr/mfcpr access macros
61405
61406     Signed-off-by: Stefan Roese <sr@denx.de>
61407
61408 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
61409 Author: Stefan Roese <sr@denx.de>
61410 Date:   Fri May 11 12:01:06 2007 +0200
61411
61412     ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
61413
61414     Signed-off-by: Stefan Roese <sr@denx.de>
61415
61416 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
61417 Author: Piotr Kruszynski <ppk@semihalf.com>
61418 Date:   Thu May 10 16:55:52 2007 +0200
61419
61420     [Motion-PRO] Add MTD and JFFS2 support, also add default partition
61421     definition.
61422
61423 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
61424 Author: Peter Pearse <peter.pearse@arm.com>
61425 Date:   Wed May 9 11:42:44 2007 +0100
61426
61427     Add the board directory for SMN42
61428
61429 commit 160131bf965785419626df6c388729fe0b597992
61430 Author: Peter Pearse <peter.pearse@arm.com>
61431 Date:   Wed May 9 11:41:58 2007 +0100
61432
61433     Add the files for the SMN42 board
61434
61435 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
61436 Author: Peter Pearse <peter.pearse@arm.com>
61437 Date:   Wed May 9 11:40:34 2007 +0100
61438
61439     Remove the deleted files for the SMN42 patch
61440
61441 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
61442 Author: Peter Pearse <peter.pearse@arm.com>
61443 Date:   Wed May 9 11:37:56 2007 +0100
61444
61445     New board SMN42 branch
61446
61447 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
61448 Author: Peter Pearse <peter.pearse@arm.com>
61449 Date:   Wed May 9 10:24:38 2007 +0100
61450
61451     Makefile permissions
61452
61453 commit b84289b595731e8851df46e893845cc1322c9b9b
61454 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
61455 Date:   Tue May 8 14:17:07 2007 -0500
61456
61457     8641hpcn: Fix Makefile after moving pixis to board/freescale.
61458
61459     The OBJTREE != SRCTREE build scenario was broken.
61460     This fixes it.
61461
61462     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
61463     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61464
61465 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
61466 Author: Michal Simek <monstr@monstr.eu>
61467 Date:   Tue May 8 15:57:43 2007 +0200
61468
61469     add: reading special purpose registers
61470
61471 commit 1a50f164beb065f360fbddb76029607d6b099698
61472 Author: Michal Simek <monstr@monstr.eu>
61473 Date:   Tue May 8 14:52:52 2007 +0200
61474
61475     add: Microblaze V5 exception handling
61476
61477 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
61478 Author: Michal Simek <monstr@monstr.eu>
61479 Date:   Tue May 8 14:39:11 2007 +0200
61480
61481     add: FSL control read and write
61482
61483 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
61484 Author: Piotr Kruszynski <ppk@semihalf.com>
61485 Date:   Tue May 8 13:05:44 2007 +0200
61486
61487     [Motion-PRO] Add support for I2C, EEPROM and RTC.
61488
61489 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
61490 Author: Bartlomiej Sieka <tur@semihalf.com>
61491 Date:   Tue May 8 10:23:56 2007 +0200
61492
61493     [Motion-PRO] Add ATA support. Add CF-booting commands to the default
61494     environment.
61495
61496 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
61497 Author: Bartlomiej Sieka <tur@semihalf.com>
61498 Date:   Tue May 8 09:39:12 2007 +0200
61499
61500     [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
61501     eliminates networking problems in Linux (timeouts).
61502
61503 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
61504 Author: Bartlomiej Sieka <tur@semihalf.com>
61505 Date:   Tue May 8 09:21:57 2007 +0200
61506
61507     [Motion-PRO] Enable Flat Device Tree support and modify default environment
61508     to allow booting of FDT-expecting kernels.
61509
61510 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
61511 Author: Michal Simek <monstr@monstr.eu>
61512 Date:   Mon May 7 23:58:31 2007 +0200
61513
61514     new: USE_MSR_INTR support
61515
61516 commit 008861a2f3ef2c062744d733787c7e530a1b8761
61517 Author: Bartlomiej Sieka <tur@semihalf.com>
61518 Date:   Mon May 7 22:36:15 2007 +0200
61519
61520     [MPC5xxx] There are networking problems on the Motion-PRO board with
61521     current PHY initalization code (tftp timeouts all the time). This commit
61522     temporarily disables PHY initalization sequence to make the networking
61523     operational, until a fix is found.
61524
61525 commit abca901869c3760b6c5fecb825db6c1d91a78a93
61526 Author: Wolfgang Denk <wd@denx.de>
61527 Date:   Mon May 7 22:10:36 2007 +0200
61528
61529     Get rid of duplicated file (see include/configs/sbc8560.h instead)
61530
61531     Signed-off-by: Wolfgang Denk <wd@denx.de>
61532
61533 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
61534 Author: Wolfgang Denk <wd@denx.de>
61535 Date:   Mon May 7 22:07:08 2007 +0200
61536
61537     Get rid of duplicated file (see doc/README.SBC8560 instead)
61538
61539     Signed-off-by: Wolfgang Denk <wd@denx.de>
61540
61541 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
61542 Author: Michal Simek <monstr@monstr.eu>
61543 Date:   Mon May 7 19:43:10 2007 +0200
61544
61545     fix: read and write MSR - repair number of parameters
61546
61547 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
61548 Author: Jeffrey Mann <mannj@embeddedplanet.com>
61549 Date:   Mon May 7 19:42:49 2007 +0200
61550
61551     [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
61552
61553     A '3' got cut off in the formatting of the last patch to automatically
61554     change the clock speed of the system clock on sequoia board.
61555
61556     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
61557     Signed-off-by: Stefan Roese <sr@denx.de>
61558
61559 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
61560 Author: Michal Simek <monstr@monstr.eu>
61561 Date:   Mon May 7 19:33:51 2007 +0200
61562
61563     new: fsl interrupt support
61564     FSL_Has_data is connected to INTC.
61565
61566 commit 792032baa7d625e34c981ab6df521911bd8dc861
61567 Author: Michal Simek <monstr@monstr.eu>
61568 Date:   Mon May 7 19:30:12 2007 +0200
61569
61570     fix: interrupt handler
61571     remove asm code
61572
61573 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
61574 Author: Michal Simek <monstr@monstr.eu>
61575 Date:   Mon May 7 19:25:08 2007 +0200
61576
61577     fix: remove asm code
61578
61579 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
61580 Author: Michal Simek <monstr@monstr.eu>
61581 Date:   Mon May 7 19:12:43 2007 +0200
61582
61583     fix: clean interrupt
61584
61585 commit 42efed6130c8fcf7da881385b5427065d2801757
61586 Author: Michal Simek <monstr@monstr.eu>
61587 Date:   Mon May 7 17:22:25 2007 +0200
61588
61589     fix: interrupt handler for multiple sources
61590
61591 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
61592 Author: Michal Simek <monstr@monstr.eu>
61593 Date:   Mon May 7 17:11:09 2007 +0200
61594
61595     new: add writing to msr register
61596
61597 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
61598 Author: Markus Klotzbuecher <mk@denx.de>
61599 Date:   Mon May 7 16:43:56 2007 +0200
61600
61601     Fix an ancient CHANGELOG conflict
61602
61603 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
61604 Author: Timur Tabi <timur@freescale.com>
61605 Date:   Sat May 5 08:12:30 2007 +0200
61606
61607     5xxx: write MAC address to mac-address and local-mac-address
61608
61609     Some device trees have a mac-address property, some have local-mac-address,
61610     and some have both.  To support all of these device trees, ftp_cpu_setup()
61611     should write the MAC address to mac-address and local-mac-address, if they
61612     exist.
61613
61614     Signed-off-by: Timur Tabi <timur@freescale.com>
61615     Acked-by: Grant Likely <grant.likely@secretlab.ca>
61616
61617 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
61618 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
61619 Date:   Sun Apr 29 14:01:54 2007 +0200
61620
61621     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
61622
61623     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
61624     message. Use PVR to distinguish between the two variants, and print proper CPU
61625     information.
61626
61627     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
61628     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
61629     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
61630
61631 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
61632 Author: Ladislav Michl <ladis@linux-mips.org>
61633 Date:   Wed Apr 25 16:01:26 2007 +0200
61634
61635     [PATCH] simplify silent console
61636
61637     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
61638     Acked-by: Stefan Roese <sr@denx.de>
61639
61640 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
61641 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
61642 Date:   Mon Apr 23 15:30:39 2007 +0200
61643
61644     [PATCH] Avoid assigning PCI resources from zero address
61645
61646     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
61647     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
61648     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
61649     sentence about "0" being considered an invalid address) -- so, use a reasonable
61650     starting value of 0x1000 (that's what the most Linux archs are using).
61651
61652     Alternatively, one might have fixed the calls to pci_set_region() individually
61653     (some code even seems to have taken care of this issue) but that would have
61654     been a lot more work. :-)
61655
61656     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
61657     Acked-by: Stefan Roese <sr@denx.de>
61658
61659 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
61660 Author: Jeffrey Mann <mannj@embeddedplanet.com>
61661 Date:   Mon Apr 23 14:00:11 2007 +0200
61662
61663     [patch] setenv(...) can delete environmentalvariables
61664
61665     update setenv() function so that entering a NULL value for the
61666     variable's value will delete the environmental variable
61667
61668     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
61669     Acked-by: Stefan Roese <sr@denx.de>
61670
61671 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
61672 Author: Mike Frysinger <vapier@gentoo.org>
61673 Date:   Mon Apr 23 13:54:24 2007 +0200
61674
61675     [patch] use unsigned char in smc91111 driver for mac
61676
61677     the v_mac variable in the smc91111 driver is declared as a signed char ...
61678     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
61679     because when it gets printed out, you get a display like:
61680     0xFFFFFFE0 and that's no good
61681
61682     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61683
61684 commit ffc50f9bb194343c6303517a517708457a5eb6b8
61685 Author: Michal Simek <monstr@monstr.eu>
61686 Date:   Sat May 5 18:54:42 2007 +0200
61687
61688     new: FSL and MSR support #2
61689
61690 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
61691 Author: Michal Simek <monstr@monstr.eu>
61692 Date:   Sat May 5 18:27:16 2007 +0200
61693
61694     new: FSL and MSR support
61695
61696 commit 2f15278c2eb911c668b4fe562130b78cf554d139
61697 Author: Wolfgang Denk <wd@denx.de>
61698 Date:   Sat May 5 18:23:11 2007 +0200
61699
61700     Coding stylke cleanup; update CHANGELOG.
61701
61702     Signed-off-by: Wolfgang Denk <wd@denx.de>
61703
61704 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
61705 Author: Wolfgang Denk <wd@denx.de>
61706 Date:   Sat May 5 18:05:02 2007 +0200
61707
61708     Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
61709
61710     Signed-off-by: Wolfgang Denk <wd@denx.de>
61711
61712 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
61713 Author: Wolfgang Denk <wd@denx.de>
61714 Date:   Sat May 5 17:15:50 2007 +0200
61715
61716     Make "file" command happy with some config.mk files; update CHANGELOG
61717
61718 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
61719 Author: Jeffrey Mann <mannj@embeddedplanet.com>
61720 Date:   Sat May 5 08:32:14 2007 +0200
61721
61722     ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
61723
61724     The AMCC Secquoia board has been changed in a new revision from using a
61725     33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
61726     indicates the difference. This patch reads that bit and uses the correct
61727     clock speed for the board. This code is backward compatable will all
61728     prior boards. All prior boards will be read as 33.000.
61729
61730     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
61731     Signed-off-by: Stefan Roese <sr@denx.de>
61732
61733 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
61734 Author: Stefan Roese <sr@denx.de>
61735 Date:   Sat May 5 08:29:01 2007 +0200
61736
61737     ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
61738
61739     Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
61740     for the 4k NAND boot image so define bus_frequency to 133MHz here
61741     which is save for the refresh counter setup.
61742
61743     Signed-off-by: Stefan Roese <sr@denx.de>
61744
61745 commit 2f550ab976405300f5b07bf2890800840d0aa05f
61746 Author: Timur Tabi <timur@freescale.com>
61747 Date:   Sat May 5 08:12:30 2007 +0200
61748
61749     5xxx: write MAC address to mac-address and local-mac-address
61750
61751     Some device trees have a mac-address property, some have local-mac-address,
61752     and some have both.  To support all of these device trees, ftp_cpu_setup()
61753     should write the MAC address to mac-address and local-mac-address, if they
61754     exist.
61755
61756     Signed-off-by: Timur Tabi <timur@freescale.com>
61757     Acked-by: Grant Likely <grant.likely@secretlab.ca>
61758
61759 commit a79886590593ba1d667c840caa4940c61639f18f
61760 Author: Thomas Knobloch <knobloch@siemens.com>
61761 Date:   Sat May 5 07:04:42 2007 +0200
61762
61763     NAND: Wrong calculation of page number in nand_block_bad()
61764
61765     In case that there is no memory based bad block table available the
61766     function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
61767     nand_block_bad() directly. When parameter 'getchip' is set to zero,
61768     nand_block_bad() will not right shift the offset to calculate the
61769     correct page number.
61770
61771     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
61772     Signed-off-by: Stefan Roese <sr@denx.de>
61773
61774 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
61775 Author: Wolfgang Denk <wd@denx.de>
61776 Date:   Fri May 4 10:02:33 2007 +0200
61777
61778     Fix initrd length corruption in bootm command.
61779
61780     When using FDT Images, the length of an inital ramdisk was
61781     overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
61782
61783     Patches by Timur Tabi & Johns Daniel.
61784
61785     Signed-off-by: Wolfgang Denk <wd@denx.de>
61786
61787 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
61788 Author: Kim Phillips <kim.phillips@freescale.com>
61789 Date:   Thu May 3 19:43:52 2007 -0500
61790
61791     mpc83xx: fix trivial error in MAKEALL
61792
61793     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
61794
61795 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
61796 Author: Wolfgang Denk <wd@denx.de>
61797 Date:   Thu May 3 16:34:41 2007 +0200
61798
61799     Update board configuration for STX GP3SSA board:
61800
61801     Enable hush shell, environment in flash rather in EEPROM,
61802     more user-friendly default environment, etc.
61803     The simple EEPROM environment can be selected easily in the board
61804     config file.
61805
61806     Signed-off-by: Wolfgang Denk <wd@denx.de>
61807
61808 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
61809 Author: Wolfgang Denk <wd@denx.de>
61810 Date:   Tue Apr 24 14:37:49 2007 +0200
61811
61812     Cleanup STX GP3SSA code; fix build and compile problems.
61813
61814 commit 35171dc04e028ecacc23ad916a66295472555dbf
61815 Author: Dan Malek <dan@embeddedalley.com>
61816 Date:   Fri Jan 5 09:15:34 2007 +0100
61817
61818     Add support for STX GP3SSA (stxssa) Board
61819
61820     Signed-off-by Dan Malek, <dan@embeddedalley.com>
61821
61822 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
61823 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61824 Date:   Wed May 2 13:31:53 2007 +0200
61825
61826     macb: Don't restart autonegotiation if we already have link
61827
61828     Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
61829     link is already up.
61830
61831     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61832
61833 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
61834 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61835 Date:   Wed May 2 13:22:38 2007 +0200
61836
61837     macb: Introduce a few barriers when dealing with DMA descriptors
61838
61839     There were a few theoretical possibilities that the compiler might
61840     optimize away DMA descriptor reads and/or writes and thus cause
61841     synchronization problems with the hardware. Insert barriers where
61842     we depend on reads/writes actually hitting memory.
61843
61844     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61845
61846 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
61847 Author: Andy Fleming <afleming@freescale.com>
61848 Date:   Sat Feb 24 01:08:13 2007 -0600
61849
61850     Cleaned up some 85xx PCI bugs
61851
61852     * Cleaned up the CDS PCI Config Tables and added NULL entries to
61853       the end
61854     * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
61855     * Fixed 85xx PCI code to assign powar region sizes based on the
61856       config values (rather than hard-coding them)
61857     * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
61858
61859     Signed-off-by: Andy Fleming <afleming@freescale.com>
61860
61861 commit 6743105988fc44d5b0d30388c790607835aae7a6
61862 Author: Andy Fleming <afleming@freescale.com>
61863 Date:   Mon Apr 23 02:54:25 2007 -0500
61864
61865     Add support for the 8568 MDS board
61866
61867     This included some changes to common files:
61868     * Add 8568 processor SVR to various places
61869     * Add support for setting the qe bus-frequency value in the dts
61870     * Add the 8568MDS target to the Makefile
61871
61872     Signed-off-by: Andy Fleming <afleming@freescale.com>
61873
61874 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
61875 Author: David Updegraff <dave@cray.com>
61876 Date:   Fri Apr 20 14:34:48 2007 -0500
61877
61878     Add support for treating unknown PHYs as generic PHYs.
61879
61880     When bringing up u-boot on new boards, PHY support sometimes gets
61881     neglected.  Most PHYs don't really need any special support,
61882     though.  By adding a generic entry that always matches if nothing
61883     else does, we can provide support for "unsupported" PHYs for the
61884     tsec.
61885
61886     The generic PHY driver supports most PHYs, including gigabit.
61887
61888     Signed-off-by: David Updegraff <dave@cray.com>
61889     Signed-off-by: Andy Fleming <afleming@freescale.com>
61890
61891 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
61892 Author: James Yang <James.Yang@freescale.com>
61893 Date:   Wed Feb 7 15:28:04 2007 -0600
61894
61895     Conditionalize 8641 Rev1.0 MCM workarounds
61896
61897     Signed-off-by: James Yang <James.Yang@freescale.com>
61898     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61899
61900 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
61901 Author: Timur Tabi <timur@freescale.com>
61902 Date:   Mon Apr 30 13:59:50 2007 -0500
61903
61904     Fix memory initialization on MPC8349E-mITX
61905
61906     Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
61907     This allows ddr->sdram_clk_cntl to be properly initialized.  This is necessary
61908     on some ITX boards, notably those with a revision 3.1 CPU.
61909
61910     Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
61911     ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
61912
61913     Signed-off-by: Timur Tabi <timur@freescale.com>
61914     Acked-by: Michael Benedict <MBenedict@twacs.com>
61915     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
61916
61917 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
61918 Author: Kim Phillips <kim.phillips@freescale.com>
61919 Date:   Mon Apr 30 15:26:21 2007 -0500
61920
61921     mpc83xx: replace elaborate boottime verbosity with 'clocks' command
61922
61923     and fix CPU: to align with Board: display text.
61924
61925     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
61926
61927 commit c1ab82669d9525998c34e802a12cad662723f22a
61928 Author: James Yang <James.Yang@freescale.com>
61929 Date:   Fri Mar 16 13:02:53 2007 -0500
61930
61931     Rewrote picos_to_clk() to avoid rounding errors.
61932     Clarified that conversion is to DRAM clocks rather than platform clocks.
61933     Made function static to spd_sdram.c.
61934
61935     Signed-off-by: James Yang <James.Yang@freescale.com>
61936     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61937
61938 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
61939 Author: Stefan Roese <sr@denx.de>
61940 Date:   Sun Apr 29 14:13:01 2007 +0200
61941
61942     ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
61943
61944     Signed-off-by: Stefan Roese <sr@denx.de>
61945
61946 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
61947 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
61948 Date:   Sun Apr 29 14:01:54 2007 +0200
61949
61950     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
61951
61952     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
61953     message. Use PVR to distinguish between the two variants, and print proper CPU
61954     information.
61955
61956     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
61957     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
61958     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
61959
61960 commit 5c5d3242935cf3543af01142627494434834cf98
61961 Author: Kim Phillips <kim.phillips@freescale.com>
61962 Date:   Wed Apr 25 12:34:38 2007 -0500
61963
61964     mpc83xx: minor fixups for 8313rdb introduction
61965
61966 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
61967 Author: Ladislav Michl <ladis@linux-mips.org>
61968 Date:   Wed Apr 25 16:01:26 2007 +0200
61969
61970     [PATCH] simplify silent console
61971
61972     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
61973     Acked-by: Stefan Roese <sr@denx.de>
61974
61975 commit 144876a380f5756f57412caf74c1d6dc201dd796
61976 Author: Michal Simek <monstr@monstr.eu>
61977 Date:   Tue Apr 24 23:01:02 2007 +0200
61978
61979     [PATCH] MTD partition support, JFFS2 support
61980
61981 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
61982 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61983 Date:   Tue Apr 24 14:03:45 2007 +0200
61984
61985     ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
61986
61987     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61988
61989 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
61990 Author: Andy Fleming <afleming@freescale.com>
61991 Date:   Mon Apr 23 02:37:47 2007 -0500
61992
61993     Reworked 85xx speed detection code
61994
61995     Changed the code to read the registers and calculate the clock
61996     rates, rather than using a "switch" statement.
61997
61998     Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
61999
62000     Signed-off-by: Andy Fleming <afleming@freescale.com>
62001
62002 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
62003 Author: Andy Fleming <afleming@freescale.com>
62004 Date:   Mon Apr 23 02:24:28 2007 -0500
62005
62006     Enable 8544 support
62007
62008     * Add support to the Makefile
62009     * Add 8544 configuration support to the tsec driver
62010     * Add 8544 SVR numbers to processor.h
62011
62012     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62013     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62014
62015 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
62016 Author: Andy Fleming <afleming@freescale.com>
62017 Date:   Fri Feb 23 17:12:25 2007 -0600
62018
62019     Support 1G size on 8548
62020
62021     e500v2 and newer cores support 1G page sizes.
62022
62023     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62024     Signed-off-by: Andy Fleming <afleming@freescale.com>
62025
62026 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
62027 Author: Andy Fleming <afleming@freescale.com>
62028 Date:   Fri Feb 23 17:11:16 2007 -0600
62029
62030     Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
62031
62032     The other pagesz constants use one letter to specify order of
62033     magnitude.  Also change the one reference to it in mpc8548cds/init.S
62034
62035     Signed-off-by: Andy Fleming <afleming@freescale.com>
62036
62037 commit 1f9a318cea14272edd10d63739e2d326c90f430e
62038 Author: Andy Fleming <afleming@freescale.com>
62039 Date:   Fri Feb 23 16:28:46 2007 -0600
62040
62041     Only set ddrioovcr for 8548 rev1.
62042
62043     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62044     Signed-off-by: Andy Fleming <afleming@freescale.com>
62045
62046 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
62047 Author: Andy Fleming <afleming@freescale.com>
62048 Date:   Sat Feb 24 01:16:45 2007 -0600
62049
62050     Tweak DDR ECC error counter
62051
62052     Enable single-bit error counter when memory was cleared by ddr controller.
62053
62054     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62055     Signed-off-by: Andy Fleming <afleming@freescale.com>
62056
62057 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
62058 Author: Timur Tabi <timur@freescale.com>
62059 Date:   Mon Feb 12 13:34:55 2007 -0600
62060
62061     85xx: write MAC address to mac-address and local-mac-address
62062
62063     Some device trees have a mac-address property, some have local-mac-address,
62064     and some have both.  To support all of these device trees, ftp_cpu_setup()
62065     should write the MAC address to mac-address and local-mac-address, if they
62066     exist.
62067
62068     Signed-off-by: Timur Tabi <timur@freescale.com>
62069
62070 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
62071 Author: Andy Fleming <afleming@freescale.com>
62072 Date:   Mon Apr 23 01:44:44 2007 -0500
62073
62074     Some 85xx cpu cleanups
62075
62076     * Cleaned up the TSR[WIS] clearing
62077     * Cleaned up DMA initialization
62078
62079     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62080     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62081     Acked-by: Andy Fleming <afleming@freescale.com>
62082
62083 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
62084 Author: Andy Fleming <afleming@freescale.com>
62085 Date:   Mon Apr 23 01:32:22 2007 -0500
62086
62087     Add cpu support for the 8544
62088
62089     Recognize new SVR values, and add a few register definitions
62090
62091     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62092     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62093     Acked-by: Andy Fleming <afleming@freescale.com>
62094
62095 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
62096 Author: Jon Loeliger <jdl@freescale.com>
62097 Date:   Wed Apr 11 16:51:02 2007 -0500
62098
62099     Add MPC8544DS basic port board files.
62100
62101     Add board port under new board/freescale directory
62102     structure and reuse existing PIXIS FPGA support there.
62103
62104     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62105     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62106
62107 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
62108 Author: Jon Loeliger <jdl@freescale.com>
62109 Date:   Wed Apr 11 16:50:57 2007 -0500
62110
62111     Add MPC8544DS main configuration file.
62112
62113     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62114     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62115
62116 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
62117 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
62118 Date:   Wed Dec 27 22:07:15 2006 +0300
62119
62120     Fix PCI I/O space mapping on Freescale MPC85x0ADS
62121
62122     The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
62123     52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
62124     describing the local address window used for the PCI I/O space accesses -- fix
62125     this and carry over the necessary changes into the MPC8560ADS code since the
62126     PCI I/O space mapping was also broken for this board (by the earlier commit
62127     087454609e47295443af793a282cddcd91a5f49c).  Add the comments clarifying how
62128     the PCI I/O space must be mapped to all the MPC85xx board config. headers.
62129
62130     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
62131
62132      board/mpc8540ads/init.S      |    4 ++--
62133      board/mpc8560ads/init.S      |    4 ++--
62134      include/configs/MPC8540ADS.h |    5 ++---
62135      include/configs/MPC8541CDS.h |    2 +-
62136      include/configs/MPC8548CDS.h |    2 +-
62137      include/configs/MPC8560ADS.h |    8 ++++----
62138      6 files changed, 12 insertions(+), 13 deletions(-)
62139
62140 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
62141 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
62142 Date:   Tue Dec 5 16:42:30 2006 +0800
62143
62144     u-boot: Fix e500 v2 core reset bug
62145
62146     The following patch fixes the e500 v2 core reset bug.
62147     For e500 v2 core, a new reset control register is added to reset the
62148     processor.
62149
62150     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62151
62152 commit 63247a5acd58032e6cf33f525bc3923b467bac88
62153 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
62154 Date:   Wed Dec 20 11:01:00 2006 +0800
62155
62156     u-boot: v2: Remove the fixed TLB and LAW entrynubmer
62157
62158     Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
62159     entry number to control the loop.  This can reduce the potential risk
62160     for the 85xx processor increasing its TLB adn LAW entry number.
62161
62162     Signed-off-by: Swarthout Edward <swarthout@freescale.com>
62163     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62164
62165 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
62166 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
62167 Date:   Mon Dec 18 17:01:04 2006 +0800
62168
62169     u-boot: Fix the 85xxcds tsec bug
62170
62171     Fix the 85xxcds tsec bug.
62172     When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
62173
62174     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62175
62176 commit 7337b237ffc4aaf1b9467024fe472a880d852598
62177 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
62178 Date:   Fri Dec 15 14:43:31 2006 +0800
62179
62180     u-boot: Fix CPU2 errata on MPC8548CDS board
62181
62182     This patch apply workaround of CPU2 errata on MPC8548CDS board.
62183
62184     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
62185
62186 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
62187 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
62188 Date:   Mon Dec 18 16:25:15 2006 +0800
62189
62190     u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
62191
62192     This patch disables MPC8548CDS 2T_TIMING for DDR by default.
62193
62194     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
62195
62196 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
62197 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
62198 Date:   Thu Dec 14 14:14:55 2006 +0800
62199
62200     u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
62201
62202     Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
62203     board.
62204     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62205
62206 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
62207 Author: Scott Wood <scottwood@freescale.com>
62208 Date:   Mon Apr 16 14:54:15 2007 -0500
62209
62210     mpc83xx: Add MPC8313ERDB support.
62211
62212     Signed-off-by: Scott Wood <scottwood@freescale.com>
62213
62214 commit 49ea3b6eafe606285ae4d5c378026153dde53200
62215 Author: Scott Wood <scottwood@freescale.com>
62216 Date:   Mon Apr 16 14:34:21 2007 -0500
62217
62218     mpc83xx: Add generic PCI setup code.
62219
62220     Board code can now request the generic setup code rather than having to
62221     copy-and-paste it for themselves.  Boards should be converted to use this
62222     once they're tested with it.
62223
62224     Signed-off-by: Scott Wood <scottwood@freescale.com>
62225
62226 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
62227 Author: Scott Wood <scottwood@freescale.com>
62228 Date:   Mon Apr 16 14:34:19 2007 -0500
62229
62230     mpc83xx: Add 831x support to speed.c.
62231
62232     Signed-off-by: Scott Wood <scottwood@freescale.com>
62233
62234 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
62235 Author: Scott Wood <scottwood@freescale.com>
62236 Date:   Mon Apr 16 14:34:18 2007 -0500
62237
62238     mpc83xx: Add 831x support to global_data.h
62239
62240     Signed-off-by: Scott Wood <scottwood@freescale.com>
62241
62242 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
62243 Author: Scott Wood <scottwood@freescale.com>
62244 Date:   Mon Apr 16 14:34:16 2007 -0500
62245
62246     mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
62247
62248     Rather than misleadingly define PVR_83xx as the specific type of 83xx
62249     being built for, the PVR of each core revision is defined. checkcpu() now
62250     prints the core that it detects, rather than aborting if it doesn't find
62251     what it thinks it wants.
62252
62253     Signed-off-by: Scott Wood <scottwood@freescale.com>
62254
62255 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
62256 Author: Scott Wood <scottwood@freescale.com>
62257 Date:   Mon Apr 16 14:34:15 2007 -0500
62258
62259     mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
62260
62261     Signed-off-by: Scott Wood <scottwood@freescale.com>
62262
62263 commit d87c57b201b4572d16f1b642998faa00c9912b16
62264 Author: Scott Wood <scottwood@freescale.com>
62265 Date:   Mon Apr 16 14:31:55 2007 -0500
62266
62267     mpc83xx: Add register definitions for MPC831x.
62268
62269     Signed-off-by: Scott Wood <scottwood@freescale.com>
62270
62271 commit 7fc4c71a143be8666d70803fb25ae60379c95622
62272 Author: Stefan Roese <sr@denx.de>
62273 Date:   Mon Apr 23 15:39:59 2007 +0200
62274
62275     Fix file mode
62276
62277     Signed-off-by: Stefan Roese <sr@denx.de>
62278
62279 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
62280 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
62281 Date:   Mon Apr 23 15:30:39 2007 +0200
62282
62283     [PATCH] Avoid assigning PCI resources from zero address
62284
62285     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
62286     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
62287     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
62288     sentence about "0" being considered an invalid address) -- so, use a reasonable
62289     starting value of 0x1000 (that's what the most Linux archs are using).
62290
62291     Alternatively, one might have fixed the calls to pci_set_region() individually
62292     (some code even seems to have taken care of this issue) but that would have
62293     been a lot more work. :-)
62294
62295     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
62296     Acked-by: Stefan Roese <sr@denx.de>
62297
62298 commit afb903a2eb9436baa9270ccc0c27082d86497d89
62299 Author: Jeffrey Mann <mannj@embeddedplanet.com>
62300 Date:   Mon Apr 23 14:00:11 2007 +0200
62301
62302     [patch] setenv(...) can delete environmentalvariables
62303
62304     update setenv() function so that entering a NULL value for the
62305     variable's value will delete the environmental variable
62306
62307     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
62308     Acked-by: Stefan Roese <sr@denx.de>
62309
62310 commit 36f104e5caa747d568eff26b369565af57c2ffa6
62311 Author: Mike Frysinger <vapier@gentoo.org>
62312 Date:   Mon Apr 23 13:54:24 2007 +0200
62313
62314     [patch] use unsigned char in smc91111 driver for mac
62315
62316     the v_mac variable in the smc91111 driver is declared as a signed char ...
62317     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
62318     because when it gets printed out, you get a display like:
62319     0xFFFFFFE0 and that's no good
62320
62321     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62322
62323 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
62324 Author: Rodolfo Giometti <giometti@enneenne.com>
62325 Date:   Mon Apr 23 13:10:52 2007 +0200
62326
62327     USB: (Another) delay for crappy USB keys.
62328
62329     Some USB keys are slow in giving back an answer when the Root HUB
62330     enables power lines.
62331
62332     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
62333
62334 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
62335 Author: Stefan Roese <sr@denx.de>
62336 Date:   Mon Apr 23 12:00:22 2007 +0200
62337
62338     Remove BOARDLIBS usage completely
62339
62340     Signed-off-by: Stefan Roese <sr@denx.de>
62341
62342 commit 32556443840f127170e4baa8bdd5b567039f6c36
62343 Author: Michal Simek <monstr@monstr.eu>
62344 Date:   Sat Apr 21 21:07:22 2007 +0200
62345
62346     [PATCH] SystemACE support for Microblaze
62347
62348 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
62349 Author: Michal Simek <monstr@monstr.eu>
62350 Date:   Sat Apr 21 21:02:40 2007 +0200
62351
62352     16bit read/write little endian
62353
62354 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
62355 Author: Michal Simek <monstr@monstr.eu>
62356 Date:   Sat Apr 21 20:53:31 2007 +0200
62357
62358     Change ML401 parameters - Xilinx BSP
62359
62360 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
62361 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
62362 Date:   Wed Feb 28 05:37:29 2007 -0600
62363
62364     mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
62365
62366     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62367
62368 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
62369 Author: Zhang Wei <wei.zhang@freescale.com>
62370 Date:   Fri Jan 19 10:42:37 2007 +0800
62371
62372     Enable LAWs for MPC8641 PCI-Ex2.
62373
62374     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
62375     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62376
62377 commit bd7851ce1e1f140665b520026abf1042968b1102
62378 Author: Jon Loeliger <jdl@freescale.com>
62379 Date:   Fri Apr 20 14:12:26 2007 -0500
62380
62381     mpc86xx; Write MAC address to mac-address and local-mac-address
62382
62383     Some device trees have a mac-address property, some have local-mac-address,
62384     and some have both.  To support all of these device trees, ftp_cpu_setup()
62385     should write the MAC address to mac-address and local-mac-address, if they
62386     exist.
62387
62388     Signed-off-by: Timur Tabi <timur@freescale.com>
62389     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62390
62391 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
62392 Author: Jon Loeliger <jdl@freescale.com>
62393 Date:   Fri Apr 20 14:11:38 2007 -0500
62394
62395     mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
62396
62397     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
62398     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62399
62400 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
62401 Author: Wolfgang Denk <wd@denx.de>
62402 Date:   Fri Apr 20 17:43:28 2007 +0200
62403
62404     Cleanup compiler warnings, update CHANGELOG
62405
62406     Signed-off-by: Wolfgang Denk <wd@denx.de>
62407
62408 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
62409 Author: Detlev Zundel <dzu@denx.de>
62410 Date:   Fri Apr 20 12:01:47 2007 +0200
62411
62412     Fix breakage of NC650 board with respect to nand support.
62413
62414     Signed-off-by: Detlev Zundel <dzu@denx.de>
62415
62416 commit 39f23cd90947639ac278a18ff277ec786b5ac167
62417 Author: Domen Puncer <domen.puncer@telargo.com>
62418 Date:   Fri Apr 20 11:13:16 2007 +0200
62419
62420     [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
62421
62422     G2 core reference manual says decrementer and time base
62423     are decreasing/increasing once every 4 bus clock cycles.
62424     Lets fix it, so time in Linux won't run twice as fast
62425
62426     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
62427     Acked-by: Grant Likely <grant.likely@secretlab.ca>
62428
62429 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
62430 Author: Gerald Van Baren <vanbaren@cideas.com>
62431 Date:   Thu Apr 19 23:14:39 2007 -0400
62432
62433     Fix serious pointer bug with bootm and reserve map.
62434
62435     What was suppose to be a stack variable was declared as a pointer,
62436       overwriting random memory.
62437     Also moved the libfdt.a requirement into the main Makefile.  That is
62438       The U-Boot Way.
62439
62440 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
62441 Author: Stefan Roese <sr@denx.de>
62442 Date:   Thu Apr 19 09:53:52 2007 +0200
62443
62444     ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
62445
62446     Previous versions used full wait states for the chip select #1 which
62447     is connected to the Xilinix SystemACE controller on the AMCC Katmai
62448     evaluation board. This leads to really slow access and therefore low
62449     performance. This patch now sets up the chip select a lot faster
62450     resulting in much better read/write performance of the Linux driver.
62451
62452     Signed-off-by: Stefan Roese <sr@denx.de>
62453
62454 commit 37837828d89084879bee2f2b8c7c68d4695940df
62455 Author: Wolfgang Denk <wd@denx.de>
62456 Date:   Wed Apr 18 17:49:29 2007 +0200
62457
62458     Clenaup, update CHANGELOG
62459
62460     Signed-off-by: Wolfgang Denk <wd@denx.de>
62461
62462 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
62463 Author: Wolfgang Denk <wd@denx.de>
62464 Date:   Wed Apr 18 17:20:58 2007 +0200
62465
62466     Update CHANGELOG
62467
62468     Signed-off-by: Wolfgang Denk <wd@denx.de>
62469
62470 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
62471 Author: Wolfgang Denk <wd@denx.de>
62472 Date:   Wed Apr 18 17:07:26 2007 +0200
62473
62474     Cleanup, update CHANGELOG
62475
62476     Sigend-off-by: Wolfgang Denk <wd@denx.de>
62477
62478 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
62479 Author: Wolfgang Denk <wd@denx.de>
62480 Date:   Wed Apr 18 16:17:46 2007 +0200
62481
62482     Update CHANGELOG
62483
62484 commit ad4eb555671d97f96dc56eab55103b1f86874b01
62485 Author: Wolfgang Denk <wd@denx.de>
62486 Date:   Wed Apr 18 14:30:39 2007 +0200
62487
62488     MCC200 board: remove warning which is obsolete after PSoC firmware changes
62489
62490     Signed-off-by: Wolfgang Denk <wd@denx.de>
62491
62492 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
62493 Author: Domen Puncer <domen.puncer@telargo.com>
62494 Date:   Wed Apr 18 12:11:05 2007 +0200
62495
62496     [PATCH] icecube/lite5200b: document wakeup from low-power support
62497
62498     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
62499
62500 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
62501 Author: Stefan Roese <sr@denx.de>
62502 Date:   Wed Apr 18 12:07:47 2007 +0200
62503
62504     ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
62505
62506     Signed-off-by: Stefan Roese <sr@denx.de>
62507
62508 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
62509 Author: Stefan Roese <sr@denx.de>
62510 Date:   Wed Apr 18 12:05:59 2007 +0200
62511
62512     ppc4xx: Add output for bootrom location to 405EZ ports
62513
62514     Now 405EZ ports also show upon bootup from which boot device
62515     they are configured to boot:
62516
62517     U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
62518
62519     CPU:   AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
62520            Bootstrap Option E - Boot ROM Location EBC (32 bits)
62521            16 kB I-Cache 16 kB D-Cache
62522     Board: Acadia - AMCC PPC405EZ Evaluation Board
62523
62524     Signed-off-by: Stefan Roese <sr@denx.de>
62525
62526 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
62527 Author: Peter Pearse <peter.pearse@arm.com>
62528 Date:   Tue Apr 17 13:30:33 2007 +0100
62529
62530     Move ppearse to ARM board list
62531     Add Konstantin Kletschke for scb9328.
62532     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
62533
62534 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
62535 Author: Domen Puncer <domen.puncer@telargo.com>
62536 Date:   Mon Apr 16 14:00:13 2007 +0200
62537
62538     [PATCH] icecube/lite5200b: wakeup from low-power support
62539
62540     U-Boot part of Lite5200b low power mode support.
62541     Puts SDRAM out of self-refresh and transfers control to
62542     address saved at physical 0x0.
62543
62544     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
62545     Acked-by: Grant Likely <grant.likely@secretlab.ca>
62546
62547 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
62548 Author: Gerald Van Baren <vanbaren@cideas.com>
62549 Date:   Sun Apr 15 13:54:26 2007 -0400
62550
62551     Fix the ft_cpu_setup() property settings.
62552
62553     Use "setter" functions instead of flags, cleaner and more flexible.
62554     It also fixes the problem noted by Timur Tabi that the ethernet MAC
62555     addresses were all being set incorrectly to the same MAC address.
62556
62557 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
62558 Author: Gerald Van Baren <vanbaren@cideas.com>
62559 Date:   Sat Apr 14 22:51:24 2007 -0400
62560
62561     Improve the bootm command for CONFIG_OF_LIBFDT
62562
62563     In bootm, create the "/chosen" node only if it doesn't already exist
62564       (better matches the previous behavior).
62565     Update for proper reserved memory map handling for initrd.
62566
62567 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
62568 Author: Gerald Van Baren <vanbaren@cideas.com>
62569 Date:   Sat Apr 14 22:46:41 2007 -0400
62570
62571     Add some utilities to manipulate the reserved memory map.
62572
62573 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
62574 Author: Wolfgang Denk <wd@denx.de>
62575 Date:   Sat Apr 14 21:16:54 2007 +0200
62576
62577     Update CHANGELOG
62578
62579 commit 8e6875183cdca91c134408d119d4abcd48ef6856
62580 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62581 Date:   Sun Dec 17 18:56:46 2006 +0100
62582
62583     AVR32: Enable MMC support
62584
62585     Set up the portmux for the MMC interface and enable the MMC driver
62586     along with support for DOS partitions, ext2 and FAT filesystems.
62587
62588     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62589
62590 commit fc26c97bb6df41b4a95662c34054fe912387bf38
62591 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62592 Date:   Fri Jan 20 10:03:53 2006 +0100
62593
62594     Atmel MCI driver
62595
62596     Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
62597
62598     The AT91 ARM-based CPUs use basically the same hardware, so it should
62599     be possible to share this driver, but no effort has been made so far.
62600
62601     Hardware documentation can be found in the AT32AP7000 data sheet,
62602     which can be downloaded from
62603
62604     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
62605
62606     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62607
62608 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
62609 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62610 Date:   Sun Dec 17 18:55:37 2006 +0100
62611
62612     AVR32: Add clk and gpio infrastructure for mmci
62613
62614     Implement functions for configuring the mmci pins, as well as
62615     functions for getting the clock rate of the mmci controller.
62616
62617     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62618
62619 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
62620 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62621 Date:   Sun Dec 17 18:53:56 2006 +0100
62622
62623     Enable partition support with MMC
62624
62625     Include implementations of init_part() and get_partition_info() when
62626     CONFIG_MMC is set.
62627
62628     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62629
62630 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
62631 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62632 Date:   Sun Dec 17 17:14:30 2006 +0100
62633
62634     AVR32: Enable networking
62635
62636     Implement MACB initialization for AVR32 and ATSTK1000, and turn
62637     everything on, including the MACB driver.
62638
62639     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62640
62641 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
62642 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62643 Date:   Fri Jan 20 10:03:34 2006 +0100
62644
62645     Atmel MACB ethernet driver
62646
62647     Driver for the Atmel MACB on-chip ethernet controller.
62648
62649     This driver has been tested on the ATSTK1000 board with a AT32AP7000
62650     CPU. It should probably work on AT91SAM926x as well with some minor
62651     modifications.
62652
62653     Hardware documentation can be found in the AT32AP7000 data sheet,
62654     which can be downloaded from
62655
62656     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
62657
62658     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62659
62660 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
62661 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62662 Date:   Sun Dec 17 16:56:14 2006 +0100
62663
62664     AVR32: Add clk and gpio infrastructure for macb0 and macb1
62665
62666     Implement functions for configuring the macb0 and macb1 pins, as
62667     well as functions for getting the clock rate of the various
62668     busses the macb ethernet controllers are connected to.
62669
62670     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62671
62672 commit d5acb95b16a0a74c643524342c3437e765426d05
62673 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62674 Date:   Sun Dec 17 15:39:15 2006 +0100
62675
62676     AVR32: Implement simple DMA memory allocator
62677
62678     Implement dma_alloc_coherent() which returns cache-aligned
62679     uncacheable memory.
62680
62681     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62682
62683 commit 91975b0fea773c9e681fea8cf3349669f27685ee
62684 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62685 Date:   Sun Dec 17 15:46:02 2006 +0100
62686
62687     Import <linux/mii.h> from the Linux kernel
62688
62689     Instead of creating yet another set of MII register definitions
62690     in the macb driver, here's a complete set of definitions for everyone
62691     to use.
62692
62693     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62694
62695 commit 1b804b229556a4d862da93c0ec94e79419364b2c
62696 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62697 Date:   Wed Mar 21 19:47:36 2007 +0100
62698
62699     AVR32: Include more commands for ATSTK1000
62700
62701     Include the imi, imls and jffs commands sets by default on ATSTK1000.
62702     Also define CONFIG_BOOTARGS to something more useful, define
62703     CONFIG_BOOTCOMMAND and enable autoboot by default.
62704
62705     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62706
62707 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
62708 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62709 Date:   Wed Mar 21 19:44:48 2007 +0100
62710
62711     AVR32: Provide a definition of struct stat
62712
62713     Copy the definition of struct stat from the Linux kernel.
62714
62715     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62716
62717 commit 12f099c08167a7a51aeee623bc16dafd0841271c
62718 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62719 Date:   Sun Dec 17 14:46:06 2006 +0100
62720
62721     AVR32: Use initdram() instead of board_init_memories()
62722
62723     Conform to the "standard" interface and use initdram() instead of
62724     board_init_memories() on AVR32. This enables us to get rid of the
62725     sdram_size member of the global_data struct as well.
62726
62727     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62728
62729 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
62730 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62731 Date:   Mon Nov 20 15:53:10 2006 +0100
62732
62733     AVR32: Relocate u-boot to SDRAM
62734
62735     Relocate the u-boot image into SDRAM like everyone else does. This
62736     means that we can handle much larger .data and .bss than we used to.
62737
62738     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62739
62740 commit df548d3c3e2bbc40258713167859ffc2ce99a900
62741 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62742 Date:   Sun Nov 19 18:06:53 2006 +0100
62743
62744     AVR32: Resource management rewrite
62745
62746     Rewrite the resource management code (i.e. I/O memory, clock gating,
62747     gpio) so it doesn't depend on any global state. This is necessary
62748     because this code is heavily used before relocation to RAM, so we
62749     can't write to any global variables.
62750
62751     As an added bonus, this makes u-boot's memory footprint a bit smaller,
62752     although some functionality has been left out; all clocks are enabled
62753     all the time, and there's no checking for gpio line conflicts.
62754
62755     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62756
62757 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
62758 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62759 Date:   Sat Nov 18 18:01:13 2006 +0100
62760
62761     AVR32: Clean up memory-map.h for at32ap7000
62762
62763     Convert spaces to tabs (must have missed this one last time around),
62764     sort the entries by address and group them together by bus
62765     connectivity.
62766
62767     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62768
62769 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
62770 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62771 Date:   Sat Nov 18 17:32:31 2006 +0100
62772
62773     AVR32: Build position-independent u-boot
62774
62775     Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
62776     position independent. This will make relocation a lot easier.
62777
62778     -mno-init-got means that gcc shouldn't emit code to load the GOT
62779     address into r6 in every function prologue. We do it once and for
62780     all in the early startup assembly code, so enabling this option
62781     makes u-boot a bit faster and smaller.
62782
62783     The assembly parts have always been position-independent, so no code
62784     changes should be necessary.
62785
62786     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62787
62788 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
62789 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62790 Date:   Sat Nov 18 17:24:31 2006 +0100
62791
62792     AVR32: Use avr32-linux- cross-compilation prefix by default
62793
62794     It doesn't really matter which toolchain you use to compile u-boot,
62795     but the avr32-linux one is probably what most people have installed.
62796
62797     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62798
62799 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
62800 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62801 Date:   Sat Nov 18 17:15:30 2006 +0100
62802
62803     AVR32: Split start_u_boot into board_init_f and board_init_r
62804
62805     Split the avr32 initialization code into a function to run before
62806     relocation, board_init_f and a function to run after relocation,
62807     board_init_r. For now, board_init_f simply calls board_init_r
62808     at the end.
62809
62810     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62811
62812 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
62813 Author: Heiko Schocher <hs@pollux.denx.de>
62814 Date:   Sat Apr 14 05:26:48 2007 +0200
62815
62816     [Fix]       Set the LED status register on the UC101 for the LXT971 PHY.
62817             clear the Display after reset.
62818
62819     Signed-off-by: Heiko Schocher <hs@denx.de>
62820
62821 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
62822 Author: Denis Peter <d.peter@mpl.ch>
62823 Date:   Fri Apr 13 09:13:33 2007 +0200
62824
62825     [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
62826
62827     Fix bug introduced by "Fix get_partition_info() parameter error in all
62828     other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
62829     to use diskboot or scsiboot form another device than 0.
62830
62831     Signed-off-by: Denis Peter <d.peter@mpl.ch>
62832
62833 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
62834 Author: Greg Lopp <lopp@pobox.com>
62835 Date:   Fri Apr 13 08:02:24 2007 +0200
62836
62837     [PATCH] Fix use of "void *" for block dev read/write buffer pointers
62838
62839     Signed-of-by: Greg Lopp <lopp@pobox.com>
62840     Acked-by: Grant Likely <grant.likely@secretlab.ca>
62841
62842 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
62843 Author: Xie Xiaobo <r63061@freescale.com>
62844 Date:   Fri Mar 9 19:08:25 2007 +0800
62845
62846     Fix two bugs for MPC83xx DDR2 controller SPD Init
62847
62848     There are a few bugs in the cpu/mpc83xx/spd_sdram.c
62849     the first bug is that the picos_to_clk routine introduces a huge
62850     rounding error in 83xx.
62851     the second bug is that the mode register write recovery field is
62852     tWR-1, not tWR >> 1.
62853
62854 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
62855 Author: Jeffrey Mann <mannj@embeddedplanet.com>
62856 Date:   Thu Apr 12 14:15:59 2007 +0200
62857
62858     ppc4xx: Fix i2c divisor calcularion for PPC4xx
62859
62860     This patch fixes changes the i2c_init(...) function to use the function
62861     get_OPB_freq() rather than calculating the OPB speed by
62862     sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
62863     specific per processor. The prior method was not and so was calculating
62864     the wrong speed for some PPC4xx processors.
62865
62866     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
62867     Signed-off-by: Stefan Roese <sr@denx.de>
62868
62869 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
62870 Author: Wolfgang Denk <wd@denx.de>
62871 Date:   Wed Apr 11 17:25:01 2007 +0200
62872
62873     Update CHANGELOG
62874
62875     Signed-off-by: Wolfgang Denk <wd@denx.de>
62876
62877 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
62878 Author: Wolfgang Denk <wd@denx.de>
62879 Date:   Wed Apr 11 17:22:55 2007 +0200
62880
62881     Update for SC3 board
62882
62883     * Make IDE timeout configurable through ide_reset_timeout variable.
62884     * Use Newline as "password" string
62885     * Use just a single partition in NAND flash
62886
62887 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
62888 Author: Haiying Wang <haiying.wang@freescale.com>
62889 Date:   Mon Jan 22 12:37:30 2007 -0600
62890
62891     Add PIXIS FPGA support for MPC8641HPCN board.
62892
62893     Move the 8641HPCN's PIXIS code to the new directory
62894     board/freescale/common/ as it will be shared by
62895     future boards not in the same processor family.
62896
62897     Write a "pixis_reset" command that utilizes the FPGA
62898     reset sequencer to support alternate soft-reset options
62899     such as using the "alternate" flash bank, enabling
62900     the watch dog, or choosing different CPU frequencies.
62901
62902     Add documentation for the pixis_reset to README.mpc8641hpcn.
62903
62904     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
62905     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62906
62907 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
62908 Author: Gerald Van Baren <vanbaren@cideas.com>
62909 Date:   Fri Apr 6 14:19:43 2007 -0400
62910
62911     Moved fdt command support code to fdt_support.c
62912
62913     ...in preparation for improving the bootm command's handling of fdt blobs.
62914     Also cleaned up some coding sloppiness.
62915
62916 commit 6679f9299534e488a171a9bb8f9bb891de247aab
62917 Author: Gerald Van Baren <vanbaren@cideas.com>
62918 Date:   Fri Apr 6 14:17:14 2007 -0400
62919
62920     libfdt: Make fdt_check_header() public
62921
62922     Changed _fdt_check_header() to fdt_check_header() and made it part of
62923     the interface - it is a useful routine.
62924
62925     Also did some asthetics cleanup to the include files (headers).
62926
62927 commit c0707ce65677650b5ceab0500ee50ae5168afef2
62928 Author: Aubrey Li <aubrey.adi@gmail.com>
62929 Date:   Thu Apr 5 18:34:06 2007 +0800
62930
62931     [Blackfin][PATCH] Kill off a bunch of common local prototypes
62932
62933 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
62934 Author: Aubrey Li <aubrey.adi@gmail.com>
62935 Date:   Thu Apr 5 18:33:04 2007 +0800
62936
62937     [Blackfin][PATCH] Fix dynamic CPLB generation issue
62938
62939 commit 0445e3a264251d75b1be45ef713c70726a2952f0
62940 Author: Aubrey Li <aubrey.adi@gmail.com>
62941 Date:   Thu Apr 5 18:31:47 2007 +0800
62942
62943     [Blackfin][PATCH] minior cleanup
62944
62945 commit 155fd766573981090e638b493d5857562151862e
62946 Author: Aubrey Li <aubrey.adi@gmail.com>
62947 Date:   Thu Apr 5 18:31:18 2007 +0800
62948
62949     [Blackfin][PATCH] Fix copyright and update license
62950
62951 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
62952 Author: Aubrey Li <aubrey.adi@gmail.com>
62953 Date:   Thu Apr 5 18:30:25 2007 +0800
62954
62955     [Blackfin][PATCH] Add BF537 EMAC driver initialization
62956
62957 commit 889256e8604e0c68db1d866d720894dffede9df6
62958 Author: Aubrey Li <aubrey.adi@gmail.com>
62959 Date:   Thu Apr 5 18:29:55 2007 +0800
62960
62961     [Blackfin][PATCH] call real the system synchronize instruction
62962
62963 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
62964 Author: Aubrey Li <aubrey.adi@gmail.com>
62965 Date:   Thu Apr 5 18:29:17 2007 +0800
62966
62967     [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
62968
62969 commit dfeeab2cd680df047e68e723b246adf6f33bb556
62970 Author: Aubrey Li <aubrey.adi@gmail.com>
62971 Date:   Thu Apr 5 18:28:34 2007 +0800
62972
62973     [Blackfin][PATCH]: fix flash unaligned copy issue
62974
62975 commit 443feb740584e406efa203af909fe2926608e8d5
62976 Author: Igor Marnat <marny@rambler.ru>
62977 Date:   Wed Mar 21 09:55:01 2007 +0300
62978
62979     Update usage of 'nc' in README.NetConsole
62980
62981     Added information about usage of NetConsole on systems where the -l and -p
62982     switches are mutually exclusive.
62983
62984     Signed-off-by: Igor Marnat <marny@rambler.ru>
62985     Signed-off-by: Ben Warren <bwarren@qstreams.com>
62986
62987 commit 31c98a88228021b314c89ebb8104fb6473da4471
62988 Author: Wolfgang Denk <wd@denx.de>
62989 Date:   Wed Apr 4 02:09:30 2007 +0200
62990
62991     Minor coding style cleanup.
62992
62993 commit 94abd7c0583ebe01e799b25f451201deeaab550d
62994 Author: Wolfgang Denk <wd@denx.de>
62995 Date:   Wed Apr 4 01:49:15 2007 +0200
62996
62997     Minor cleanup.
62998
62999 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
63000 Author: Rodolfo Giometti <giometti@enneenne.com>
63001 Date:   Tue Apr 3 14:27:18 2007 +0200
63002
63003     Support for the Philips ISP116x HCD (Host Controller Driver)
63004
63005     Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
63006
63007 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
63008 Author: Markus Klotzbuecher <mk@denx.de>
63009 Date:   Tue Apr 3 14:27:08 2007 +0200
63010
63011     USB: cleanup monahans usb support. Remove dead code.
63012
63013     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63014
63015 commit a65c5768e5537530bd1780af3d3fddc3113a163c
63016 Author: Stefan Roese <sr@denx.de>
63017 Date:   Mon Apr 2 10:09:30 2007 +0200
63018
63019     ppc4xx: Change SysACE address on Katmai
63020
63021     With this new base address of the Xilinx SystemACE controller
63022     the Linux driver will be easier to adapt, since it can now be
63023     mapped via the "normal" ioremap() call.
63024
63025     Signed-off-by: Stefan Roese <sr@denx.de>
63026
63027 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
63028 Author: Gerald Van Baren <vanbaren@cideas.com>
63029 Date:   Sat Mar 31 14:30:53 2007 -0400
63030
63031     Fix some minor whitespace violations.
63032
63033 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
63034 Author: Gerald Van Baren <vanbaren@cideas.com>
63035 Date:   Sat Mar 31 12:23:51 2007 -0400
63036
63037     Add a flattened device tree (fdt) command (2 of 2)
63038
63039     Modifications to the existing code to support the new fdt command.
63040
63041 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
63042 Author: Gerald Van Baren <vanbaren@cideas.com>
63043 Date:   Sat Mar 31 12:22:10 2007 -0400
63044
63045     Add a flattened device tree (fdt) command (1 of 2)
63046
63047     The fdt command uses David Gibson's libfdt library to manipulate as well
63048     as print the flattened device tree.  This patch is the new command,
63049     the second part is the modifications to the existing code.
63050
63051 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
63052 Author: Gerald Van Baren <vanbaren@cideas.com>
63053 Date:   Sat Mar 31 12:13:43 2007 -0400
63054
63055     libfdt: Enhanced and published fdt_next_tag()
63056
63057     Enhanced the formerly private function _fdt_next_tag() to allow stepping
63058       through the tree, used to produce a human-readable dump, and made
63059       it part of the published interface.
63060     Also added some comments.
63061
63062 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
63063 Author: Gerald Van Baren <vanbaren@cideas.com>
63064 Date:   Sat Mar 31 12:05:39 2007 -0400
63065
63066     libfdt: Customizations for use by u-boot.
63067
63068     Changes to David Gibson's original source to fit into u-boot's
63069     environment.  No functionality changes.
63070
63071 commit 35748177c64a4a83a00057e93bb33e40278a2a96
63072 Author: Gerald Van Baren <vanbaren@cideas.com>
63073 Date:   Sat Mar 31 12:00:56 2007 -0400
63074
63075     libfdt: Import libfdt source (2 of 2)
63076
63077     This adds the applicable libfdt source files (unmodified) and a README
63078     to explain where the source came from.
63079
63080 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
63081 Author: Gerald Van Baren <vanbaren@cideas.com>
63082 Date:   Sat Mar 31 11:59:59 2007 -0400
63083
63084     libfdt: Import libfdt source (1 of 2)
63085
63086     This adds the applicable libfdt source files (unmodified) and a README
63087     to explain where the source came from.
63088
63089 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
63090 Author: Stefan Roese <sr@denx.de>
63091 Date:   Sat Mar 31 13:16:23 2007 +0200
63092
63093     ppc4xx: Update Katmai bootstrap command
63094
63095     Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
63096     is selected.
63097
63098     Signed-off-by: Stefan Roese <sr@denx.de>
63099
63100 commit cabee756a6532986729477c3cc1ea16ef8517ad2
63101 Author: Stefan Roese <sr@denx.de>
63102 Date:   Sat Mar 31 13:15:06 2007 +0200
63103
63104     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
63105
63106     Additional RAM information is now printed upon powerup, like
63107     DDR2 frequency and CAS latency.
63108
63109     Signed-off-by: Stefan Roese <sr@denx.de>
63110
63111 commit 60723803431ac75cad085690789e433d5ab9174e
63112 Author: Stefan Roese <sr@denx.de>
63113 Date:   Sat Mar 31 08:48:36 2007 +0200
63114
63115     ppc4xx: Change Yucca config file to support ECC
63116
63117     With the updated 44x DDR2 driver the Yucca board now supports
63118     ECC generation and checking.
63119
63120     Signed-off-by: Stefan Roese <sr@denx.de>
63121
63122 commit 490e5730c674b20d708b783a2c5ffd7208f83873
63123 Author: Stefan Roese <sr@denx.de>
63124 Date:   Sat Mar 31 08:47:34 2007 +0200
63125
63126     ppc4xx: Fix "bootstrap" command for Katmai board
63127
63128     The board specific "bootstrap" command is now fixed and can
63129     be used for the AMCC Katmai board to configure different
63130     CPU/PLB/OPB frequencies.
63131
63132     Signed-off-by: Stefan Roese <sr@denx.de>
63133
63134 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
63135 Author: Stefan Roese <sr@denx.de>
63136 Date:   Sat Mar 31 08:46:08 2007 +0200
63137
63138     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
63139
63140     Fix a bug in the auto calibration routine. This driver now runs
63141     more reliable with the tested modules. It's also tested with
63142     167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
63143
63144     Signed-off-by: Stefan Roese <sr@denx.de>
63145
63146 commit 342cd097be1e7affe82f42ab3da220959a699e64
63147 Author: Michal Simek <monstr@monstr.eu>
63148 Date:   Fri Mar 30 22:52:09 2007 +0200
63149
63150     [PATCH] Clean include dependence
63151
63152 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
63153 Author: Michal Simek <monstr@monstr.eu>
63154 Date:   Fri Mar 30 22:42:45 2007 +0200
63155
63156     [CLEAN] Remove inefficient Suzaku code
63157
63158 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
63159 Author: Stefan Roese <sr@denx.de>
63160 Date:   Wed Mar 28 15:03:16 2007 +0200
63161
63162     Merge some AMCC make targets to keep the top-level Makefile smaller
63163
63164     Signed-off-by: Stefan Roese <sr@denx.de>
63165
63166 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
63167 Author: Stefan Roese <sr@denx.de>
63168 Date:   Wed Mar 28 14:52:12 2007 +0200
63169
63170     i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
63171
63172     The "old" i2c commands (iprobe, imd...) are now compiled in again,
63173     even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
63174     config option.
63175
63176     Signed-off-by: Stefan Roese <sr@denx.de>
63177
63178 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
63179 Author: Michal Simek <monstr@monstr.eu>
63180 Date:   Tue Mar 27 00:32:16 2007 +0200
63181
63182     PATCH: Resolve GPL license problem
63183
63184 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
63185 Author: Rodolfo Giometti <giometti@enneenne.com>
63186 Date:   Mon Mar 26 12:03:36 2007 +0200
63187
63188     PXA: pxa27x USB OHCI support
63189
63190     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
63191
63192 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
63193 Author: Markus Klotzbuecher <mk@denx.de>
63194 Date:   Mon Mar 26 11:21:05 2007 +0200
63195
63196     USB: remove the S3C24X0_merge #define, which was introduced while
63197     merging OHCI drivers.
63198
63199     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63200
63201 commit 1798049522f594013aea29457d46794298c6ae15
63202 Author: Michal Simek <root@monstr.eu>
63203 Date:   Mon Mar 26 01:39:07 2007 +0200
63204
63205     Support for XUPV2P board
63206     Reset support
63207     BSP autoconfig support
63208
63209 commit 0d974d5297349504a2ddfa09314be573b5df320a
63210 Author: Stefan Roese <sr@denx.de>
63211 Date:   Sat Mar 24 15:57:09 2007 +0100
63212
63213     [PATCH] Add 4xx GPIO functions
63214
63215     This patch adds some 4xx GPIO functions. It also moves some of the
63216     common code and defines into a common 4xx GPIO header file.
63217
63218     Signed-off-by: Stefan Roese <sr@denx.de>
63219
63220 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
63221 Author: Stefan Roese <sr@denx.de>
63222 Date:   Sat Mar 24 15:55:58 2007 +0100
63223
63224     [PATCH] Small Sequoia cleanup
63225
63226     Signed-off-by: Stefan Roese <sr@denx.de>
63227
63228 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
63229 Author: Stefan Roese <sr@denx.de>
63230 Date:   Sat Mar 24 15:45:34 2007 +0100
63231
63232     [PATCH] Clean up 40EZ/Acadia support
63233
63234     This patch cleans up all the open issue of the preliminary
63235     Acadia support.
63236
63237     Signed-off-by: Stefan Roese <sr@denx.de>
63238
63239 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
63240 Author: Jon Loeliger <jdl@freescale.com>
63241 Date:   Tue Dec 12 11:02:20 2006 -0600
63242
63243     Fix 8641HPCN problem with ld version 2.16
63244
63245     (Dot outside sections problem).
63246
63247     This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
63248
63249     Signed-off-by: Jon Loeliger <jdl@freescale.com>
63250
63251 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
63252 Author: Haiying Wang <haiying.wang@freescale.com>
63253 Date:   Thu Dec 7 10:35:55 2006 -0600
63254
63255     Set Rev 2.x 86xx PIC in mixed mode.
63256
63257     Prevent false interrupt from hanging Linux as MSR[EE] is set
63258     to enable interrupts by changing the PIC out of the default
63259     pass through mode into mixed mode.
63260
63261     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
63262     Signed-off-by: Jon Loeliger <jdl@freescale.com>
63263
63264 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
63265 Author: Jason Jin <jason.jin@freescale.com>
63266 Date:   Thu Dec 7 10:32:35 2006 -0600
63267
63268     Add flash cmd function to 8641HPCN ramboot
63269
63270     Also fixes some commmand for 8641 HPCN ramboot case.
63271
63272     Signed-off-by: Jason Jin <jason.jin@freescale.com>
63273     Signed-off-by: Jon Loeliger <jdl@freescale.com>
63274
63275 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
63276 Author: Ed Swarthout <ed.swarthout@freescale.com>
63277 Date:   Thu Dec 7 10:34:14 2006 -0600
63278
63279     Add support for 8641 Rev 2 silicon.
63280
63281     Without this patch, I am unable to get to the prompt on rev 2 silicon.
63282     Only set ddrioovcr for rev1.
63283
63284     Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
63285     Signed-off-by: Jon Loeliger <jdl@freescale.com>
63286
63287 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
63288 Author: Wolfgang Denk <wd@denx.de>
63289 Date:   Thu Mar 22 00:13:12 2007 +0100
63290
63291     Code cleanup / re-insert previous Copyright entries.
63292
63293     Signed-off-by: Wolfgang Denk <wd@denx.de>
63294
63295 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
63296 Author: Wolfgang Denk <wd@denx.de>
63297 Date:   Wed Mar 21 23:26:15 2007 +0100
63298
63299     Code cleanup. Update CHANGELOG
63300
63301 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
63302 Author: Stefan Roese <sr@denx.de>
63303 Date:   Wed Mar 21 14:54:29 2007 +0100
63304
63305     ppc4xx: Fix file mode of include/configs/acadia.h
63306
63307     Signed-off-by: Stefan Roese <sr@denx.de>
63308
63309 commit d5f4614c9350d9333e575100fb250aab774d0258
63310 Author: Markus Klotzbuecher <mk@denx.de>
63311 Date:   Wed Mar 21 14:41:46 2007 +0100
63312
63313     SPC1920: fix small clock routing bug
63314
63315     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63316
63317 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
63318 Author: Stefan Roese <sr@denx.de>
63319 Date:   Wed Mar 21 13:39:57 2007 +0100
63320
63321     [PATCH] Add AMCC Acadia (405EZ) eval board support
63322
63323     This patch adds support for the new AMCC Acadia eval board.
63324
63325     Please note that this Acadia/405EZ support is still in a beta stage.
63326     Still lot's of cleanup needed but we need a preliminary release now.
63327
63328     Signed-off-by: Stefan Roese <sr@denx.de>
63329
63330 commit e01bd218b00af73499331a1a701625a852cd286f
63331 Author: Stefan Roese <sr@denx.de>
63332 Date:   Wed Mar 21 13:38:59 2007 +0100
63333
63334     [PATCH] Add AMCC PPC405EZ support
63335
63336     This patch adds support for the new AMCC 405EZ PPC. It is in
63337     preparation for the AMCC Acadia board support.
63338
63339     Please note that this Acadia/405EZ support is still in a beta stage.
63340     Still lot's of cleanup needed but we need a preliminary release now.
63341
63342     Signed-off-by: Stefan Roese <sr@denx.de>
63343
63344 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
63345 Author: Heiko Schocher <hs@pollux.denx.de>
63346 Date:   Wed Mar 21 08:45:17 2007 +0100
63347
63348     [PATCH] TQM8272: dont change the bits given from the HRCW
63349                      for the SIUMCR and BCR Register.
63350                      Fix the calculation for the EEprom Size
63351
63352     Signed-off-by: Heiko Schocher <hs@denx.de>
63353
63354 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
63355 Author: Aubrey Li <aubrey.adi@gmail.com>
63356 Date:   Tue Mar 20 18:16:24 2007 +0800
63357
63358     [Blackfin][PATCH] Add BF561 EZKIT board support
63359
63360 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
63361 Author: Aubrey Li <aubrey.adi@gmail.com>
63362 Date:   Mon Mar 19 22:55:58 2007 +0800
63363
63364     [Blackfin][PATCH] minor cleanup
63365
63366 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
63367 Author: Wolfgang Denk <wd@denx.de>
63368 Date:   Mon Mar 19 13:10:08 2007 +0100
63369
63370     Remove obsoleted POST files.
63371
63372     Signed-off-by: Wolfgang Denk <wd@denx.de>
63373
63374 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
63375 Author: Aubrey Li <aubrey.adi@gmail.com>
63376 Date:   Mon Mar 19 01:26:11 2007 +0800
63377
63378     [PATCH] Add flash chip M29W320ET/B support
63379
63380 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
63381 Author: Aubrey Li <aubrey.adi@gmail.com>
63382 Date:   Mon Mar 19 01:24:52 2007 +0800
63383
63384     [Blackfin][PATCH] Add BF537 stamp board support
63385
63386 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
63387 Author: Stefan Roese <sr@denx.de>
63388 Date:   Fri Mar 16 21:11:42 2007 +0100
63389
63390     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
63391
63392     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
63393     DDR memory are dynamically programmed matching the total size
63394     of the equipped memory (DIMM modules).
63395
63396     Signed-off-by: Stefan Roese <sr@denx.de>
63397
63398 commit 76d1466f918b881cda2d259254761e73885093c2
63399 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63400 Date:   Tue Mar 13 13:38:05 2007 +0100
63401
63402     [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
63403             boards in terms of unification.
63404
63405     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63406
63407 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
63408 Author: Wolfgang Denk <wd@denx.de>
63409 Date:   Tue Mar 13 16:05:55 2007 +0100
63410
63411     Make SC3 board build with 'make O='; use 'addcons' consistently
63412     (SC3 and Jupiter used to use 'addcon' instead).
63413
63414     Signed-off-by: Wolfgang Denk wd@denx.de
63415
63416 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
63417 Author: Heiko Schocher <hs@pollux.denx.de>
63418 Date:   Tue Mar 13 09:40:59 2007 +0100
63419
63420     [PATCH] update board config for jupiter Board:
63421             added Hush Shell,
63422                   CONFIG_CMDLINE_EDITING,
63423                   CFG_ENV_ADDR_REDUND activated
63424
63425     Signed-off-by: Heiko Schocher <hs@denx.de>
63426
63427 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
63428 Author: Aubrey Li <aubrey.adi@gmail.com>
63429 Date:   Mon Mar 12 12:11:55 2007 +0800
63430
63431     [Blackfin][PATCH] minor cleanup
63432
63433 commit bfa5754a58477ac917d21527cd0f079d87cf188e
63434 Author: Aubrey Li <aubrey.adi@gmail.com>
63435 Date:   Mon Mar 12 01:42:06 2007 +0800
63436
63437     [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
63438
63439 commit 8440bb14581a294375c34b91b42512f9753d1130
63440 Author: Aubrey Li <aubrey.adi@gmail.com>
63441 Date:   Mon Mar 12 00:25:14 2007 +0800
63442
63443     [Blackfin][PATCH] code cleanup
63444
63445 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
63446 Author: Michal Simek <monstr@monstr.eu>
63447 Date:   Sun Mar 11 13:48:24 2007 +0100
63448
63449     [Microblaze][PATCH] part 2
63450     timer support
63451     interrupt controller support
63452     flash support
63453     ethernet support
63454     cache support
63455     board information support
63456     env support
63457     booting image support
63458
63459     adding support for Xilinx ML401
63460
63461 commit 76316a318de91f6184e7c22a10e02d275ade2441
63462 Author: Michal Simek <monstr@monstr.eu>
63463 Date:   Sun Mar 11 13:42:58 2007 +0100
63464
63465     [Microblaze][PATCH]
63466     timer support
63467     interrupt controller support
63468     flash support
63469     ethernet support
63470     cache support
63471     board information support
63472     env support
63473     booting image support
63474
63475     adding support for Xilinx ML401
63476
63477 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
63478 Author: Aubrey Li <aubrey.adi@gmail.com>
63479 Date:   Sat Mar 10 23:49:29 2007 +0800
63480
63481     [Blackfin][PATCH] code cleanup
63482
63483 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
63484 Author: Aubrey.Li <aubrey.adi@gmail.com>
63485 Date:   Fri Mar 9 13:40:56 2007 +0800
63486
63487     [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
63488
63489 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
63490 Author: Aubrey.Li <aubrey.adi@gmail.com>
63491 Date:   Fri Mar 9 13:38:44 2007 +0800
63492
63493     [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
63494
63495 commit 992423ab43c2bcf6b704853bd00af77450915e20
63496 Author: Stefan Roese <sr@denx.de>
63497 Date:   Thu Mar 8 23:00:08 2007 +0100
63498
63499     ppc4xx: Fix file mode of sequoia.c
63500
63501     Signed-off-by: Stefan Roese <sr@denx.de>
63502
63503 commit eb92f613556800f7483666db09d9a237ad911d4a
63504 Author: Wolfgang Denk <wd@pollux.denx.de>
63505 Date:   Thu Mar 8 22:52:51 2007 +0100
63506
63507     Minor cleanup.
63508
63509 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
63510 Author: John Otken john@softadvances.com <john@softadvances.com>
63511 Date:   Thu Mar 8 09:39:48 2007 -0600
63512
63513     ppc4xx: Clear Sequoia/Rainier security engine reset bits
63514
63515     Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
63516
63517 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
63518 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63519 Date:   Thu Mar 8 16:26:52 2007 +0100
63520
63521     [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
63522
63523     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63524
63525 commit d9fc703246840c4b268debf48c334ba55c597dc0
63526 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63527 Date:   Thu Mar 8 16:25:47 2007 +0100
63528
63529     [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
63530
63531     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63532
63533 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
63534 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63535 Date:   Thu Mar 8 16:23:11 2007 +0100
63536
63537     [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
63538
63539     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63540
63541 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
63542 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63543 Date:   Thu Mar 8 16:20:32 2007 +0100
63544
63545     [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
63546
63547     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63548
63549 commit f9fc6a5852a6335840882fa2111925010eea1abe
63550 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63551 Date:   Wed Mar 7 15:32:01 2007 +0100
63552
63553     fixed ethernet phy configuration for plu405 board
63554
63555     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63556
63557 commit 769104c9356594deb2092e204a39c05b33202d6c
63558 Author: Wolfgang Denk <wd@pollux.denx.de>
63559 Date:   Thu Mar 8 21:49:27 2007 +0100
63560
63561     Minor cleanup
63562
63563 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
63564 Author: Stefan Roese <sr@denx.de>
63565 Date:   Thu Mar 8 10:13:16 2007 +0100
63566
63567     [PATCH] Update AMCC Luan 440SP eval board support
63568
63569     The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
63570     inititializition. This includes DDR auto calibration and support
63571     for different DIMM modules, instead of the fixed setup used in
63572     the earlier version.
63573
63574     This patch also enables the cache in FLASH for the startup
63575     phase of U-Boot (while running from FLASH). After relocating to
63576     SDRAM the cache is disabled again. This will speed up the boot
63577     process, especially the SDRAM setup, since there are some loops
63578     for memory testing (auto calibration).
63579
63580     Signed-off-by: Stefan Roese <sr@denx.de>
63581
63582 commit 2f5df47351910a2936c7741cf111855829200943
63583 Author: Stefan Roese <sr@denx.de>
63584 Date:   Thu Mar 8 10:10:18 2007 +0100
63585
63586     [PATCH] Update AMCC Yucca 440SPe eval board support
63587
63588     The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
63589     inititializition. This includes DDR auto calibration and support
63590     for different DIMM modules, instead of the fixed setup used in
63591     the earlier version.
63592
63593     Signed-off-by: Stefan Roese <sr@denx.de>
63594
63595 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
63596 Author: Stefan Roese <sr@denx.de>
63597 Date:   Thu Mar 8 10:07:18 2007 +0100
63598
63599     ppc4xx: Small AMCC Katmai 440SPe update
63600
63601     Signed-off-by: Stefan Roese <sr@denx.de>
63602
63603 commit df294497479b1dca6dd86318b2a912f72fede0df
63604 Author: Stefan Roese <sr@denx.de>
63605 Date:   Thu Mar 8 10:06:09 2007 +0100
63606
63607     ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
63608
63609     Signed-off-by: Stefan Roese <sr@denx.de>
63610
63611 commit 83853178bd36bca6f0f8f1331476620c84a587fc
63612 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
63613 Date:   Wed Mar 7 12:14:50 2007 -0600
63614
63615     net - Support ping reply when processing net-loop
63616
63617     Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
63618
63619     This permits the ping command to test the phy interface when the phy
63620     is put in loopback mode (typically by setting register 0 bit 14).
63621
63622     It also allows the port to respond to an external ping when u-boot is
63623     processing some other net command (such as tftp).  This is useful when
63624     tftp appears to hang.
63625
63626     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
63627     Signed-off-by: Ben Warren <bwarren@qstreams.com>
63628
63629 commit fa1aef15bcd47736687be1af544506e90fba545d
63630 Author: Stefan Roese <sr@denx.de>
63631 Date:   Wed Mar 7 16:43:00 2007 +0100
63632
63633     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
63634
63635     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
63636     DDR memory are dynamically programmed matching the total size
63637     of the equipped memory (DIMM modules).
63638
63639     Signed-off-by: Stefan Roese <sr@denx.de>
63640
63641 commit e2ebe696818939e2b974628be9c921ea3fe9de13
63642 Author: Stefan Roese <sr@denx.de>
63643 Date:   Wed Mar 7 16:39:36 2007 +0100
63644
63645     [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
63646
63647     This patch fixes a problem that occurs when 2 DIMM's are
63648     used. This problem was first spotted and fixed by Gerald Jackson
63649     <gerald.jackson@reaonixsecurity.com> but this patch fixes the
63650     problem in a little more clever way.
63651
63652     This patch also adds the nice functionality to dynamically
63653     create the TLB entries for the SDRAM (tlb.c). So we should
63654     never run into such problems with wrong (too short) TLB
63655     initialization again on these platforms.
63656
63657     As this feature is new to the "old" 44x SPD DDR driver, it
63658     has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
63659
63660     Signed-off-by: Stefan Roese <sr@denx.de>
63661
63662 commit 39218433983417b9df087976a79e3f80dd5e83d6
63663 Author: Wolfgang Denk <wd@denx.de>
63664 Date:   Wed Mar 7 16:33:44 2007 +0100
63665
63666     UC101: fix compiler warnings
63667
63668 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
63669 Author: Wolfgang Denk <wd@pollux.denx.de>
63670 Date:   Wed Mar 7 16:19:46 2007 +0100
63671
63672     HMI1001: fix build error, cleanup compiler warnings.
63673
63674 commit ad5bb451ade552c44bef9119d907929ebc2c126f
63675 Author: Wolfgang Denk <wd@pollux.denx.de>
63676 Date:   Tue Mar 6 18:08:43 2007 +0100
63677
63678     Restructure POST directory to support of other CPUs, boards, etc.
63679
63680 commit a5284efd125967675b2e9c6ef7b95832268ad360
63681 Author: Wolfgang Denk <wd@pollux.denx.de>
63682 Date:   Tue Mar 6 18:01:47 2007 +0100
63683
63684     Fix HOSTARCH handling.
63685     Patch by Mike Frysinger, Mar 05 2007
63686
63687 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
63688 Author: Stefan Roese <sr@denx.de>
63689 Date:   Tue Mar 6 07:47:04 2007 +0100
63690
63691     [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
63692
63693     As provided by the AMCC applications team, this patch optimizes the
63694     DDR2 setup for 166MHz bus speed. The values provided are also save
63695     to use on a "normal" 133MHz PLB bus system. Only the refresh counter
63696     setup has to be adjusted as done in this patch.
63697
63698     For this the NAND booting version had to include the "speed.c" file
63699     from the cpu/ppc4xx directory. With this addition the NAND SPL image
63700     will just fit into the 4kbytes of program space. gcc version 4.x as
63701     provided with ELDK 4.x is needed to generate this optimized code.
63702
63703     Signed-off-by: Stefan Roese <sr@denx.de>
63704
63705 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
63706 Author: Wolfgang Denk <wd@pollux.denx.de>
63707 Date:   Sun Mar 4 01:36:05 2007 +0100
63708
63709     Some code cleanup.
63710
63711 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
63712 Author: Kim Phillips <kim.phillips@freescale.com>
63713 Date:   Wed Feb 28 00:02:04 2007 -0600
63714
63715     mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
63716
63717     (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
63718
63719 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
63720 Author: Kumar Gala <galak@kernel.crashing.org>
63721 Date:   Tue Feb 27 23:51:42 2007 -0600
63722
63723     mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
63724
63725     The config value for:
63726     * CFG_ACR_PIPE_DEP
63727     * CFG_ACR_RPTCNT
63728     * CFG_SPCR_TSEC1EP
63729     * CFG_SPCR_TSEC2EP
63730     * CFG_SCCR_TSEC1CM
63731     * CFG_SCCR_TSEC2CM
63732
63733     Were not being used when setting the appropriate register
63734
63735     Added:
63736     * CFG_SCCR_USBMPHCM
63737     * CFG_SCCR_USBDRCM
63738     * CFG_SCCR_PCICM
63739     * CFG_SCCR_ENCCM
63740
63741     To allow full config of the SCCR.
63742
63743     Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
63744     that were just bogus.
63745
63746     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63747
63748 commit d51b3cf371cd441030460ef19d36b2924c361b1a
63749 Author: Kim Phillips <kim.phillips@freescale.com>
63750 Date:   Thu Feb 22 20:06:57 2007 -0600
63751
63752     mpc83xx: update [local-]mac-address properties on UEC based devices
63753
63754     8360 and 832x weren't updating their [local-]mac-address
63755     properties. This patch fixes that.
63756
63757     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63758
63759 commit 61f4f912acbe60776c5e00df1ec94094ce672957
63760 Author: Timur Tabi <timur@freescale.com>
63761 Date:   Tue Feb 13 10:41:42 2007 -0600
63762
63763     mpc83xx: write MAC address to mac-address and local-mac-address
63764
63765     Some device trees have a mac-address property, some have local-mac-address,
63766     and some have both.  To support all of these device trees, this patch
63767     updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
63768     This function already updates local-mac-address.
63769
63770     Signed-off-by: Timur Tabi <timur@freescale.com>
63771
63772 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
63773 Author: Kim Phillips <kim.phillips@freescale.com>
63774 Date:   Tue Feb 27 18:41:08 2007 -0600
63775
63776     mpc83xx: add command line editing by default
63777
63778 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
63779 Author: Kim Phillips <kim.phillips@freescale.com>
63780 Date:   Wed Feb 14 19:50:53 2007 -0600
63781
63782     mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
63783
63784     Disable G1TXCLK, G2TXCLK h/w buffers. This patch
63785     fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
63786
63787     Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
63788
63789     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63790     Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
63791
63792 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
63793 Author: Xie Xiaobo <r63061@freescale.com>
63794 Date:   Wed Feb 14 18:27:17 2007 +0800
63795
63796     mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
63797
63798     The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
63799     it pass DDR/DDR2 compliance tests.
63800
63801     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
63802
63803 commit b110f40bd180c6b560276589beedf753e97c46ce
63804 Author: Xie Xiaobo <r63061@freescale.com>
63805 Date:   Wed Feb 14 18:27:06 2007 +0800
63806
63807     mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
63808
63809     MPC8360E rev2.0 have new spridr,and PVR value,
63810     The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
63811
63812     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
63813
63814 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
63815 Author: Xie Xiaobo <r63061@freescale.com>
63816 Date:   Wed Feb 14 18:26:44 2007 +0800
63817
63818     mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
63819
63820     MPC8349E rev3.1 have new spridr,and PVR value,
63821     The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
63822
63823     Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
63824
63825 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
63826 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
63827 Date:   Wed Jan 31 11:04:19 2007 +0100
63828
63829     mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
63830
63831     Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
63832     which is used to se if an slave will ACK after receiving its address.
63833
63834     Correct i2c probing to use this method as the old method could upset
63835     a slave as it wrote a data byte to it.
63836
63837     Add a small delay in i2c_init() to let the controller
63838     shutdown any ongoing I2C activity.
63839
63840     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
63841
63842 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
63843 Author: Timur Tabi <timur@freescale.com>
63844 Date:   Wed Jan 31 15:54:29 2007 -0600
63845
63846     mpc83xx: Add support for the MPC8349E-mITX-GP
63847
63848     Add support for the MPC8349E-mITX-GP, a stripped-down version of the
63849     MPC8349E-mITX.  Bonus features include support for low-boot (BMS bit in
63850     HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
63851
63852     Signed-off-by: Timur Tabi <timur@freescale.com>
63853
63854 commit fab16807adad350f618024350c6950165c247c72
63855 Author: Timur Tabi <timur@freescale.com>
63856 Date:   Wed Jan 31 15:54:20 2007 -0600
63857
63858     mpc83xx: Delete sdram_init() for MPC8349E-mITX
63859
63860     There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
63861     never does anything.  This patch deletes it.
63862
63863     Signed-off-by: Timur Tabi <timur@freescale.com>
63864
63865 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
63866 Author: Dave Liu <daveliu@freescale.com>
63867 Date:   Fri Jan 19 10:43:26 2007 +0800
63868
63869     mpc83xx: Fix the LAW1/3 bug
63870
63871     The patch solves the alignment problem of the local bus access windows to
63872     render accessible the memory bank and PHY registers of UPC 1 (starting at
63873     0xf801 0000). What we actually did was to adjust the sizes of the bus
63874     access windows so that the base address alignment requirement would be met.
63875
63876     Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
63877     Signed-off-by: Gridish Shlomi <gridish@freescale.com>
63878     Signed-off-by: Dave Liu <daveliu@freescale.com>
63879
63880 commit 97c4b397dce236a7318b304667bf89e59d08b17c
63881 Author: Kim Phillips <kim.phillips@freescale.com>
63882 Date:   Tue Jan 30 16:15:31 2007 -0600
63883
63884     mpc83xx: don't hang if watchdog configured on 8360, 832x
63885
63886     don't hang if watchdog configured on 8360, 832x
63887
63888     The watchdog programming model is the same across all 83xx devices;
63889     make the code reflect that.
63890
63891 commit b70047478570e371ce7223be342ce98afea0f7d6
63892 Author: Kim Phillips <kim.phillips@freescale.com>
63893 Date:   Tue Jan 30 16:15:21 2007 -0600
63894
63895     mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
63896
63897     protect memcpy to bad address if a local-mac-address is missing from dt
63898
63899 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
63900 Author: Kim Phillips <kim.phillips@freescale.com>
63901 Date:   Tue Jan 30 16:15:04 2007 -0600
63902
63903     mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
63904
63905     make 8360 default environment fdt be 8360 (not 8349)
63906
63907 commit a28899c910024a0226331df07207b1038c300c93
63908 Author: Emilian Medve <Emilian.Medve@freescale.com>
63909 Date:   Tue Jan 30 16:14:50 2007 -0600
63910
63911     mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
63912
63913     The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
63914     be used for busy-waiting since it strips the 'volatile' property from
63915     the bd variable. gcc3 was working by pure luck.
63916
63917     This is a follow on patch to "Fix the UEC driver bug of QE"
63918
63919 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
63920 Author: Kumar Gala <galak@kernel.crashing.org>
63921 Date:   Tue Jan 30 14:08:30 2007 -0600
63922
63923     mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
63924
63925     The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
63926     MPC834X class processors.  Change the protections from CONFIG_MPC8349 to
63927     CONFIG_MPC834X so they are more generic.
63928
63929     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63930
63931 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
63932 Author: Kim Phillips <kim.phillips@freescale.com>
63933 Date:   Thu Jan 25 13:40:55 2007 -0600
63934
63935     mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
63936
63937 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
63938 Author: Kim Phillips <kim.phillips@freescale.com>
63939 Date:   Wed Jan 24 17:18:37 2007 -0600
63940
63941     mpc83xx: sort Makefile targets
63942
63943     reordered targets alphabetically
63944
63945 commit 91e25769771c1164ed63ffca0add49f934ae3343
63946 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
63947 Date:   Tue Jan 16 11:38:14 2007 -0500
63948
63949     mpc83xx: U-Boot support for Wind River SBC8349
63950
63951     I've redone the SBC8349 support to match git-current, which
63952     incorporates all the MPC834x updates from Freescale since the 1.1.6
63953     release,  including the DDR changes.
63954
63955     I've kept all the SBC8349 files as parallel as possible to the
63956     MPC8349EMDS ones for ease of maintenance and to allow for easy
63957     inspection of what was changed to support this board.  Hence the SBC8349
63958     U-Boot has FDT support and everything else that the MPC8349EMDS has.
63959
63960     Fortunately the Freescale updates added support for boards using CS0,
63961     but I had to change spd_sdram.c to allow for board specific settings for
63962     the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
63963     default if the board doesn't specify a value.)
63964
63965     Hopefully this should be mergeable as-is and require no whitespace
63966     cleanups or similar, but if something doesn't measure up then let me
63967     know and I'll fix it.
63968
63969     Thanks,
63970     Paul.
63971
63972 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
63973 Author: Sam Song <samsongshu@yahoo.com.cn>
63974 Date:   Thu Dec 14 19:03:21 2006 +0800
63975
63976     mpc83xx: Remove a redundant semicolon in mpc8349itx.c
63977
63978     A redundant semicolon existed in mpc8349itx.c
63979     should be removed.
63980
63981     Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
63982
63983 commit f35f358241c549be3f75cfe2eaa642914275b7ba
63984 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
63985 Date:   Wed Dec 6 21:23:55 2006 -0500
63986
63987     mpc83xx: Put the version (and magic) after the HRCW.
63988
63989     Put the version (and magic) after the HRCW.  This puts it in a fixed
63990     location in flash, not at the start of flash but as close as we can get.
63991
63992     Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
63993
63994 commit 48aecd969171a6e99a55fae04933857787f9a5bd
63995 Author: Dave Liu <r63238@freescale.com>
63996 Date:   Thu Dec 7 21:14:51 2006 +0800
63997
63998     mpc83xx: Add the MPC832XEMDS board readme
63999
64000     Add the MPC832XEMDS board readme
64001
64002     Signed-off-by: Dave Liu <daveliu@freescale.com>
64003
64004 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
64005 Author: Dave Liu <r63238@freescale.com>
64006 Date:   Thu Dec 7 21:13:15 2006 +0800
64007
64008     mpc83xx: Add support for the MPC832XEMDS board
64009
64010     This patch supports DUART, ETH3/4 and PCI etc.
64011
64012     Signed-off-by: Dave Liu <daveliu@freescale.com>
64013
64014 commit e080313c32322e15ab5a18eb896a252858c57284
64015 Author: Dave Liu <r63238@freescale.com>
64016 Date:   Thu Dec 7 21:11:58 2006 +0800
64017
64018     mpc83xx: streamline the 83xx immr head file
64019
64020     For better format and style, I streamlined the 83xx head files,
64021     including immap_83xx.h and mpc83xx.h. In the old head files, 1)
64022     duplicated macro definition appear in the both files; 2) the structure
64023     of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
64024     macro definition put inside the each structure. So, I cleaned up the
64025     structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
64026     moved the macro definition to mpc83xx.h, Just like MPC8260.
64027
64028     CHANGELOG
64029
64030     *streamline the 83xx immr head file
64031
64032     Signed-off-by: Dave Liu <daveliu@freescale.com>
64033
64034 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
64035 Author: Dave Liu <r63238@freescale.com>
64036 Date:   Wed Dec 6 11:38:17 2006 +0800
64037
64038     mpc83xx: Fix the UEC driver bug of QE
64039
64040     The patch prevents the GCC tool chain from striping useful code for
64041     optimization. It will make UEC ethernet driver workable, Otherwise the
64042     UEC will fail in tx when you are using gcc4.x. but the driver can work
64043     when using gcc3.4.3.
64044
64045     CHANGELOG
64046
64047     *Prevent the GCC from striping code for optimization, Otherwise the UEC
64048     will tx failed when you are using gcc4.x.
64049
64050     Signed-off-by: Dave Liu <daveliu@freescale.com>
64051
64052 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
64053 Author: Stefan Roese <sr@denx.de>
64054 Date:   Thu Mar 1 21:11:36 2007 +0100
64055
64056     [PATCH] Update AMCC Katmai 440SPe eval board support
64057
64058     This patch updates the recently added Katmai board support. The biggest
64059     change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
64060     driver.
64061
64062     Please note, that still some problems are left with some memory
64063     configurations. See the driver for more details.
64064
64065     Signed-off-by: Stefan Roese <sr@denx.de>
64066
64067 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
64068 Author: Stefan Roese <sr@denx.de>
64069 Date:   Thu Mar 1 07:03:25 2007 +0100
64070
64071     [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
64072
64073     Signed-off-by: Stefan Roese <sr@denx.de>
64074
64075 commit ccbc7036648e465697ca298ba51e0e76dda352a0
64076 Author: Wolfgang Denk <wd@pollux.denx.de>
64077 Date:   Wed Feb 28 01:28:53 2007 +0100
64078
64079     SC3: fix typo in default environment
64080
64081 commit e344568b1b46af85ec32d815586f91bc115d6223
64082 Author: Sergei Poselenov <sposelenov@emcraft.com>
64083 Date:   Tue Feb 27 20:15:30 2007 +0300
64084
64085     MCC200: Fixes for update procedure
64086
64087     - fix logic error in image type handling
64088     - make sure file system images (cramfs etc.) get stored in flash
64089       with image header stripped so they can be mounted through MTD
64090
64091 commit 743571145b37182757d4e688a77860b36ee77573
64092 Author: Wolfgang Denk <wd@pollux.denx.de>
64093 Date:   Tue Feb 27 14:26:04 2007 +0100
64094
64095     Minor code cleanup.
64096
64097 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
64098 Author: Sergei Poselenov <sposelenov@emcraft.com>
64099 Date:   Tue Feb 27 12:40:16 2007 +0300
64100
64101     MCC200 update - add LCD Progress Indicator
64102
64103 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
64104 Author: Stefan Roese <sr@denx.de>
64105 Date:   Thu Feb 22 07:43:34 2007 +0100
64106
64107     [PATCH] get_dev() now unconditionally uses manual relocation
64108
64109     Since the relocation fix is not included yet and we're not sure how
64110     it will be added, this patch removes code that required relocation
64111     to be fixed for now.
64112
64113     Signed-off-by: Stefan Roese <sr@denx.de>
64114
64115 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
64116 Author: Stefan Roese <sr@denx.de>
64117 Date:   Thu Feb 22 07:40:23 2007 +0100
64118
64119     [PATCH] Change systemace driver to select 8 & 16bit mode
64120
64121     As suggested by Grant Likely this patch enables the Xilinx SystemACE
64122     driver to select 8 or 16bit mode upon startup.
64123
64124     Signed-off-by: Stefan Roese <sr@denx.de>
64125
64126 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
64127 Author: Haiying Wang <Haiying.Wang@freescale.com>
64128 Date:   Wed Feb 21 16:52:31 2007 +0100
64129
64130     [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
64131
64132     Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
64133     is fully finished. The sync() is defined in each CPU's io.h file. For
64134     those CPUs which do not need sync for now, a dummy sync() is defined in
64135     their io.h as well.
64136
64137     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
64138
64139 commit da04995c7dc6772013a9a0dc5c767f190c402478
64140 Author: Stefan Roese <sr@denx.de>
64141 Date:   Wed Feb 21 13:44:34 2007 +0100
64142
64143     [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
64144
64145     Signed-off-by: Stefan Roese <sr@denx.de>
64146
64147 commit 751bb57107d78978ae08e697c3deba816f5be091
64148 Author: Stefan Roese <sr@denx.de>
64149 Date:   Tue Feb 20 13:21:57 2007 +0100
64150
64151     [PATCH] Fix relocation problem with "new" get_dev() function
64152
64153     This patch enables the "new" get_dev() function for block devices
64154     introduced by Grant Likely to be used on systems that still suffer
64155     from the relocation problems (manual relocation neede because of
64156     problems with linker script).
64157
64158     Hopefully we can resolve this relocation issue soon for all platform
64159     so we don't need this additional code anymore.
64160
64161     Signed-off-by: Stefan Roese <sr@denx.de>
64162
64163 commit d93e2212f962668b3dce091ff5edc33f2347fe37
64164 Author: Stefan Roese <sr@denx.de>
64165 Date:   Tue Feb 20 13:17:42 2007 +0100
64166
64167     [PATCH] Update SystemACE driver for 16bit access
64168
64169     This patch removes some problems when the Xilinx SystemACE driver
64170     is used with 16bit access on an big endian platform (like the
64171     AMCC Katmai).
64172
64173     Signed-off-by: Stefan Roese <sr@denx.de>
64174
64175 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
64176 Author: Stefan Roese <sr@denx.de>
64177 Date:   Tue Feb 20 13:15:40 2007 +0100
64178
64179     [PATCH] Clean up Katmai (440SPe) linker script
64180
64181     Signed-off-by: Stefan Roese <sr@denx.de>
64182
64183 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
64184 Author: Stefan Roese <sr@denx.de>
64185 Date:   Tue Feb 20 10:57:08 2007 +0100
64186
64187     [PATCH] Add support for the AMCC Katmai (440SPe) eval board
64188
64189     Signed-off-by: Stefan Roese <sr@denx.de>
64190
64191 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
64192 Author: Stefan Roese <sr@denx.de>
64193 Date:   Tue Feb 20 10:51:26 2007 +0100
64194
64195     [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
64196
64197     This patch switches to the desired I2C bus when the date/dtt
64198     commands are called. This can be configured using the
64199     CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
64200
64201     Signed-off-by: Stefan Roese <sr@denx.de>
64202
64203 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
64204 Author: Stefan Roese <sr@denx.de>
64205 Date:   Tue Feb 20 10:43:34 2007 +0100
64206
64207     [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
64208
64209     This patch adds support for the DDR2 controller used on the
64210     440SP and 440SPe. It is tested on the Katmai (440SPe) eval
64211     board and works fine with the following DIMM modules:
64212
64213     - Corsair CM2X512-5400C4 (512MByte per DIMM)
64214     - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
64215     - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
64216
64217     This patch also adds the nice functionality to dynamically
64218     create the TLB entries for the SDRAM (tlb.c). So we should
64219     never run into such problems with wrong (too short) TLB
64220     initialization again on these platforms.
64221
64222     Signed-off-by: Stefan Roese <sr@denx.de>
64223
64224 commit 36d830c9830379045f5daa9f542ac1c990c70068
64225 Author: Stefan Roese <sr@denx.de>
64226 Date:   Tue Feb 20 10:35:42 2007 +0100
64227
64228     [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
64229
64230     Since the existing 4xx SPD SDRAM initialization routines for the
64231     405 SDRAM controller and the 440 DDR controller don't have much in
64232     common this patch splits both drivers into different files.
64233
64234     This is in preparation for the 440 DDR2 controller support (440SP/e).
64235
64236     Signed-off-by: Stefan Roese <sr@denx.de>
64237
64238 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
64239 Author: Stefan Roese <sr@denx.de>
64240 Date:   Tue Feb 20 10:27:08 2007 +0100
64241
64242     [PATCH] PPC4xx: Add support for multiple I2C busses
64243
64244     This patch adds support for multiple I2C busses on the PPC4xx
64245     platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
64246     to make use of this feature.
64247
64248     It also merges the 405 and 440 i2c header files into one common
64249     file 4xx_i2c.h.
64250
64251     Also the 4xx i2c reset procedure is reworked since I experienced
64252     some problems with the first access on the 440SPe Katmai board.
64253
64254     Signed-off-by: Stefan Roese <sr@denx.de>
64255
64256 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
64257 Author: Grant Likely <grant.likely@secretlab.ca>
64258 Date:   Tue Feb 20 09:05:45 2007 +0100
64259
64260     [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
64261
64262     Block device read/write is anonymous data; there is no need to use a
64263     typed pointer.  void * is fine.  Also add a hook for block_read functions
64264
64265     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64266
64267 commit 53758fa20e935cc87eeb0519ed365df753a6f289
64268 Author: Grant Likely <grant.likely@secretlab.ca>
64269 Date:   Tue Feb 20 09:05:38 2007 +0100
64270
64271     [PATCH 8_9] Add block_write hook to block_dev_desc_t
64272
64273     Preparation for future patches which support block device writing
64274
64275     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64276
64277 commit f4852ebe6ca946a509667eb68be42026f837be76
64278 Author: Grant Likely <grant.likely@secretlab.ca>
64279 Date:   Tue Feb 20 09:05:31 2007 +0100
64280
64281     [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
64282
64283     Register read/write does not need to be wrapped in a full function.  The
64284     patch replaces them with macros.
64285
64286     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64287
64288 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
64289 Author: Grant Likely <grant.likely@secretlab.ca>
64290 Date:   Tue Feb 20 09:05:23 2007 +0100
64291
64292     [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
64293
64294     The code in this file is not a command; it is a device driver.  Put it in
64295     the correct place.  There are zero functional changes in this patch, it
64296     only moves the file.
64297
64298     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64299
64300 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
64301 Author: Grant Likely <grant.likely@secretlab.ca>
64302 Date:   Tue Feb 20 09:05:16 2007 +0100
64303
64304     [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
64305
64306     This patch is in preparation of additional changes to the sysace driver.
64307     May as well take this opportunity to fixup the inconsistent whitespace since
64308     this file is about to undergo major changes anyway.
64309
64310     There are zero functional changes in this patch.  It only cleans up the
64311     the whitespace.
64312
64313     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64314
64315 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
64316 Author: Grant Likely <grant.likely@secretlab.ca>
64317 Date:   Tue Feb 20 09:05:07 2007 +0100
64318
64319     [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
64320
64321     isprint is already defined in ctype.c
64322
64323     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64324
64325 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
64326 Author: Grant Likely <grant.likely@secretlab.ca>
64327 Date:   Tue Feb 20 09:05:00 2007 +0100
64328
64329     [PATCH 3_9] Move buffer print code from md command to common function
64330
64331     Printing a buffer is a darn useful thing.  Move the buffer print code
64332     into print_buffer() in lib_generic/
64333
64334     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64335
64336 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
64337 Author: Grant Likely <grant.likely@secretlab.ca>
64338 Date:   Tue Feb 20 09:04:52 2007 +0100
64339
64340     [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
64341
64342     Change the xilinx device drivers and board code to include config.h
64343     instead of xparameters.h directly.  config.h always includes the
64344     correct xparameters file.  This change reduces the posibility of
64345     including the wrong file when adding a new xilinx board port
64346
64347     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64348
64349 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
64350 Author: Grant Likely <grant.likely@secretlab.ca>
64351 Date:   Tue Feb 20 09:04:34 2007 +0100
64352
64353     [PATCH 1_4] Merge common get_dev() routines for block devices
64354
64355     Each of the filesystem drivers duplicate the get_dev routine.  This change
64356     merges them into a single function in part.c
64357
64358     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64359
64360 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
64361 Author: Wolfgang Denk <wd@pollux.denx.de>
64362 Date:   Mon Feb 19 23:09:51 2007 +0100
64363
64364     MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
64365     as root file system images.
64366
64367 commit 489c696ae7211218961d159e43e722d74c36fcbc
64368 Author: Sergei Poselenov <sposelenov@emcraft.com>
64369 Date:   Wed Feb 14 14:30:28 2007 +0300
64370
64371     MCC200: Extensions to Software Update Mechanism
64372
64373     Update / extend Software Update Mechanism for MCC200 board:
64374
64375     - Add support for rootfs image added. The environment variables
64376       "rootfs_st" and "rootfs_nd" can be used to override the default
64377       values of the image start and end.
64378     - Remove excessive key check code.
64379     - Code cleanup.
64380
64381 commit 4be23a12f23f1372634edc3215137b09768b7949
64382 Author: Stefan Roese <sr@denx.de>
64383 Date:   Mon Feb 19 08:23:15 2007 +0100
64384
64385     [PATCH] Update Sequoia EBC configuration (NOR FLASH)
64386
64387     As spotted by Matthias Fuchs, the READY input should not be
64388     enabled for the NOR FLASH on the Sequoia board.
64389
64390     Signed-off-by: Stefan Roese <sr@denx.de>
64391
64392 commit 2605e90bf676d48123afe5719a846d2b52b24aac
64393 Author: Heiko Schocher <hs@pollux.denx.de>
64394 Date:   Fri Feb 16 07:57:42 2007 +0100
64395
64396     [PATCH] Added support for the jupiter board.
64397
64398     Signed-off-by: Heiko Schocher <hs@denx.de>
64399
64400 commit 497d012e5be0194e1084073d0081eb1a844796b2
64401 Author: Gary Jennejohn <garyj@pollux.denx.de>
64402 Date:   Mon Feb 12 13:11:50 2007 +0100
64403
64404     LPC2292: patch from Siemens.
64405
64406 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
64407 Author: Stefan Roese <sr@denx.de>
64408 Date:   Sat Feb 10 08:49:31 2007 +0100
64409
64410     [PATCH] Add missing p3mx.h file to repository (ups)
64411
64412     Signed-off-by: Stefan Roese <sr@denx.de>
64413
64414 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
64415 Author: Bartlomiej Sieka <tur@semihalf.com>
64416 Date:   Fri Feb 9 10:45:42 2007 +0100
64417
64418     [Motion-PRO] Preliminary support for the Motion-PRO board.
64419
64420 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
64421 Author: Stefan Roese <sr@denx.de>
64422 Date:   Wed Feb 7 16:51:08 2007 +0100
64423
64424     [PATCH] Update some AMCC 4xx board config files (set initrd_high)
64425
64426     Some boards that can have more than 768MBytes of SDRAM need to
64427     set "initrd_high", so that the initrd can be accessed by the
64428     Linux kernel.
64429
64430     Signed-off-by: Stefan Roese <sr@denx.de>
64431
64432 commit 7372ca68227930d03cffa548310524cad5b96733
64433 Author: Stefan Roese <sr@denx.de>
64434 Date:   Fri Feb 2 12:44:22 2007 +0100
64435
64436     [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
64437
64438     Previously the strapping DCR/SDR was read to determine if the internal PCI
64439     arbiter is enabled or not. This strapping bit can be overridden, so now
64440     the current status is read from the correct DCR/SDR register.
64441
64442     Signed-off-by: Stefan Roese <sr@denx.de>
64443
64444 commit 2aa54f651a42d198673318f07a20c89a43e4d197
64445 Author: Stefan Roese <sr@denx.de>
64446 Date:   Fri Feb 2 12:42:08 2007 +0100
64447
64448     [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
64449
64450     Signed-off-by: Stefan Roese <sr@denx.de>
64451
64452 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
64453 Author: Stefan Roese <sr@denx.de>
64454 Date:   Thu Feb 1 13:22:41 2007 +0100
64455
64456     [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
64457
64458     When PCI PNP is enabled the pci pnp configuration routine is called
64459     which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
64460     problems with some PCI cards. For now disable the PCI PNP configuration.
64461
64462     Signed-off-by: Stefan Roese <sr@denx.de>
64463
64464 commit 2902fadade3be7659467e8d074048c6b7068f5c0
64465 Author: Stefan Roese <sr@denx.de>
64466 Date:   Wed Jan 31 16:56:10 2007 +0100
64467
64468     [PATCH] Update 440EPx/440GRx cpu detection
64469
64470     Signed-off-by: Stefan Roese <sr@denx.de>
64471
64472 commit d5ea287b02a6945c3977410e364a879dd1a555c8
64473 Author: Stefan Roese <sr@denx.de>
64474 Date:   Wed Jan 31 16:38:04 2007 +0100
64475
64476     [PATCH] Update esd cpci5200 files
64477
64478     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
64479
64480 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
64481 Author: Stefan Roese <sr@denx.de>
64482 Date:   Wed Jan 31 16:37:34 2007 +0100
64483
64484     [PATCH] Add support for esd mecp5200 board
64485
64486     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
64487
64488 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
64489 Author: Stefan Roese <sr@denx.de>
64490 Date:   Wed Jan 31 12:38:50 2007 +0100
64491
64492     [PATCH] Remove unneccessary yellowstone board config file
64493
64494     Signed-off-by: Stefan Roese <sr@denx.de>
64495
64496 commit e802594b6fa1b166308820c276b96dc0d7cc731c
64497 Author: Stefan Roese <sr@denx.de>
64498 Date:   Tue Jan 30 17:06:10 2007 +0100
64499
64500     [PATCH] Update Sequoia (440EPx) config file
64501
64502     The config file now handles the 2nd target, the Rainier (440GRx)
64503     evaluation board better. Additionally the PPC input clock was
64504     adjusted to match the correct value of 33.0 MHz.
64505
64506     Signed-off-by: Stefan Roese <sr@denx.de>
64507
64508 commit 700200c67e73b83751418abe7815840dca8fd6cb
64509 Author: Stefan Roese <sr@denx.de>
64510 Date:   Tue Jan 30 17:04:19 2007 +0100
64511
64512     [PATCH] Merge Yosemite & Yellowstone board ports
64513
64514     Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
64515     share one config file and all board specific files. This way we
64516     don't have to maintain two different sets of files for nearly
64517     identical boards.
64518
64519     Signed-off-by: Stefan Roese <sr@denx.de>
64520
64521 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
64522 Author: Stefan Roese <sr@denx.de>
64523 Date:   Tue Jan 30 15:01:49 2007 +0100
64524
64525     [PATCH] Update Prodrive SCPU (PDNB3 variant) board
64526
64527     SCPU doesn't use redundant environment in flash.
64528
64529     Signed-off-by: Stefan Roese <sr@denx.de>
64530
64531 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
64532 Author: Stefan Roese <sr@denx.de>
64533 Date:   Tue Jan 30 12:51:07 2007 +0100
64534
64535     [PATCH] alpr: Update alpr board config file
64536
64537     Signed-off-by: Stefan Roese <sr@denx.de>
64538
64539 commit f8db84f132b1e335f20f96138a1f09ed97b08664
64540 Author: Wolfgang Denk <wd@pollux.denx.de>
64541 Date:   Tue Jan 30 00:50:40 2007 +0100
64542
64543     LPC2292 SODIMM port coding style cleanup.
64544
64545 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
64546 Author: Gary Jennejohn <garyj@pollux.denx.de>
64547 Date:   Wed Jan 24 12:16:56 2007 +0100
64548
64549     Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
64550
64551 commit 2daf046ba627f85f44195815778140039636244e
64552 Author: Bartlomiej Sieka <tur@semihalf.com>
64553 Date:   Tue Jan 23 17:22:06 2007 +0100
64554
64555     [iDMR] Add MTD and JFFS2 support, also add default partition definition.
64556
64557 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
64558 Author: Bartlomiej Sieka <tur@semihalf.com>
64559 Date:   Tue Jan 23 14:21:14 2007 +0100
64560
64561     [iDMR] Flash driver on initialisation write-protects some sectors,
64562     currently sectors 0-3. Sector 3 does not need to be protected, though
64563     (U-boot occupies sectors 0-1 and the environment sector 2). This commit
64564     fixes this, i.e., only sectors 0-2 are protected.
64565
64566 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
64567 Author: Bartlomiej Sieka <tur@semihalf.com>
64568 Date:   Tue Jan 23 14:11:22 2007 +0100
64569
64570     [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
64571     "mii device" results in "Unexpected exception"). Fixing this properly
64572     requires some clean-up in the FEC drivers infrastructure for ColdFire, so
64573     this commit disables MII commads for now.
64574
64575 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
64576 Author: Bartlomiej Sieka <tur@semihalf.com>
64577 Date:   Tue Jan 23 13:25:22 2007 +0100
64578
64579     [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
64580     Identification Register (CIR).
64581
64582 commit fdef388758506765d4d6a7155c8f1584c63ff581
64583 Author: roy zang <tie-fei.zang@freescale.com>
64584 Date:   Mon Jan 22 13:19:21 2007 +0800
64585
64586     use  CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
64587     The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
64588     fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
64589     mpc7448hpc2 board.
64590
64591 commit a4012396645533aef218354eeba754dff0deace8
64592 Author: Wolfgang Denk <wd@pollux.denx.de>
64593 Date:   Fri Jan 19 23:08:39 2007 +0100
64594
64595     Minor code cleanup.
64596
64597 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
64598 Author: Heiko Schocher <hs@pollux.denx.de>
64599 Date:   Fri Jan 19 19:57:10 2007 +0100
64600
64601     [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
64602
64603     Signed-off-by: Heiko Schocher <hs@denx.de>
64604
64605 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
64606 Author: Heiko Schocher <hs@pollux.denx.de>
64607 Date:   Fri Jan 19 18:05:26 2007 +0100
64608
64609     [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
64610                  if you must swap the bytes between reading/writing.
64611                  (Needed for the SC3 board)
64612
64613     Signed-off-by: Heiko Schocher <hs@denx.de>
64614
64615 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
64616 Author: Stefan Roese <sr@denx.de>
64617 Date:   Thu Jan 18 16:05:47 2007 +0100
64618
64619     [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
64620
64621     Signed-off-by: Stefan Roese <sr@denx.de>
64622
64623 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
64624 Author: Stefan Roese <sr@denx.de>
64625 Date:   Thu Jan 18 11:54:52 2007 +0100
64626
64627     [PATCH] Update Prodrive P3Mx support
64628
64629     Signed-off-by: Stefan Roese <sr@denx.de>
64630
64631 commit 34167a36c29ee946b727465db5c014746a08e978
64632 Author: Stefan Roese <sr@denx.de>
64633 Date:   Thu Jan 18 11:48:10 2007 +0100
64634
64635     [PATCH] Add missing Taishan config file
64636
64637     Signed-off-by: Stefan Roese <sr@denx.de>
64638
64639 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
64640 Author: Heiko Schocher <hs@pollux.denx.de>
64641 Date:   Thu Jan 18 11:28:51 2007 +0100
64642
64643     [PATCH] Fix: Compilerwarnings for SC3 board.
64644                  The EBC Configuration Register is now by CFG_EBC_CFG definable
64645                  Added JFFS2 support for the SC3 board.
64646
64647     Signed-off-by: Heiko Schocher <hs@denx.de>
64648
64649 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
64650 Author: Stefan Roese <sr@denx.de>
64651 Date:   Thu Jan 18 10:25:34 2007 +0100
64652
64653     [PATCH] Add support for AMCC Taishan PPC440GX eval board
64654
64655     Signed-off-by: Stefan Roese <sr@denx.de>
64656
64657 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
64658 Author: Wolfgang Denk <wd@pollux.denx.de>
64659 Date:   Tue Jan 16 18:30:50 2007 +0100
64660
64661     Raname solidcard3 into sc3; add redundant env for sc3
64662
64663 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
64664 Author: Wolfgang Denk <wd@pollux.denx.de>
64665 Date:   Tue Jan 16 12:46:35 2007 +0100
64666
64667     Update default environment for Solidcard3
64668
64669 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
64670 Author: Stefan Roese <sr@denx.de>
64671 Date:   Mon Jan 15 09:46:29 2007 +0100
64672
64673     [PATCH] Fix 440SPe rev B detection from previous patch
64674
64675     Signed-off-by: Stefan Roese <sr@denx.de>
64676
64677 commit a443d31410c571ee8f970da819a44d698fdd6b1f
64678 Author: Heiko Schocher <hs@pollux.denx.de>
64679 Date:   Sun Jan 14 13:35:31 2007 +0100
64680
64681         [FIX] correct I2C Writes for the LM81 Sensor.
64682
64683         Signed-off-by: Heiko Schocher <hs@denx.de>
64684
64685 commit 0bba5452835f19a61204edcda3a58112fd8e2208
64686 Author: Wolfgang Denk <wd@pollux.denx.de>
64687 Date:   Sat Jan 13 11:17:10 2007 +0100
64688
64689     Undo commit 3033ebb2: reset command does not take any arguments
64690
64691     Haiying Wang's modification to the reset command was broken, undo it.
64692
64693     Signed-off-by: Wolfgang Denk <wd@denx.de>
64694
64695 commit 95981778cff0038fd9941044d6a3eda810e33258
64696 Author: Stefan Roese <sr@denx.de>
64697 Date:   Sat Jan 13 08:01:03 2007 +0100
64698
64699     [PATCH] Update 440SP(e) cpu revisions
64700
64701     Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
64702
64703     Signed-off-by: Stefan Roese <sr@denx.de>
64704
64705 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
64706 Author: Stefan Roese <sr@denx.de>
64707 Date:   Sat Jan 13 07:59:56 2007 +0100
64708
64709     [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
64710
64711     Now the board revision and the current PCI bus speed are printed after
64712     the board message.
64713
64714     Also the EBC initialising is now done via defines in the board config
64715     file.
64716
64717     Signed-off-by: Stefan Roese <sr@denx.de>
64718
64719 commit 36adff362c2c0141ff8a810d42a7e478f779130f
64720 Author: Stefan Roese <sr@denx.de>
64721 Date:   Sat Jan 13 07:59:19 2007 +0100
64722
64723     [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
64724
64725     Now the board revision and the current PCI bus speed are printed after
64726     the board message.
64727
64728     Also the EBC initialising is now done via defines in the board config
64729     file.
64730
64731     Signed-off-by: Stefan Roese <sr@denx.de>
64732
64733 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
64734 Author: Stefan Roese <sr@denx.de>
64735 Date:   Sat Jan 13 07:57:51 2007 +0100
64736
64737     [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
64738
64739     Now the board revision and the current PCI bus speed are printed after
64740     the board message.
64741
64742     Signed-off-by: Stefan Roese <sr@denx.de>
64743
64744 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
64745 Author: Heiko Schocher <hs@pollux.denx.de>
64746 Date:   Thu Jan 11 15:44:44 2007 +0100
64747
64748         Added support for the SOLIDCARD III board from Eurodesign
64749
64750         Signed-off-by: Heiko Schocher <hs@denx.de>
64751
64752 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
64753 Author: Reinhard Thies <Reinhard.Thies@web.de>
64754 Date:   Wed Jan 10 14:41:14 2007 +0100
64755
64756     Adjusted default environment for cam5200 board.
64757
64758 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
64759 Author: Wolfgang Denk <wd@pollux.denx.de>
64760 Date:   Wed Jan 10 15:35:52 2007 +0100
64761
64762     Update CHANGELOG
64763
64764 commit 787fa15860a57833e50bd30555079a9cd4e519b8
64765 Author: Wolfgang Denk <wd@pollux.denx.de>
64766 Date:   Wed Jan 10 01:28:39 2007 +0100
64767
64768     Fix auto_update for MCC200 board.
64769
64770     The invocation of do_auto_update() is moved to the end of the
64771     misc_init_r() function, after the flash mappings have been
64772     initialized. Please find attached a patch that implements that
64773     change.
64774
64775     Also correct the decoding of the keypad status. With this update, the
64776     key that will trigger the update is Column 2, Row 2.
64777
64778 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
64779 Author: Marian Balakowicz <m8@semihalf.com>
64780 Date:   Wed Jan 10 00:26:15 2007 +0100
64781
64782     CAM5200 flash driver modifications:
64783     - use CFI driver (replaces custom flash driver) for main 'cam5200' target
64784     - add second build target 'cam5200_niosflash' which still uses custom driver
64785
64786 commit 67fea022fa957f59653b5238c7496f80a6b70432
64787 Author: Markus Klotzbuecher <mk@denx.de>
64788 Date:   Tue Jan 9 16:02:48 2007 +0100
64789
64790     SPC1920: cleanup memory contoller setup
64791
64792 commit 8fc2102faa23593c80381437c09f7745a14deb40
64793 Author: Markus Klotzbuecher <mk@denx.de>
64794 Date:   Tue Jan 9 14:57:14 2007 +0100
64795
64796     Fix the cpu speed setup to work with all boards.
64797
64798 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
64799 Author: Markus Klotzbuecher <mk@denx.de>
64800 Date:   Tue Jan 9 14:57:13 2007 +0100
64801
64802     SPC1920: add support for the FM18L08 Ramtron FRAM
64803
64804 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
64805 Author: Markus Klotzbuecher <mk@denx.de>
64806 Date:   Tue Jan 9 14:57:13 2007 +0100
64807
64808     SPC1920: update the HPI register addresses to work with the second
64809     generation of hardware
64810
64811 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
64812 Author: Markus Klotzbuecher <mk@creamnet.de>
64813 Date:   Tue Jan 9 14:57:13 2007 +0100
64814
64815     Miscellanious spc1920 related cleanups
64816
64817 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
64818 Author: Markus Klotzbuecher <mk@denx.de>
64819 Date:   Tue Jan 9 14:57:12 2007 +0100
64820
64821     SPC1920 GO/NOGO led should be set to color red in U-Boot
64822
64823 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
64824 Author: Markus Klotzbuecher <mk@creamnet.de>
64825 Date:   Tue Jan 9 14:57:12 2007 +0100
64826
64827     Add support for the DS3231 RTC
64828
64829 commit 8139567b60d678584b05f0718a681f2047c5e14f
64830 Author: Markus Klotzbuecher <mk@creamnet.de>
64831 Date:   Tue Jan 9 14:57:11 2007 +0100
64832
64833     SMC1 uses external CLK4 instead of BRG on spc1920
64834
64835 commit d8d9de1a02fbd880b613d607143d1f57342affc7
64836 Author: Markus Klotzbuecher <mk@creamnet.de>
64837 Date:   Tue Jan 9 14:57:10 2007 +0100
64838
64839     Update the SPC1920 CMB PLD driver
64840
64841 commit 3f34f869162750e5e999fd140f884f5de952bcfe
64842 Author: Markus Klotzbuecher <mk@creamnet.de>
64843 Date:   Tue Jan 9 14:57:10 2007 +0100
64844
64845     Add / enable I2C support on the spc1920 board
64846
64847 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
64848 Author: Markus Klotzbuecher <mk@creamnet.de>
64849 Date:   Tue Jan 9 14:57:10 2007 +0100
64850
64851     Add support for the tms320671x host port interface (HPI)
64852
64853 commit f4eb54529bb3664c3a562e488b460fe075f79d67
64854 Author: Wolfgang Denk <wd@pollux.denx.de>
64855 Date:   Sun Jan 7 00:13:11 2007 +0100
64856
64857     Prepare for release 1.2.0
64858
64859 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
64860 Author: Stefan Roese <sr@denx.de>
64861 Date:   Sat Jan 6 15:58:09 2007 +0100
64862
64863     [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
64864
64865     This patch fixes a problem with an incorrect setup for the refresh
64866     timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
64867
64868     Signed-off-by: Stefan Roese <sr@denx.de>
64869
64870 commit f16c1da9577f06c5fc08651a4065537407de4635
64871 Author: Stefan Roese <sr@denx.de>
64872 Date:   Sat Jan 6 15:56:13 2007 +0100
64873
64874     [PATCH] Update ALPR board files
64875
64876     This update brings the ALPR board support to the newest version.
64877     It also fixes a problem with the NAND driver.
64878
64879     Signed-off-by: Stefan Roese <sr@denx.de>
64880
64881 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
64882 Author: Stefan Roese <sr@denx.de>
64883 Date:   Fri Jan 5 11:46:05 2007 +0100
64884
64885     [PATCH] nand: Fix problem with oobsize calculation
64886
64887     Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
64888
64889     The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
64890     returns a 0x15. In the code fragment below bits [1:0] determine the
64891     page size, it is ANDed via "(extid & 0x3)" then shifted out. The
64892     next field is also ANDed with 0x3. However this is a one bit field
64893     as defined in the Hynix and Samsung parts in the 4th ID byte that
64894     determins the oobsize, not a two bit field. It works on Samsung as
64895     bits[3:2] are 01. However for the Hynix there is a 11 in these two
64896     bits, so the oob size gets messed up.
64897
64898     I checked the correct linux code and the suggested fix from Brian is
64899     also available in the linux nand mtd driver.
64900
64901     Signed-off-by: Stefan Roese <sr@denx.de>
64902
64903 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
64904 Author: Stefan Roese <sr@denx.de>
64905 Date:   Fri Jan 5 10:40:36 2007 +0100
64906
64907     [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
64908
64909     This fix will make the MAL burst disabling patch for the Linux
64910     EMAC driver obsolete.
64911
64912     Signed-off-by: Stefan Roese <sr@denx.de>
64913
64914 commit 023889838282b6237b401664f22dd22dfba2c066
64915 Author: Stefan Roese <sr@denx.de>
64916 Date:   Fri Jan 5 10:38:05 2007 +0100
64917
64918     [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
64919
64920     This code will optimize the DDR2 controller setup on a board specific
64921     basis.
64922
64923     Note: This code doesn't work right now on the NAND booting image for the
64924     Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
64925
64926     Signed-off-by: Stefan Roese <sr@denx.de>
64927
64928 commit cce4acbb68398634b8d011ed7bb0d12269c84230
64929 Author: Bartlomiej Sieka <tur@semihalf.com>
64930 Date:   Thu Dec 28 19:08:21 2006 +0100
64931
64932     Few V38B changes:
64933       - fix a typo in V38B config file
64934       - move watchdog initialisation earlier in the boot process
64935       - add "wdt=off" to default kernel command line (disables kernel watchdog)
64936
64937 commit 92eb729bad876725aeea908d2addba0800620840
64938 Author: Wolfgang Denk <wd@pollux.denx.de>
64939 Date:   Wed Dec 27 01:26:13 2006 +0100
64940
64941     Fix bug in adaption of Stefano Babic's CFI driver patch.
64942
64943 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
64944 Author: Wolfgang Denk <wd@pollux.denx.de>
64945 Date:   Sun Dec 24 01:42:57 2006 +0100
64946
64947     Minor code cleanup.
64948
64949 commit d784fdb05900ada3686d5778783e1fb328e9fb66
64950 Author: Stefano Babic <sbabic@denx.de>
64951 Date:   Tue Dec 12 00:22:42 2006 +0100
64952
64953     Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
64954
64955 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
64956 Author: Stefan Roese <sr@denx.de>
64957 Date:   Fri Dec 22 14:29:40 2006 +0100
64958
64959     [PATCH] Fix sequoia flash autodetection (finally correct)
64960
64961     Now 32MByte and 64MByte FLASH is know to work and other
64962     configurations should work too.
64963
64964     Signed-off-by: Stefan Roese <sr@denx.de>
64965
64966 commit 82e5236a8b719543643fd26d5827938ab2b94818
64967 Author: Wolfgang Denk <wd@pollux.denx.de>
64968 Date:   Fri Dec 22 10:30:26 2006 +0100
64969
64970     Minor code cleanup; update CHANGELOG.
64971
64972 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
64973 Author: Heiko Schocher <hs@pollux.denx.de>
64974 Date:   Thu Dec 21 17:17:02 2006 +0100
64975
64976     Added support for the TQM8272 board from TQ
64977
64978     Signed-off-by: Heiko Schocher <hs@denx.de>
64979
64980 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
64981 Author: Heiko Schocher <hs@pollux.denx.de>
64982 Date:   Thu Dec 21 16:14:48 2006 +0100
64983
64984     [PATCH] Add support for the UC101 board from MAN.
64985
64986     Signed-off-by: Heiko Schocher <hs@denx.de>
64987
64988 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
64989 Author: Bartlomiej Sieka <tur@semihalf.com>
64990 Date:   Wed Dec 20 00:29:43 2006 +0100
64991
64992     Fix to make the baudrate changes immediate for the MCF52x2 family.
64993
64994 commit daa6e418bcc0c717752e8de939c213c790286096
64995 Author: Bartlomiej Sieka <tur@semihalf.com>
64996 Date:   Wed Dec 20 00:27:32 2006 +0100
64997
64998     Preliminary support for the iDMR board (ColdFire).
64999
65000 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
65001 Author: Andrei Safronov <safronov@pollux.denx.de>
65002 Date:   Fri Dec 8 16:23:08 2006 +0100
65003
65004     automatic update mechanism
65005
65006 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
65007 Author: roy zang <tie-fei.zang@freescale.com>
65008 Date:   Mon Dec 4 17:56:59 2006 +0800
65009
65010     Slight code clean up.
65011     Add comments, delete duplicate define and remove spaces.
65012     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65013
65014 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
65015 Author: roy zang <tie-fei.zang@freescale.com>
65016 Date:   Mon Dec 4 17:54:21 2006 +0800
65017
65018     Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
65019     multiplier table can not refect the real PLL clock behavior of these
65020     processors. Please refer to the hardware specification for detailed
65021     information of the corresponding processors.
65022     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65023
65024 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
65025 Author: roy zang <tie-fei.zang@freescale.com>
65026 Date:   Mon Dec 4 14:46:23 2006 +0800
65027
65028     Remove the static MAC address, ip address, server ip, netmask and
65029     gateway ip for network setting.
65030     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65031
65032 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
65033 Author: roy zang <tie-fei.zang@freescale.com>
65034 Date:   Mon Dec 4 14:33:08 2006 +0800
65035
65036     Remove the duplicate memory test code for mpc744ihpc2 board.
65037     If a memory test is needed, please use the functions in
65038     post/memory.c or memtest command.
65039     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65040
65041 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
65042 Author: roy zang <tie-fei.zang@freescale.com>
65043 Date:   Fri Dec 1 19:01:25 2006 +0800
65044
65045     Fix the exception occuring in RAM table search issue.
65046     The original search_one_table() function code can only processes the search
65047     for the exception occurring in FLASH/ROM, because the exception and fixup
65048     table usually locate in FLASH. If the exception address is also in
65049     FLASH, it will be OK.
65050     If the exception occurs in RAM, after the u-boot relocation, a
65051     relocation offset should be added.
65052
65053     clean up the code in cpu/74xx_7xx/cpu.c
65054
65055     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65056
65057 commit ee311214e0d216f904feea269599d0934bf71f23
65058 Author: roy zang <tie-fei.zang@freescale.com>
65059 Date:   Fri Dec 1 11:47:36 2006 +0800
65060
65061     Clean up the code according to codestyle:
65062     (1) remove some C++ comments.
65063     (2) remove trailing white space.
65064     (3) remove trailing empty line.
65065     (4) Indentation by table.
65066     (5) remove {} in one line condition.
65067     (6) add space before '(' in function call.
65068     Remove some weird printf () output.
65069     Add necessary comments.
65070     Modified Makefile to support building in a separate directory.
65071
65072 commit dd520bf314c7add4183c5191692180f576f96b60
65073 Author: Wolfgang Denk <wd@pollux.denx.de>
65074 Date:   Thu Nov 30 18:02:20 2006 +0100
65075
65076     Code cleanup.
65077
65078 commit 8d9a8610b8256331132227e9e6585c6bd5742787
65079 Author: Wolfgang Denk <wd@pollux.denx.de>
65080 Date:   Thu Nov 30 01:54:07 2006 +0100
65081
65082     Code cleanup. Update CHANGELOG.
65083
65084 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
65085 Author: Grant Likely <grant.likely@secretlab.ca>
65086 Date:   Wed Nov 29 16:23:42 2006 +0100
65087
65088     [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
65089
65090     The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
65091     not the XLB frequency.
65092
65093     This patch depends on the previous patches for MPC52xx device tree support
65094
65095     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65096     Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
65097
65098 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
65099 Author: Stefan Roese <sr@denx.de>
65100 Date:   Wed Nov 29 15:42:37 2006 +0100
65101
65102     [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
65103
65104     This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
65105     and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
65106     quite similar and share the same board directory "prodrive/p3mx"
65107     and the same config file "p3mx.h".
65108
65109     Signed-off-by: Stefan Roese <sr@denx.de>
65110
65111 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
65112 Author: Stefan Roese <sr@denx.de>
65113 Date:   Wed Nov 29 12:53:15 2006 +0100
65114
65115     [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
65116
65117     In the bootvx command the load address was only read from the env
65118     variable "loadaddr" and not optionally passed as paramter as described
65119     in the help. This is fixed with this patch. The behaviour is now the
65120     same as in the bootelf command.
65121
65122     Signed-off-by: Stefan Roese <sr@denx.de>
65123
65124 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
65125 Author: Stefan Roese <sr@denx.de>
65126 Date:   Wed Nov 29 12:03:57 2006 +0100
65127
65128     [PATCH] include/ppc440.h minor error affecting interrupts
65129
65130     Fixed include/ppc440.c for UIC address Bug
65131
65132     Corrects bug affecting the addresses for the universal interrupt
65133     controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
65134
65135     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
65136     Signed-off-by: Stefan Roese <sr@denx.de>
65137
65138 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
65139 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
65140 Date:   Tue Nov 28 16:17:27 2006 -0600
65141
65142     Make fsl-i2c not conflict with SOFT I2C
65143
65144     Signed-off-by: Timur Tabi <timur@freescale.com>
65145
65146 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
65147 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
65148 Date:   Tue Nov 28 16:17:18 2006 -0600
65149
65150     Fix I2C master address initialization.
65151
65152     Signed-off-by: Timur Tabi <timur@freescale.com>
65153
65154 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
65155 Author: Kim Phillips <kim.phillips@freescale.com>
65156 Date:   Tue Nov 28 23:31:19 2006 -0600
65157
65158     Assign maintainers for mpc8349emds and mpc8360emds
65159
65160     Dave for mpc8360emds, and me for mpc8349emds.
65161
65162 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
65163 Author: Kim Phillips <kim.phillips@freescale.com>
65164 Date:   Tue Nov 28 23:28:33 2006 -0600
65165
65166     Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
65167
65168     give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
65169     since they are passed by reference to ucc_get_cmxucr_reg and assigned.
65170
65171 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
65172 Author: Timur Tabi <timur@freescale.com>
65173 Date:   Tue Nov 28 12:09:35 2006 -0600
65174
65175     mpc83xx: Miscellaneous code style fixes
65176
65177     Implement various code style fixes and similar changes.
65178
65179     Signed-off-by: Timur Tabi <timur@freescale.com>
65180
65181 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
65182 Author: Stefan Roese <sr@denx.de>
65183 Date:   Tue Nov 28 17:55:49 2006 +0100
65184
65185     [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
65186
65187     This patch adds the code and configuration necessary to boot with an
65188     arch/powerpc Linux kernel.
65189
65190     Signed-off-by: Grant Likely <grant.likely@gmail.com>
65191     Acked-by: Jon Loeliger <jdl@freescale.com>
65192
65193 commit e732faec95a83cb468b4850ae807c8301dde8f6a
65194 Author: Stefan Roese <sr@denx.de>
65195 Date:   Tue Nov 28 16:09:24 2006 +0100
65196
65197     [PATCH] PPC4xx: 440SP Rev. C detection added
65198
65199     Signed-off-by: Stefan Roese <sr@denx.de>
65200
65201 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
65202 Author: Stefan Roese <sr@denx.de>
65203 Date:   Tue Nov 28 11:04:45 2006 +0100
65204
65205     [PATCH] nand: Fix patch merge problem
65206
65207     Signed-off-by: Stefan Roese <sr@denx.de>
65208
65209 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
65210 Author: Stefan Roese <sr@denx.de>
65211 Date:   Tue Nov 28 11:04:45 2006 +0100
65212
65213     [PATCH] nand: Fix patch merge problem
65214
65215     Signed-off-by: Stefan Roese <sr@denx.de>
65216
65217 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
65218 Author: Wolfgang Denk <wd@pollux.denx.de>
65219 Date:   Mon Nov 27 22:53:53 2006 +0100
65220
65221     Update CHANGELOG
65222
65223 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
65224 Author: Stefan Roese <sr@denx.de>
65225 Date:   Mon Nov 27 17:43:25 2006 +0100
65226
65227     [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
65228
65229     Patch below corrects the setting of the zmiifer register, it was
65230     overwritting the register rather than ORing the settings.
65231
65232     Signed-off-by: Neil Wilson <NWilson@airspan.com>
65233     Signed-off-by: Stefan Roese <sr@denx.de>
65234
65235 commit d1a72545296800b7e219f93104ad5836f0003d66
65236 Author: Stefan Roese <sr@denx.de>
65237 Date:   Mon Nov 27 17:34:10 2006 +0100
65238
65239     [PATCH] Select NAND embedded environment from board configuration
65240
65241     The current NAND Bootloader setup forces the environment
65242     variables to be in line with the bootloader. This change
65243     enables the configuration to be made in the board include
65244     file instead so that it can be individually enabled.
65245
65246     Signed-off-by: Nick Spence <nick.spence@freescale.com>
65247     Signed-off-by: Stefan Roese <sr@denx.de>
65248
65249 commit 15784862857c3c2214498defcfed84ff137fb81e
65250 Author: Stefan Roese <sr@denx.de>
65251 Date:   Mon Nov 27 17:22:19 2006 +0100
65252
65253     [PATCH] nand_wait() timeout fixes
65254
65255     Two fixes for the nand_wait() function in
65256     drivers/nand/nand_base.c:
65257
65258     1. Use correct timeouts. The original timeouts in Linux
65259     source are 400ms and 20ms not 40s and 20s
65260
65261     2. Return correct error value in case of timeout. 0 is
65262     interpreted as OK.
65263
65264     Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
65265     Signed-off-by: Stefan Roese <sr@denx.de>
65266
65267 commit da5553b095bf04f4f109ad7e565dae3aba47b230
65268 Author: Stefan Roese <sr@denx.de>
65269 Date:   Mon Nov 27 17:04:06 2006 +0100
65270
65271     [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
65272
65273     This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
65274     arguments to bootm.  It removes the getenv("disable_of") test that used
65275     to be used for this purpose.
65276
65277     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65278     Acked-by: Jon Loeliger <jdl@freescale.com>
65279
65280 commit a9398e018593782c5fa7d0741955fc1256b34c1e
65281 Author: Wolfgang Denk <wd@pollux.denx.de>
65282 Date:   Mon Nov 27 15:32:42 2006 +0100
65283
65284     Minor code cleanup. Update CHANGELOG.
65285
65286 commit 1729b92cde575476684bffe819d0b7791b57bff2
65287 Author: Stefan Roese <sr@denx.de>
65288 Date:   Mon Nov 27 14:52:04 2006 +0100
65289
65290     [PATCH] 4xx: Fix problem with board specific reset code (now for real)
65291
65292     Signed-off-by: Stefan Roese <sr@denx.de>
65293
65294 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
65295 Author: Stefan Roese <sr@denx.de>
65296 Date:   Mon Nov 27 14:49:51 2006 +0100
65297
65298     [PATCH] alpr: remove unused board specific flash driver
65299
65300     Signed-off-by: Stefan Roese <sr@denx.de>
65301
65302 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
65303 Author: Stefan Roese <sr@denx.de>
65304 Date:   Mon Nov 27 14:48:41 2006 +0100
65305
65306     [PATCH] 4xx: Fix problem with board specific reset code
65307
65308     Signed-off-by: Stefan Roese <sr@denx.de>
65309
65310 commit ec0c2ec725aec9524a177a77ce75559e644a931a
65311 Author: Stefan Roese <sr@denx.de>
65312 Date:   Mon Nov 27 14:46:06 2006 +0100
65313
65314     [PATCH] Remove testing 4xx enet PHY setup
65315
65316     Signed-off-by: Stefan Roese <sr@denx.de>
65317
65318 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
65319 Author: Stefan Roese <sr@denx.de>
65320 Date:   Mon Nov 27 14:12:17 2006 +0100
65321
65322     [PATCH] Update Prodrive ALPR board support (440GX)
65323
65324     Signed-off-by: Stefan Roese <sr@denx.de>
65325
65326 commit 58b485776698c3d71ec5a215e392123b4c15afa3
65327 Author: Markus Klotzbuecher <mk@denx.de>
65328 Date:   Mon Nov 27 11:51:21 2006 +0100
65329
65330     Add a small README with information on the generic ohci driver.
65331
65332 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
65333 Author: Markus Klotzbuecher <mk@denx.de>
65334 Date:   Mon Nov 27 11:46:46 2006 +0100
65335
65336     Fix some endianness issues related to the generic ohci driver
65337
65338 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
65339 Author: Markus Klotzbuecher <mk@denx.de>
65340 Date:   Mon Nov 27 11:44:58 2006 +0100
65341
65342     Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
65343     to choose between the old and the generic OHCI drivers.
65344
65345 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
65346 Author: Markus Klotzbuecher <mk@denx.de>
65347 Date:   Mon Nov 27 11:43:09 2006 +0100
65348
65349     Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
65350     and adapted board configs TQM5200 and yosemite accordingly. This commit
65351     also makes the maximum number of root hub ports configurable
65352     (CFG_USB_OHCI_MAX_ROOT_PORTS).
65353
65354 commit 78d620ebb5871d252270dedfad60c6568993b780
65355 Author: Wolfgang Denk <wd@atlas.denx.de>
65356 Date:   Thu Nov 23 22:58:58 2006 +0100
65357
65358     Updates for TQM5200 modules:
65359     - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
65360     - simplify "udate" definitions
65361
65362 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
65363 Author: Stefan Roese <sr@denx.de>
65364 Date:   Wed Nov 22 13:20:50 2006 +0100
65365
65366     [PATCH] PPC4xx start.S: Fix for processor errata
65367
65368     Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
65369     errata 1.12: 440_33 by moving patch up in code.
65370
65371     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
65372     Signed-off-by: Stefan Roese <sr@denx.de>
65373
65374 commit 4ef6251403f637841000e0fef9e832aa01339822
65375 Author: Stefan Roese <sr@denx.de>
65376 Date:   Mon Nov 20 20:39:52 2006 +0100
65377
65378     [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
65379
65380     Signed-off-by: Stefan Roese <sr@denx.de>
65381
65382 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
65383 Author: Wolfgang Denk <wd@pollux.denx.de>
65384 Date:   Mon Nov 20 10:28:30 2006 +0100
65385
65386     Update CHANGELOG
65387
65388 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
65389 Author: Stefan Roese <sr@denx.de>
65390 Date:   Mon Nov 13 13:55:24 2006 +0100
65391
65392     [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
65393
65394        * Adds support for AMD command set Top Boot flash geometry reversal
65395        * Adds support for reading JEDEC Manufacturer ID and Device ID
65396        * Adds support for displaying command set, manufacturer id and
65397          device ids (flinfo)
65398        * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
65399        * Removes outdated change history (refer to git log instead)
65400
65401     Signed-off-by: Tolunay Orkun <listmember@orkun.us>
65402     Signed-off-by: Stefan Roese <sr@denx.de>
65403
65404 commit b21b511d4c50408f4853f46f06b601272196223f
65405 Author: Wolfgang Denk <wd@pollux.denx.de>
65406 Date:   Sun Nov 12 21:13:23 2006 +0100
65407
65408     Update CHANGELOG
65409
65410 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
65411 Author: Bartlomiej Sieka <tur@semihalf.com>
65412 Date:   Sat Nov 11 22:48:22 2006 +0100
65413
65414     Disable the watchdog in the default config for the V38B board.
65415
65416 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
65417 Author: Bartlomiej Sieka <tur@semihalf.com>
65418 Date:   Sat Nov 11 22:43:00 2006 +0100
65419
65420     Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
65421     group is enabled for USB earlier (in cpu_init_f() instead of
65422     usb_lowlevel_init()).
65423
65424 commit 91650b3e4de688038d4f71279c44858e3e2c6870
65425 Author: Wolfgang Denk <wd@pollux.denx.de>
65426 Date:   Mon Nov 6 17:06:36 2006 +0100
65427
65428     Sequential accesses to non-existent memory must be synchronized,
65429     at least on G2 cores.
65430
65431     This fixes get_ram_size() problems on MPC5200 Rev. B boards.
65432
65433 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
65434 Author: Timur Tabi <timur@freescale.com>
65435 Date:   Fri Nov 3 19:15:00 2006 -0600
65436
65437     mpc83xx: Update 83xx to use fsl_i2c.c
65438
65439     Update the 83xx tree to use I2C support in drivers/fsl_i2c.c.  Delete
65440     cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
65441     Added multiple I2C bus support to fsl_i2c.c.
65442
65443     Signed-off-by: Timur Tabi <timur@freescale.com>
65444
65445 commit d239d74b1c937984bc519083a8e7de373a390f06
65446 Author: Timur Tabi <timur@freescale.com>
65447 Date:   Fri Nov 3 12:00:28 2006 -0600
65448
65449     mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
65450
65451     Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
65452     tree matches the other 8xxx trees.
65453
65454     Signed-off-by: Timur Tabi <timur@freescale.com>
65455
65456 commit f7fb2e703ec9688541416962724adff70a7322cb
65457 Author: Kim Phillips <kim.phillips@freescale.com>
65458 Date:   Thu Nov 2 19:47:11 2006 -0600
65459
65460     mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
65461
65462 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
65463 Author: Dave Liu <daveliu@freescale.com>
65464 Date:   Thu Nov 2 18:05:50 2006 -0600
65465
65466     mpc83xx: Fix the incorrect dcbz operation
65467
65468     The 834x rev1.x silicon has one CPU5 errata.
65469
65470     The issue is when the data cache locked with
65471     HID0[DLOCK], the dcbz instruction looks like no-op inst.
65472
65473     The right behavior of the data cache is when the data cache
65474     Locked with HID0[DLOCK], the dcbz instruction allocates
65475     new tags in cache.
65476
65477     The 834x rev3.0 and later and 8360 have not this bug inside.
65478
65479     So, when 834x rev3.0/8360 are working with ECC, the dcbz
65480     instruction will corrupt the stack in cache, the processor will
65481     checkstop reset.
65482
65483     However, the 834x rev1.x can work with ECC with these code,
65484     because the sillicon has this cache bug. The dcbz will not
65485     corrupt the stack in cache.
65486     Really, it is the fault code running on fault sillicon.
65487
65488     This patch fix the incorrect dcbz operation. Instead of
65489     CPU FP writing to initialise the ECC.
65490
65491     CHANGELOG:
65492     * Fix the incorrect dcbz operation instead of CPU FP
65493     writing to initialise the ECC memory. Otherwise, it
65494     will corrupt the stack in cache, The processor will checkstop
65495     reset.
65496
65497     Signed-off-by: Dave Liu <daveliu@freescale.com>
65498
65499 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
65500 Author: Kim Phillips <kim.phillips@freescale.com>
65501 Date:   Wed Nov 1 00:10:40 2006 -0600
65502
65503     mpc83xx: add OF_FLAT_TREE bits to 83xx boards
65504
65505     add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
65506     STDOUT_PATH configuration bits to mpc8349emds,
65507     mpc8349itx, and mpc8360emds board code.
65508
65509     redo environment to use bootm with the fdtaddr
65510     for booting ARCH=powerpc kernels by default,
65511     and provide default fdtaddr values.
65512
65513 commit 48041365b3420589ad464ebc7752e0053538b729
65514 Author: Kim Phillips <kim.phillips@freescale.com>
65515 Date:   Wed Nov 1 00:07:25 2006 -0600
65516
65517     mpc83xx: change ft code to modify local-mac-address property
65518
65519     Update 83xx OF code to update local-mac-address properties
65520     for ethernet instead of the obsolete 'address' property.
65521
65522 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
65523 Author: Timur Tabi <timur@freescale.com>
65524 Date:   Tue Oct 31 21:23:16 2006 -0600
65525
65526     mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
65527
65528     This patch also adds an improved I2C set_speed(), which handles all clock
65529     frequencies.
65530
65531     Signed-off-by: Timur Tabi <timur@freescale.com>
65532
65533 commit ac4b5622ce050b5ee1e154b98df630d778661632
65534 Author: Dave Liu <daveliu@freescale.com>
65535 Date:   Tue Oct 31 19:54:59 2006 -0600
65536
65537     mpc83xx: add the README.mpc8360emds
65538
65539     add doc/README.mpc8360emds to accompany the new board support
65540
65541 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
65542 Author: Dave Liu <daveliu@freescale.com>
65543 Date:   Fri Nov 3 12:11:15 2006 -0600
65544
65545     mpc83xx: add QE ethernet support
65546
65547     this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
65548
65549 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
65550 Author: Dave Liu <daveliu@freescale.com>
65551 Date:   Fri Nov 3 19:33:44 2006 -0600
65552
65553     mpc83xx: Add MPC8360EMDS basic board support
65554
65555     Add support for the Freescale MPC8360EMDS board.
65556     Includes DDR, DUART, Local Bus, PCI.
65557
65558 commit 23892e49352de74f7fac36ff90bb1be143d195e3
65559 Author: Dave Liu <daveliu@freescale.com>
65560 Date:   Tue Oct 31 19:30:40 2006 -0600
65561
65562     mpc83xx: add the QUICC Engine (QE) immap file
65563
65564     common QE immap file.  Also required for 8360.
65565
65566 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
65567 Author: Dave Liu <daveliu@freescale.com>
65568 Date:   Tue Oct 31 19:25:38 2006 -0600
65569
65570     mpc83xx: Add 8360 specifics to 83xx immap
65571
65572     Mainly add QE device dependencies, with appropriate 8360 protection.
65573     Lindent also run.
65574
65575 commit 988833324a7fda482c8ac3ca23eb539f8232e404
65576 Author: Timur Tabi <timur@freescale.com>
65577 Date:   Tue Oct 31 19:14:41 2006 -0600
65578
65579     mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
65580
65581     PREREQUISITE PATCHES:
65582
65583     * This patch can only be applied after the following patches have been applied:
65584
65585       1) DNX#2006092142000015 "Add support for the MPC8349E-mITX  1/2"
65586       2) DNX#2006092142000024 "Add support for the MPC8349E-mITX  2/2"
65587
65588     CHANGELOG:
65589
65590     * For the 8349E-mITX, fix some size values in pci_init_board(), enable
65591       the clock for the 2nd USB board (Linux kernel will hang otherwise),
65592       and fix the CONFIG_BOOTARGS macro.
65593
65594     Signed-off-by: Timur Tabi <timur@freescale.com>
65595
65596 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
65597 Author: Timur Tabi <timur@freescale.com>
65598 Date:   Tue Oct 31 18:44:42 2006 -0600
65599
65600     mpc83xx: Add support for the MPC8349E-mITX
65601
65602     PREREQUISITE PATCHES:
65603
65604     * This patch can only be applied after the following patches have been applied:
65605
65606       1) DNX#2006090742000024 "Add support for multiple I2C buses"
65607       2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
65608       3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
65609       4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
65610       5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
65611
65612     CHANGELOG:
65613
65614     * Add support for the Freescale MPC8349E-mITX reference design platform.
65615       The second TSEC (Vitesse 7385 switch) is not supported at this time.
65616
65617     Signed-off-by: Timur Tabi <timur@freescale.com>
65618
65619 commit 183da6d9b446cc12123455844ad1187e2375626f
65620 Author: Ben Warren <bwarren@qstreams.com>
65621 Date:   Tue Sep 12 10:15:53 2006 -0400
65622
65623     Additional MPC8349 support for multibus i2c
65624
65625     Hello,
65626
65627     Here is a patch for a file that was accidentally left out of a previous
65628     attempt.
65629
65630     It accompanies the patch with ticket DNX#2006090742000024
65631
65632     CHANGELOG:
65633             Change PCI initialization to use new multi-bus I2C API.
65634
65635     regards,
65636     Ben
65637
65638 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
65639 Author: Ben Warren <bwarren@qstreams.com>
65640 Date:   Thu Sep 7 16:51:04 2006 -0400
65641
65642     Multi-bus I2C implementation of MPC834x
65643
65644     Hello,
65645
65646     Attached is a patch implementing multiple I2C buses on the MPC834x CPU
65647     family and the MPC8349EMDS board in particular.
65648     This patch requires Patch 1 (Add support for multiple I2C buses).
65649     Testing was performed on a 533MHz board.
65650
65651     /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
65652
65653     Signed-off-by: Ben Warren <bwarren@qstreams.com>
65654
65655     CHANGELOG:
65656             Implemented driver-level code to support two I2C buses on the
65657     MPC834x CPU family and the MPC8349EMDS board.  Available I2C bus speeds
65658     are 50kHz, 100kHz and 400kHz on each bus.
65659
65660     regards,
65661     Ben
65662
65663 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
65664 Author: Ben Warren <bwarren@qstreams.com>
65665 Date:   Thu Sep 7 16:50:54 2006 -0400
65666
65667     Add support for multiple I2C buses
65668
65669     Hello,
65670
65671     Attached is a patch providing support for multiple I2C buses at the
65672     command level.  The second part of the patch includes an implementation
65673     for the MPC834x CPU and MPC8349EMDS board.
65674
65675     /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
65676
65677     Signed-off-by: Ben Warren <bwarren@qstreams.com>
65678
65679     Overview:
65680
65681     1. Include new 'i2c' command (based on USB implementation) using
65682     CONFIG_I2C_CMD_TREE.
65683
65684     2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS.  Note that
65685     the commands to change bus number and speed are only available under the
65686     new 'i2c' command mentioned in the first bullet.
65687
65688     3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
65689     systems.  When CONFIG_I2C_MULTI_BUS is used, this option takes the form
65690     of an array of bus-device pairs.  Otherwise, it is an array of uchar.
65691
65692     CHANGELOG:
65693             Added new 'i2c' master command for all I2C interaction.  This is
65694     conditionally compiled with CONFIG_I2C_CMD_TREE.  New commands added for
65695     setting I2C bus speed as well as changing the active bus if the board
65696     has more than one (conditionally compiled with
65697     CONFIG_I2C_MULTI_BUS).  Updated NOPROBE logic to handle multiple buses.
65698     Updated README.
65699
65700     regards,
65701     Ben
65702
65703 commit bed85caf872714ebf53013967a695c9d63acfc68
65704 Author: Timur Tabi <timur@freescale.com>
65705 Date:   Tue Oct 31 18:13:36 2006 -0600
65706
65707     mpc83xx: Add support for Errata DDR6 on MPC 834x systems
65708
65709     CHANGELOG:
65710
65711     * Errata DDR6, which affects all current MPC 834x processors, lists changes
65712       required to maintain compatibility with various types of DDR memory.  This
65713       patch implements those changes.
65714
65715     Signed-off-by: Timur Tabi <timur@freescale.com>
65716
65717 commit afd6e470f639883002c7c59d562690a5cb0f4865
65718 Author: Timur Tabi <timur@freescale.com>
65719 Date:   Wed Oct 25 18:45:23 2006 -0500
65720
65721     mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
65722
65723 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
65724 Author: Timur Tabi <timur@freescale.com>
65725 Date:   Tue Aug 22 17:07:00 2006 -0500
65726
65727     mpc83xx: Add support for variable flash memory sizes on 83xx systems
65728
65729     CHANGELOG:
65730
65731     * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
65732        window registers, instead of using a hard-coded value of 8MB.
65733
65734     Signed-off-by: Timur Tabi <timur@freescale.com>
65735
65736 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
65737 Author: Tanya Jiang <tanya.jiang@freescale.com>
65738 Date:   Thu Aug 3 18:38:13 2006 +0800
65739
65740     mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
65741
65742     Unified TQM834x variable names with 83xx and consolidated macro
65743     in preparation for the 8360 and other upcoming 83xx devices.
65744
65745     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
65746
65747 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
65748 Author: Dave Liu <daveliu@freescale.com>
65749 Date:   Wed Oct 25 14:41:21 2006 -0500
65750
65751     mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
65752
65753     Incorporated the common unified variable names and the changes in preparation
65754     for releasing mpc8360 patches.
65755
65756     Signed-off-by: Dave Liu <daveliu@freescale.com>
65757
65758 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
65759 Author: Tanya Jiang <tanya.jiang@freescale.com>
65760 Date:   Thu Aug 3 18:36:02 2006 +0800
65761
65762     mpc83xx: Fix missing build for mpc8349emds pci.c
65763
65764     Make pci build for mpc8349emds
65765
65766     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
65767
65768 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
65769 Author: Tanya Jiang <tanya.jiang@freescale.com>
65770 Date:   Thu Aug 3 18:39:49 2006 +0800
65771
65772     mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
65773
65774     Removed unused file resetvec.S for mpc83xx cpu
65775
65776     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
65777
65778 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
65779 Author: Nick Spence <Nick.Spence@freescale.com>
65780 Date:   Sat Sep 30 00:32:59 2006 -0700
65781
65782     NAND Flash verify across block boundaries
65783
65784     This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
65785     defined
65786     and the write crosses a block boundary. The pointer to the verification
65787     buffer (bufstart) is not being updated to reflect the starting of the
65788     new
65789     block so the verification of the second block fails.
65790
65791     CHANGELOG:
65792
65793     * Fix NAND FLASH page verification across block boundaries
65794
65795 commit f484dc791a3932537213c43c654cc1295c64b84c
65796 Author: Nick Spence <nick.spence@freescale.com>
65797 Date:   Thu Sep 7 07:39:46 2006 -0700
65798
65799     Added RGMII support to the TSECs and Marvell 881111 Phy
65800
65801     Added a phy initialization to adjust the RGMII RX and TX timing
65802     Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
65803
65804     Signed-off-by: Nick Spence <nick.spence@freescale.com>
65805
65806 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
65807 Author: roy zang <tie-fei.zang@freescale.com>
65808 Date:   Fri Nov 3 13:10:00 2006 +0800
65809
65810     Remove some unused CFG define.
65811     undef CFG_DRAM_TEST
65812
65813 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
65814 Author: roy zang <tie-fei.zang@freescale.com>
65815 Date:   Fri Nov 3 13:07:36 2006 +0800
65816
65817     Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
65818     Both work. 0xFF000000 seems more reasonable.
65819
65820 commit c59200443072353044aa4bf737a5a60f9a9af231
65821 Author: Wolfgang Denk <wd@pollux.denx.de>
65822 Date:   Thu Nov 2 15:15:01 2006 +0100
65823
65824     Release U-Boot 1.1.6
65825
65826 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
65827 Author: roy zang <tie-fei.zang@freescale.com>
65828 Date:   Thu Nov 2 19:14:48 2006 +0800
65829
65830     This patch comes from Yuli's posted patch on 8/8/2006
65831     titled "CFI Driver Little-Endian write Issue".
65832
65833     http://sourceforge.net/mailarchive/message.php?msg_id=36311999
65834
65835     If that patch applied, please discard this one.
65836     Until now , I do not see his patch is applied. So please apply this one.
65837
65838     Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
65839     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65840
65841 commit b825f158e449e1e9cf74c08e572955e122394c96
65842 Author: roy zang <tie-fei.zang@freescale.com>
65843 Date:   Thu Nov 2 19:12:31 2006 +0800
65844
65845     Tsi108 on chip i2c support.
65846
65847     The i2c  Interface provides a master-only, serial interface that can be
65848     used for initializing Tsi108/Tsi109 registers from an EEPROM after a
65849     device reset.
65850
65851     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
65852     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65853
65854 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
65855 Author: roy zang <tie-fei.zang@freescale.com>
65856 Date:   Thu Nov 2 19:11:06 2006 +0800
65857
65858     Tsi108 on chip pci controller support.
65859
65860     If there is no pci card, the tsi108/109 pci configure read will
65861     cause a machine check exception to the processor. PCI error should
65862     also be cleared after the read.
65863
65864     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
65865     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65866
65867 commit d1927cee977126e547ceeba23e4f978f377cfb8f
65868 Author: roy zang <tie-fei.zang@freescale.com>
65869 Date:   Thu Nov 2 19:08:55 2006 +0800
65870
65871     Tundra tsi108 on chip Ethernet controller support.
65872
65873     The following is a brief description of the Ethernet controller:
65874     The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
65875     Gigabit Ethernet ports,E0 and E1.  It uses a single Management interface
65876     to manage the two physical connection devices (PHYs).  Each Ethernet port
65877     has its own statistics monitor that tracks and reports key interface
65878     statistics.  Each port supports a 256-entry hash table for address
65879     filtering.  In addition, each port is bridged to the Switch Fabric
65880     through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
65881
65882     Each Ethernet port also has a pair of internal Ethernet DMA channels to
65883     support the transmit and receive data flows.  The Ethernet DMA channels
65884     use descriptors set up in memory, the memory map of the device, and
65885     access via the Switch Fabric.  The Ethernet Controller?s DMA arbiter
65886     handles arbitration for the Switch Fabric.  The Controller also
65887     has a register businterface for register accesses and status monitor
65888     control.
65889
65890     The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
65891     modes.  The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
65892     The GMII and TBI modes are used to connect with Gigabit PMDs.  Internal
65893     data flows to and from the Ethernet Controller through the Switch Fabric.
65894
65895     Each Ethernet port uses its transmit and receive DMA channels to manage
65896     data flows through buffer descriptors that are predefined by the
65897     system (the descriptors can exist anywhere in the system memory map).
65898     These descriptors are data structures that point to buffers filled
65899     with data ready to transmit over Ethernet, or they point to empty
65900     buffers ready to receive data from Ethernet.
65901
65902     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
65903     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65904
65905 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
65906 Author: roy zang <tie-fei.zang@freescale.com>
65907 Date:   Thu Nov 2 19:01:33 2006 +0800
65908
65909     Tundra tsi108 header file.
65910
65911     The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
65912     PowerPC processors that offers numerous system interconnect options for
65913     embedded application designers. The Tsi108 can interconnect 60x or
65914     MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
65915     and Flash. Provided the macro define for tsi108 chip.
65916
65917     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
65918     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65919
65920 commit 87c4db09699c6b89176b31004afcb83eb1585d47
65921 Author: roy zang <tie-fei.zang@freescale.com>
65922 Date:   Thu Nov 2 18:59:15 2006 +0800
65923
65924     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
65925     mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
65926
65927     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
65928     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65929
65930 commit 27801b8ab11c61b577e45742a515bb3b23b80241
65931 Author: roy zang <tie-fei.zang@freescale.com>
65932 Date:   Thu Nov 2 18:57:21 2006 +0800
65933
65934     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
65935     Make ,config.mk and link file for the mpc7448hpc2 board.
65936
65937     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
65938     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65939
65940 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
65941 Author: roy zang <tie-fei.zang@freescale.com>
65942 Date:   Thu Nov 2 18:55:04 2006 +0800
65943
65944     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
65945     The mpc7448hpc2 board support header file.
65946
65947     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
65948     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65949
65950 commit 625bb5ddb50b243f931262ca8c46956409471917
65951 Author: roy zang <tie-fei.zang@freescale.com>
65952 Date:   Thu Nov 2 18:52:21 2006 +0800
65953
65954     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
65955     The mpc7448hpc2 board support low level assemble language init code.
65956
65957     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
65958     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65959
65960 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
65961 Author: roy zang <tie-fei.zang@freescale.com>
65962 Date:   Thu Nov 2 18:49:51 2006 +0800
65963
65964     General code modification for mpc7448hpc2 board support.
65965     1. Add 7447A and 7448 processor support.
65966     2. Add the following flags.
65967
65968     CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
65969     (such as by switch on board), this flag should be set.
65970
65971     CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
65972     relocates to RAM, this flag should be set.
65973
65974     CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
65975     system hang in exception, this flag should be set.
65976
65977     There is a design issue for tsi108/109 pci configure  read. When pci scan
65978     the slots, if there is no pci card, the tsi108/9 will cause a machine
65979     check exception for mpc7448 processor.
65980
65981     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
65982     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65983
65984 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
65985 Author: roy zang <tie-fei.zang@freescale.com>
65986 Date:   Thu Nov 2 18:34:47 2006 +0800
65987
65988     Add README file for mpc7448hpc2 board.
65989     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65990
65991 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
65992 Author: Bartlomiej Sieka <tur@semihalf.com>
65993 Date:   Wed Nov 1 02:04:38 2006 +0100
65994
65995     Finish up support for MarelV38B board
65996      - add watchdog support
65997      - enable GPIO_WKUP_7 pin for input
65998      - code cleanup
65999
66000 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
66001 Author: Bartlomiej Sieka <tur@semihalf.com>
66002 Date:   Wed Nov 1 01:45:46 2006 +0100
66003
66004     - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
66005           * remove warnings when compiling ethaddr.c
66006           * adjust linker script (fixes a crash resulting from incorrect
66007           definition of __u_boot_cmd_start)
66008     - Some MarelV38B code cleanup.
66009
66010 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
66011 Author: Bartlomiej Sieka <tur@semihalf.com>
66012 Date:   Wed Nov 1 01:38:16 2006 +0100
66013
66014     - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
66015       MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
66016       Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
66017       MPC5XXX_WU_GPIO_DATA_O for affected boards.
66018
66019     - Add defintions for some MPC5XXX GPIO pins.
66020
66021 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
66022 Author: Bartlomiej Sieka <tur@semihalf.com>
66023 Date:   Wed Nov 1 01:34:29 2006 +0100
66024
66025     Changed MarelV38B board make target to lowercase. Config file cleanup.
66026
66027 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
66028 Author: Wolfgang Denk <wd@pollux.denx.de>
66029 Date:   Sun Oct 29 01:03:51 2006 +0200
66030
66031     Automatically adjust ARFLAGS so "make -s" is really silent.
66032
66033 commit fae684e89844856383bdf101440889557df3e6b1
66034 Author: Stefan Roese <sr@denx.de>
66035 Date:   Sat Oct 28 16:45:00 2006 +0200
66036
66037     [PATCH] omap925.c: Remove unused functions
66038
66039     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
66040     Signed-off-by: Stefan Roese <sr@denx.de>
66041
66042 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
66043 Author: Stefan Roese <sr@denx.de>
66044 Date:   Sat Oct 28 17:12:58 2006 +0200
66045
66046     [PATCH] Add some missing machtypes for netstar & voiceblue boards
66047
66048     Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
66049     numbers in code.
66050
66051     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
66052     Signed-off-by: Stefan Roese <sr@denx.de>
66053
66054 commit 856f054410cef52d868feb330168b2a4c4091328
66055 Author: Stefan Roese <sr@denx.de>
66056 Date:   Sat Oct 28 15:55:52 2006 +0200
66057
66058     [PATCH] NAND: Partition name support added to NAND subsystem
66059
66060     chpart, nboot and NAND subsystem related commands now accept also partition
66061     name to specify offset.
66062
66063     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
66064     Signed-off-by: Stefan Roese <sr@denx.de>
66065
66066 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
66067 Author: Wolfgang Denk <wd@pollux.denx.de>
66068 Date:   Sat Oct 28 02:29:44 2006 +0200
66069
66070     Update CHANGELOG.
66071
66072 commit 2751a95abd1b96911081c357e96a12fa97b40dee
66073 Author: Wolfgang Denk <wd@pollux.denx.de>
66074 Date:   Sat Oct 28 02:29:14 2006 +0200
66075
66076     Enable commandline editing and hush shell on all TQM boards.
66077
66078 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
66079 Author: Wolfgang Denk <wd@pollux.denx.de>
66080 Date:   Sat Oct 28 02:28:02 2006 +0200
66081
66082     README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
66083
66084 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
66085 Author: Wolfgang Denk <wd@denx.de>
66086 Date:   Sat Oct 28 01:14:32 2006 +0200
66087
66088     Check for illegal character '=' in environment variable names.
66089
66090     Make sure the string passed as variable name does not contain a '='
66091     character. This not only prevents the common error or typing
66092     "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
66093     also closes a backdoor which allowed to delete write-protected
66094     environment variables, for example by using "setenv ethaddr=".
66095
66096 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
66097 Author: Wolfgang Denk <wd@pollux.denx.de>
66098 Date:   Sat Oct 28 00:38:39 2006 +0200
66099
66100     Minor code cleanup.
66101
66102 commit e11887a77d81077416a2d1c5e0354916fee8c034
66103 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66104 Date:   Thu Oct 26 17:55:31 2006 +0200
66105
66106     Don't pass any debug options directly to the assembler
66107
66108     When passing the -g option to gcc, gcc automatically selects a
66109     suitable --g<format> option to pass on to the assembler.
66110     Thus, there's no point in forcing a specific debug option on the
66111     assembler using the -Wa mechanism.
66112
66113     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66114
66115 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
66116 Author: Jon Loeliger <jdl@freescale.com>
66117 Date:   Fri Oct 27 07:47:22 2006 -0500
66118
66119     MPC86xx: Cleaned up unused and conditionally used local variables.
66120
66121     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66122
66123 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
66124 Author: Wolfgang Denk <wd@pollux.denx.de>
66125 Date:   Fri Oct 27 11:55:21 2006 +0200
66126
66127     Fix "ar" flags in some Makefiles to allow for silent "make -s"
66128
66129 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
66130 Author: Ben Warren <bwarren@qstreams.com>
66131 Date:   Thu Oct 26 14:38:25 2006 -0400
66132
66133     Fix TSEC driver (now for real): avoid crashes if PHY is not attached
66134     to a TSEC (e.g. a switch is connected via RMII) or
66135     if the PHY is defective/incorrectly configured.
66136
66137     Signed-off-by: Ben Warren <bwarren@qstreams.com>
66138
66139 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
66140 Author: Ben Warren <bwarren@qstreams.com>
66141 Date:   Thu Oct 26 14:38:25 2006 -0400
66142
66143     Fix TSEC driver: avoid crashes if PHY is not attached
66144     to a TSEC (e.g. a switch is connected via RMII) or
66145     if the PHY is defective/incorrectly configured.
66146
66147     Signed-off-by: Ben Warren <bwarren@qstreams.com>
66148
66149 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
66150 Author: Wolfgang Denk <wd@pollux.denx.de>
66151 Date:   Thu Oct 26 16:24:31 2006 +0200
66152
66153     Code cleanup.
66154
66155 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
66156 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66157 Date:   Wed Oct 25 15:48:59 2006 +0200
66158
66159     Finish up support for the ATSTK1000/ATSTK1002 boards
66160
66161     Add atstk1002_config target to Makefile and move the AVR32 section
66162     down below Blackfin so that it doesn't end up in the middle of
66163     MIPS.
66164
66165     Drop the autogenerated linker script thing for now. Will have to
66166     revisit how to handle chips with different flash and RAM layout
66167     later.
66168
66169     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66170
66171 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
66172 Author: Kumar Gala <galak@kernel.crashing.org>
66173 Date:   Tue Oct 24 23:47:37 2006 -0500
66174
66175     Added support for Multi-Image files that contain a device tree
66176
66177     If a Multi-Image file contains a third image we try to use it as a
66178     device tree.  The device tree image is assumed to be uncompressed in the
66179     image file.  We automatically allocate space for the device tree in memory
66180     and provide an 8k pad to allow more than a reasonable amount of growth.
66181
66182     Additionally, a device tree that was contained in flash will now automatically
66183     get copied to system memory as part of boot.  Previously an error was
66184     reported if one tried to boot a device tree that was in flash.
66185
66186     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
66187
66188 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
66189 Author: Wolfgang Denk <wd@denx.de>
66190 Date:   Tue Oct 24 21:35:55 2006 +0200
66191
66192     Switch to automatically generated CHANGELOG file.
66193     (use "make CHANGELOG" to update it from time to time)
66194
66195 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
66196 Author: Stefan Roese <sr@denx.de>
66197 Date:   Tue Oct 24 18:06:48 2006 +0200
66198
66199     Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
66200     Patch by Stefan Roese, 24 Oct 2006
66201
66202 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
66203 Author: Wolfgang Denk <wd@pollux.denx.de>
66204 Date:   Tue Oct 24 17:24:55 2006 +0200
66205
66206     Merge with /home/wd/git/u-boot/master
66207
66208 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
66209 Author: Wolfgang Denk <wd@pollux.denx.de>
66210 Date:   Tue Oct 24 15:32:57 2006 +0200
66211
66212     Code cleanup
66213
66214 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
66215 Author: Wolfgang Denk <wd@pollux.denx.de>
66216 Date:   Tue Oct 24 14:51:36 2006 +0200
66217
66218     Move atstk1000 files into vendor specific directory.
66219     Patch by Haavard Skinnemoen, 12 Sep 2006
66220
66221 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
66222 Author: Wolfgang Denk <wd@pollux.denx.de>
66223 Date:   Tue Oct 24 14:42:37 2006 +0200
66224
66225     Add ATSTK1000 and ATSTK1002 board support
66226     Patch by Haavard Skinnemoen, 06 Sep 2006
66227
66228     This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
66229     daughterboard.
66230
66231     ATSTK1000 is a full-featured development board for AT32AP CPUs. It
66232     has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
66233     and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
66234     CompactFlash cards. For more information, please see this page:
66235
66236     http://www.atmel.com/dyn/products/tools.asp?family_id=682
66237
66238     The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
66239     AT32AP7000 chip.
66240
66241     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66242
66243 commit f93ae788c3640fcde5db383471d45548ff4060d0
66244 Author: Wolfgang Denk <wd@pollux.denx.de>
66245 Date:   Tue Oct 24 14:31:24 2006 +0200
66246
66247     Add common serial driver for Atmel AT32 and AT91 chips
66248     Patch by Haavard Skinnemoen, 06 Sep 2006
66249
66250     This is a first attempt at creating a common serial driver for Atmel
66251     chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
66252     be possible to support AT91RM9200 and other ARM-based chips with some
66253     minor modifications.
66254
66255     There's nothing fundamentally AVR32-specific in this driver, but it
66256     does use some features which are currently only defined for the
66257     AT32AP CPU port:
66258       * pm_get_clock_freq: Obtain the clock frequency of a given domain
66259       * gd->console_uart: A "struct device" containing information about
66260         register mappings, gpio resources and clocks associated with the
66261         UART device.
66262
66263     For more information about these features, please see the "AT32AP
66264     CPU" patch.
66265
66266 commit 72a087e04705c26cad982879ebd06b5281bf825a
66267 Author: Wolfgang Denk <wd@pollux.denx.de>
66268 Date:   Tue Oct 24 14:27:35 2006 +0200
66269
66270     Add AT32AP CPU and AT32AP7000 SoC support
66271     Patch by Haavard Skinnemoen, 06 Sep 2006
66272
66273     This patch adds support for the AT32AP CPU family and the AT32AP7000
66274     chip, which is the first chip implementing the AVR32 architecture.
66275
66276     The AT32AP CPU core is a high-performance implementation featuring a
66277     7-stage pipeline, separate instruction- and data caches, and a MMU.
66278     For more information, please see the "AVR32 AP Technical Reference":
66279
66280     http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
66281
66282     In addition to this, the AT32AP7000 chip comes with a large set of
66283     integrated peripherals, many of which are shared with the AT91 series
66284     of ARM-based microcontrollers from Atmel. Full data sheet is
66285     available here:
66286
66287     http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
66288
66289     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66290
66291 commit 7b64fef33c66be648826c0ff9758298ef13d0604
66292 Author: Wolfgang Denk <wd@pollux.denx.de>
66293 Date:   Tue Oct 24 14:21:16 2006 +0200
66294
66295     Add AVR32 architecture support
66296     Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
66297
66298     This patch adds common infrastructure code for the Atmel AVR32
66299     architecture. See doc/README.AVR32 for details.
66300
66301     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66302
66303 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
66304 Author: Wolfgang Denk <wd@pollux.denx.de>
66305 Date:   Tue Oct 24 13:57:33 2006 +0200
66306
66307     Use -g instead of -gstabs in AFLAGS_DEBUG
66308     Patch by Haavard Skinnemoen, 30 Aug 2006
66309
66310     In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
66311     matter what the target's preferred debugging format is. This patch
66312     simply replaces -gstabs with -g, so that the default debugging format
66313     for the architecture is used.
66314
66315 commit 965829872169c2996023840d98e1d85ad148d629
66316 Author: Wolfgang Denk <wd@pollux.denx.de>
66317 Date:   Tue Oct 24 13:55:18 2006 +0200
66318
66319     Fix/workaround broken dependency handling with make 3.81
66320     Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
66321
66322 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
66323 Author: Marian Balakowicz <m8@semihalf.com>
66324 Date:   Mon Oct 23 22:17:05 2006 +0200
66325
66326     Fix sequoia separate object direcory building problems.
66327
66328 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
66329 Author: Jon Loeliger <jdl@freescale.com>
66330 Date:   Fri Oct 20 17:16:35 2006 -0500
66331
66332     Use generic I2C register block on 85xx and 86xx.
66333
66334     Replace private IMMAP I2C structures with generic reg block
66335     and allow 86xx to have multiple I2C device busses.
66336
66337     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66338
66339 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
66340 Author: Jon Loeliger <jdl@freescale.com>
66341 Date:   Fri Oct 20 15:54:34 2006 -0500
66342
66343     Fix compilation warnings on a few 85xx boards.
66344
66345     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66346
66347 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
66348 Author: Jon Loeliger <jdl@freescale.com>
66349 Date:   Fri Oct 20 15:50:15 2006 -0500
66350
66351     Converted all 85xx boards to use a common FSL I2C driver.
66352     Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
66353     And removed hard i2c path from a few u-boot.lds scipts too.
66354     Minor whitespace cleanups along the way.
66355
66356     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66357
66358 commit 4d45f69e362b05892c9e92a7907e5820995612aa
66359 Author: Jon Loeliger <jdl@freescale.com>
66360 Date:   Thu Oct 19 12:02:24 2006 -0500
66361
66362     Rewrite a series of goto statements as a sequences of
66363     conditional expressions instead.
66364
66365     Use consistent return code 0/-1 for good/bad indicators.
66366
66367     Include one fewer file if the driver isn't used at all.
66368
66369     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66370
66371 commit 7237c033b02fe295880435f1eb80819a0c987532
66372 Author: Jon Loeliger <jdl@freescale.com>
66373 Date:   Thu Oct 19 11:02:16 2006 -0500
66374
66375     Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
66376
66377     in an effort to begin to unify the umpteen FSL I2C drivers that
66378     are all otherwise very similar.
66379
66380     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66381
66382 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
66383 Author: Jon Loeliger <jdl@freescale.com>
66384 Date:   Thu Oct 19 11:33:52 2006 -0500
66385
66386     * Fix a bunch of compiler warnings for gcc 4.0
66387
66388     Signed-off-by: Matthew McClintock <msm@freescale.com>
66389
66390 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
66391 Author: Stefan Roese <sr@denx.de>
66392 Date:   Tue Oct 17 06:14:31 2006 +0200
66393
66394     Add monitor functions for indirect access to PPC440 DCR's
66395     Patch by Leonid Baryudin, 12 Oct 2006
66396
66397 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
66398 Author: Jon Loeliger <jdl@freescale.com>
66399 Date:   Fri Oct 13 16:47:53 2006 -0500
66400
66401     Fixed leading whitespace issues.
66402     Removed spurious LAWAR thing.
66403
66404     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66405
66406 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
66407 Author: Jon Loeliger <jdl@freescale.com>
66408 Date:   Thu Oct 12 10:42:36 2006 -0500
66409
66410     Remove unneeded include files and local variable.
66411
66412     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66413
66414 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
66415 Author: Grant Likely <grant.likely@secretlab.ca>
66416 Date:   Tue Oct 10 00:23:32 2006 -0600
66417
66418     Fix possible uninitialized variable compiler warning.
66419
66420     When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
66421     do_bootm_linux() may be uninitialized.  There is no possibility in the
66422     current code that len will get used uninitialized, but this fix follows
66423     the existing convention of setting both len and data to zero at the same
66424     time.
66425
66426     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
66427
66428 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
66429 Author: Matthew McClintock <msm@freescale.com>
66430 Date:   Wed Oct 11 15:13:01 2006 -0500
66431
66432     * Fix a bunch of compiler warnings for gcc 4.0
66433
66434     Signed-off-by: Matthew McClintock <msm@freescale.com>
66435
66436 commit bf651baa365e5447246aad6a633ccd667cf24a39
66437 Author: Jon Loeliger <jdl@freescale.com>
66438 Date:   Wed Oct 11 10:10:43 2006 -0500
66439
66440     Move "ar" flags to config.mk to allow for silent "make -s"
66441
66442 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
66443 Author: Jon Loeliger <jdl@freescale.com>
66444 Date:   Tue Oct 10 17:19:03 2006 -0500
66445
66446     Coding style changes to remove local varible blocks
66447     and reformat a bit nicer.
66448
66449 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
66450 Author: Jon Loeliger <jdl@freescale.com>
66451 Date:   Tue Oct 10 17:16:04 2006 -0500
66452
66453     Fix whitespace issues.
66454
66455 commit 7b382b7125f2397cce63253df62f183e3dfa2770
66456 Author: Jon Loeliger <jdl@freescale.com>
66457 Date:   Tue Oct 10 17:14:45 2006 -0500
66458
66459     Fix whitespace issues.
66460
66461 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
66462 Author: Jon Loeliger <jdl@freescale.com>
66463 Date:   Tue Oct 10 17:06:53 2006 -0500
66464
66465     Fix whitespace issues.
66466
66467 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
66468 Author: Jon Loeliger <jdl@freescale.com>
66469 Date:   Tue Oct 10 17:03:43 2006 -0500
66470
66471     Ran lindent and cleaned up whitespace issues.
66472     Format for 80-columns too.
66473
66474 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
66475 Author: Jon Loeliger <jdl@freescale.com>
66476 Date:   Tue Oct 10 17:02:22 2006 -0500
66477
66478     Fix whitespace and 80-col issues.
66479
66480 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
66481 Author: Stefan Roese <sr@denx.de>
66482 Date:   Sat Oct 7 11:36:51 2006 +0200
66483
66484     CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
66485     Patch by Stefan Roese, 07 Oct 2006
66486
66487 commit 5bc528fa4da751d472397b308137238a6465afd2
66488 Author: Stefan Roese <sr@denx.de>
66489 Date:   Sat Oct 7 11:35:25 2006 +0200
66490
66491     Update ALPR code (NAND support working now)
66492     Patch by Stefan Roese, 07 Oct 2006
66493
66494 commit 77d5034847d328753b80c46b83f960a14a26f40e
66495 Author: Stefan Roese <sr@denx.de>
66496 Date:   Sat Oct 7 11:33:03 2006 +0200
66497
66498     Remove compile warnings in fpga code
66499     Patch by Stefan Roese, 07 Oct 2006
66500
66501 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
66502 Author: Stefan Roese <sr@denx.de>
66503 Date:   Sat Oct 7 11:30:52 2006 +0200
66504
66505     Add CONFIG_BOARD_RESET to configure board specific reset function
66506     Patch by Stefan Roese, 07 Oct 2006
66507
66508 commit f55df18187e7a45cb73fec4370d12135e6691ae1
66509 Author: John Traill <john.traill@freescale.com>
66510 Date:   Fri Sep 29 08:23:12 2006 +0100
66511
66512     Fix missing tCycle/modfreq calculation.
66513
66514     Signed-off-by: John Traill <john.traill@freescale.com>
66515
66516 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
66517 Author: Andy Fleming <afleming@freescale.com>
66518 Date:   Wed Sep 13 10:33:35 2006 -0500
66519
66520     Updated config headers to add default FDT-based booting
66521
66522 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
66523 Author: Andy Fleming <afleming@freescale.com>
66524 Date:   Wed Sep 13 10:34:18 2006 -0500
66525
66526     Add support for eTSEC 3 & 4 on 8548 CDS
66527
66528     * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
66529       This will only work on rev 1.3 boards (but doesn't break older boards)
66530     * Cleaned up some comments to reflect the expanded role of tsec
66531       in other systems
66532
66533 commit 084d648b109c8984f83674043c1a7fa3885ef801
66534 Author: Andy Fleming <afleming@freescale.com>
66535 Date:   Wed Sep 13 10:33:56 2006 -0500
66536
66537     Added code to support 2.6.18 PCI changes in u-boot
66538
66539     * Added code to swizzle the IRQ map for the PCI
66540
66541 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
66542 Author: Jon Loeliger <jdl@freescale.com>
66543 Date:   Tue Sep 19 09:34:10 2006 -0500
66544
66545     Modified makefile for new build mechanism.
66546
66547     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66548
66549 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
66550 Author: Jon Loeliger <jdl@freescale.com>
66551 Date:   Thu Sep 14 08:40:36 2006 -0500
66552
66553     Handle 86xx SVR values according to the new Reference Manual.
66554     Both 8641 and 8641D have SVR == 0x8090, and are distinguished
66555     by the byte in bits 16-23 instead.
66556     Thanks to Jason Jin for noticing.
66557
66558     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66559
66560 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
66561 Author: Zhang Wei <wei.zhang@freescale.com>
66562 Date:   Mon Aug 28 14:25:31 2006 +0800
66563
66564     Fixed an OF-tree off-by-one bug when adding a new property name.
66565     This bug will cause the kernel booting to pause a long time.
66566
66567     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
66568     (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
66569
66570 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
66571 Author: Jon Loeliger <jdl@freescale.com>
66572 Date:   Tue Aug 29 11:05:09 2006 -0500
66573
66574     Remove trailing empty lines.
66575
66576 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
66577 Author: Jon Loeliger <jdl@freescale.com>
66578 Date:   Tue Aug 29 09:48:49 2006 -0500
66579
66580     Remove bogus msync and use volatile asm.
66581
66582 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
66583 Author: Jon Loeliger <jdl@freescale.com>
66584 Date:   Tue Aug 29 08:17:14 2006 -0500
66585
66586     Add myself as maintainer for MPC8641HPCN.
66587
66588 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
66589 Author: Zhang Wei <wei.zhang@freescale.com>
66590 Date:   Mon Aug 28 14:25:31 2006 +0800
66591
66592     Fixed an OF-tree off-by-one bug when adding a new property name.
66593     This bug will cause the kernel booting to pause a long time.
66594
66595     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
66596
66597 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
66598 Author: Haiying Wang <haiying.wang@freescale.com>
66599 Date:   Fri Aug 25 14:38:34 2006 -0400
66600
66601     Change ramdiskaddr and dtbaddr
66602     Remove PEX fluff commands.
66603
66604     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
66605     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66606
66607 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
66608 Author: Matthew McClintock <msm@freescale.com>
66609 Date:   Wed Aug 23 13:32:45 2006 -0500
66610
66611     * Another small fix for booting with disable_of
66612
66613     Signed-off-by: Matthew McClintock <msm@freescale.com>
66614
66615 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
66616 Author: Jon Loeliger <jdl@freescale.com>
66617 Date:   Wed Aug 23 11:04:43 2006 -0500
66618
66619     Cleanup and lindent new AHCI driver.
66620
66621 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
66622 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
66623 Date:   Wed Aug 23 19:15:12 2006 +0800
66624
66625     Add AHCI define and sata support for MPC8641HPCN board.
66626
66627     Signed-off-by:Jason Jin<jason.jin@freescale.com>
66628
66629 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
66630 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
66631 Date:   Wed Aug 23 19:10:44 2006 +0800
66632
66633     Add AHCI support to u-boot
66634
66635     Add AHCI support in u-boot, enable the sata disk controllers which
66636     following the AHCI protocol.
66637
66638     Signed-off-by:Jason Jin<jason.jin@freescale.com>
66639
66640 commit d8ea2acf5f137cae99417df4f573d036ee384668
66641 Author: Zhang Wei <wei.zhang@freescale.com>
66642 Date:   Wed Aug 23 17:54:32 2006 +0800
66643
66644     Add dtb boot-up parameter to default boot commands.
66645
66646     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
66647
66648 commit b93775c2036b99baa390ea425c4771895bbc63c4
66649 Author: Jon Loeliger <jdl@freescale.com>
66650 Date:   Tue Aug 22 18:26:08 2006 -0500
66651
66652     Cleanup even more poorly introduced whitespace.
66653
66654 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
66655 Author: Jon Loeliger <jdl@freescale.com>
66656 Date:   Tue Aug 22 18:07:00 2006 -0500
66657
66658     Cleanup more poorly introduced whitespace.
66659
66660 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
66661 Author: Jon Loeliger <jdl@freescale.com>
66662 Date:   Tue Aug 22 17:54:05 2006 -0500
66663
66664     Cleanup poorly introduced whitespace.
66665
66666 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
66667 Author: Jon Loeliger <jdl@freescale.com>
66668 Date:   Tue Aug 22 12:25:27 2006 -0500
66669
66670     General indent and whitespace cleanups.
66671
66672 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
66673 Author: Jon Loeliger <jdl@freescale.com>
66674 Date:   Tue Aug 22 12:06:18 2006 -0500
66675
66676     General indent and whitespace cleanups.
66677
66678 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
66679 Author: Jon Loeliger <jdl@freescale.com>
66680 Date:   Tue Aug 22 10:42:21 2006 -0500
66681
66682     Cleanup compiler warnings.
66683
66684 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
66685 Author: Matthew McClintock <msm@freescale.com>
66686 Date:   Tue Aug 22 09:31:59 2006 -0500
66687
66688     Fix disable_of booting
66689
66690     Signed-off-by: Matthew McClintock <msm@freescale.com>
66691
66692 commit 87a449c8ac396420cb24260f717ea9e6faa82047
66693 Author: Matthew McClintock <msm@freescale.com>
66694 Date:   Tue Aug 22 09:23:55 2006 -0500
66695
66696     Support for FDT in uImage format, error when using FDT from flash
66697
66698     Signed-off-by: Matthew McClintock <msm@freescale.com>
66699
66700 commit 75c299c38369d01addd5e054b8a16217b70f4a86
66701 Author: Haiying Wang <haiying.wang@freescale.com>
66702 Date:   Tue Aug 15 15:12:55 2006 -0400
66703
66704     Unlock cache before kernel starts up for MPC86xx
66705
66706 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
66707 Author: Haiying Wang <haiying.wang@freescale.com>
66708 Date:   Tue Aug 15 15:13:15 2006 -0400
66709
66710     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
66711
66712 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
66713 Author: Haiying Wang <haiying.wang@freescale.com>
66714 Date:   Tue Aug 15 15:12:55 2006 -0400
66715
66716     Unlock cache before kernel starts up for MPC86xx
66717
66718 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
66719 Author: Haiying Wang <haiying.wang@freescale.com>
66720 Date:   Tue Aug 15 15:13:15 2006 -0400
66721
66722     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
66723
66724 commit 86c8e17f25e972a7e272950a0735fad84e082b88
66725 Author: Matthew McClintock <msm@freescale.com>
66726 Date:   Wed Aug 16 13:59:47 2006 -0500
66727
66728     * Fix disable_of booting
66729
66730     Signed-off-by: Matthew McClintock <msm@freescale.com>
66731
66732 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
66733 Author: Matthew McClintock <msm@freescale.com>
66734 Date:   Wed Aug 16 10:54:09 2006 -0500
66735
66736     * Support for FDT in uImage format, error when using FDT from flash
66737
66738     Signed-off-by: Matthew McClintock <msm@freescale.com>
66739
66740 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
66741 Author: Stefan Roese <sr@denx.de>
66742 Date:   Tue Aug 15 14:22:35 2006 +0200
66743
66744     Add initial support for the ALPR board from Prodrive
66745     NAND needs some additional testing
66746     Patch by Heiko Schocher, 15 Aug 2006
66747
66748 commit f0ff4692ff3372dec55074a8eb444943ab095abb
66749 Author: Stefan Roese <sr@denx.de>
66750 Date:   Tue Aug 15 14:15:51 2006 +0200
66751
66752     Add FPGA Altera Cyclone 2 support
66753     Patch by Heiko Schocher, 15 Aug 2006
66754
66755 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
66756 Author: Jon Loeliger <jdl@freescale.com>
66757 Date:   Mon Aug 14 15:33:38 2006 -0500
66758
66759     Fix BAT0 to actually be cacheable, non-guarded as documented.
66760
66761     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66762
66763 commit 40bc83559db5745681909fd7382ae509567e116d
66764 Author: Jon Loeliger <jdl@freescale.com>
66765 Date:   Wed Aug 9 15:32:16 2006 -0500
66766
66767     Removed MPC8641HPCN DTS source file from build.
66768     It is no longer linked into U-Boot; its sources are
66769     now located in the kernel tree.
66770
66771     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66772
66773 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
66774 Author: Matthew McClintock <msm@freescale.com>
66775 Date:   Wed Jun 28 10:47:03 2006 -0500
66776
66777     * Switched default PCI speed for 8540 ADS back to 33MHz
66778
66779     * Added comments and a printf to warn that PCI-X won't
66780       work at 33MHz
66781       Patch by Andy Fleming 17-Mar-2006
66782
66783     Signed-off-by: Andy Fleming <afleming@freescale.com>
66784
66785 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
66786 Author: Matthew McClintock <msm@freescale.com>
66787 Date:   Wed Jun 28 10:46:35 2006 -0500
66788
66789     * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
66790
66791     Signed-off-by: Andy Fleming <afleming@freescale.com>
66792
66793 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
66794 Author: Matthew McClintock <msm@freescale.com>
66795 Date:   Wed Jun 28 10:46:13 2006 -0500
66796
66797     * Added VIA configuration table
66798
66799     * Added support for PCI2 on CDS
66800       Patch by Andy Fleming 17-Mar-2006
66801
66802     Signed-off-by: Andy Fleming <afleming@freescale.com>
66803
66804 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
66805 Author: Matthew McClintock <msm@freescale.com>
66806 Date:   Wed Jun 28 10:45:41 2006 -0500
66807
66808     * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
66809
66810     Signed-off-by: Andy Fleming <afleming@freescale.com>
66811
66812 commit 97074ed9655309b64231bc2cee69fe85399f8055
66813 Author: Matthew McClintock <msm@freescale.com>
66814 Date:   Wed Jun 28 10:45:17 2006 -0500
66815
66816     * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
66817
66818     Signed-off-by: Andy Fleming <afleming@freescale.com>
66819
66820 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
66821 Author: Matthew McClintock <msm@freescale.com>
66822 Date:   Wed Jun 28 10:44:49 2006 -0500
66823
66824     * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
66825
66826     Signed-off-by: Andy Fleming <afleming@freescale.com>
66827
66828 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
66829 Author: Matthew McClintock <msm@freescale.com>
66830 Date:   Wed Jun 28 10:44:23 2006 -0500
66831
66832     * 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
66833
66834     Signed-off-by: Andy Fleming <afleming@freescale.com>
66835
66836 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
66837 Author: Matthew McClintock <msm@freescale.com>
66838 Date:   Wed Jun 28 10:43:36 2006 -0500
66839
66840     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
66841
66842     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66843
66844 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
66845 Author: Matthew McClintock <msm@freescale.com>
66846 Date:   Wed Jun 28 10:43:00 2006 -0500
66847
66848     * 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
66849
66850 commit 5498d90312aad9f6bdbf047986027c35b03cd163
66851 Author: Matthew McClintock <msm@freescale.com>
66852 Date:   Wed Jun 28 10:42:24 2006 -0500
66853
66854     * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
66855
66856 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
66857 Author: Matthew McClintock <msm@freescale.com>
66858 Date:   Wed Jun 28 10:41:37 2006 -0500
66859
66860     * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
66861
66862 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
66863 Author: John Traill <john.traill@freescale.com>
66864 Date:   Wed Aug 9 14:33:50 2006 +0100
66865
66866     Add Rapidio support for the MPC8641HPCN
66867
66868     Signed-off-by: John Traill <john.traill@freescale.com>
66869
66870 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
66871 Author: John Traill <john.traill@freescale.com>
66872 Date:   Tue Aug 8 11:32:43 2006 +0100
66873
66874     Fix caslat calculation
66875
66876     Signed-off-by: John Traill <john.traill@freescale.com>
66877
66878 commit 709d3073e74153278e7904a70819bbef7df50e1a
66879 Author: Jon Loeliger <jdl@freescale.com>
66880 Date:   Thu Aug 3 16:17:56 2006 -0500
66881
66882     Convert to mac-address in ethernet nodes.
66883
66884 commit 71748af833ca1017edf1415be376366ff2937d17
66885 Author: Haiying Wang <haiying.wang@freescale.com>
66886 Date:   Fri Jul 28 12:41:35 2006 -0400
66887
66888     Correct the irq value of DUART2
66889
66890 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
66891 Author: Haiying Wang <haiying.wang@freescale.com>
66892 Date:   Fri Jul 28 12:41:41 2006 -0400
66893
66894     Change the space size of PEX IO in README
66895
66896 commit 239db37c94f7a92941c4465feceb867c609241c5
66897 Author: Haiying Wang <haiying.wang@freescale.com>
66898 Date:   Fri Jul 28 12:41:18 2006 -0400
66899
66900     Move get_board_sys_clk to board directory
66901
66902 commit 492900b985439fbce1a118afde1e35def870db03
66903 Author: John Traill <john.traill@freescale.com>
66904 Date:   Fri Jul 28 09:03:54 2006 +0100
66905
66906     Fix 8641HPCN pollution
66907
66908 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
66909 Author: John Traill <john.traill@freescale.com>
66910 Date:   Fri Jul 28 08:16:06 2006 +0100
66911
66912     Fix 8641HPCN timebase
66913
66914 commit c86360b830f1eecd7a72208575dde4f57879faea
66915 Author: Zhang Wei <wei.zhang@freescale.com>
66916 Date:   Fri Jul 28 00:01:34 2006 +0800
66917
66918     Fixed OF device tree of mpc86xxhpcn board.
66919
66920     The changes works in with kernel irq mapping rework.
66921
66922     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
66923
66924 commit bea3f28d285942bf3f7ab339ce85178ded544225
66925 Author: Haiying Wang <haiying.wang@freescale.com>
66926 Date:   Wed Jul 12 10:48:05 2006 -0400
66927
66928     Add support for reading and writing mac addresses to or from ID EEPROM.
66929
66930     Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
66931     With attached patch, we can use command "mac/mac read/mac save/"
66932     to read and write EEPROM under u-boot prompt.
66933
66934     U-boot will calculate the checksum of EEPROM while bootup,
66935     if it is right, then u-boot will check whether the mac address
66936     of eTSEC0/1/2/3 is availalbe (non-zero).
66937
66938     If there is mac address availabe in EEPROM, u-boot will use it,
66939     otherewise, u-boot will use the mac address defined in
66940     MPC8641HPCN.h. This matches the requirement to set unique mac address
66941     for each TSEC port.
66942
66943     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
66944     Signed-off-by: York Sun <yorksun@freescale.com>
66945
66946 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
66947 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
66948 Date:   Thu Jul 13 10:35:10 2006 -0500
66949
66950     Fixed initrd issue by define big RAM
66951
66952     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
66953
66954 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
66955 Author: Jason Jin <Jason.jin@freescale.com>
66956 Date:   Fri Jul 7 10:01:45 2006 -0500
66957
66958     We made a u-boot patch to fix the hang up issue
66959     when booting filesystem from ramdisk.
66960
66961     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
66962
66963 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
66964 Author: Matthew McClintock <msm@freescale.com>
66965 Date:   Wed Jun 28 10:47:03 2006 -0500
66966
66967     * Switched default PCI speed for 8540 ADS back to 33MHz
66968     * Added comments and a printf to warn that PCI-X won't
66969       work at 33MHz
66970       Patch by Andy Fleming 17-Mar-2006
66971
66972     Signed-off-by: Andy Fleming <afleming@freescale.com>
66973
66974 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
66975 Author: Matthew McClintock <msm@freescale.com>
66976 Date:   Wed Jun 28 10:46:35 2006 -0500
66977
66978     * Fixed a bug where 8555 PCI code used the old variable and
66979       function names
66980       Patch by Andy Fleming 17-Mar-2006
66981
66982     Signed-off-by: Andy Fleming <afleming@freescale.com>
66983
66984 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
66985 Author: Matthew McClintock <msm@freescale.com>
66986 Date:   Wed Jun 28 10:46:13 2006 -0500
66987
66988     * Added VIA configuration table
66989     * Added support for PCI2 on CDS
66990       Patch by Andy Fleming 17-Mar-2006
66991
66992     Signed-off-by: Andy Fleming <afleming@freescale.com>
66993
66994 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
66995 Author: Matthew McClintock <msm@freescale.com>
66996 Date:   Wed Jun 28 10:45:41 2006 -0500
66997
66998     * Fixed PCI memory definitions
66999       Patch by Andy Fleming 17-Mar-2006
67000
67001     Signed-off-by: Andy Fleming <afleming@freescale.com>
67002
67003 commit 087454609e47295443af793a282cddcd91a5f49c
67004 Author: Matthew McClintock <msm@freescale.com>
67005 Date:   Wed Jun 28 10:45:17 2006 -0500
67006
67007     * Added support for initializing second PCI bus on 85xx
67008       Patch by Andy Fleming 17-Mar-2006
67009
67010     Signed-off-by: Andy Fleming <afleming@freescale.com>
67011
67012 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
67013 Author: Matthew McClintock <msm@freescale.com>
67014 Date:   Wed Jun 28 10:44:49 2006 -0500
67015
67016     * Added PCI-X #defines for PCI-X initialization
67017       Patch by Andy Fleming on 17-Mar-2006
67018
67019     Signed-off-by: Andy Fleming <afleming@freescale.com>
67020
67021 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
67022 Author: Matthew McClintock <msm@freescale.com>
67023 Date:   Wed Jun 28 10:44:23 2006 -0500
67024
67025     * Made sure the code which disables prefetch for PCI devices
67026       sets the size of the prefetch region to 0
67027       Patch by Andy Fleming on 17-Mar-2006
67028
67029     Signed-off-by: Andy Fleming <afleming@freescale.com>
67030
67031 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
67032 Author: Matthew McClintock <msm@freescale.com>
67033 Date:   Wed Jun 28 10:43:36 2006 -0500
67034
67035     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
67036       Patch by Jon Loeliger 17-Jan-2006
67037
67038     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67039
67040 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
67041 Author: Matthew McClintock <msm@freescale.com>
67042 Date:   Wed Jun 28 10:43:00 2006 -0500
67043
67044     * Removed the oftree.dts for stxxtx in light of the changes
67045       to the flat device tree handling code
67046       Patch by Matthew McClintock 26-June-2006
67047
67048 commit 1b380ec225665e73959677f3893dc658c5925e05
67049 Author: Matthew McClintock <msm@freescale.com>
67050 Date:   Wed Jun 28 10:42:24 2006 -0500
67051
67052     * Patch to modify ft_build.c to update flat device trees in place
67053       Patch by Matthew McClintock 26-June-2006
67054
67055 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
67056 Author: Matthew McClintock <msm@freescale.com>
67057 Date:   Wed Jun 28 10:41:37 2006 -0500
67058
67059     * Modify bootm command to support booting with flat device trees
67060       Patch by Matthew McClintock 26-June-2006
67061
67062 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
67063 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
67064 Date:   Wed Jun 28 08:43:56 2006 -0500
67065
67066     Change Id to symbolic name for RTL8139
67067
67068     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67069
67070 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
67071 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
67072 Date:   Tue Jun 27 18:12:10 2006 +0800
67073
67074     Fix RTL8139 in big endian
67075
67076     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
67077     signed-off-by: Wei Zhang <wei.zhang@freescale.com>
67078
67079 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
67080 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
67081 Date:   Tue Jun 27 18:12:23 2006 +0800
67082
67083     Fix Tsec bug when no link
67084
67085      When tftp a non-exist file from the tftp server, u-boot will check
67086      the link of all eth port. The original file will return wrong link
67087      state on the no link ports.
67088
67089     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
67090
67091 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
67092 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
67093 Date:   Tue Jun 27 18:12:02 2006 +0800
67094
67095     Fix bug for io_bar size during pci scan
67096
67097     During the pci scan process, Some devices return bar_reponse with the
67098     highest bytes 0, such as the pci bridge in uli1575 return bar_response
67099     with 0xffffff, So the bar_size should be manually set under 64K.
67100
67101     Signed-off-by: Jason Jin <jason.jin@freescale.com>
67102
67103 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
67104 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
67105 Date:   Tue Jun 27 18:11:54 2006 +0800
67106
67107     Enable PCIE1 for MPC8641HPCN board
67108
67109     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67110
67111 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
67112 Author: Wolfgang Denk <wd@pollux.denx.de>
67113 Date:   Mon Jun 26 11:06:00 2006 +0200
67114
67115     More code cleanup
67116
67117 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
67118 Author: Jon Loeliger <jdl@freescale.com>
67119 Date:   Thu Jun 22 08:51:46 2006 -0500
67120
67121     Fix bug in 8641hpcn reset command with no args.
67122
67123     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
67124     Acked-by: Jon Loeliger <jdl@freescale.com>
67125
67126 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
67127 Author: Zhang Wei <wei.zhang@freescale.com>
67128 Date:   Tue Jun 20 17:47:15 2006 +0800
67129
67130     Reworked IRQ mapping in OF-tree.
67131
67132 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
67133 Author: Jon Loeliger <jdl@freescale.com>
67134 Date:   Thu Jun 15 21:33:37 2006 -0500
67135
67136     Do not enable address translation on secondary CPUs.
67137     Do not set up BATs on secondary CPUs.  Let Linux do the nasty.
67138
67139     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67140
67141 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
67142 Author: Wolfgang Denk <wd@pollux.denx.de>
67143 Date:   Wed Jun 14 18:14:56 2006 +0200
67144
67145     Code cleanup
67146
67147 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
67148 Author: Wolfgang Denk <wd@pollux.denx.de>
67149 Date:   Wed Jun 14 17:45:53 2006 +0200
67150
67151     Various USB related patches
67152     - Add support for mpc8xx USB device.
67153     - Add support for Common Device Class - Abstract Control Model USB console.
67154     - Add support for flow control in USB slave devices.
67155     - Add support for switching between gserial and cdc_acm using environment.
67156     - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
67157     - Update usbcore slightly to ease host enumeration.
67158     - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
67159     - Add AdderUSB_config as a defconfig to enable usage of the USB console
67160       by default with the Adder87x U-Boot port.
67161     Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
67162
67163 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
67164 Author: Jon Loeliger <jdl@jdl.com>
67165 Date:   Wed Jun 7 10:53:55 2006 -0500
67166
67167     Fix a get_board_sys_clk() use-before-def warning.
67168
67169     Signed-off-by: Jon Loeliger <jdl@jdl.com>
67170
67171 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
67172 Author: Jon Loeliger <jdl@jdl.com>
67173 Date:   Wed Jun 7 10:52:49 2006 -0500
67174
67175     Allow DTC path to be passed in.
67176
67177     Signed-off-by: Jon Loeliger <jdl@jdl.com>
67178
67179 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
67180 Author: Haiying Wang <haiying.wang@freescale.com>
67181 Date:   Tue Jun 6 16:54:29 2006 -0400
67182
67183     Modify the IRQ of DUART2
67184
67185 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
67186 Author: Jon Loeliger <jdl@jdl.com>
67187 Date:   Wed May 31 13:55:35 2006 -0500
67188
67189     Review cleanups.
67190
67191     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67192
67193 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
67194 Author: Jon Loeliger <jdl@jdl.com>
67195 Date:   Wed May 31 12:44:44 2006 -0500
67196
67197     White space cleanup.
67198     Some 80-column cleanups.
67199     Convert printf() to puts() where possible.
67200     Use #include "spd_sdram.h" as needed.
67201     Enhanced reset command usage message a bit.
67202
67203     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67204
67205 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
67206 Author: Jon Loeliger <jdl@jdl.com>
67207 Date:   Wed May 31 11:39:34 2006 -0500
67208
67209     Removed unneeded local_bus_init() from 8641HPCN board.
67210
67211     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67212
67213 commit 4d3d729c16c392d2982d3266b659d333c927697d
67214 Author: Jon Loeliger <jdl@jdl.com>
67215 Date:   Wed May 31 11:24:28 2006 -0500
67216
67217     Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
67218
67219     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67220
67221 commit b2a941de060350ad15878d8219825f4950e9bb8e
67222 Author: Jon Loeliger <jdl@jdl.com>
67223 Date:   Wed May 31 10:07:28 2006 -0500
67224
67225     Remove dead debug code.
67226
67227     Signed-off-by: Jon Loeliger <jdl@jdl.com>
67228
67229 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
67230 Author: Jon Loeliger <jdl@freescale.com>
67231 Date:   Tue May 30 17:47:00 2006 -0500
67232
67233     Move mpc86xx PIXIS code to board directory
67234
67235     First cut at moving the PIXIS platform code out of
67236     the 86xx cpu directory and into board/mpc8641hpcn
67237     where it belongs.
67238
67239     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67240
67241 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
67242 Author: Markus Klotzbuecher <mk@denx.de>
67243 Date:   Tue May 30 16:56:14 2006 +0200
67244
67245     Support generic OHCI support for the s3c24x0 cpu.
67246
67247 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
67248 Author: Haiying Wang <Haiying.Wang@freescale.com>
67249 Date:   Tue May 30 09:10:32 2006 -0500
67250
67251     Improve "reset" command's interaction with watchdog.
67252
67253         "reset altbank" will reset another bank WITHOUT watch dog timer enabled
67254         "reset altbank wd" will reset another bank WITH watch dog enabled
67255         "diswd" will disable watch dog after u-boot boots up successfully
67256
67257     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
67258
67259 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
67260 Author: Haiying Wang <Haiying.Wang@freescale.com>
67261 Date:   Tue May 30 08:51:19 2006 -0500
67262
67263     Fix two SDRAM setup bugs.
67264
67265         Fix ECC setup bug.
67266         Enable 1T/2T based on number of DIMMs present.
67267
67268     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
67269
67270 commit d11fec5015334deb2010e36ce00bb118cc5429a5
67271 Author: Haiying Wang <Haiying.Wang@freescale.com>
67272 Date:   Fri May 26 10:24:48 2006 -0500
67273
67274     Add first draft of the MPC8641HPCN doc/README.
67275
67276     Signed-off-by: Jon Loeliger <jdl@jdl.com>
67277
67278 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
67279 Author: Haiying Wang <Haiying.Wang@freescale.com>
67280 Date:   Fri May 26 10:13:04 2006 -0500
67281
67282     Added pci@8000 block.
67283     Updated ethernet interrupt mappings (moved up 48).
67284     Cleaned up a few comments.
67285
67286     Signed-off-by: Jon Loeliger <jdl@jdl.com>
67287
67288 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
67289 Author: Haiying Wang <Haiying.Wang@freescale.com>
67290 Date:   Fri May 26 10:01:16 2006 -0500
67291
67292     Allow args on reset command.
67293
67294     Signed-off-by: Jon Loeliger <jdl@jdl.com>
67295
67296 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
67297 Author: Markus Klotzbuecher <mk@denx.de>
67298 Date:   Tue May 23 13:38:35 2006 +0200
67299
67300     Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
67301     fixes to the latter.
67302
67303 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
67304 Author: Markus Klotzbuecher <mk@denx.de>
67305 Date:   Tue May 23 10:33:11 2006 +0200
67306
67307     More cleanup for the delta board and the generic usb_ohci driver. Added
67308     CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
67309     initialization and cleanup hooks respectively.
67310
67311 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
67312 Author: Markus Klotzbuecher <mk@denx.de>
67313 Date:   Mon May 22 16:33:54 2006 +0200
67314
67315     This patch adds USB storage support for the delta board. This is the first
67316     board to make use of a generic OHCI driver, that calls hooks for board
67317     dependant initialization.
67318
67319 commit 14e37081ff3cac7ebe6e93836523429853b6b292
67320 Author: Jon Loeliger <jdl@jdl.com>
67321 Date:   Fri May 19 13:28:39 2006 -0500
67322
67323     Change arbitration to round-robin for SMP linux.
67324
67325 commit 9a655876e5995be80f49054e2509500e871e4d3a
67326 Author: Jon Loeliger <jdl@jdl.com>
67327 Date:   Fri May 19 13:26:34 2006 -0500
67328
67329     Enable dual DDR controllers and interleaving.
67330
67331 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
67332 Author: Jon Loeliger <jdl@jdl.com>
67333 Date:   Fri May 19 13:22:44 2006 -0500
67334
67335     Update 86xx address map and LAWBARs.
67336
67337 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
67338 Author: Jon Loeliger <jdl@jdl.com>
67339 Date:   Fri May 19 13:14:15 2006 -0500
67340
67341     Remove L2 Cache invalidate polling.
67342
67343 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
67344 Author: Jon Loeliger <jdl@jdl.com>
67345 Date:   Fri May 19 12:33:09 2006 -0500
67346
67347     Enable 2nd CPU and I2C.
67348
67349 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
67350 Author: Jon Loeliger <jdl@freescale.com>
67351 Date:   Mon May 15 07:26:56 2006 -0500
67352
67353     Update interrupt mapping.
67354
67355 commit 6cfea33477b04b63ed47386ed1629529484c33ba
67356 Author: Haiying Wang <Haiying.Wang@freescale.com>
67357 Date:   Wed May 10 09:38:06 2006 -0500
67358
67359     Remove unneeded INIT_RAM_LOCK cache twiddling.
67360     Correctly tracks r29 as global data pointer now.
67361
67362     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
67363
67364 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
67365 Author: Jon Loeliger <jdl@freescale.com>
67366 Date:   Wed May 10 09:33:07 2006 -0500
67367
67368     Remove unnecessary flash.c file.
67369
67370 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
67371 Author: Jon Loeliger <jdl@freescale.com>
67372 Date:   Tue May 9 08:23:49 2006 -0500
67373
67374     Get MPC8641HPCN flash images working.
67375
67376         Enable the CFI driver.
67377         Remove bogus LAWBAR7 cruft.
67378         Use correct TEXT_BASE, Fixup load script.
67379         Enable SPD EEPROM during DDR setup.
67380         Use generic RFC 1918 IP addresses by default.
67381
67382 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
67383 Author: Jon Loeliger <jdl@freescale.com>
67384 Date:   Thu Apr 27 10:15:16 2006 -0500
67385
67386     Cleanup whitespaces and style issues.
67387     Removed //-style comments.
67388     Use 80-column lines.
67389     Remove trailing whitespace.
67390     Remove dead code and debug cruft.
67391
67392 commit a2320a6bf8113a09544c42d160d10ac69d049a03
67393 Author: Jon Loeliger <jdl@freescale.com>
67394 Date:   Thu Apr 27 08:22:39 2006 -0500
67395
67396     Revert bad PCI prefetch limit change.
67397
67398 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
67399 Author: Jon Loeliger <jdl@freescale.com>
67400 Date:   Wed Apr 26 17:58:56 2006 -0500
67401
67402     Initial support for MPC8641 HPCN board.