]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - CHANGELOG
2dd7fe4e121eed6766f0d74f8f6eee517a166d9a
[karo-tx-uboot.git] / CHANGELOG
1 commit d650da2dd4af99967aabc43cccbd8f160eb4cea6
2 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
3 Date:   Tue Mar 9 22:13:33 2010 +0100
4
5     ep93xx timer: Fix resolution of get_ticks()
6
7     ep93xx timer: Make get_ticks() return a value in CONFIG_SYS_HZ resolution,
8     as announced by get_tbclk()
9
10     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
11
12 commit 7e67fb5bf27a07d3b8d6b97c76f7195f7d68af58
13 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
14 Date:   Tue Mar 9 22:13:20 2010 +0100
15
16     ep93xx timer: Fix possible overflow in usecs_to_ticks()
17
18     ep93xx timer: Use 64-bit values in usecs_to_ticks() in order to avoid
19     overflows in intermediate values
20
21     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
22
23 commit daa989b47297c9f73426783599c286ef3a1f3f49
24 Author: Asen Dimov <dimov@ronetix.at>
25 Date:   Thu Mar 18 13:41:47 2010 +0200
26
27     correct a syntax typo in at91_matrix.h
28
29     Signed-off-by: Asen Dimov <dimov@ronetix.at>
30
31 commit 322ff395c9aec7b87a2211fe4333fdf44377c564
32 Author: Jeff Angielski <jeff@theptrgroup.com>
33 Date:   Wed Mar 17 15:09:26 2010 -0400
34
35     env: fix endian ordering in crc table
36
37     The crc table was being built as little endian for big endian
38     targets.  This would cause fw_printenv to always fail with
39     "Warning: Bad CRC, using default environment" messages.
40
41     Signed-off-by: Jeff Angielski <jeff@theptrgroup.com>
42     Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
43
44 commit 51c2ac9bb574c1420b993615268392b0c1f829f6
45 Author: Anatolij Gustschin <agust@denx.de>
46 Date:   Tue Mar 16 17:10:08 2010 +0100
47
48     mpc5121: cpu/mpc512x/diu.c: fix warnings
49
50     Fix warnings while compiling with CONFIG_VIDEO enabled:
51
52     diu.c: In function 'video_hw_init':
53     diu.c:158: warning: 'return' with no value, in function returning non-void
54     diu.c:162: warning: format '%ld' expects type 'long int', but argument 6 has type 'int'
55     diu.c:162: warning: format '%ld' expects type 'long int', but argument 7 has type 'int'
56
57     Signed-off-by: Anatolij Gustschin <agust@denx.de>
58
59 commit a74908161a1b37d780d3a826a86807bbc50a3857
60 Author: Anatolij Gustschin <agust@denx.de>
61 Date:   Tue Mar 16 15:29:33 2010 +0100
62
63     console.c: fix problem with splashimage
64
65     If a board uses cfb_console driver and splash image
66     and also defines CONFIG_SILENT_CONSOLE, the user is
67     locked out even if "silent" is not set. It is not
68     possible to get any output, neither on vga console
69     device nor on serial console after redirecting the
70     output to the serial console, since the GD_FLG_SILENT
71     flag remains set.
72
73     Fix the problem by redirecting the output from frame
74     buffer to serial console if splashimage is used.
75     Only suppress the output if "silent" environment
76     variable was set and don't set the GD_FLG_SILENT
77     flag arbitrarily.
78
79     Signed-off-by: Anatolij Gustschin <agust@denx.de>
80
81 commit 5647f78d04174b0b99857d2a7cbf25141bd14a45
82 Author: Thomas Weber <swirl@gmx.li>
83 Date:   Sat Mar 13 23:14:45 2010 +0100
84
85     mod change 755 => 644 for multiple files
86
87     I executed 'find . -name "*.[chS]" -perm 755 -exec chmod 644 {} \;'
88
89     Signed-off-by: Thomas Weber <swirl@gmx.li>
90     Add some more: neither Makefile nor config.mk need execute permissions.
91     Signed-off-by: Wolfgang Denk <wd@denx.de>
92
93 commit 99c006a320ceb9ea19135ac1512e4a81e8bebb72
94 Author: Stefano Babic <sbabic@denx.de>
95 Date:   Sat Mar 13 21:09:00 2010 +0100
96
97     mxcmmc: fix warnings due to access 32 bit registers with 16 bit accessors
98
99     Some registers of the mxcmmc driver were accessed using
100     16 bit accessor functions, because only the LSB is
101     significant. This is not needed and generates
102     warnings.
103
104     Signed-off-by: Stefano Babic <sbabic@denx.de>
105
106 commit c96f86eefc215b67dd222694ce2b6f60e6a42b0b
107 Author: Wolfgang Denk <wd@denx.de>
108 Date:   Sun Jan 17 23:55:53 2010 +0100
109
110     TFTP: allow for adjustable retransmission timout
111
112     So far, TFTP negotiated a fixed retransmission timeout of 5 seconds.
113     In some cases (busy networks, slow TFTP servers) this caused very
114     slow transfers. A new environment variable "tftptimeout" allows to
115     set this timeout. Lowering this value may make downloads succeed
116     faster in networks with high packet loss rates or with unreliable
117     TFTP servers.
118
119     Signed-off-by: Wolfgang Denk <wd@denx.de>
120     Cc: Ben Warren <biggerbadderben@gmail.com>
121     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
122
123 commit 252b404d954f91499a4477a3e1064eb237ce5a1c
124 Author: Wolfgang Denk <wd@denx.de>
125 Date:   Tue Mar 9 14:27:25 2010 +0100
126
127     Fix PCI_BASE_ADDRESS_5 handling in pci_hose_config_device()
128
129     Signed-off-by: FUJITA Kazutoshi <fujita@soum.co.jp>
130     Signed-off-by: <wd@denx.de>
131     Acked-by: Stefan Roese <sr@denx.de>
132
133 commit 9d90a93d367272ee65550c0c9f82615cec967c70
134 Author: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
135 Date:   Thu Feb 25 14:03:08 2010 +0100
136
137     cmd_mmc remove \n
138
139     This patch removes the \n after the help message for mmcinfo.
140     This resulted in an empty line being displayed after the mmcinfo line
141     when the help command was given.
142
143     Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
144
145 commit 67c7189dd35cb368ef665126fd17816581bd2e92
146 Author: Renato Andreola <renato.andreola@imagos.it>
147 Date:   Tue Mar 16 16:01:29 2010 -0400
148
149     nios2: Added support to YANU UART
150
151     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
152
153 commit 1e67fb32fbdae7949bb423c9e20b3f77c0a61663
154 Author: Thomas Chou <thomas@wytron.com.tw>
155 Date:   Tue Mar 16 12:12:48 2010 -0400
156
157     nios2: use generic unaligned.h
158
159     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
160
161 commit 05022629a2ca6c385dc390d32c20aa27cf5d915a
162 Author: Mike Frysinger <vapier@gentoo.org>
163 Date:   Thu Jan 21 05:01:15 2010 -0500
164
165     asm-blackfin/unaligned.h: add for zlib code
166
167     The new zlib code wants asm/unaligned.h, so have the Blackfin version pull
168     in the asm-generic/unaligned.h.
169
170     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
171
172 commit 3adc1fda38a6aacd4aaf3c2c9cc62a1e69e6de17
173 Author: Mike Frysinger <vapier@gentoo.org>
174 Date:   Thu Jan 21 05:01:14 2010 -0500
175
176     asm-generic/unaligned.h: dynamic default unaligned accesses
177
178     This is based on the asm-arm/unaligned.h, but made generic so all arches
179     that cannot do unaligned accesses can utilize it.
180
181     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
182
183 commit be129aa71882421ad0b50cd3762915d10ace27ad
184 Author: Matthias Weisser <matthias.weisser@graf-syteco.de>
185 Date:   Tue Jan 12 12:06:31 2010 +0100
186
187     video: Fix console display when splashscreen is used
188
189     If a splashscreen is used the console scrolling used the
190     scroll size as needed when a logo was displayed. This
191     patch sets the scroll size to the whole screen if
192     a splashscreen is shown.
193
194     Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de>
195
196 commit 93910edb595a88d394da3eb2cf5148096155dfe9
197 Author: Wolfgang Denk <wd@denx.de>
198 Date:   Fri Mar 12 23:06:04 2010 +0100
199
200     Prepare v2010.03-rc1
201
202     Coding style cleanup, update CHANGELOG.
203
204     Signed-off-by: Wolfgang Denk <wd@denx.de>
205
206 commit 4e72fb15c9073129e05820cc9c54f54bc4985835
207 Author: Wolfgang Denk <wd@denx.de>
208 Date:   Fri Mar 12 22:11:00 2010 +0100
209
210     standalone eepro100_eeprom: fix build error
211
212     Building examples/standalone/eepro100_eeprom triggers this error:
213
214     In file included from include/common.h:629,
215                      from eepro100_eeprom.c:24:
216     include/net.h: In function 'NetReadIP':
217     include/net.h:430: warning: implicit declaration of function 'memcpy'
218     eepro100_eeprom.c: At top level:
219     eepro100_eeprom.c:81: error: conflicting types for 'memcpy'
220     include/net.h:430: error: previous implicit declaration of 'memcpy' was here
221
222     Fix this.
223
224     Signed-off-by: Wolfgang Denk <wd@denx.de>
225
226 commit 1bb1809558e11eb089fba32caed9fc99d21477c1
227 Author: Wolfgang Denk <wd@denx.de>
228 Date:   Fri Mar 12 22:10:31 2010 +0100
229
230     Update .gitignore's: add some generated files
231
232     Signed-off-by: Wolfgang Denk <wd@denx.de>
233
234 commit 9c9cbe78dcb0afad081670cb1bdc82d227095cae
235 Author: Detlev Zundel <dzu@denx.de>
236 Date:   Mon Mar 8 14:02:57 2010 +0100
237
238     mpc82xx: Remove SL8245 board and the now orpahned sk98lin network driver.
239
240     This code has compile problems and the company does not even exist any
241     more.  So we take the liberty to drop support for it.
242
243     Signed-off-by: Detlev Zundel <dzu@denx.de>
244     CC: Wolfgang Denk <wd@denx.de>
245     CC: Ben Warren <biggerbadderben@gmail.com>
246
247 commit ca02f6f8dc4966b2a019b15e01b5070189327df2
248 Author: Kumar Gala <galak@kernel.crashing.org>
249 Date:   Wed Mar 10 17:16:48 2010 -0600
250
251     85xx: Drop FIT support to allow u-boot image to fit in 512k
252
253     The 36-bit build exceeds the 512k size we have.  Removing FIT type image
254     support allows us to fit and we dont really use it.
255
256     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
257
258 commit 5f8419597f427aaf9bb501460735d703d10db5ee
259 Author: Michael Zaidman <michael.zaidman@gmail.com>
260 Date:   Sun Feb 28 16:28:25 2010 +0200
261
262     Cosmetic change - indentation correction.
263
264     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
265
266 commit a693447ceadff49155e260cbbaef4e09c926cab5
267 Author: Anatolij Gustschin <agust@denx.de>
268 Date:   Wed Feb 24 00:29:44 2010 +0100
269
270     cmd_mtdparts.c: prevent printbuffer overflows
271
272     The length of configured MTDPARTS_DEFAULT string
273     could be greater than console printbuffer size.
274     Replace printf() by puts() to avoid potential buffer
275     overflows.
276
277     Signed-off-by: Anatolij Gustschin <agust@denx.de>
278
279 commit 3920bbedcf74a073bc72950a51de75af6faa2f06
280 Author: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
281 Date:   Fri Feb 19 11:59:04 2010 +0100
282
283     Fix MPC8536DS documentation
284
285     This patch corrects small mistake in the register list in
286     doc/README.mpc8536ds. These registers are 32 bits and this one starts
287     at ....c not ....e
288
289     When using the ...c address I can boot from sd, when using the ...e
290     address I cannot.
291
292     Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
293     Acked-by: Hu Mingkai <B21284@freescale.com>
294
295 commit ab68f4dd193053c0ba395af15b154caca35e99f3
296 Author: Heiko Schocher <hs@denx.de>
297 Date:   Wed Feb 10 08:03:21 2010 +0100
298
299     doc: add README for CONFIG_HWCONFIG option
300
301     Signed-off-by: Heiko Schocher <hs@denx.de>
302
303 commit 7026ead0d3ece5e43d6b39f62fb5c4306f691224
304 Author: Heiko Schocher <hs@denx.de>
305 Date:   Tue Feb 9 15:50:27 2010 +0100
306
307     TQM8xx: enable device tree support on all TQM8xx based boards.
308
309     Also enable support for CONFIG_HWCONFIG because we use this for
310     configuring if this hardware has a FEC or not.
311
312     syntax:
313
314     hwconfig=fec:on   if hardware has an fec
315     hwconfig=fec:off  if hardware has no fec
316
317     Signed-off-by: Heiko Schocher <hs@denx.de>
318     Signed-off-by: Wolfgang Denk <wd@denx.de>
319
320 commit 6ed3b9d44c359bc829e9acd0a55fcd1c3e82b6ae
321 Author: Heiko Schocher <hs@denx.de>
322 Date:   Tue Feb 9 15:50:21 2010 +0100
323
324     TQM8xx: add device tree support for TQM8xx based boards.
325
326     Also use hwconfig to configure whether the board has a FEC or not.
327     We then can adjust the DTS to tell Linux if there is a FEC present.
328
329     syntax:
330
331     hwconfig=fec:on   if hardware has a  FEC
332     hwconfig=fec:off  if hardware has no FEC
333
334     Signed-off-by: Heiko Schocher <hs@denx.de>
335     Signed-off-by: Wolfgang Denk <wd@denx.de>
336
337 commit 143cd21fe22e69bf0cdaefd57be98f07ed8f04fa
338 Author: Wolfgang Denk <wd@denx.de>
339 Date:   Thu Mar 11 23:56:03 2010 +0100
340
341     Move CONFIG_UPDATE_TFTP code after CONFIG_PREBOOT
342
343     The auto-update feature (CONFIG_UPDATE_TFTP) requires that the env
344     variable serverip be set for the TFTP access. If DHCP is to be used
345     to get the serverip env variable, this doesn't work as DHCP happens
346     after the auto-update attempt has run. A solution is to run DHCP in
347     PREBOOT, but even this is too late.
348
349     To solve this, we move update_tftp() below the PREBOOT stuff.
350
351     Signed-off-by: Wolfgang Denk <wd@denx.de>
352
353 commit 1b691bb0c2fa18c9b68f15398ef6c8b9e0c0f3e3
354 Author: Mike Frysinger <vapier@gentoo.org>
355 Date:   Mon Jan 25 18:50:11 2010 -0500
356
357     mkimage: dont force entry point with xip
358
359     Some people boot images with the entry point in the middle of the blob
360     (like Linux with the head code in discardable .init.text), and there is no
361     no real requirement that the entry point be right after the mkimage header
362     when doing XIP, so let people specify whatever they want.  If they do need
363     an entry right after the header, then they still can do that with normal
364     -e behavior.
365
366     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
367
368 commit 4b99327a4121a28d2bdb2c2b841f5d97931ae905
369 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
370 Date:   Fri Jan 15 10:06:06 2010 -0500
371
372     PPC: Record U-Boot's relocated address in RAM and show in bdinfo.
373
374     This patch uses gd->relocaddr variable to store uboot's relocated
375     address in RAM and shows it in bdinfo command.
376
377     This patch moves CONFIG_AMIGAONEG3SE style copying of the address
378     in board_init_f to just before relocation is actually done.
379
380     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
381     Tested-by: Detlev Zundel <dzu@denx.de>
382
383 commit 8c4444ff5e1d8e9fd1a847a2fb096aa9aff66f85
384 Author: Wolfgang Denk <wd@denx.de>
385 Date:   Thu Mar 11 23:35:43 2010 +0100
386
387     Fix memory leak in mmc_read()
388
389     There is be a path through mmc_read in drivers/mmc/mmc.c where
390     malloc'd memory is not freed before exiting mmc_read: it occurs if
391     mmc_set_blocklen() returns a non-zero value.
392
393     Reported-by: Quentin Armitage <Quentin@Armitage.org.uk>
394     Signed-off-by: Wolfgang Denk <wd@denx.de>
395
396 commit 6258b04e9a41ee60f21547358a58fbcb9087735d
397 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
398 Date:   Thu Feb 11 14:57:04 2010 +0100
399
400     AT91: Update otc570 board to new SoC access
401
402     * convert otc570 board to use c stucture SoC access
403     * change gpio access to at91_gpio syntax
404
405     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
406
407 commit 7cedb29872069e782f9f97cef4ab1232736e4c85
408 Author: Jens Scharsig <js_at_ng@scharsoft.de>
409 Date:   Sun Feb 14 12:20:43 2010 +0100
410
411     updates the at91 main_clock calculation
412
413     * updates the conditional main_clock calculation (if AT91_MAIN_CLOCK defined) to c structure SoC access
414      * add need register flags
415
416     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
417
418 commit 637833c2d669f9a370706e275e7103454c3c83ec
419 Author: Prafulla Wadaskar <prafulla@marvell.com>
420 Date:   Wed Mar 3 15:27:37 2010 +0530
421
422     arm: kirkwood: suen3: fixed build warning
423
424     This patch fixes following build warning
425
426     Invalid Kwbimage command Type - valid names are: BOOT_FROM, NAND_ECC_MODE, NAND_PAGE_SIZE, SATA_PIO_MODE, DDR_INIT_DELAY, DATA, , spi, nand, sata, pex, uart
427
428     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
429
430 commit e4d34492017c95e4041ea0c581e1ab8d1d49381b
431 Author: Stefano Babic <sbabic@denx.de>
432 Date:   Fri Mar 5 17:54:37 2010 +0100
433
434     MX51: removed warnings for the mx51evk
435
436     The patch removes warnings at compile time and provides
437     some cleanup code:
438     - Removed comment on NAND (not yet supported) from lowlevel_init.S
439     - Removed NFMS bit definition from imx-regs.h
440       The bit is only related to MX.25/35 and can lead to confusion
441     - Moved is_soc_rev() to soc specific code (removed from mx51evk.c)
442
443     Signed-off-by: Stefano Babic <sbabic@denx.de>
444
445 commit 9d69e33d8d0f112fe3a089101d023e87431684d1
446 Author: Vipin Kumar <vipin.kumar@st.com>
447 Date:   Tue Mar 2 10:46:52 2010 +0530
448
449     SPEAr : Supporting new mach ids for spear310 and spear320
450
451     Supporting new machine ids for SoCs spear310 and spear320
452
453     include/asm-arm/mach-types.h has to be updated before applying
454     this patch for build to work
455
456     Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
457
458 commit cc0b53c8d5d6a3f14f36982552bc3feb8ecb1db5
459 Author: Heiko Schocher <hs@denx.de>
460 Date:   Mon Mar 1 15:58:18 2010 +0100
461
462     arm, suen3: fix compile error, if doing not a local build
463
464     Signed-off-by: Heiko Schocher <hs@denx.de>
465
466 commit 67fa8c25f5c2d23932c0f31b035281d6abbb0965
467 Author: Heiko Schocher <[hs@denx.de]>
468 Date:   Mon Feb 22 16:43:02 2010 +0530
469
470     arm: add support for the suen3 board from keymile
471
472     Add support for the ARM part of the mgcoge2, named suen3.
473     This board is based on the Marvell Kirkwood (88F6281) SoC.
474     As there come more board variants, common config options
475     are collected in include/configs/km_arm.h. Also, this board
476     use common code for all keymile boards, which is stored in
477     board/keymile/common/common.c
478
479     Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
480     Signed-off-by: Stefan Roese <sr@denx.de>
481     Signed-off-by: Heiko Schocher <hs@denx.de>
482
483 commit 6895d4510a7758595b85b48a7f449bd61dfc812f
484 Author: John Rigby <jcrigby@gmail.com>
485 Date:   Mon Jan 25 23:12:58 2010 -0700
486
487     Add support for KARO TX25 board
488
489     This is an i.MX25 base board with only NAND
490     so it uses nand_spl to boot.
491
492     Signed-off-by: John Rigby <jcrigby@gmail.com>
493
494     Tune configuration, add support for (redundant) environment in NAND.
495     Signed-off-by: Wolfgang Denk <wd@denx.de>
496
497     Acked-by: Wolfgang Denk <wd@denx.de>
498     CC: Fred Fan <fanyefeng@gmail.com>
499     CC: Tom <Tom.Rix@windriver.com>
500
501 commit 740d6ae5b982496fcea0666b2207cb34cc0e6015
502 Author: John Rigby <jcrigby@gmail.com>
503 Date:   Mon Jan 25 23:12:57 2010 -0700
504
505     fec_mxc: add MX25 support
506
507     Use RMII for MX25
508     Add code to init gasket that enables RMII
509
510     Signed-off-by: John Rigby <jcrigby@gmail.com>
511     CC: Ben Warren <biggerbadderben@gmail.com>
512
513 commit cb17b92de03416cf4d5db5bd27ef4ae17f95e707
514 Author: John Rigby <jcrigby@gmail.com>
515 Date:   Mon Jan 25 23:12:55 2010 -0700
516
517     fec_mxc: cleanup and factor out MX27 dependencies
518
519     general cleanup
520     move clock init to cpu_eth_init in cpu/arm926ejs/mx27/generic.c
521     make MX27 specific phy init conditional on CONFIG_MX27
522     replace call to imx_get_ahbclk with one to imx_get_fecclk
523     and define imx_get_fecclk in include/asm-arm/arch-mx27/clock.h
524
525     Signed-off-by: John Rigby <jcrigby@gmail.com>
526     CC: Ben Warren <biggerbadderben@gmail.com>
527     CC: Fred Fan <fanyefeng@gmail.com>
528     CC: Tom <Tom.Rix@windriver.com>
529
530 commit 552ff8f1d9fccf57243a01afe6dbebb982867e20
531 Author: John Rigby <jcrigby@gmail.com>
532 Date:   Mon Jan 25 23:12:56 2010 -0700
533
534     Add support for Freescale MX25 SOC
535
536     ARM926EJS core with MX31 peripherals.
537
538     Signed-off-by: John Rigby <jcrigby@gmail.com>
539     Earlier Version Signed-off-by: Wolfgang Denk <wd@denx.de>
540     CC: Fred Fan <fanyefeng@gmail.com>
541     CC: Tom <Tom.Rix@windriver.com>
542
543 commit e911c983f4a8d588f831806af37eb56c95512d5d
544 Author: John Rigby <jcrigby@gmail.com>
545 Date:   Mon Jan 25 23:12:51 2010 -0700
546
547     mxc_serial replace platform specific clock
548
549     remove ifdef'd clock selection code from
550     serial_mxc.c and replace with call to imx_get_uartclk
551
552     Add definitions for imx_get_uartclk to imx31 and imx27
553     include files.
554
555     This makes it easier to add new imx platforms.
556
557     Signed-off-by: John Rigby <jcrigby@gmail.com>
558
559 commit c5fb70c9114bd0a8289444d3d5c7e360eda08232
560 Author: Stefano Babic <sbabic@denx.de>
561 Date:   Fri Feb 5 15:13:58 2010 +0100
562
563     Add initial support for Freescale mx51evk board
564
565     The patch adds initial support for the Freescale mx51evk board.
566     Network (FEC) and SD controller (fsl_esdhc) are supported.
567
568     Signed-off-by: Stefano Babic <sbabic@denx.de>
569     Signed-off-by: Fred Fan <fanyefeng@gmail.com>
570
571 commit c67bee1460a0da89ef08cbc28375171acc9a4227
572 Author: Stefano Babic <sbabic@denx.de>
573 Date:   Fri Feb 5 15:11:27 2010 +0100
574
575     fsl_esdhc: add support for mx51 processor
576
577     The esdhc controller in the mx51 processor is quite
578     the same as the one in some powerpc processors
579     (MPC83xx, MPC85xx). This patches adapts the driver
580     to support the arm mx51.
581
582     Signed-off-by: Stefano Babic <sbabic@denx.de>
583
584 commit 69df00f9d9c2f45b4576d1eae79bfac8bebb8821
585 Author: Stefano Babic <sbabic@denx.de>
586 Date:   Fri Feb 5 15:07:33 2010 +0100
587
588     ARM: add accessors functions
589
590     Some Freescale's processors of different architecture
591     have the same peripheral (eSDHC controller in PowerPC
592     and i.MX51). This patch adds accessors for
593     the internal registers of the SOCs, as already
594     implemented in the PowerPC architecture.
595
596     Signed-off-by: Stefano Babic <sbabic@denx.de>
597
598 commit 11fdade294b4d60c19ae861515aabddca1278deb
599 Author: Stefano Babic <sbabic@denx.de>
600 Date:   Fri Feb 5 15:04:43 2010 +0100
601
602     MMC: add weak function to detect MMC/SD card
603
604     Most controllers can check if there is a card in the slot.
605     However, they require pins that could be not available because
606     required by other functions and the detection of a card must
607     be performed in another way. This patch adds a weak function
608     that a board can implement to add its internal custom way
609     to check the presence of a MMC/SD card.
610
611     Signed-off-by: Stefano Babic <sbabic@denx.de>
612
613 commit 250de12bc2f7842807d25e16971c5bea59c3a4b1
614 Author: Stefano Babic <sbabic@denx.de>
615 Date:   Wed Jan 20 18:20:39 2010 +0100
616
617     mmc: check correctness of the voltage mask in ocr
618
619     Most cards do not answer if some reserved bits
620     in the ocr are set. However, some controllers
621     can set bit 7 (reserved for low voltages), but
622     how to manage low voltages SD card is not yet
623     specified.
624
625     Signed-off-by: Stefano Babic <sbabic@denx.de>
626
627 commit 71d64c0e4fa5910c15eca175a8f3b0e1c1d6711c
628 Author: Stefano Babic <sbabic@denx.de>
629 Date:   Wed Jan 20 18:20:19 2010 +0100
630
631     serial_mxc: add support for MX51 processor
632
633     The patch adds support for the Freescale mx51 processor.
634
635     Signed-off-by: Stefano Babic <sbabic@denx.de>
636     Signed-off-by: Fred Fan <fanyefeng@gmail.com>
637
638 commit 67adcee0e091f0935e7dd722404d2a864cdecbe7
639 Author: Stefano Babic <sbabic@denx.de>
640 Date:   Wed Jan 20 18:20:04 2010 +0100
641
642     MX51: Add pin and multiplexer definitions.
643
644     The patch add header files to support the pin multiplexer
645     of the the Freescale i.MX51 processor.
646
647     Signed-off-by: Stefano Babic <sbabic@denx.de>
648     Signed-off-by: Fred Fan <fanyefeng@gmail.com>
649
650 commit fb87a1ed9205bf5f843e1f264198ce946602deda
651 Author: Stefano Babic <sbabic@denx.de>
652 Date:   Wed Jan 20 18:19:51 2010 +0100
653
654     MX51: Add register definitions
655
656     The patch add header files to support the Freescale i.MX51
657     processor, setting definitions for internal registers.
658
659     Signed-off-by: Stefano Babic <sbabic@denx.de>
660     Signed-off-by: Fred Fan <fanyefeng@gmail.com>
661
662 commit 64fdf452a85718935d82416d141be144b262c542
663 Author: Stefano Babic <sbabic@denx.de>
664 Date:   Wed Jan 20 18:19:32 2010 +0100
665
666     MX51: Add initial support for the Freescale MX51
667
668     The patch add initial support for the Freescale i.MX51 processor
669     (family arm cortex_a8).
670
671     Signed-off-by: Stefano Babic <sbabic@denx.de>
672     Signed-off-by: Fred Fan <fanyefeng@gmail.com>
673
674 commit 18ba012b9b919a7c264dc6299f954d7f53d06605
675 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
676 Date:   Wed Feb 24 19:45:39 2010 +0100
677
678     edb93xx: Fix SDRAM initialization
679
680     edb93xx: Fix SDRAM initialization by issuing a precharge all command before
681     forcing the precharge and select mode register update mode before programming
682     the mode registers. Write to the SDRAM banks in order to force a precharge,
683     reading causes the edb93xx boards to hang
684
685     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
686
687 commit cade7d9577d4d17f55404b5e60cd5e5b0b605c31
688 Author: Anders Darander <anders.darander@gmail.com>
689 Date:   Thu Feb 25 15:57:03 2010 +0100
690
691     Add bootcount to AT91
692
693     Use AT91_GPBR 3 as a bootcount register.
694     The bootmagic and the bootcount shares AT91_GPBR 3.
695
696     Signed-off-by: Anders Darander <ad@datarespons.se>
697
698 commit 5f353484093876d7021f20fa4bd63f82d32941b9
699 Author: Tom Rix <Tom.Rix@windriver.com>
700 Date:   Thu Feb 25 12:05:32 2010 -0600
701
702     ARM Update mach-types
703
704     Fetched from http://www.arm.linux.org.uk/developer/machines/download.php
705     And built with
706
707     repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
708     commit aea187c46f7d03ce985e55eb1398d0776a15b928
709
710     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
711
712 commit c7ad13a24295ded880d7bcd17181df4a5f3bac58
713 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
714 Date:   Wed Feb 24 00:22:09 2010 +0100
715
716     ep93xx: Refactoring of timer code
717
718     ep93xx: Refactoring of the timer code, including the following changes
719
720      * use a free running timer instead of a periodical one
721      * use unsigned long long for total number of ticks
722      * hold the timer state in a structure instead of separate variables
723      * increment the timer counter instead of decrementing it
724      * remove unused function udelay_masked()
725      * remove unused function set_timer()
726
727     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
728
729 commit d9f505e3cddbb7afce26dcfe0fd19b207ee57c09
730 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
731 Date:   Wed Feb 24 00:22:00 2010 +0100
732
733     ep93xx: Fix calculation of sys ticks in clk_to_systicks()
734
735     ep93xx: Use unsigned long long for calculation of sys ticks in clk_to_systicks()
736     for proper handling of large intermediate values
737
738     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
739
740 commit 041d42e789aba20296ffcde92173f100a9592880
741 Author: Siarhei Siamashka <siarhei.siamashka@gmail.com>
742 Date:   Tue Feb 23 23:56:36 2010 -0500
743
744     OMAP3: workaround for ARM Cortex-A8 erratum 725233
745
746     725233: PLD instructions executed with PLD data forwarding
747     enabled can result in a processor deadlock
748
749     This deadlock can happen when NEON load instructions are used together
750     with cache preload instructions (PLD). The problematic conditions
751     can be triggered in-the-wild by NEON optimized functions from pixman
752     library (http://cgit.freedesktop.org/pixman), which perform dynamic
753     adjustment of prefetch distance.
754
755     The workaround disables PLD data forwarding by setting PLD_FWD bit
756     in L2 Cache Auxiliary Control Register as recommended in ARM Cortex-A8
757     errata list.
758
759     The deadlock can only happen on r1pX revisions of Cortex-A8 (used in
760     OMAP34xx/OMAP35xx). Performance impact of the workaround is practically
761     non-existant.
762
763     Signed-off-by: Siarhei Siamashka <siarhei.siamashka@gmail.com>
764     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
765
766 commit 7c966a8bdfdab80cafbfed035d7ae6ea6f58f756
767 Author: Achim Ehrlich <aehrlich@taskit.de>
768 Date:   Wed Feb 24 10:29:16 2010 +0100
769
770     ARM change name of defines for AT91 arm926ejs
771
772     Configuration defines should be preceeded with CONFIG_SYS_. Renamed
773     some at91 specific defines to conform to this naming convention:
774
775     AT91_CPU_NAME to CONFIG_SYS_AT91_CPU_NAME
776     AT91_MAIN_CLOCK to CONFIG_SYS_AT91_MAIN_CLOCK
777
778     Signed-off-by: Achim Ehrlich <aehrlich@taskit.de>
779
780 commit 5c97a1de196fdcbe9d098948ecf4fccfbea23b78
781 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
782 Date:   Wed Feb 17 21:29:45 2010 -0500
783
784     VoiceBlue: fix linker errors
785
786     linking eeprom with libgeneric.a is not really needed and causes following
787     error:
788     ../../lib_generic/libgeneric.a(string.o): In function `strcmp':
789     /home/ladis/src/u-boot-ti/lib_generic/string.c:152: multiple definition of `strcmp'
790     ../../examples/standalone/libstubs.a(stubs.o):include/_exports.h:24: first defined here
791     make[1]: *** [eeprom.srec] Error 1
792
793     Fix undefined reference to memset generated by some versions of gcc
794     to zero out initialized structure on the stack:
795     eeprom.o: In function `eeprom':
796     board/voiceblue/eeprom.c:152: undefined reference to `memset'
797     make[1]: *** [eeprom] Error 1
798
799     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
800     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
801
802 commit a32c1e0ecd563c65c617b0eb9080a10d286bb0b4
803 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
804 Date:   Wed Feb 17 21:29:39 2010 -0500
805
806     VoiceBlue: limit line lenght to 80 characters
807
808     Reindent configuration header to limit line lenght to 80 characters by
809     removing obvious and sometimes misleading comments.
810
811     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
812     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
813
814 commit 779b534385adf0a1efdd8b40dbacae11598575b8
815 Author: Ladislav Michl <ladis@linux-mips.org>
816 Date:   Wed Feb 17 21:13:53 2010 -0500
817
818     netstar.h: do not exceed 80 columns
819
820     Limit line length to 80 characters mostly by removing obvious and sometimes
821     misleading comments. Fix indentation, too.
822
823     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
824     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
825
826 commit 3fca29294abd73915de2bd0fcf2650e03cc9becc
827 Author: Sandeep Paulraj <s-paulraj@ti.com>
828 Date:   Wed Feb 17 21:09:21 2010 -0500
829
830     DaVinci: Adding entry to MAKEALL for DM365 EVM
831
832     The patch adds an entry for the DM365 EVM to MAKEALL
833
834     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
835
836 commit 37cffdad06af5a4538dd090794f213292135adbc
837 Author: Nick Thompson <nick.thompson@ge.com>
838 Date:   Wed Feb 17 20:37:24 2010 -0500
839
840     da830evm: Add support for TI EMAC
841
842     Adds support for ethernet networking on the da830evm platform.
843
844     This platform uses an SoC EMAC interface and a 3 port ethernet
845     switch as a PHY with an RMII interface. The PHY also has a i2c
846     interface for configuring the switch functions.
847
848     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
849     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
850
851 commit d8775d03f3f0116241cfb45c7ef27fd080904c4a
852 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
853 Date:   Mon Feb 8 14:19:06 2010 -0500
854
855     NetStar: make mtdparts default ready for recent kernels
856
857     Recent kernels are using generic NAND and NOR drivers. Change
858     default mtdparts to reflect it.
859
860     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
861     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
862
863 commit de9a1e0d08301ea4925ee137af240424b107a608
864 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
865 Date:   Mon Feb 8 14:17:45 2010 -0500
866
867     NetStar: fix default environment
868
869     Correct switching partitions after upgrade and make it more readable.
870
871     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
872     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
873
874 commit 3a67566c1def7d2eb935b31b3b282ba893c3f330
875 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
876 Date:   Mon Feb 8 14:15:47 2010 -0500
877
878     NetStar: eeprom - fix linker error
879
880     linking eeprom with libgeneric.a is not really needed and causes following
881     error:
882     ../../lib_generic/libgeneric.a(string.o): In function `strcmp':
883     lib_generic/string.c:152: multiple definition of `strcmp'
884     ../../examples/standalone/libstubs.a(stubs.o):include/_exports.h:24: first defined here
885     Remove eeprom linker script as well and generate entry point object
886     (to start application by jumping on its beginning) on the fly.
887     Out-of-tree build tested as well.
888
889     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
890     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
891
892 commit 308d463eaf6f4ada00193306a6e643298d1990d8
893 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
894 Date:   Mon Feb 8 14:15:43 2010 -0500
895
896     NetStar: eeprom - be less verbose
897
898     Use shorter yet descriptive messages, replace printf() with
899     puts() where appropriate. This saves few bytes.
900
901     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
902     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
903
904 commit b29ff6277239f5c8bc9366e74afac5a36ab3b23e
905 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
906 Date:   Mon Feb 8 14:15:15 2010 -0500
907
908     NetStar: eeprom - undefined reference to `memset'
909
910     Defining partially initialized struct eth_device on stack means
911     gcc has to zero out it, and some gcc versions optimize this with
912     an implicit call to memset. Move definition to data section
913     to avoid that (it has also nice side effect that we need not
914     to pass it to helper functions anymore)
915
916     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
917     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
918
919 commit 8f9a221045a4ace14fe006e1353c593619d1001a
920 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
921 Date:   Tue Mar 2 10:59:19 2010 +0100
922
923     ] fix monitor protection for CONFIG_MONITOR_IS_IN_RAM
924
925     For platforms with flash below ram addresses, the current check to
926     activate monitor protection is wrong/insufficient. This patch fixes
927     CONFIG_MONITOR_IS_IN_RAM for these systems by adding a check for
928     this configuration.
929
930     Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de>
931     Signed-off-by: Stefan Roese <sr@denx.de>
932
933 commit c7de810c79a00aa6fc08900ee0bb57bd295db733
934 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
935 Date:   Tue Mar 2 10:59:20 2010 +0100
936
937     allow MCF532x to use CONFIG_MONITOR_IS_IN_RAM
938
939     CONFIG_MONITOR_IS_IN_RAM is broken for MCF532x. This patch fixes this
940      by conditionally
941     - removing the vector table at the beginning of code
942     - not overwriting the vector base register
943     - removing the code to re-set the PLL, which effectively disables
944       SDRAM access
945
946     Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de>
947
948 commit bb907ab51fd04255923b7ecf9dab352078808351
949 Author: Richard Retanubun <RichardRetanubun at RuggedCom.com>
950 Date:   Mon Oct 26 14:19:17 2009 -0400
951
952     MCF5271-only: Added a weak board_reset function to allow custom reset
953
954     This patch adds a board_reset function to allow boards to specify
955     their own custom reset sequence (e.g. resetting by timing out watchdog).
956     Tested only on MCF5271, can be expanded if needed.
957
958     Based on Mike Frysinger's suggestion on:
959     http://article.gmane.org/gmane.comp.boot-loaders.u-boot/70304
960
961     Signed-off-by: Richard Retanubun <RichardRetanubun at RuggedCom.com>
962
963 commit 992d7129500d239d684c15fa2d61e0a8f2e64457
964 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
965 Date:   Wed Oct 28 15:11:00 2009 -0500
966
967     MCF532x: make icache_enable use CONFIG_SYS_SDRAM_SIZE
968
969     in cpu/mcf532x/start.S, the function icache_enable enables the cache for
970     a fixed 32MB region starting at the SDRAM start address; this patch
971     changes the function to cover the region defined by CONFIG_SYS_SDRAM_SIZE
972
973     Signed-off-by: Wolfgang Wegner <w.wegner at astro-kom.de>
974
975 commit 870bf3ee60320b58f8970ffe3ddebda0e8ac62f7
976 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
977 Date:   Wed Dec 9 17:32:12 2009 -0500
978
979     add include/asm-m68k/unaligned.h
980
981     lib_generic/zlib.c needs include/asm/unaligned.h since commit
982     cd514aeb996e2f7aefbe1f78481965d9d074aed4, which broke compilation for
983     Coldfire/M68K. This patch adds the missing header for these
984     architectures.
985
986     Signed-off-by: Wolfgang Wegner <w.wegner at astro-kom.de>
987
988 commit da5e083590bb62ca6d7f08d3714d07ba736da863
989 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
990 Date:   Mon Feb 8 11:50:16 2010 +0900
991
992     sh: Add asm/unaligned.h and asm/unaligned-sh4a.h from Linux kernel
993
994     zlib.c demands asm/unaligned.h. But, SH does not have these.
995     This commit add asm/unaligned.h and asm/unaligned-sh4a.h from Linux
996     kernel and modifyf for u-boot.
997
998     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
999
1000 commit fe389da6ae739816879606ecde4ab25f4292377d
1001 Author: Kim Phillips <kim.phillips@freescale.com>
1002 Date:   Mon Mar 1 11:10:17 2010 -0600
1003
1004     mpc83xx: fix out-of-tree mpc8315 nand build
1005
1006     commit 2e95004deb6e33e33bf1b8a92a38cd2115bac4c2 "mpc83xx: Add NAND boot support
1007     for MPC8315E-RDB boards" symlinked nand_spl/board/freescale/mpc8315erdb to
1008     mpc8313erdb in order to not duplicate code.
1009
1010     Since the main makefile builds nand_spl/board/$(BOARDDIR) (which makes sense),
1011     and the board Makefile and linker script are the only two necessary files
1012     to enable out-of-tree building, and other boards have duplicated nand makefiles
1013     (e.g. 8536ds & 8569mds), it only seems prudent to copy these two files in the
1014     name of the 8315 too.
1015
1016     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1017     Cc: Anton Vorontsov <avorontsov@ru.mvista.com>
1018     Cc: Wolfgang Denk <wd@denx.de>
1019
1020 commit 4e7e12dfa103cb8ec6dc7547dd1c9976337dc1fd
1021 Author: Kim Phillips <kim.phillips@freescale.com>
1022 Date:   Mon Feb 22 19:39:16 2010 -0600
1023
1024     mpc83xx: vme8349: fix incorrect BR0_PRELIM port size comment
1025
1026     commit 98d92d8c9f4021629a45261ad5ec3f3595f3a27a "sbc8349: fix incorrect
1027     comment" missed this one.
1028
1029     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1030
1031 commit 87800f72414b830756aefc757dd191688febacf9
1032 Author: Eugene O'Brien <eugene.g.obrien@gmail.com>
1033 Date:   Wed Feb 24 14:10:24 2010 -0500
1034
1035     ppc4xx: Corrected EBC register bit definitions
1036
1037     Corrected the bit field positions of the external master priority low
1038     and the external master priority high values in the EBC configuration
1039     register. These bit field positions differ between PPC405 and PPC440
1040     processors
1041
1042     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
1043     Signed-off-by: Stefan Roese <sr@denx.de>
1044
1045 commit f3651764e57e353251695691677bd95ba5a420bc
1046 Author: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
1047 Date:   Mon Feb 22 22:49:06 2010 +0100
1048
1049     cmd_itest.c: fix pointer dereferencing
1050
1051     fix pointer dereferencing
1052     if the size is .b and .w an 8 or 16 bit access is done.
1053
1054     Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
1055     Acked-by: Detlev Zundel <dzu@denx.de>
1056
1057 commit 0ad22703f06af5fe100cfe6f08b1f32ea89cd5b1
1058 Author: Kim Phillips <kim.phillips@freescale.com>
1059 Date:   Mon Feb 22 19:37:56 2010 -0600
1060
1061     tools: fix imximage warning
1062
1063     Fix build warning:
1064
1065     Configuring for MPC837XEMDS board...
1066     imximage.c: In function `imximage_parse_cfg_file':
1067     imximage.c:146: warning: passing argument 2 of `getline' from incompatible pointer type
1068     /usr/include/bits/stdio.h:116: note: expected `size_t *' but argument is of type `uint32_t *'
1069
1070     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1071
1072 commit 5b28e913f4519870ad2ca06cd7845b053f78bf0f
1073 Author: Stefano Babic <sbabic@denx.de>
1074 Date:   Fri Feb 5 15:16:02 2010 +0100
1075
1076     mkimage: SEGFAULT with imximage on 64 bit systems
1077
1078     Running mkimage to generate an imximage produces a SEGFAULT
1079     on 64 bit machines due to pointer arithmetic limited to 32 bit.
1080
1081     Signed-off-by: Stefano Babic <sbabic@denx.de>
1082     Acked-by: Kim Phillips <kim.phillips@freescale.com>
1083
1084 commit ecd1a09b81f2ed6e6ba7bd1d0bfb0cc3d0ea2ad0
1085 Author: Kim Phillips <kim.phillips@freescale.com>
1086 Date:   Thu Feb 18 19:28:12 2010 -0600
1087
1088     mpc83xx: remove hardcoded network addresses from config files
1089
1090     and avoid e.g., two identical boards from causing random networking
1091     conflicts when hooked up to the same network.
1092
1093     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1094
1095 commit 4c006dd1501283eecaea813a0e5e225e9ee6fdeb
1096 Author: Michael Zaidman <michael.zaidman@gmail.com>
1097 Date:   Mon Feb 15 10:02:32 2010 +0200
1098
1099     Bug: do_reset issued via netconsole does not reset mpc83xx cpu.
1100
1101     The do_reset routine in the cpu/mpc83xx/cpu.c file does not reset
1102     the mpc83xx cpu when issued via netconsole.
1103
1104     Moving the console output "resetting the board." to the beginning of
1105     the routine before disabling interrupts solved the problem.
1106
1107     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
1108     Acked-by: Detlev Zundel <dzu@denx.de>
1109     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1110
1111 commit 77e7273c40315abd2f3c17ad8d46a78950e3e65f
1112 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1113 Date:   Wed Feb 3 22:48:09 2010 +0100
1114
1115     new board (eb_cpux9k2)
1116
1117     * new board (eb_cpux9k2)
1118      * support for EB+CPUx9K2 board by BuS Elektronik GmbH & Co. KG
1119      * select via make eb_cpux9k2_config
1120      * this also demonstrates, how to use boards with AT91RM9200 cpu
1121        in at91 arch tree
1122
1123     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1124
1125 commit 6799a80f7644d78988187390dfd37352f20ad710
1126 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1127 Date:   Wed Feb 3 22:47:57 2010 +0100
1128
1129     new at91_emac network driver (NET_MULTI api)
1130
1131     * add's at91_emac (AT91RM9200) network driver (NET_MULTI api)
1132      * enable driver with CONFIG_DRIVER_AT91EMAC
1133      * generic PHY initialization
1134      * modify AT91RM9200 boards to use NET_MULTI driver
1135      * the drivers has been tested with LXT971 Phy and DM9161 Phy at MII and RMII
1136        interface
1137
1138     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1139
1140 commit 98250e8e17fc76b3981708c6e63d41f875bf0359
1141 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1142 Date:   Wed Feb 3 22:47:35 2010 +0100
1143
1144     prepare joining at91rm9200 into at91
1145
1146     * prepare joining at91 and at91rm9200
1147      * add modified copy of soc files to cpu/arm920t/at91 to make
1148        possible to compile at91rm9200 boards in at91 tree instead
1149        of at91rm9200
1150      * add header files with c structure defs for AT91 MC, ST and TC
1151      * the new cpu files are using at91 c structure soc access
1152      * please read README.soc-at91 for details
1153
1154     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1155
1156 commit 1b34f00c28a3023693d9b31e7bd1a9212af8352f
1157 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1158 Date:   Wed Feb 3 22:47:18 2010 +0100
1159
1160     update at91sam9263ek board to new SoC access
1161
1162     * convert at91sam9263ek board to use c stucture SoC access
1163      * change gpio access to at91_gpio syntax
1164
1165     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1166
1167 commit 0cf0b93161beb3f3ed5e37e6112aedf15da17e8a
1168 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1169 Date:   Wed Feb 3 22:46:58 2010 +0100
1170
1171     convert common files to new SoC access
1172
1173     * add's a warning to all files, which need update to new SoC access
1174      * convert common files in cpu/../at91 and a lot of drivers to use
1175        c stucture SoC access
1176
1177     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1178
1179 commit 7f9e8633ac9c846e7e4f867507cbd5de1bd99e0c
1180 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1181 Date:   Wed Feb 3 22:46:46 2010 +0100
1182
1183     convert all at91 files to use at91_gpio driver syntax
1184
1185     * convert all files cpu/../at91 to use at91_gpio driver syntax
1186      * change AT91_PINP([A-F])(\d+) to AT91_PIO_PORT\1, \2
1187        this makes all 160 AT91_PINPxxx defines obsolete
1188      * AT91_PINPxxx defines and gpio.h can be remove, if all boards converted to new SoC access
1189
1190     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1191
1192 commit ea8fbba73184a40437bdeccd888cf448d5f1105e
1193 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1194 Date:   Wed Feb 3 22:46:16 2010 +0100
1195
1196     add a new AT91 GPIO driver
1197
1198     * add a real AT91 GPIO driver instead of header inline code
1199     * resolve the mixing of port and pins
1200     * change board config files to use new driver
1201     * add macros to gpio to realize backward compatibility
1202
1203     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1204
1205 commit 5d8e359c38d3ab80015e47d0cab792efe75cacf9
1206 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1207 Date:   Wed Feb 3 22:46:01 2010 +0100
1208
1209     add c structures for SoC access
1210
1211     * add's c structures for SoC access to pheriperials head files
1212
1213     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1214
1215 commit 425de62d40f84524b90e776b141b060cd438a9fe
1216 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1217 Date:   Wed Feb 3 22:45:42 2010 +0100
1218
1219     add new CONFIG_AT91_LEGACY
1220
1221     * add's the new temporary CONFIG_AT91_LEGACY to all board configs
1222      This will need for backward compatiblity, while change the SoC access
1223      to c structures. If CONFIG_AT91_LEGACY is defined, the deprecated
1224      SoC is used.
1225
1226     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1227
1228 commit 3a4e43921d2599453ea87c623099e5f347c9e54a
1229 Author: Nick Thompson <nick.thompson@ge.com>
1230 Date:   Mon Feb 8 11:36:16 2010 -0500
1231
1232     DA830 EVM: Enable NAND support on Spectrum Digital EVM
1233
1234     The EVM UI extender card has a NAND device. This change will enable
1235     saveenv to work with NAND and Linux to be booted using:
1236
1237         mtdparts default
1238         nboot kernel
1239         bootm
1240
1241     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
1242     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1243
1244 commit 6228e6389e5ef472d5f43cc5ec4f309323305638
1245 Author: Nick Thompson <nick.thompson@ge.com>
1246 Date:   Mon Feb 8 11:34:58 2010 -0500
1247
1248     Davinci: Add EMIF-A macros for setting chip select parameters
1249
1250     The patch adds EMIF-A macros for setting chip select parameters
1251
1252     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
1253     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1254
1255 commit b74064a0e2984a166e3575852f3697ef5595a97b
1256 Author: Sanjeev Premi <premi@ti.com>
1257 Date:   Mon Feb 8 11:33:25 2010 -0500
1258
1259     OMAP3: Avoid re-write to PRM_CLKSRC_CTRL
1260
1261     In function get_osc_clk_speed(), do not change/ update
1262     the divider for SYS_CLK as it can has cascading effect
1263     on the other derived clocks.
1264
1265     Sudden change in divider value can lead to inconsistent
1266     behavior in the system - often leading to crashes.
1267
1268     The problem was found when working with OMAP3EVM using
1269     DM3730 processor card.
1270
1271     The patch has been tested with OMAP3530 on OMAP3EVM as
1272     well
1273
1274     Signed-off-by: Sanjeev Premi <premi@ti.com>
1275     Signed-off-by: Hiremath Vaibhav <hvaibhav@ti.com>
1276     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1277
1278 commit eff536befd3efab538bba10bad07ecff63c9f470
1279 Author: Magnus Lilja <lilja.magnus@gmail.com>
1280 Date:   Tue Feb 9 22:05:39 2010 +0100
1281
1282     SPI: Fix 32 bit transfers in mxc_spi.c
1283
1284     Commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f,  "i.MX31: fix SPI
1285     driver for shorter than 32 bit" broke 32 bit transfers. This patch
1286     makes single 32 bit transfer work again.
1287
1288     Transfer lengths that are known not to work will abort and print
1289     an error message.
1290
1291     Tested on i.MX31 Litekit and i.MX31 PDK using 32 bit transfers to
1292     the MC13783/ATLAS chip (using the 'date' command).
1293
1294     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
1295
1296 commit 39a9142203e610bf2b1a216085e374277fd28f9f
1297 Author: Alessandro Rubini <rubini-list@gnudd.com>
1298 Date:   Sat Feb 6 20:54:05 2010 +0100
1299
1300     edb93xx: enable the uart in devicecfg register
1301
1302     printf goes to uart1, but it will block forever waiting for
1303     busy to go off unless the uart is enabled first.
1304
1305     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
1306
1307 commit 822bd70db49773b4d57eaa484dca83386a6b3479
1308 Author: Alessandro Rubini <rubini-list@gnudd.com>
1309 Date:   Sat Feb 6 20:53:54 2010 +0100
1310
1311     edb93xx: change calculation un early_udelay.h
1312
1313     Previous code compiled with gcc-4.2.2 makes a call to
1314     __aeabi_uidiv to divide by 20. As a side effect it was
1315     not inline any more, and so sdram_cfg used the stack
1316     as well, but this is early code that has no stack yet.
1317     The patch explicitly removes the division, so no stack is used.
1318
1319     The calculation of the counter calls a division by 20
1320
1321     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
1322
1323 commit c50a0f503967d435150bbb9f2f816ce33afdf231
1324 Author: Alessandro Rubini <rubini-list@gnudd.com>
1325 Date:   Sat Feb 6 20:53:43 2010 +0100
1326
1327     EP93xx: fix syscon_regs definition
1328
1329     The structure was missing a reserved entry (not listed in the manual,
1330     actually), so the last registers had a wrong offset. This prevented
1331     all swlocked registers to be modified as swlock is last in the structure.
1332
1333     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
1334
1335 commit fcfb632bd1e9de645b015cf73a78183c299743d8
1336 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
1337 Date:   Mon Feb 1 21:29:39 2010 +0100
1338
1339     ARM: Add support for EP93xx SoCs
1340
1341     Add support for the Cirrus EP93xx platform
1342
1343     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
1344     Acked-by: Tom <Tom.Rix@windriver.com>
1345
1346 commit cf3c142ee4be0f077f8b84593f1b24b35d14039e
1347 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
1348 Date:   Mon Feb 1 21:29:48 2010 +0100
1349
1350     Add support for EDB93xx boards
1351
1352     Added support for the following EDB93xx boards:
1353
1354     EDB9301
1355     EDB9302
1356     EDB9302A
1357     EDB9307
1358     EDB9307A
1359     EDB93012
1360     EDB9315
1361     EDB9315A
1362
1363     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
1364
1365 commit d798e27b14543762f9f5d0561a3430c7f9e2153b
1366 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1367 Date:   Wed Jan 27 11:12:28 2010 -0500
1368
1369     NetStar: Remove debug junk leaked into eeprom utility
1370
1371     This patch removes debug junk leaked into eeprom utility.
1372
1373     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1374     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1375
1376 commit 89e94d81eda9af2e1c35e97125b0c049335c70fc
1377 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1378 Date:   Wed Jan 27 11:12:23 2010 -0500
1379
1380     NetStar: make crcit utility more readable
1381
1382     This patch makes the crcit utility more readable
1383
1384     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1385     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1386
1387 commit 3843e7dc934d8ef7c592f5a2106885efe32eac7f
1388 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1389 Date:   Wed Jan 27 11:12:08 2010 -0500
1390
1391     NetStar: Disable CONFIG_CMD_JFFS2
1392
1393     This patch removes "CONFIG_CMD_JFFS" from the board config
1394
1395     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1396     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1397
1398 commit 632e1d9014848ec8d983a629c2e35b4423816336
1399 Author: Tom Rix <Tom.Rix@windriver.com>
1400 Date:   Wed Jan 27 11:11:55 2010 -0500
1401
1402     OMAP3 Move declaration of gpmc_cfg.
1403
1404     Every omap3 board config file declared the global variable gpmc_cfg.
1405     This changes moves the declaration to a better location in the
1406     arch dependent header file cpu.h.
1407
1408     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1409     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1410
1411 commit 093d6018cf0a8dae614c2924c0013d97e2a48662
1412 Author: Scott Ellis <scott@jumpnowtek.com>
1413 Date:   Wed Jan 27 11:11:46 2010 -0500
1414
1415     Overo GPMC registers
1416
1417     Use appropriate GPMC timings for the LAN9221 controller on the
1418     Gumstix Overo expansion boards not the values in arch-omap3/mem.h
1419     which are for a different ethernet controller.
1420
1421     Signed-off-by: Scott Ellis <scott@jumpnowtek.com>
1422     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1423
1424 commit 63a47dfd07536e399665ca7504bac512bf21491e
1425 Author: Nick Thompson <nick.thompson@ge.com>
1426 Date:   Wed Jan 27 11:11:28 2010 -0500
1427
1428     da830evm: Use table driven pin mux configuration
1429
1430     Tidyup the pin muxer configuration using the Davinci table driven
1431     pinmux configuration function and data tables.
1432
1433     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
1434     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1435
1436 commit 8ed5885693b39c5c2cca5574dd98d6ad8a982702
1437 Author: Sekhar Nori <nsekhar@ti.com>
1438 Date:   Wed Jan 27 11:10:40 2010 -0500
1439
1440     TI DaVinci: Driver for the davinci SPI controller
1441
1442     This adds a driver for the SPI controller found on davinci
1443     based SoCs from Texas Instruments.
1444
1445     Signed-off-by: Sekhar Nori <nsekhar@ti.com>
1446     Signed-off-by: Sudhakar Rajashekhara <sudhakar.raj@ti.com>
1447     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1448
1449 commit 44d80256229d05862622f4dd886466fd70fe04ae
1450 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
1451 Date:   Mon Jan 25 10:50:41 2010 +0100
1452
1453     at91: Add esd gmbh OTC570 board support
1454
1455     This patch adds support for esd gmbh OTC570 board.
1456     The OTC570 is based on an Atmel AT91SAM9263 SoC.
1457
1458     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
1459
1460 commit e39bf1e2a9e437174687de687c127ec980a93eeb
1461 Author: Mike Frysinger <vapier@gentoo.org>
1462 Date:   Mon Feb 8 15:30:16 2010 -0500
1463
1464     kgdb: cpu/mpc* cpu/74xx: include kgdb.h when needed
1465
1466     Commit cbb0cab1d929839d broke some platforms which used kgdb code but
1467     didn't actually include kgdb.h.  So include kgdb.h in all the relevant
1468     traps code.
1469
1470     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1471
1472 commit ab5a0dcb9c8f19e351fc33c5db91469bfb1d9438
1473 Author: Stefan Roese <sr@denx.de>
1474 Date:   Tue Feb 2 13:43:48 2010 +0100
1475
1476     net: Use 0.5 sec timeout in miiphy_reset() instead of counting loop
1477
1478     This patch fixes a problem I've notived on a buggy PPC4xx system. This
1479     system has problems with the PHY MDIO communication and seemed to be
1480     stuck/crashed in miiphy_reset(). But degugging revealed, that the CPU
1481     didn't crash, but "only" hung in this counting loop for about 2 minutes.
1482
1483     This patch now uses a real timeout of 0.5 seconds (as mentioned in the
1484     comment in miiphy_reset).
1485
1486     Signed-off-by: Stefan Roese <sr@denx.de>
1487     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1488
1489 commit 4294b2485bf0e8d68c893190a96bb0e7856b12c4
1490 Author: Stefano Babic <sbabic@denx.de>
1491 Date:   Mon Feb 1 14:51:30 2010 +0100
1492
1493     fec_mxc: add support for MX51 processor
1494
1495     The patch add support for the Freescale mx51 processor
1496     to the FEC ethernet driver.
1497
1498     Signed-off-by: Stefano Babic <sbabic@denx.de>
1499     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1500
1501 commit e66b19ce6dbe6f91b18ba47273cbe89eb5a80e78
1502 Author: Siddarth Gore <gores@marvell.com>
1503 Date:   Tue Jan 19 11:09:07 2010 +0530
1504
1505     NET: kirkwood-egiga smi access fix
1506
1507     Although the datasheet mentions seperate smi registers for each
1508     port, using Port 1 smi register to access ethernet phys does not
1509     work. Hence only Port 0 smi register should be used to access all
1510     devices connected to the smi bus. This behavior is consistant with
1511     the mv643xx driver in the linux kernel.
1512
1513     Signed-off-by: Siddarth Gore <gores@marvell.com>
1514     Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
1515     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1516
1517 commit a1b322a98319de568b3bc38029ef7e123643c1e8
1518 Author: Ladislav Michl <ladis@linux-mips.org>
1519 Date:   Mon Feb 1 23:34:25 2010 +0100
1520
1521     ns16550: kick watchdog while waiting for a character
1522
1523     ns16550 busyloops waiting for incoming byte causing watchdog to reboot
1524     while waiting for a key press. A call to WATCHDOG_RESET in NS16550_getc
1525     loop fixes it.
1526
1527     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1528
1529 commit 84d36b30181acfb72f22d1105c15574b30ea2fa1
1530 Author: Remy Bohmer <linux@bohmer.net>
1531 Date:   Mon Feb 1 19:40:47 2010 +0100
1532
1533     USB: usb_control_msg wait for driver ISR to set status.
1534
1535     This patch changes usb_control_msg back to the state prior to commit
1536     48867208444cb2a82e2af9c3249e90b7ed4a1751.
1537
1538     The USB driver ISR routine may update the status.
1539
1540     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
1541
1542 commit 6e20e64f5c6deb5b48e40a0cba4877f9170545e0
1543 Author: Prathap Srinivas <msprathap@ti.com>
1544 Date:   Mon Jan 11 15:36:46 2010 +0530
1545
1546     musb: Add host support for DM365 EVM
1547
1548     Add support for musb host on DM365 EVM.
1549
1550     Signed-off-by: Prathap Srinivas <msprathap@ti.com>
1551
1552 commit ec2aadb40855cecb088b68c062e3534d6ce39128
1553 Author: Cliff Cai <cliff.cai@analog.com>
1554 Date:   Tue Jan 19 00:10:42 2010 -0500
1555
1556     usb: musb: fix Blackfin DMA register padding
1557
1558     The conversion from offsets to C structs lost a little padding in the DMA
1559     register map.  Accessing endpoints other than ep0 with DMA would fail as
1560     the addresses wouldn't be adjusted correctly.
1561
1562     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
1563     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1564
1565 commit d0750bc9e5932baf4c90eda2456106f21a26bdc1
1566 Author: Wolfgang Denk <wd@denx.de>
1567 Date:   Mon Feb 1 11:36:29 2010 +0100
1568
1569     EXBITGEN: drop support for unmaintained board
1570
1571     The EXBITGEN board has not been maintained for a long time; it has
1572     build problems, but no hardware is available any more for testing.
1573
1574     Drop support for this board.
1575
1576     Signed-off-by: Wolfgang Denk <wd@denx.de>
1577     Acked-by: Stefan Roese <sr@denx.de>
1578
1579 commit 9461a939cabd606d7f0e9b8490b40841af104ff5
1580 Author: Wolfgang Denk <wd@denx.de>
1581 Date:   Sun Jan 31 22:03:15 2010 +0100
1582
1583     mpc5xxx/cpu_init.c: fix warning: unused variable 'cdm'
1584
1585     Signed-off-by: Wolfgang Denk <wd@denx.de>
1586     Acked-by: Detlev Zundel <dzu@denx.de>
1587
1588 commit 13d8bfe26c0dd2c08b76c5f077e800a718859bbc
1589 Author: Wolfgang Denk <wd@denx.de>
1590 Date:   Sun Jan 31 21:58:48 2010 +0100
1591
1592     mpc5xxx/cpu_init.c: fix warning: unused variable 'gpt0'
1593
1594     Signed-off-by: Wolfgang Denk <wd@denx.de>
1595     Acked-by: Detlev Zundel <dzu@denx.de>
1596
1597 commit 4710cee1b5292fe077a67cc23193cc43060fbe3d
1598 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
1599 Date:   Mon Feb 1 13:54:09 2010 +0100
1600
1601     ppc4xx: Remove unused feature from AR405 board
1602
1603     This patch fixes building for AR405 boards by remove an unused feature.
1604
1605     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1606     Signed-off-by: Stefan Roese <sr@denx.de>
1607
1608 commit 976c21ad8e136df0ec361aca0c4bc287c5637c01
1609 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
1610 Date:   Mon Feb 1 13:53:59 2010 +0100
1611
1612     ppc4xx: Fix building for PLU405 boards
1613
1614     The init_coupler() function from board/esd/plu405/plu405.c
1615     got lost somehow! This patch readds it.
1616
1617     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1618     Signed-off-by: Stefan Roese <sr@denx.de>
1619
1620 commit 59c1db6dab52b981e6ea25a203d0a919ede61ed2
1621 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
1622 Date:   Mon Feb 1 13:53:47 2010 +0100
1623
1624     ppc4xx: Fix building of PMC440 board
1625
1626     Remove some unused features and default environment variable
1627     to shrink the PMC440 u-boot.
1628
1629     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1630     Signed-off-by: Stefan Roese <sr@denx.de>
1631
1632 commit 6f6c26e430ffae87b6b3d74ba7cbf9439703feea
1633 Author: Stefan Roese <sr@denx.de>
1634 Date:   Tue Jan 26 13:33:29 2010 +0100
1635
1636     ppc4xx: Fix compilation error on ML2 board
1637
1638     Recently this compilation error occurs:
1639
1640     Configuring for ML2 board...
1641     traps.c: In function 'MachineCheckException':
1642     traps.c:159: error: 'debugger_exception_handler' undeclared (first use
1643         in this function)
1644     traps.c:159: error: (Each undeclared identifier is reported only once
1645     traps.c:159: error: for each function it appears in.)
1646
1647     This patch now fixes it by including kgdb.h
1648
1649     Signed-off-by: Stefan Roese <sr@denx.de>
1650
1651 commit f3dec798d9ebf7f17c11ec7671b979ce3d251955
1652 Author: Ladislav Michl <ladis@linux-mips.org>
1653 Date:   Thu Jan 28 12:27:14 2010 +0100
1654
1655     CFI: fix eraseregions numblocks
1656
1657     eraseregions numblocks was sometimes one less than actual, possibly producing
1658     erase regions with zero blocks. As MTD code touches eraseregions only if
1659     numeraseregions is greater that zero, allocate eraseregions only for non
1660     uniform erase size flash.
1661
1662     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1663     Signed-off-by: Stefan Roese <sr@denx.de>
1664
1665 commit c041e9d212162f6c85cd3b6a40ad6ba9d9292451
1666 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1667 Date:   Sat Jan 23 12:03:45 2010 +0100
1668
1669     new at91_emac network driver (NET_MULTI api)
1670
1671     * add's at91_emac (AT91RM9200) network driver (NET_MULTI api)
1672     * enable driver with CONFIG_DRIVER_AT91EMAC
1673     * generic PHY initialization
1674     * modify AT91RM9200 boards to use NET_MULTI driver
1675     * the drivers has been tested with LXT971 Phy and DM9161 Phy at
1676       MII and RMII interface
1677
1678     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1679     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1680
1681 commit 594d57d0ccce649d6ccd881b8d9c5ea8d0c307ef
1682 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
1683 Date:   Sun Jan 31 17:39:49 2010 +0100
1684
1685     Add EP93xx ethernet driver
1686
1687     Added ethernet driver for EP93xx SoCs
1688
1689     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
1690     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1691
1692 commit 582c55a0274f38e6e7e35b95e7ab81d3e912f700
1693 Author: Heiko Schocher <hs@denx.de>
1694 Date:   Wed Jan 20 09:04:28 2010 +0100
1695
1696     83xx, uec: split enet_interface in two variables
1697
1698     There's no sensible reason to unite speed and interface type into
1699     one variable.  So split this variable enet_interface into two
1700     vars: enet_interface_type, which hold the interface type and speed.
1701
1702     Also: add the possibility for switching between 10 and 100 MBit
1703     interfaces on the fly, when running in FAST_ETH mode.
1704
1705     Signed-off-by: Heiko Schocher <hs@denx.de>
1706     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1707
1708 commit d7e354374c8eb0a5d8b8226b881c5ee276c77a60
1709 Author: Nick Thompson <nick.thompson@ge.com>
1710 Date:   Fri Dec 18 13:33:07 2009 +0000
1711
1712     TI: DaVinci: Updating EMAC driver for DM365, DM646x and DA8XX
1713
1714     The EMAC IP on DM365, DM646x and DA830 is slightly different
1715     from that on DM644x. This change updates the DaVinci EMAC driver
1716     so that EMAC becomes operational on SOCs with EMAC v2.
1717
1718     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
1719     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1720
1721 commit 0f751d6ef3e6fb1d28ac272c39c34831d629a59e
1722 Author: Semih Hazar <semih.hazar@indefia.com>
1723 Date:   Thu Dec 17 15:07:15 2009 +0200
1724
1725     macb: Fix mii_phy_read and mii_phy_write functions
1726
1727     Enabling CONFIG_CMD_MII in AVR32 boards was not possible due to
1728     compile errors.
1729
1730     This patch fixes miiphy_read and miiphy_write functions and
1731     registers them properly.
1732
1733     Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
1734     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1735
1736 commit 5f6b1442218fcb6a3ef0d2be05d84119cebfe0ae
1737 Author: Peter Tyser <ptyser@xes-inc.com>
1738 Date:   Mon Nov 9 13:09:48 2009 -0600
1739
1740     tsec: Add TSEC_FIBER flag
1741
1742     The TSEC_FIBER flag should be set when a PHY is operating with an
1743     external fiber interface.  Currently it is only used to notify a user
1744     that the PHY is operating in fiber mode.
1745
1746     A short description was also added to the other TSEC flag defines so
1747     that it is clear how they differ from one another.
1748
1749     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1750     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1751
1752 commit 8abb8dcc8d6f2a9e31551a6fa41de97bd1f15350
1753 Author: Peter Tyser <ptyser@xes-inc.com>
1754 Date:   Mon Nov 9 13:09:47 2009 -0600
1755
1756     tsec: Add support for using the BCM5482 PHY in fiber mode
1757
1758     The BCM5482 PHY supports both copper and fiber as an ethernet medium.
1759     By enabling its copper/fiber mode auto-detection feature it can
1760     dynamically determine if it should be configured for copper or fiber.
1761
1762     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1763     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1764
1765 commit c6dbdfda5393c155bb13a90d9d6be4fe75ec3498
1766 Author: Peter Tyser <ptyser@xes-inc.com>
1767 Date:   Mon Nov 9 13:09:46 2009 -0600
1768
1769     tsec: General cleanup
1770
1771     - Cleanup formatting of phy_info structures
1772
1773     - Fix lines > 80 chars
1774
1775     - Fix some random indentation inconsistencies
1776
1777     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1778     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1779
1780 commit e1957ef02c0d949c27f7386e5fa509a57e033d5a
1781 Author: Peter Tyser <ptyser@xes-inc.com>
1782 Date:   Mon Nov 9 13:09:45 2009 -0600
1783
1784     tsec: Make functions/data static when possible
1785
1786     This is generally good practice and saves ~150 bytes.
1787
1788     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1789     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1790
1791 commit 27165b5c328464b706601b1cd586e359a3dc2f6d
1792 Author: Peter Tyser <ptyser@xes-inc.com>
1793 Date:   Mon Nov 9 13:09:44 2009 -0600
1794
1795     tsec: Clean up Broadcom PHY status parsing
1796
1797     - Remove unnecessary printing "Enet starting in <speed>/<duplex>"
1798         This same information is already printed during normal ethernet
1799         operation in the form "Speed: 1000, full duplex".
1800
1801     - Add a check for link before determining link speed and duplex
1802         If there is no link, speed/duplex don't matter.  This also removes
1803         the annoying and unneeded "Auto-neg error, defaulting to 10BT/HD"
1804         message that occurs when no link is detected.
1805
1806     - Whitespace and line > 80 characters cleanup
1807
1808     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1809     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1810
1811 commit 46e91674fb4b6d06c6a4984c0b5ac7d9a16923f4
1812 Author: Peter Tyser <ptyser@xes-inc.com>
1813 Date:   Tue Nov 3 17:52:07 2009 -0600
1814
1815     tsec: Force TBI PHY to 1000Mbps full duplex in SGMII mode
1816
1817     In SGMII mode the link between a processor's internal TBI PHY and an
1818     external PHY should always be 1000Mbps, full duplex.  Also, the SGMII
1819     interface between an internal TBI PHY and external PHY does not
1820     support in-band auto-negotation.
1821
1822     Previously, when configured for SGMII mode a TBI PHY would attempt to
1823     restart auto-negotation during initializtion.  This auto-negotation
1824     between a TBI PHY and external PHY would fail and result in unusable
1825     ethernet operation.
1826
1827     Forcing the TBI PHY and and external PHY to link at 1000Mbps full duplex
1828     in SGMII mode resolves this issue of auto-negotation failing.
1829
1830     Note that 10Mbps and 100Mbps operation is still possible on the external
1831     side of the external PHY even when SGMII is operating at 1000Mbps.
1832     The SGMII interface still operates at 1000Mbps, but each byte of data
1833     is repeated 100 or 10 times for 10/100Mbps and the external PHY handles
1834     converting this data stream into proper 10/100Mbps signalling.
1835
1836     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1837     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1838
1839 commit 76771e595aa2640da8c7b5ea81bd9583ccdab8a1
1840 Author: Seunghyeon Rhee <seunghyeon@lpmtec.com>
1841 Date:   Mon Nov 2 00:00:00 2009 -0800
1842
1843     NET: Fix MAC addr handling for smc911x
1844
1845     This patch turns off MAC address mismatch warning when
1846     optional eeprom programmed with MAC address is not available.
1847     In that case, smc911x's MAC address register has its default
1848     value ff:ff:ff:ff:ff:ff and it's not a valid address. This
1849     makes eth_initialize() show the warning which has no
1850     meaningful information while environment variable ethaddr
1851     overrides the address read from the register. If there's no
1852     eeprom and the value of MAC address register is not valid
1853     after initialization, dev->enetaddr had better not be updated
1854     and maintain its initial value 00:00:00:00:00:00, which I
1855     think is what eth_initialize() expects. This is not a bug fix.
1856     Even without this patch, the driver works fine. It's just for
1857     enhancing the way of displaying messages.
1858
1859     Signed-off-by: Seunghyeon Rhee <seunghyeon@lpmtec.com>
1860     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1861
1862 commit 07c966066b977b24f4b08b1684eed130f463b4c6
1863 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
1864 Date:   Thu Jan 21 22:16:34 2010 +0100
1865
1866     cs8900_initialize() cleanup
1867
1868     cs8900_initialize(): remove unecessary calls to free() and fix memory leak
1869
1870     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
1871     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1872
1873 commit c4168af3ba03c17a73751b98c124bbd2e3e1f5b0
1874 Author: Mike Frysinger <vapier@gentoo.org>
1875 Date:   Thu Jan 21 05:04:59 2010 -0500
1876
1877     smc91111_eeprom: fix linking error
1878
1879     Building for a bf533-stamp ends up with this error:
1880     smc91111_eeprom.o: In function `smc91111_eeprom':
1881     examples/standalone/smc91111_eeprom.c:58: undefined reference to `memset'
1882     make[2]: *** [smc91111_eeprom] Error 1
1883
1884     The new eth_struct definition means gcc has to zero out the structure on
1885     the stack, and some gcc versions optimize this with an implicit call to
1886     memset.  So tweak the structure style to avoid that gcc feature.
1887
1888     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1889     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1890
1891 commit 5f566f454750be4f2f83288ef382afcb9c4aa8a4
1892 Author: Wolfgang Denk <wd@denx.de>
1893 Date:   Sun Jan 31 21:51:43 2010 +0100
1894
1895     cmd_ximg.c: fix error: 'i' undeclared
1896
1897     Fix compile error:
1898
1899         cmd_ximg.c: In function 'do_imgextract':
1900         cmd_ximg.c:234: error: 'i' undeclared (first use in this function)
1901         cmd_ximg.c:234: error: (Each undeclared identifier is reported only once
1902         cmd_ximg.c:234: error: for each function it appears in.)
1903
1904     Signed-off-by: Wolfgang Denk <wd@denx.de>
1905
1906 commit a6e42ed097220a82870a32f4e60ac8863a8b05ab
1907 Author: Anatolij Gustschin <agust@denx.de>
1908 Date:   Sat Dec 12 21:20:57 2009 +0100
1909
1910     lcd: remove CONFIG_ATMEL_LCD ifdefs from lcd_setfgcolor
1911
1912     Not all boards defining LCD_COLOR16 are able to set
1913     lcd_color_fg/lcd_color_bg correctly. The issue seems to
1914     be caused by CONFIG_ATMEL_LCD ifdefs in lcd_setfgcolor()
1915     and lcd_setbgcolor(). Actually, the color values passed
1916     to these functions are already correct, we don't need
1917     to fix them. So remove ifdefs here.
1918
1919     Reported-by: Alessandro Rubini <rubini@unipv.it>
1920     Signed-off-by: Anatolij Gustschin <agust@denx.de>
1921
1922 commit d841978ea616e661e48f8da4045a71d6217823bd
1923 Author: Alessandro Rubini <rubini@unipv.it>
1924 Date:   Sat Dec 5 13:39:41 2009 +0100
1925
1926     include/nomadik.h: add physical address for cldc
1927
1928     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
1929     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
1930
1931 commit 3e446cbdf30221b9ca3a89b0f5abbfc691ce7755
1932 Author: Alessandro Rubini <rubini@unipv.it>
1933 Date:   Sat Dec 5 13:39:31 2009 +0100
1934
1935     video: add amba-clcd prime-cell
1936
1937     This adds support for the CLCD logic cell. It accepts precompiled
1938     register values for specific configuration through a board-supplied
1939     data structure.  It is used by the Nomadik nhk8815, added by a later
1940     patch in this series.
1941
1942     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
1943     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
1944
1945 commit b081c2e9b9329d7dadc8d13fc9a2bae5c90a1204
1946 Author: John Rigby <jcrigby@gmail.com>
1947 Date:   Tue Jan 26 19:24:18 2010 -0700
1948
1949     Nand mxc_nand add v1.1 controller support
1950
1951     Add support for version 1.1 of the nfc nand flash
1952     controller which is on the i.mx25 soc.
1953
1954     Signed-off-by: John Rigby <jcrigby@gmail.com>
1955     CC: Scott Wood <scottwood@freescale.com>
1956
1957 commit f3bb63a304c4e76010a2a4e99da61f7b6ffffc77
1958 Author: John Rigby <jcrigby@gmail.com>
1959 Date:   Tue Jan 26 19:24:17 2010 -0700
1960
1961     Add MX25 support to nand_spl fsl nfc driver
1962
1963     MX25 has a different version of the fsl_nfc
1964     flash controller known as version 1.1.
1965
1966     Add support to the nand_spl fsl_nfc driver
1967
1968     Versioning differs from mainline mxc kernel driver
1969     no consensus yet on if the naming here and in
1970     Redboot or the kernel is "correct".
1971
1972     Signed-off-by: John Rigby <jcrigby@gmail.com>
1973     Signed-off-by: Wolfgang Denk <wd@denx.de>
1974     CC: Scott Wood <scottwood@freescale.com>
1975
1976 commit ef22b50370f7b6d8deba9e9e64d2cb13c542b647
1977 Author: John Rigby <jcrigby@gmail.com>
1978 Date:   Mon Jan 25 23:12:52 2010 -0700
1979
1980     arm926ejs: add nand_spl boot support
1981
1982     Add CONFIG_PRELOADER/CONFIG_NAND_SPL support for nand booting
1983     to arm926ejs/start.S
1984
1985     This is derived from CONFIG_PRELOADER support in arm1136/start.S
1986
1987     Signed-off-by: John Rigby <jcrigby@gmail.com>
1988     CC: Scott Wood <scottwood@freescale.com>
1989
1990 commit 15b86c3d6c9a5a2e917b73d758a556568430021a
1991 Author: Wolfgang Denk <wd@denx.de>
1992 Date:   Sat Jan 16 21:50:26 2010 -0700
1993
1994     env_nand.c: print error message and fail gracefully
1995
1996     env_nand.c would crash silently if a malloc() for the environment
1997     buffers failed; make it print an error message and fail gracefully,
1998     i. e. use the default environment then.
1999
2000     Signed-off-by: Wolfgang Denk <wd@denx.de>
2001     Acked-by: John Rigby <jcrigby@gmail.com>
2002
2003 commit 674ef7bd02de948b6d8757f6a43a6f2fa4d88769
2004 Author: Liu Yu <yu.liu@freescale.com>
2005 Date:   Mon Jan 18 19:03:28 2010 +0800
2006
2007     Nand boot: Add nand boot support for MPC8569mds board
2008
2009     This patch add nand boot support for MPC8569mds board.
2010
2011     Signed-off-by: Liu Yu <yu.liu@freescale.com>
2012
2013 commit 249d4dec69e8d41ca58fe6cb3c56ea6f0480ef16
2014 Author: Kumar Gala <galak@kernel.crashing.org>
2015 Date:   Wed Jan 27 10:16:56 2010 -0600
2016
2017     Fix compiler warning in imximage.c due to getline prototype
2018
2019     imximage.c: In function 'imximage_parse_cfg_file':
2020     imximage.c:142: warning: implicit declaration of function 'getline'
2021
2022     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2023
2024 commit a9c3ac78d81d7ff4fe239e292e11e0f78ac5d461
2025 Author: Kumar Gala <galak@kernel.crashing.org>
2026 Date:   Tue Jan 12 12:56:05 2010 -0600
2027
2028     85xx: Add support for 'cpu disable' command
2029
2030     Support disabling of a core via user command 'cpu disable'.
2031
2032     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2033
2034 commit c894852b7aa2ac5f04ca70a073f803aa665c3ec1
2035 Author: Kumar Gala <galak@kernel.crashing.org>
2036 Date:   Tue Jan 12 11:51:52 2010 -0600
2037
2038     86xx: Add support for 'cpu disable' command
2039
2040     Support disabling of a core via user command 'cpu disable'.
2041
2042     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2043
2044 commit 4194b3668a93eee18dd1f7eb1309ca7b05003aa7
2045 Author: Kumar Gala <galak@kernel.crashing.org>
2046 Date:   Tue Jan 12 11:42:43 2010 -0600
2047
2048     Add support to disable cpu's in multicore processors
2049
2050     Add a disable sub-command to the cpu command that allows for disabling
2051     cores in multicore processors.  This can be useful for systems that are
2052     using multicore chips but aren't utilizing all the cores as a way to
2053     reduce power and possibly improve performance.
2054
2055     Also updated an added missing copyright.
2056
2057     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2058
2059 commit 8b1760ed9a35a5fd71d1f64981068ca2979f1e3d
2060 Author: Heiko Schocher <hs@denx.de>
2061 Date:   Wed Jan 20 09:05:32 2010 +0100
2062
2063     83xx, kmeter1: fix compile error
2064
2065     - delete double MTDIDS_DEFAULT and MTDPARTS_DEFAULT
2066       defines in board config file.
2067     - add mising CONFIG_KM_UBI_PARTITION_NAME define
2068
2069     Signed-off-by: Heiko Schocher <hs@denx.de>
2070     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2071
2072 commit 5912d3650740468329a0df014109132431d2140d
2073 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
2074 Date:   Thu Dec 10 10:11:21 2009 +0100
2075
2076     add ability to handle compressed images to imxtract
2077
2078     imxtract currently can not handle compressed images. This patch adds
2079     handling for bzip2 and zip compression. In both cases, a destination
2080     address has to be specified for extraction.
2081
2082     Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de>
2083
2084 commit a16e9a5b5f23106665dde15d974db17e8aeb83f1
2085 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2086 Date:   Tue Jan 19 14:41:57 2010 +0100
2087
2088     ppc: remove -ffixed-r14 gcc option.
2089
2090     This is no loger needed, free up r14 for general usage.
2091
2092     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2093
2094 commit e6bee80814c3a0d7eab89d28142fe68c4a670f31
2095 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2096 Date:   Tue Jan 19 14:41:58 2010 +0100
2097
2098     ppc: Update README about the new GOT ptr.
2099
2100     r14 is no longer used as non volatile GOT ptr. Instead
2101     the volatile r12 is used so be sure to do GET_GOT in
2102     asm code when you need to access global data.
2103
2104     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2105
2106 commit 0f8aa159175385ddd77bc91d11b9568583fbbd0c
2107 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2108 Date:   Tue Jan 19 14:41:56 2010 +0100
2109
2110     ppc: Use r12 instead of r14 as GOT pointer.
2111
2112     r14 is not supposed to be clobbered by functions. Switch
2113     to r12 and call GET_GOT when needed. This will allow u-boot
2114     to loose the -ffixed-r14 gcc option.
2115
2116     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2117
2118 commit fc4e188789b01dc9f18c80869c43fdd7d1a51378
2119 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2120 Date:   Tue Jan 19 14:41:55 2010 +0100
2121
2122     ppc: Loose GOT access in IRQ
2123
2124     Using the GOT in IRQ handlers requires r14 to be -ffixed-r14.
2125     Avoid this by relocatate transfer_to_handler too.
2126     This will allow to free up r14 later on.
2127
2128     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2129
2130 commit 66e821ebe96123b3a81ec9ca25cec9c0560fe232
2131 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
2132 Date:   Thu Jan 7 14:27:14 2010 +0530
2133
2134     85xx/p1_p2_rdb: enable hwconfig
2135
2136     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
2137     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2138
2139 commit 46df64f22c471b010161aa68bfdbfe94ea46e7bd
2140 Author: Liu Yu <yu.liu@freescale.com>
2141 Date:   Fri Jan 15 14:58:40 2010 +0800
2142
2143     qe: fixup the snum for MPC8569 Rev2.0
2144
2145     Since 1.0 and 2.0 use different snum table,
2146     we fixup the snum value according to SPRN_SVR.
2147
2148     Signed-off-by: Liu Yu <yu.liu@freescale.com>
2149     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2150
2151 commit 0fd2fa6cce6eb91271ebf9733878d0f1fcbc9b32
2152 Author: Dave Liu <daveliu@freescale.com>
2153 Date:   Tue Nov 17 20:49:05 2009 +0800
2154
2155     Fix the local bus divider mapping
2156
2157     The real clock divider is 4 times of the bits LCRR[CLKDIV],
2158     according the latest RevF RM.
2159
2160     Signed-off-by: Dave Liu <daveliu@freescale.com>
2161     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2162
2163 commit c95d541e4b46cb3ba19bf35e34b1dc3ca32f7b4b
2164 Author: Liu Yu <yu.liu@freescale.com>
2165 Date:   Fri Nov 27 15:31:52 2009 +0800
2166
2167     ppc/85xx: Add ATM config for MPC8569MDS
2168
2169     Signed-off-by: Liu Yu <yu.liu@freescale.com>
2170     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2171
2172 commit d91803826985bfdf151eed66543ce3b1a301682f
2173 Author: Liu Yu <yu.liu@freescale.com>
2174 Date:   Fri Nov 27 15:31:51 2009 +0800
2175
2176     ppc/85xx: Add PIB/ATM support for MPC8569mds
2177
2178     Signed-off-by: Liu Yu <yu.liu@freescale.com>
2179     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2180
2181 commit 1118cdbfeb8fc3acfe542d08703153ac188f9dbd
2182 Author: Li Yang <leoli@freescale.com>
2183 Date:   Thu Jan 7 16:00:13 2010 +0800
2184
2185     fsl_esdhc: fix wrong clock mask
2186
2187     Fix typo in SYSCTL_CLOCK_MASK, which caused residual in high bits of SDCLKFS.
2188
2189     Signed-off-by: Jin Qing <B24347@freescale.com>
2190     Signed-off-by: Li Yang <leoli@freescale.com>
2191     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2192
2193 commit 693416fe01d324472d270ac28389022eb82c7217
2194 Author: Kumar Gala <galak@kernel.crashing.org>
2195 Date:   Mon Jan 25 11:01:51 2010 -0600
2196
2197     Revert "ppc/p4080: Fix reporting of PME & FM clock frequencies"
2198
2199     This reverts commit bc20f9a9527afe8ae406a74f74765d4323f04922.
2200
2201     The original code was correct.  I clearly need glasses or a brown
2202     paper bag.
2203
2204     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2205
2206 commit 93cedc71647b4b72ac9b48e11997eb2f91645001
2207 Author: James Yang <James.Yang@freescale.com>
2208 Date:   Tue Jan 12 15:50:18 2010 -0600
2209
2210     ppc/p4080: Fix mask width of RCW fields MEM_PLL_RAT, SYS_PLL_RAT
2211
2212     The masks for MEM_PLL_RAT and SYS_PLL_RAT should have been 5-bits
2213     instead of 4.
2214
2215     Signed-off-by: James Yang <James.Yang@freescale.com>
2216     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2217
2218 commit 2903ad33a71251a3a87485b5b185852c8998f209
2219 Author: Mike Frysinger <vapier@gentoo.org>
2220 Date:   Fri Jan 8 08:03:06 2010 -0500
2221
2222     jffs2: fix hangs/crashs when not using CONFIG_JFFS2_PART_SIZE
2223
2224     Commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042 caused the sector_size to
2225     be calculated incorrectly when the part size was not hardcoded.  This is
2226     because the new code relied on part->size but tried to do the calculation
2227     before it was initialized properly, and it did not take into consideration
2228     the magic SIZE_REMAINING define.
2229
2230     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2231
2232 commit 64b150213365db6be97a98d25884f87d83caacaf
2233 Author: Mike Frysinger <vapier@gentoo.org>
2234 Date:   Fri Jan 8 02:48:03 2010 -0500
2235
2236     getline: split out for darwin systems
2237
2238     At least on OS X 10.5 and older, getline does not exist.  So split out the
2239     function from the mingw code so that we can pull it in for Darwin systems.
2240
2241     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2242
2243 commit e852d36a1e12864ab0656729c45c846e65efa4ee
2244 Author: Mike Frysinger <vapier@gentoo.org>
2245 Date:   Thu Jan 21 19:59:04 2010 -0500
2246
2247     tools: give explicit libfdt paths
2248
2249     The current libfdt object rules hard depend implicitly on the .depend file
2250     being correct.  If it isn't, then it is unable to properly compile the
2251     objects.  Give it a full path like all the other implicit rules here so it
2252     will always work in face of .depend issues.
2253
2254     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2255
2256 commit 44431cabbb66e81a2d77642b6f7d39c6230ea4ba
2257 Author: Mike Frysinger <vapier@gentoo.org>
2258 Date:   Thu Jan 21 19:30:36 2010 -0500
2259
2260     gzip/zlib: make features optional
2261
2262     If you really want to slim down U-Boot and you would rather use a higher
2263     compression scheme (like LZMA), it'd be nice to disable gzip/zlib since
2264     these code bases take up a significant amount of space.
2265
2266     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2267
2268 commit 8edcde5e4e2e7f6bc7e277011fed71e64fd9d294
2269 Author: Stefano Babic <sbabic@denx.de>
2270 Date:   Wed Jan 20 18:19:10 2010 +0100
2271
2272     mkimage: Add Freescale imx Boot Image support (imximage)
2273
2274     This patch adds support for "imximage" (MX Boot Image)
2275     to the mkimage utility. The imximage is used on the Freescales's
2276     MX.25, MX.35 and MX.51 processors.
2277
2278     Further details under doc/README.imximage.
2279
2280     This patch was tested on a Freescale mx51evk board.
2281
2282     Signed-off-by: Stefano Babic <sbabic@denx.de>
2283
2284 commit a21fb981d533ac6d323a01c7fa2cda20f2d36de5
2285 Author: Detlev Zundel <dzu@denx.de>
2286 Date:   Wed Jan 20 14:28:48 2010 +0100
2287
2288     mpc5xxx: Support CPU internal watchdog.
2289
2290     Signed-off-by: Detlev Zundel <dzu@denx.de>
2291
2292 commit 82826d5422331e9c99e5408dcf0348c8e0c257a6
2293 Author: Detlev Zundel <dzu@denx.de>
2294 Date:   Fri Jan 22 14:47:59 2010 +0100
2295
2296     mpc512x: Add display of reset status register
2297
2298     Content of the RSR is put into gd early so we can output it together
2299     with the CPU info.  The clearing of gd in board_init_f is redundant for
2300     this architecture as it is done in cpu_init_f so we remove it.
2301
2302     Signed-off-by: Detlev Zundel <dzu@denx.de>
2303
2304 commit a3f3897bfda9b4729785bdd328b3b7f30417a67f
2305 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
2306 Date:   Wed Jan 20 08:00:11 2010 +0100
2307
2308     at91: Enable slow master clock on meesc board
2309
2310     Normally the processor clock has a divisor of 2.
2311     In some cases this this needs to be set to 4.
2312     Check the user has set environment mdiv to 4 to change the divisor.
2313
2314     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
2315
2316 commit 7da692360414d07027c6cf564a15d79cd9dcf488
2317 Author: Vipin KUMAR <vipin.kumar@st.com>
2318 Date:   Fri Jan 15 19:15:53 2010 +0530
2319
2320     SPEAr : Support added for SPEAr320 board
2321
2322     SPEAr320 SoC support contains basic spear320 support along with the
2323     usage of following drivers
2324     - serial driver(UART)
2325     - i2c driver
2326     - smi driver
2327     - nand driver(FSMC)
2328     - usbd driver
2329     - emi driver(cfi support)
2330
2331     Signed-off-by: Vipin <vipin.kumar@st.com>
2332
2333 commit 080cfee71459588fd6312e475bb5115bdbda1cb3
2334 Author: Vipin KUMAR <vipin.kumar@st.com>
2335 Date:   Fri Jan 15 19:15:52 2010 +0530
2336
2337     SPEAr : Support added for SPEAr310 board
2338
2339     SPEAr310 SoC support contains basic spear310 support along with the
2340     usage of following drivers
2341     - serial driver(UART)
2342     - i2c driver
2343     - smi driver
2344     - nand driver(FSMC)
2345     - usbd driver
2346     - emi driver(cfi support)
2347
2348     Signed-off-by: Vipin <vipin.kumar@st.com>
2349
2350 commit 4bfacad4e796f2e121ee7432705ecc9c61e7b6ca
2351 Author: Vipin KUMAR <vipin.kumar@st.com>
2352 Date:   Fri Jan 15 19:15:51 2010 +0530
2353
2354     SPEAr : emi controller initialization for CFI driver support
2355
2356     SPEAr310 and SPEAr320 SoCs contain an EMI controller to interface
2357     Paraller NOR flashes. This patch adds the support for this IP
2358
2359     The standard CFI driver is used to interface with NOR flashes
2360
2361     Signed-off-by: Vipin <vipin.kumar@st.com>
2362
2363 commit 7e074158ce239380259c5fc97e87be2896169973
2364 Author: Vipin KUMAR <vipin.kumar@st.com>
2365 Date:   Fri Jan 15 19:15:50 2010 +0530
2366
2367     SPEAr : Support added for SPEAr300 board
2368
2369     SPEAr300 SoC support contains basic spear300 support along with the
2370     usage of following drivers
2371     - serial driver(UART)
2372     - i2c driver
2373     - smi driver
2374     - nand driver(FSMC)
2375     - usbd driver
2376
2377     Signed-off-by: Vipin <vipin.kumar@st.com>
2378
2379 commit f92994f0f7403b84366ce04e554e461f624e6868
2380 Author: Vipin KUMAR <vipin.kumar@st.com>
2381 Date:   Fri Jan 15 19:15:49 2010 +0530
2382
2383     SPEAr : Support for HW mac id read/write from i2c mem
2384
2385     This patch adds the  support to read and write mac id from i2c
2386     memory.
2387     For reading:
2388         if (env contains ethaddr)
2389                 pick env ethaddr
2390         else
2391                 pick ethaddr from i2c memory
2392     For writing:
2393         chip_config ethaddr XX:XX:XX:XX:XX:XX writes the mac id
2394         in i2c memory
2395
2396     Signed-off-by: Vipin <vipin.kumar@st.com>
2397
2398 commit 566c9c16fe4e501c3193ae6605bc9c663c6ea706
2399 Author: Vipin KUMAR <vipin.kumar@st.com>
2400 Date:   Fri Jan 15 19:15:48 2010 +0530
2401
2402     SPEAr : Support added for SPEAr600 board
2403
2404     SPEAr600 SoC support contains basic spear600 support along with the
2405     usage of following drivers
2406     - serial driver(UART)
2407     - i2c driver
2408     - smi driver
2409     - nand driver(FSMC)
2410     - usbd driver
2411
2412     Signed-off-by: Vipin <vipin.kumar@st.com>
2413
2414 commit 62db1c0d79f1fd75961eec81edc8c0a1bc1f09a6
2415 Author: Vipin KUMAR <vipin.kumar@st.com>
2416 Date:   Fri Jan 15 19:15:47 2010 +0530
2417
2418     SPEAr : usbd driver support for SPEAr SoCs
2419
2420     SPEAr SoCs contain a synopsys usb device controller.
2421     USB Device IP can work in 2 modes
2422     - DMA mode
2423     - Slave mode
2424
2425     The driver adds support only for slave mode operation of usb
2426     device IP. This driver is used along with standard USBTTY
2427     driver to obtain a tty interface over USB on the host
2428
2429     Signed-off-by: Vipin <vipin.kumar@st.com>
2430
2431 commit 165fa406ad8c39c0c32a31476a8a9bda3db72851
2432 Author: Vipin KUMAR <vipin.kumar@st.com>
2433 Date:   Fri Jan 15 19:15:46 2010 +0530
2434
2435     SPEAr : nand driver support for SPEAr SoCs
2436
2437     SPEAr SoCs contain an FSMC controller which can be used to interface
2438     with a range of memories eg. NAND, SRAM, NOR.
2439     Currently, this driver supports interfacing FSMC with NAND memories
2440
2441     Signed-off-by: Vipin <vipin.kumar@st.com>
2442
2443 commit a6e34f76c51c8514f1b691fc60394f09ae4fb2ff
2444 Author: Vipin KUMAR <vipin.kumar@st.com>
2445 Date:   Fri Jan 15 19:15:45 2010 +0530
2446
2447     SPEAr : smi driver support for SPEAr SoCs
2448
2449     SPEAr SoCs contain a serial memory interface controller. This
2450     controller is used to interface with spi based memories.
2451     This patch adds the driver for this IP.
2452
2453     Signed-off-by: Vipin <vipin.kumar@st.com>
2454
2455 commit 2403f8f417b1b94701bb5949903d701f1f414a42
2456 Author: Vipin KUMAR <vipin.kumar@st.com>
2457 Date:   Fri Jan 15 19:15:44 2010 +0530
2458
2459     SPEAr : i2c driver support added for SPEAr SoCs
2460
2461     SPEAr SoCs contain a synopsys i2c controller.
2462     This patch adds the driver for this IP.
2463
2464     Signed-off-by: Vipin <vipin.kumar@st.com>
2465
2466 commit 81c0ebf623ddbb6a4da8e051441c83e99a01b00b
2467 Author: Vipin KUMAR <vipin.kumar@st.com>
2468 Date:   Fri Jan 15 19:15:43 2010 +0530
2469
2470     SPEAr : Adding basic SPEAr architecture support.
2471
2472     SPEAr Architecture support added. It contains the support for
2473     following SPEAr blocks
2474     - Timer
2475     - System controller
2476     - Misc registers
2477
2478     Signed-off-by: Vipin <vipin.kumar@st.com>
2479
2480 commit 6fffcdf8c869a3d8436be8eff6428d8121aa76e6
2481 Author: Vipin KUMAR <vipin.kumar@st.com>
2482 Date:   Fri Jan 15 19:15:42 2010 +0530
2483
2484     SPEAr : Adding README.spear in doc
2485
2486     README.spear contains information about SPEAr architecture and
2487     build options etc
2488
2489     Signed-off-by: Vipin <vipin.kumar@st.com>
2490
2491 commit e4c43c20b87d5c9a7ac3b5250ca009311c62945c
2492 Author: Tom Rix <Tom.Rix@windriver.com>
2493 Date:   Wed Jan 20 18:00:28 2010 -0600
2494
2495     ARM Update mach-types
2496
2497     Fetched from http://www.arm.linux.org.uk/developer/machines/download.php
2498     And built with
2499
2500     repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
2501     commit 2045124ffd1a5e46d157349016a2c50f19c8c91d
2502
2503     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2504
2505 commit bfb6d510e9acbec97e4e1cc855ec1269538689f8
2506 Author: Prafulla Wadaskar <prafulla@marvell.com>
2507 Date:   Mon Nov 16 18:29:25 2009 +0530
2508
2509     Kirkwood: Makefile cleanup- fixed ordering (cosmetic change)
2510
2511     As per coding guidlines, it is good to maintain proper ordering
2512     in the makefiles.
2513     This was missed during initial coding, corrected here.
2514
2515     This was discovered during orion5x code review
2516     Thanks to Albert Aribaud for this.
2517
2518     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2519
2520 commit beca04dd2446fc9ec46ca17163dadb7f82420e7c
2521 Author: Prafulla Wadaskar <prafulla@marvell.com>
2522 Date:   Thu Dec 24 02:55:23 2009 +0530
2523
2524     Kirkwood: Upgated licencing for files imported from linux source to GPLv2 or later
2525
2526     These are few files directly imported from Linux kernel source.
2527     Those are not modifyed at all ar per strategy.
2528     These files contains source with GPLv2 only
2529     whereas u-boot expects GPLv2 or latter
2530
2531     These files are updated for the same from prior permission from original writes
2532
2533     Acked-by: Nicolas Pitre <nico@marvell.com>
2534     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2535
2536 commit d8e5f55475e621e793a15d93e2dd2549c5138735
2537 Author: Minkyu Kang <mk7.kang@samsung.com>
2538 Date:   Fri Dec 18 15:03:51 2009 +0900
2539
2540     s5pc1xx: update cache routines
2541
2542     Because of v7_flush_dcache_all is moved to omap3/cache.S
2543     and s5pc110 needs cache routines, update s5pc1xx cache routines.
2544
2545     l2_cache_enable and l2_caceh_disable are moved from cache.c to cache.S
2546     and invalidate_dcache is modified for SoC specific.
2547
2548     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2549
2550 commit 17ef9104ae11220979e1870f22dcaf535d9baacf
2551 Author: Seunghyeon Rhee <seunghyeon@lpmtec.com>
2552 Date:   Thu Dec 3 09:41:49 2009 +0900
2553
2554     samsung: fix DMC1_MEM_CFG for s3c64xx
2555
2556     The MSB of DMC1_MEM_CFG can be set to '1' for separate CKE control
2557     for S3C6400. In the configuration of SMDK6400, however, two 16-bit
2558     mDDR (SAMSUNG K4X51163) chips are used in parallel to form 32-bit
2559     memory bus and there is no need to control CKE for each chip
2560     separately. AFAIK, CKE1 is not at all connected. Only CKE0 is
2561     used. Futhermore, it should be '0' always for S3C6410. When tested
2562     with a board which has a S3C6410 and the same memory configuration,
2563     a side effect is observed that u-boot command "reset" doesn't work
2564     leading to system hang. Leaving the bit clear is safe in most cases.
2565
2566     Signed-off-by: Seunghyeon Rhee <seunghyeon@lpmtec.com>
2567     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2568
2569 commit 9998b1366e7e42089c3f579b4d1d790d3c295387
2570 Author: Stefan Roese <sr@denx.de>
2571 Date:   Thu Jan 21 11:37:31 2010 +0100
2572
2573     ppc4xx: Kilauea: Add CPLD version detection and EBC reconfiguration
2574
2575     A newer CPLD version on the 405EX evaluation board requires a different
2576     EBC controller setup for the CPLD register access. This patch adds a CPLD
2577     version detection for Kilauea and code to reconfigure the EBC controller
2578     (chip select 2) for the old CPLD if no new version is found.
2579
2580     Additionally the CPLD version is printed upon bootup:
2581
2582     Board: Kilauea - AMCC PPC405EX Evaluation Board (CPLD rev. 0)
2583
2584     Signed-off-by: Stefan Roese <sr@denx.de>
2585     Acked-by: Wolfgang Denk <wd@denx.de>
2586     Cc: Zhang Bao Quan <bqzhang@udtech.com.cn>
2587
2588 commit 97c9f29008579f56c3fb86785f29f04dd4f47f94
2589 Author: Felix Radensky <felix@embedded-sol.com>
2590 Date:   Sat Jan 23 01:35:24 2010 +0200
2591
2592     ppc4xx: Fix sending type 1 PCI transactions
2593
2594     The list of 4xx SoCs that should send type 1 PCI transactions
2595     is not defined correctly. As a result PCI-PCI bridges and devices
2596     behind them are not identified. The following 4xx variants should
2597     send type 1 transactions: 440GX, 440GP, 440SP, 440SPE, 460EX and 460GT.
2598
2599     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
2600     Signed-off-by: Stefan Roese <sr@denx.de>
2601
2602 commit 57ae8a5cced612088104303777e71a3dc89c00ef
2603 Author: Detlev Zundel <dzu@denx.de>
2604 Date:   Thu Jan 21 17:55:58 2010 +0100
2605
2606     mpc512x: Use in/out accessors for all registers
2607
2608     This is not only a cosmetic change as it fixes the real bug of board
2609     reset not working with the ELDK 4.2 toolchain.
2610
2611     Signed-off-by: Detlev Zundel <dzu@denx.de>
2612
2613 commit c7c0d542a199089cf658a7c23c314a5cff248b00
2614 Author: Mike Frysinger <vapier@gentoo.org>
2615 Date:   Thu Jan 21 04:03:22 2010 -0500
2616
2617     tools: allow people to compile w/out configuring
2618
2619     It's useful to be able to build up the host tools without having to select
2620     a board first.  Pretty much all tools in there are config-independent
2621     anyways.
2622
2623     Also add a shortcut "tools-all" to quickly build all host tools that are
2624     actually config-independent to allow for simple test builds.
2625
2626     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2627
2628 commit c5a028f085020b60040a2b42966f29b25bd6ee8e
2629 Author: Mike Frysinger <vapier@gentoo.org>
2630 Date:   Thu Jan 21 04:03:21 2010 -0500
2631
2632     ubsha1: drop unnecessary includes/prototypes
2633
2634     This code doesn't use any config.h defines, and the sha1.h header already
2635     declares a sha1_csum prototype.
2636
2637     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2638
2639 commit 5daa1c18b6a6877b0619a8dbaad0afd783f79e4f
2640 Author: Mike Frysinger <vapier@gentoo.org>
2641 Date:   Thu Jan 21 04:03:20 2010 -0500
2642
2643     image.h: avoid command.h for host tools
2644
2645     The u-boot command structures don't get used with host systems, so don't
2646     bother including it when building host code.  This avoids an implicit need
2647     on config.h in the process.
2648
2649     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2650
2651 commit 34be10651704709dfb35f9c57013f02d47cced09
2652 Author: Matthias Weisser <weisserm@arcor.de>
2653 Date:   Mon Jan 18 10:58:13 2010 +0100
2654
2655     Removing Atmel from ARM926EJ-S Systems
2656
2657     Signed-off-by: Matthias Weisser <weisserm@arcor.de>
2658
2659 commit a16028da63c78001823bfb375b3f6d9d86e5a534
2660 Author: Mike Frysinger <vapier@gentoo.org>
2661 Date:   Tue Nov 3 11:35:59 2009 -0500
2662
2663     lmb: only force on arches that use it
2664
2665     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2666
2667 commit dac4d7e8849d275023ea2fcae6caf941db91c042
2668 Author: Mike Frysinger <vapier@gentoo.org>
2669 Date:   Sun Jan 17 21:08:00 2010 -0500
2670
2671     sha1: add dedicated config option
2672
2673     The sha1 code is currently compiled for everyone, but in reality, it's
2674     only used by the FIT code.  So make it optional just like MD5.
2675
2676     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2677
2678 commit 33c8c664239f6665b228145d7e5adfa238a300bc
2679 Author: Felix Radensky <felix@embedded-sol.com>
2680 Date:   Tue Jan 19 21:19:06 2010 +0200
2681
2682     ppc4xx: Allow setting a single SPD EEPROM address for DDR2 DIMMs
2683
2684     On platforms where SPD EEPROM and another EEPROM have adjacent
2685     I2C addresses SPD_EEPROM_ADDRESS should be defined as a single
2686     element array, otherwise DDR2 setup code would fail with the
2687     following error:
2688
2689     ERROR: Unknown DIMM detected in slot 1
2690
2691     However, fixing SPD_EEPROM_ADDRESS would result in another
2692     error:
2693
2694     ERROR: DIMM's DDR1 and DDR2 type can not be mixed.
2695
2696     This happens because initdram() routine does not explicitly
2697     initialize dimm_populated array. This patch fixes the problem.
2698
2699     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
2700     Signed-off-by: Stefan Roese <sr@denx.de>
2701
2702 commit d98964aaacc5c54cf7d67bb1e5128ed067086dd7
2703 Author: Felix Radensky <felix@embedded-sol.com>
2704 Date:   Tue Jan 19 17:37:13 2010 +0200
2705
2706     ppc4xx: Fix reporting of bootstrap options G and F on 460EX/GT
2707
2708     Bootstrap options G and F are reported incorrectly (G instead
2709     of F and vice versa). This patch fixes this.
2710
2711     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
2712     Signed-off-by: Stefan Roese <sr@denx.de>
2713
2714 commit 19c292999732996e071caa0782eeef0ce0a60ac0
2715 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
2716 Date:   Wed Jan 20 21:07:00 2010 +0900
2717
2718     MIPS: qemu_mips: Import asm/unaligned.h from the Linux kernel
2719
2720     with a few adjustments for U-Boot.  This fixes the following build error:
2721
2722     make -C lib_generic/
2723     zlib.c:31:27: error: asm/unaligned.h: No such file or directory
2724     zlib.c: In function 'inflate_fast':
2725     zlib.c:641: warning: implicit declaration of function 'get_unaligned'
2726     make[1]: *** [zlib.o] Error 1
2727     make[1]: Leaving directory `/home/skuribay/git/u-boot.git/lib_generic'
2728     make: *** [lib_generic/libgeneric.a] Error 2
2729
2730     Reported-by: Himanshu Chauhan <himanshu@symmetricore.com>
2731     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
2732
2733 commit 38a8b3eafb17d61690e5fc93e6dc45120f79d7d0
2734 Author: Magnus Lilja <lilja.magnus@gmail.com>
2735 Date:   Sun Jan 17 17:46:11 2010 +0100
2736
2737     MX31: Activate NAND environment on i.MX31 PDK board.
2738
2739     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
2740
2741 commit c4832dffff20519e72879a8da010174ac0526141
2742 Author: Magnus Lilja <lilja.magnus@gmail.com>
2743 Date:   Sun Jan 17 17:46:10 2010 +0100
2744
2745     MXC: Add large page oob layout for i.MX31 NAND controller.
2746
2747     Import the large page oob layout from Linux mxc_nand.c driver.
2748
2749     The CONFIG_SYS_NAND_LARGEPAGE option is used to activate
2750     the large page oob layout. Run time detection is not supported
2751     as this moment.
2752
2753     This has been tested on the i.MX31 PDK board with a large
2754     page NAND device.
2755
2756     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
2757
2758 commit f6a9748e3261fdccdeb78a2b58e6ad538ba54496
2759 Author: Magnus Lilja <lilja.magnus@gmail.com>
2760 Date:   Wed Nov 11 20:18:43 2009 +0100
2761
2762     mxc_nand: Update driver to work with i.MX31.
2763
2764     Tested on i.MX31 Litekit.
2765
2766     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
2767
2768 commit c816dcb118e26ba17e7d73989514fec08a3823ac
2769 Author: Magnus Lilja <lilja.magnus@gmail.com>
2770 Date:   Wed Nov 11 20:18:42 2009 +0100
2771
2772     MX31: Add struct definition for clock control module in i.MX31.
2773
2774     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
2775
2776 commit 50ef25ef24eccd8e69d2c1ccc97b3f7e30109f51
2777 Author: Michal Simek <monstr@monstr.eu>
2778 Date:   Tue Jan 19 12:03:25 2010 +0100
2779
2780     microblaze: zlib needs asm/unaligned.h
2781
2782     Microblaze has own hw unaligned handler if is available.
2783     Use big endian version.
2784
2785     Signed-off-by: Michal Simek <monstr@monstr.eu>
2786
2787 commit 5b8b83bce6fdd0d2ca661de90ae83a0f8b152de6
2788 Author: Michal Simek <monstr@monstr.eu>
2789 Date:   Tue Jan 19 12:03:24 2010 +0100
2790
2791     microblaze: Remove getenv_IPaddr prototype
2792
2793     Commit 6a45e384955262882375a2785426dc65aeb636c4
2794     should remove reference from Microblaze too.
2795
2796     Signed-off-by: Michal Simek <monstr@monstr.eu>
2797
2798 commit b9e6957ca15be8466190794d6d87845491b3411b
2799 Author: Alessandro Rubini <rubini@unipv.it>
2800 Date:   Mon Jan 18 22:38:38 2010 +0100
2801
2802     MAINTAINERS: fix nhk8815 board name
2803
2804     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2805
2806 commit b40e2320c440c5082020e5036a0cb8d4ed1b3d7d
2807 Author: Ben Warren <biggerbadderben@gmail.com>
2808 Date:   Mon Jan 18 11:35:31 2010 -0800
2809
2810     Fix breakage in SMC EEPROM standalone applications
2811
2812     Commit 6a45e384955262882375a2785426dc65aeb636c4 (Make getenv_IPaddr() global)
2813     inadvertently added ' #include "net.h" ' to the standalone programs, creating
2814     duplicate definitions of 'struct eth_device'.  This patch removes the local
2815     definitions and removes other code that breaks due to the change in definition.
2816
2817     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2818     Acked-by: Mike Frysinger <vapier@gentoo.org>
2819
2820 commit 2a9987935e3cdb61e7550c87cbc9f500a54f672d
2821 Author: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
2822 Date:   Mon Jan 18 18:13:39 2010 +0100
2823
2824     Makefile: fix parallel build
2825
2826     During parallel build, the top Makefile spawns multiple sub-makes for
2827     targets in cpu/$(CPU) and $(dir $(LDSCRIPT)). If the .depend files are
2828     not present in these directories, the sub-makes may end up generating
2829     these files simultaneously which leads to corrupted content.
2830
2831     A typical error message is:
2832
2833     .depend:39: *** multiple target patterns.  Stop.
2834
2835     This patch serializes the creation of .depend in cpu/$(CPU) and
2836     $(dir $(LDSCRIPT)) by adding these directories to the depend target
2837     in the top Makefile.
2838
2839     Other directories in $(LIBS) are not affected since they contain only
2840     one Make target and thus only one sub-make is spawned per directory.
2841
2842     Signed-off-by: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
2843     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2844
2845 commit f19fd87e9387282b5abbfdafe46ac272320643d8
2846 Author: Robin Getz <robin.getz@analog.com>
2847 Date:   Mon Dec 21 16:35:48 2009 -0500
2848
2849     Blackfin: add support for kgdb
2850
2851     Signed-off-by: Robin Getz <robin.getz@analog.com>
2852     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2853
2854 commit 3869453f659c22396fecb7c8ed7af909e89f461c
2855 Author: Robin Getz <robin.getz@analog.com>
2856 Date:   Mon Dec 21 17:55:22 2009 -0500
2857
2858     asm-generic/signal.h: import from linux
2859
2860     We need signal.h for Blackfin/KGDB, so import the asm-generic/signal.h
2861     for people to leverage.
2862
2863     Signed-off-by: Robin Getz <robin.getz@analog.com>
2864     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2865
2866 commit 88ffb2665cd066b6b20cfaade13929d4e8428dde
2867 Author: Heiko Schocher <hs@denx.de>
2868 Date:   Thu Jan 7 08:55:54 2010 +0100
2869
2870     CRAMFS: support cramfs in RAM
2871
2872     cramfsls and cramfsload are added to the command list.
2873     A cramfs placed at 'cramfs_addr' can the be listed with 'cramfsls' and files
2874     can be loaded with 'cramfsload'. 'cramfs_addr' is an environment variable
2875     specifying the address the cramfs is located.
2876     This works for powerpc and for ARM.
2877
2878     Use CONFIG_CMD_CRAMFS.
2879
2880     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
2881     Signed-off-by: Heiko Schocher <hs@denx.de>
2882
2883 commit 4897ee33c98b4b29efd62854052eb7862380b5ae
2884 Author: Heiko Schocher <hs@denx.de>
2885 Date:   Thu Jan 7 08:55:50 2010 +0100
2886
2887     powerpc: keymile boards updates
2888
2889     - malloc size 4 MB for all keymile boards
2890     - use generic FDT code for fixing up the DTS
2891     - enable unit-led at startup for keymile boards
2892     - remove some dts updates for keymile boards
2893     - ppc_83xx, kmeter1: take FE/GbE PHYs out of reset
2894     - ppc_83xx, kmeter1: change from Intel Strata to Spansion 64MB flash
2895       changed from Intel Strata to Spansion 64MB flash and changed flash layout.
2896     +---------+----------+-----------------------+-----------------------------+
2897     | name    | size     | range                 | description                 |
2898     +---------+----------+-----------------------+-----------------------------+
2899     | u-boot  |   768 KB | 0xf0000000-0xf00bffff | for u-boot                  |
2900     | env     |   128 KB | 0xf00c0000-0xf00dffff | for environment             |
2901     | envred  |   128 KB | 0xf00e0000-0xf00fffff | for environment (redundant) |
2902     | ubi0    | 64512 KB | 0xf0100000-0xf3ffffff | ubi0 for ubi volumes        |
2903     +---------+----------+-----------------------+-----------------------------+
2904
2905     Signed-off-by: Heiko Schocher <hs@denx.de>
2906
2907 commit 1567b596d9f4a7ff49ebdca29e15a33777dfd670
2908 Author: Heiko Schocher <hs@denx.de>
2909 Date:   Thu Jan 7 08:55:44 2010 +0100
2910
2911     env, eeprom: add redundant environment support
2912
2913     Add redundant environment support for environment lying on a EEPROM.
2914
2915     Tested on uppcoming suen3 support
2916
2917     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
2918
2919 commit 548738b4d43af841ff58c787bce297ac6a8bf7d1
2920 Author: Heiko Schocher <hs@denx.de>
2921 Date:   Thu Jan 7 08:55:40 2010 +0100
2922
2923     cmd_eeprom: I2C updates
2924
2925     - CONFIG_ENV_EEPROM_IS_ON_I2C
2926       define this, if you have I2C and SPI activated, and your
2927       EEPROM, which holds the environment, is on the I2C bus.
2928
2929     - CONFIG_I2C_ENV_EEPROM_BUS
2930       if you have an Environment on an EEPROM reached over
2931       I2C muxes, you can now define, how to reach this
2932       EEPROM.
2933
2934     Signed-off-by: Heiko Schocher <hs@denx.de>
2935
2936 commit b63815e31355b44e65899b361da1d8ef6940ab90
2937 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
2938 Date:   Tue Dec 22 23:05:45 2009 +0100
2939
2940     move definition of macros likely and unlikely to compiler.h
2941
2942     the macros likely and unlikely were defined in include/linux/mtd/compat.h,
2943     but used in code not related to MTD. moved the macro definitions to compiler.h
2944
2945     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
2946
2947 commit c3d7eec6d88945dec0626cdd4f4a35cb5f83ef00
2948 Author: Detlev Zundel <dzu@denx.de>
2949 Date:   Tue Dec 22 12:43:02 2009 +0100
2950
2951     cmd_bootm.c: Change interpretation of standalone image parameters.
2952
2953     Current code uses the second argument to bootm for standalone images to
2954     override the load address specified in the image instead of passing all
2955     parameters as is to the application.  This behaviour is not documented
2956     and not in line with how the go command works for standalone applications,
2957     so we simply drop it.
2958
2959     Signed-off-by: Detlev Zundel <dzu@denx.de>
2960
2961 commit 8b828a8f44b7ee9953c7ba63e64b1e80790139b3
2962 Author: Detlev Zundel <dzu@denx.de>
2963 Date:   Tue Dec 22 12:43:01 2009 +0100
2964
2965     cmd_bootm.c: Do not load a ramdisk when not booting a kernel.
2966
2967     In case we boot an image marked as 'standalone' and 'linux', the current
2968     code erroneously tried to load a ramdisk.
2969
2970     Signed-off-by: Detlev Zundel <dzu@denx.de>
2971
2972 commit 16035bcd8c81c3c59dddfb54f48e8059a623b13c
2973 Author: Robin Getz <robin.getz@analog.com>
2974 Date:   Mon Dec 21 18:40:44 2009 -0500
2975
2976     kgdb: update mem2hex/hex2mem funcs
2977
2978     Convert the funcs to do the conversion inline so that we can do the copy
2979     all at once with memcpy.  This let's us push out an weird arch-specific
2980     issue with accessing different regions of memory to the memcpy function
2981     like the MMRs on Blackfin systems, and it should be a bit faster.
2982
2983     Signed-off-by: Robin Getz <robin.getz@analog.com>
2984     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2985
2986 commit cbb0cab1d929839d1cf170b54b1fef05896433ea
2987 Author: Mike Frysinger <vapier@gentoo.org>
2988 Date:   Mon Dec 21 18:40:43 2009 -0500
2989
2990     kgdb: drop duplicate debugger_exception_handler
2991
2992     The debugger_exception_handler definition is the same for everyone, so use
2993     the common one now.
2994
2995     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2996
2997 commit 0c909551f88c0d92a919ff70127df7b33cdd473d
2998 Author: Robin Getz <robin.getz@analog.com>
2999 Date:   Mon Dec 21 18:40:42 2009 -0500
3000
3001     kgdb: add default generic stubs
3002
3003     The default kgdb functions can be implemented with common U-Boot functions,
3004     so rather than force everyone to copy & paste these things, create a set of
3005     weak stubs.
3006
3007     Signed-off-by: Robin Getz <robin.getz@analog.com>
3008     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3009
3010 commit fa2744de6584c92750f807a006e20a59ee046e76
3011 Author: Mike Frysinger <vapier@gentoo.org>
3012 Date:   Mon Dec 21 14:19:12 2009 -0500
3013
3014     netconsole: mark local funcs with static
3015
3016     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3017
3018 commit 7293e0577f149b75595b6f6ceb75bf50a523aff6
3019 Author: Michael Hennerich <michael.hennerich@analog.com>
3020 Date:   Sat Dec 19 08:19:09 2009 -0500
3021
3022     easylogo: add support for 16-bit RGB565
3023
3024     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
3025     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3026
3027 commit 0f597bc2a80353bcd0fd4daf42e2047c959485c8
3028 Author: Detlev Zundel <dzu@denx.de>
3029 Date:   Fri Dec 18 17:35:57 2009 +0100
3030
3031     mpc5xxx/cpu_init.c: Convert to IO accessors.
3032
3033     Signed-off-by: Detlev Zundel <dzu@denx.de>
3034
3035 commit 18e89890625c86be6c971c01b824d14bbdd78e25
3036 Author: Detlev Zundel <dzu@denx.de>
3037 Date:   Fri Dec 18 17:35:56 2009 +0100
3038
3039     mpc5xxx.h: Add structure definition for XLB arbiter block.
3040
3041     Signed-off-by: Detlev Zundel <dzu@denx.de>
3042
3043 commit 10c32ff59f7abe352b548066918bc5ea39e7c47b
3044 Author: Mike Frysinger <vapier@gentoo.org>
3045 Date:   Wed Dec 2 21:15:03 2009 -0500
3046
3047     config_defaults.h: new header for common u-boot config defaults
3048
3049     There are a bunch of features in U-Boot that we want to enable by default,
3050     and it's best if we centralize them in one place rather than updating all
3051     the board files out there.
3052
3053     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3054
3055 commit 64917ca38933d10b3763f61df7a1e58e1e127b52
3056 Author: Peter Tyser <ptyser@xes-inc.com>
3057 Date:   Sun Jan 17 15:38:26 2010 -0600
3058
3059     PCIe, USB: Replace 'end point' references with 'endpoint'
3060
3061     When referring to PCIe and USB 'endpoint' is the standard naming
3062     convention.
3063
3064     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3065     Acked-by: Stefan Roese <sr@denx.de>
3066     Acked-by: Remy Bohmer <linux@bohmer.net>
3067
3068 commit 6a45e384955262882375a2785426dc65aeb636c4
3069 Author: Dirk Behme <dirk.behme@googlemail.com>
3070 Date:   Sun Jan 3 08:33:58 2010 +0100
3071
3072     Make getenv_IPaddr() global
3073
3074     There are boards out there that do not have network support in
3075     U-Boot (CONFIG_CMD_NET not set), but they do so in Linux. This
3076     makes it desirable to be able to port network configuration (like
3077     the IP address) to the Linux kernel.
3078
3079     We should not make the passing of the IP configuration to Linux
3080     dependent on U-Boot features / settings.
3081
3082     For this, make getenv_IPaddr() global. This fixes build error
3083
3084     u-boot/lib_xxx/board.c:360: undefined reference to `getenv_IPaddr'
3085
3086     on various architectures.
3087
3088     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
3089     Acked-by: Ben Warren <biggerbadderben@gmail.com>
3090
3091 commit 846a6391e4bc9fdd721753a1021953ff0ca17c27
3092 Author: Mike Frysinger <vapier@gentoo.org>
3093 Date:   Fri Jan 15 04:50:40 2010 -0500
3094
3095     Blackfin: drop .eh_frame from linker script
3096
3097     Nothing in U-Boot uses runtime C++ exceptions/unwinding, so there is no
3098     need to list this section.
3099
3100     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3101
3102 commit ed912d4d659e67910edca04498803db24d826615
3103 Author: Mike Frysinger <vapier@gentoo.org>
3104 Date:   Fri Jan 15 04:47:06 2010 -0500
3105
3106     Blackfin: use sort funcs in the linker script
3107
3108     This is just Blackfin catching up with every one else.
3109
3110     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3111
3112 commit 2aeda2d054bb32027bed33d9c3a63d152164b5e0
3113 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
3114 Date:   Wed Jan 13 09:04:53 2010 -0500
3115
3116     Blackfin: tcm-bf518: new board port
3117
3118     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
3119     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3120
3121 commit c46a0ebf82d3fd27dd21ad7d4fe7f11c2b2b0b21
3122 Author: Mike Frysinger <vapier@gentoo.org>
3123 Date:   Fri Jan 8 07:56:17 2010 -0500
3124
3125     Blackfin: enable JFFS summary support for ADI boards
3126
3127     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3128
3129 commit 912da8d606997822d44905b83ef47799a130a1b9
3130 Author: Mike Frysinger <vapier@gentoo.org>
3131 Date:   Fri Jan 8 06:14:13 2010 -0500
3132
3133     Blackfin: bf518f-ezbrd: increase monitor length
3134
3135     The addition of KGDB overflowed the current linker section.
3136
3137     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3138
3139 commit 03642aeee0d51660c35c9dbdde78882eb3efb350
3140 Author: Robin Getz <robin.getz@analog.com>
3141 Date:   Mon Dec 21 17:02:48 2009 -0500
3142
3143     Blackfin: handle anomaly 05000257
3144
3145     Need to reload the loop counters to keep from corrupting hardware loops.
3146
3147     Signed-off-by: Robin Getz <robin.getz@analog.com>
3148     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3149
3150 commit b6db2834407d49ec48ac8e9281fdd704d5ee3eba
3151 Author: Robin Getz <robin.getz@analog.com>
3152 Date:   Mon Dec 21 16:59:21 2009 -0500
3153
3154     Blackfin: keep hwtrace on CPLB miss
3155
3156     Crashes rarely happen in the CPLB miss handler compared to the rest of
3157     U-Boot code, so disable hardware tracing when processing misses.  This
3158     way a crash due to other functions will be shown properly.
3159
3160     Signed-off-by: Robin Getz <robin.getz@analog.com>
3161     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3162
3163 commit 0097870e3d72f10ec58ae22488945fd9ee37289f
3164 Author: Robin Getz <robin.getz@analog.com>
3165 Date:   Mon Dec 21 15:31:08 2009 -0500
3166
3167     Blackfin: add a netconsole helper
3168
3169     Signed-off-by: Robin Getz <robin.getz@analog.com>
3170     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3171
3172 commit 10eafa10be2deaba4939d0c19cd21648f2d3d4aa
3173 Author: Michael Hennerich <michael.hennerich@analog.com>
3174 Date:   Thu Dec 10 09:19:21 2009 +0000
3175
3176     Blackfin: add support for BF527-EZKIT v2.1
3177
3178     The new board revision has a different LCD.
3179
3180     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
3181     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3182
3183 commit 9442c4a1337dbcf82e3bc02a12e24f491e0e6122
3184 Author: Cliff Cai <cliff.cai@analog.com>
3185 Date:   Tue Dec 8 07:25:57 2009 +0000
3186
3187     Blackfin: bf527-ezkit/bf548-ezkit: add musb board specific initialization
3188
3189     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3190     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3191
3192 commit 581d92eefc1a060ea5c6eb42028880a37095953d
3193 Author: Cliff Cai <cliff.cai@analog.com>
3194 Date:   Mon Dec 7 08:03:06 2009 +0000
3195
3196     Blackfin: bfin_spi: round up clock divider
3197
3198     If the requested clock cannot be exactly obtained, round it up so that we
3199     err on the side of slightly slower rather than slightly faster.
3200
3201     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3202     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3203
3204 commit a52ad4f99486ce3f404f83f75263e321956bb6d5
3205 Author: Mike Frysinger <vapier@gentoo.org>
3206 Date:   Mon Nov 30 13:51:24 2009 -0500
3207
3208     Blackfin: pull io funcs from linux
3209
3210     Some common code uses more of the io.h funcs than we currently provide, so
3211     pull in all of the ones from the linux kernel.
3212
3213     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3214
3215 commit 5eefe7e99537ca3641496185f23b1dc9e76b405c
3216 Author: Mike Frysinger <vapier@gentoo.org>
3217 Date:   Mon Nov 30 13:34:07 2009 -0500
3218
3219     Blackfin: section off the CF/IDE io.h hacks
3220
3221     These need to be rethought, but until that happens, isolate the hack so
3222     that we can extend the common code without breaking things.
3223
3224     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3225
3226 commit 3b062da326f9b37d34aa8f80bf9d2f9e74f55c86
3227 Author: Mike Frysinger <vapier@gentoo.org>
3228 Date:   Mon Nov 30 13:30:18 2009 -0500
3229
3230     Blackfin: drop unused funcs from io.h
3231
3232     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3233
3234 commit 5f79644d2665763d522ef2db53c026c5f4865b02
3235 Author: Mike Frysinger <vapier@gentoo.org>
3236 Date:   Mon Nov 30 13:08:39 2009 -0500
3237
3238     Blackfin: bf533-stamp: split and cleanup CF/IDE code
3239
3240     Give the CF/IDE code its own file to keep things cleanly separated.  While
3241     we're here, clean up the code to use common functions.
3242
3243     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3244
3245 commit e54c8209913a3f26ae28819e3515df53ec2b4548
3246 Author: Cliff Cai <cliff.cai@analog.com>
3247 Date:   Fri Nov 20 08:24:43 2009 +0000
3248
3249     Blackfin: convert bfin_sdh to generic mmc
3250
3251     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3252     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3253
3254 commit 17ebd5bf3393144f3ead19384318a6e5b01c4f90
3255 Author: Cliff Cai <cliff.cai@analog.com>
3256 Date:   Tue Nov 17 09:36:21 2009 +0000
3257
3258     Blackfin: bfin_spi: let boards control idle value
3259
3260     Some SPI devices like to see high idle values rather than low.
3261
3262     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3263     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3264
3265 commit ea693f22d8dbd8a65867a60a7f3faac30f85d65b
3266 Author: Mike Frysinger <vapier@gentoo.org>
3267 Date:   Sat Nov 14 13:53:00 2009 -0500
3268
3269     Blackfin: asm/string.h: drop useless includes
3270
3271     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3272
3273 commit f948158f72e6b880d02e4fa549362e4dc285eb1c
3274 Author: Mike Frysinger <vapier@gentoo.org>
3275 Date:   Thu Nov 12 18:42:53 2009 -0500
3276
3277     Blackfin: use new bfin read/write mmr helper funcs
3278
3279     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3280
3281 commit 313e8aacc1c9f5ca06085fa19b1429fa18a01aaa
3282 Author: Mike Frysinger <vapier@gentoo.org>
3283 Date:   Thu Nov 12 18:42:07 2009 -0500
3284
3285     Blackfin: move watchdog config check to Makefile
3286
3287     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3288
3289 commit dc6bc645e0cc1939b31cc54346415cf8e0dffc88
3290 Author: Mike Frysinger <vapier@gentoo.org>
3291 Date:   Wed Nov 11 19:08:33 2009 -0500
3292
3293     Blackfin: fix L1 Instruction sizes on BF52x/BF54x
3294
3295     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3296
3297 commit b7659ef2e764f62fc334f0d970721496823e4888
3298 Author: Mike Frysinger <vapier@gentoo.org>
3299 Date:   Wed Nov 11 17:29:35 2009 -0500
3300
3301     Blackfin: bf527-ezkit: auto-select NAND settings
3302
3303     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3304
3305 commit 7527feef06b13e9fd5b6d10a4bfc81b59ee56f27
3306 Author: Mike Frysinger <vapier@gentoo.org>
3307 Date:   Mon Nov 9 19:38:23 2009 -0500
3308
3309     Blackfin: support boards with no external memory
3310
3311     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3312
3313 commit dbda2c65e5fec92d0791367b53042983746ce95b
3314 Author: Mike Frysinger <vapier@gentoo.org>
3315 Date:   Mon Nov 9 19:44:04 2009 -0500
3316
3317     Blackfin: re-architect initcode
3318
3319     The single initcode function was growing unwieldy, so split it up the
3320     distinct steps into their own function.  This should making digesting the
3321     result much easier on people.
3322
3323     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3324
3325 commit f5402d4c27e471c333cb84a82a437e60c6182449
3326 Author: Mike Frysinger <vapier@gentoo.org>
3327 Date:   Mon Nov 9 18:08:09 2009 -0500
3328
3329     Blackfin: global_data.h: make pull in needed headers
3330
3331     We need the definition of bd_t in this header, so pull in asm/u-boot.h.
3332
3333     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3334
3335 commit fa45bd498a1970574f4b7539b67cc2286f1324fa
3336 Author: Mike Frysinger <vapier@gentoo.org>
3337 Date:   Tue Nov 3 06:28:22 2009 -0500
3338
3339     Blackfin: kill off useless initdram() usage
3340
3341     While the initdram() function makes sense on some arches, it doesn't for
3342     Blackfin systems as it's always implemented the same way.
3343
3344     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3345
3346 commit b1e2c5519a06f9a5841a7a434bf4da4d393f8df5
3347 Author: Mike Frysinger <vapier@gentoo.org>
3348 Date:   Tue Nov 3 06:11:31 2009 -0500
3349
3350     Blackfin: move section length calculation to linker script
3351
3352     The length of the sections is fixed at link time, so let the linker do the
3353     calculation rather than doing it ourselves at runtime.
3354
3355     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3356
3357 commit 446707c90f52e5fcafecd468920cfad685ee9fc7
3358 Author: Valentin Yakovenkov <yakovenkov@niistt.ru>
3359 Date:   Mon Oct 26 18:43:04 2009 -0400
3360
3361     Blackfin: bf561-acvilon: new board port
3362
3363     Signed-off-by: Valentin Yakovenkov <yakovenkov@niistt.ru>
3364     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3365
3366 commit 16ada4f66ffea53662b7a61a5222cbc825d67175
3367 Author: Mike Frysinger <vapier@gentoo.org>
3368 Date:   Thu Oct 15 14:59:46 2009 -0400
3369
3370     Blackfin: ADI settings: enable silent console support
3371
3372     Very little additional code overhead, and only works when the user sets an
3373     env var ahead of time, so default to on makes sense.
3374
3375     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3376
3377 commit ac41c7a0e76fe6384949571373dc84a6098965ac
3378 Author: Mike Frysinger <vapier@gentoo.org>
3379 Date:   Thu Oct 15 14:55:21 2009 -0400
3380
3381     Blackfin: bf537-stamp: rename SPI/MMC define
3382
3383     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3384
3385 commit fd04a05b89d848c7841d8512751b8cce8b791e69
3386 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
3387 Date:   Wed Oct 14 08:37:32 2009 -0400
3388
3389     Blackfin: update tiny board settings (voltage/default env)
3390
3391     The tinyboards like to run at a little lower voltage than the default, and
3392     they prefer to boot over the network.  For the latter, extend the common
3393     code a little to make this easier.
3394
3395     Also fix the cm-bf527 env sector size while we're in here to reflect the
3396     flash that is actually in use.
3397
3398     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
3399     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3400
3401 commit 76d82187c6cccbcd8d514015c3b283f05ee8ac5c
3402 Author: Mike Frysinger <vapier@gentoo.org>
3403 Date:   Tue Jul 21 22:17:36 2009 -0400
3404
3405     Blackfin: tweak embedded LDR env config option
3406
3407     Use the common config option for extracting the environment for embedding
3408     into LDR files and clarify the LDR-specific option.
3409
3410     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3411
3412 commit 2740544881f652566756815dda4da0bcd946e9de
3413 Author: Wolfgang Denk <wd@denx.de>
3414 Date:   Fri Jan 15 11:20:10 2010 +0100
3415
3416     malloc: return NULL if not initialized yet
3417
3418     When malloc() was called before it was properly initialized
3419     (as would happen if when used before relocation to RAM) it returned
3420     random, non-NULL values, which called all kinds of difficult to debug
3421     subsequent errors.
3422
3423     Make sure to return NULL when initialization was not done yet.
3424
3425     Signed-off-by: Wolfgang Denk <wd@denx.de>
3426
3427 commit f098337152ca48e135448f5e7836cce938e12bc0
3428 Author: Wolfgang Denk <wd@denx.de>
3429 Date:   Fri Jan 15 11:10:33 2010 +0100
3430
3431     JFFS2: drop support for LZARI compression mode
3432
3433     Support for LZARI compression mode was added based on a MTD CVS
3434     snapshot of March 13, 2005. However, fs/jffs2/compr_lzari.c contains
3435     contradictory licensing terms: the original copyright clause says "All
3436     rights reserved. Permission granted for non-commercial use.", but
3437     later reference to the file 'LICENCE' in the jffs2 directory was added
3438     which says GPL v2 or later.
3439
3440     As no boards ever used LZARI compression, and this file is also not
3441     present in recent MTD code, we resolve this conflict by removing the
3442     conflicting file and references to it.
3443
3444     Also copy the referenced but missing file 'LICENCE' from the current
3445     MTD source tree.
3446
3447     Signed-off-by: Wolfgang Denk <wd@denx.de>
3448
3449 commit 321790f61bb92fead0fc01b8d055aa331d8dcf85
3450 Author: Bryan Wu <bryan.wu@analog.com>
3451 Date:   Sat Jan 9 16:53:54 2010 -0500
3452
3453     usb: musb: add virtual root hub control support
3454
3455     For MUSB devices that do not support multipoint (hubs), we have to emulate
3456     a root hub so that we can support core operations like resetting ports.
3457
3458     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
3459     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3460     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3461
3462 commit 559e2c87e45ae7261837d4945411c04833937d2a
3463 Author: Chris Zhang <chris@seamicro.com>
3464 Date:   Wed Jan 6 13:34:06 2010 -0800
3465
3466     Adds EHCI definitions to sequoia board configuration file.
3467
3468     Adds required definitions for EHCI support in sequoia configuration file.
3469     But still keeps the OHCI as default driver.
3470
3471     Signed-off-by: Chris Zhang <chris@seamicro.com>
3472
3473 commit 5f82887feecd7895593401f1ccda866bfb299fbb
3474 Author: Chris Zhang <chris@seamicro.com>
3475 Date:   Wed Jan 6 13:34:05 2010 -0800
3476
3477     Add ppc440epx USB ehci support.
3478
3479     Currently ppc440epx uses OHCI for USB full-speed support. This change adds
3480     support for EHCI.
3481
3482     Signed-off-by: Chris Zhang <chris@seamicro.com>
3483
3484 commit b416191a14770c6bcc6fd67be7decf8159b2baee
3485 Author: Chris Zhang <chris@seamicro.com>
3486 Date:   Wed Jan 6 13:34:04 2010 -0800
3487
3488     Fix EHCI port reset.
3489
3490     In USB ehci driver, the port reset is not terminated. EHCI spec says "A host
3491      controller must terminate the reset and stabilize the state of the port within
3492      2 milliseconds". Without termination, a port stays at reset state. This is
3493      observed on ppc4xx(sequoia) boards.
3494
3495     Signed-off-by: Chris Zhang <chris@seamicro.com>
3496
3497 commit b301be0599d14be46fc088861bb798648844aea5
3498 Author: Sanjeev Premi <premi@ti.com>
3499 Date:   Thu Dec 24 14:20:41 2009 +0530
3500
3501     omap3: fix compile warning
3502
3503     This patch fixes this warning during compile:
3504
3505     omap3.c: In function 'musb_platform_init':
3506     omap3.c:126: warning: label 'end' defined but not used
3507
3508     Problem reported by: Dirk Behme[dirk.behme@googlemail.com]
3509
3510     Signed-off-by: Sanjeev Premi <premi@ti.com>
3511
3512 commit e608f221c13943d88e86f44753e23668342c3df3
3513 Author: Bryan Wu <bryan.wu@analog.com>
3514 Date:   Wed Dec 16 22:04:02 2009 -0500
3515
3516     usb: musb: add support for Blackfin MUSB
3517
3518     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
3519     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3520     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3521     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3522
3523 commit bc72a919e037782f64e3ac45c91bc60408e57e85
3524 Author: Bryan Wu <bryan.wu@analog.com>
3525 Date:   Wed Dec 16 22:04:01 2009 -0500
3526
3527     usb: musb: change rxcsr register from write to read/modify/write
3528
3529     The RX Control/Status register has bits that we want to preserve, so don't
3530     just write out a single bit.  Preserve the others bits in the process.
3531
3532     The original code posted to the u-boot list had this behavior, but looks
3533     like it was lost somewhere along the way to merging.
3534
3535     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
3536     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3537     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3538     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3539
3540 commit 8868fd443b7a52bf433903cc9527403ad055acb9
3541 Author: Bryan Wu <bryan.wu@analog.com>
3542 Date:   Wed Dec 16 22:04:00 2009 -0500
3543
3544     usb: musb: make multipoint optional
3545
3546     The multipoint handling under MUSB is optional, and some parts (like the
3547     Blackfin processor) do not implement support for it.
3548
3549     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
3550     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3551     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3552     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3553
3554 commit df402ba38103df51f6929848b6a797eff4db61f8
3555 Author: Bryan Wu <bryan.wu@analog.com>
3556 Date:   Wed Dec 16 22:03:59 2009 -0500
3557
3558     usb: musb: make fifo support configurable
3559
3560     The dynamic FIFO handling under MUSB is optional, and some parts (like
3561     the Blackfin processor) do not implement support for it.
3562
3563     Due to this, the FIFO reading/writing steps need special handling, so
3564     mark the common versions weak so drivers can override.
3565
3566     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
3567     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3568     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3569     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3570
3571 commit dc2cd05c91a134d53fada41e8f97a434be22de02
3572 Author: Mike Frysinger <vapier@gentoo.org>
3573 Date:   Wed Dec 16 22:03:58 2009 -0500
3574
3575     usb: musb: make sure the register layout is packed
3576
3577     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3578     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3579
3580 commit 7b4292883b6fdc42984671fbe4e0a352ec704bde
3581 Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
3582 Date:   Tue Dec 22 10:56:14 2009 +0530
3583
3584     DA830: Add usb config
3585
3586     Adding USB configuration. Default is set for USB MSC host.
3587
3588     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
3589     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
3590
3591 commit 7359273d946a7dcde04c5e8d5bad669146efc87c
3592 Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
3593 Date:   Tue Dec 22 10:56:13 2009 +0530
3594
3595     DA8xx: Add MUSB host support
3596
3597     Tested USB host functionality on DA830 EVM.
3598
3599     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
3600     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
3601
3602 commit 0b232310b2087d4278fb224fa01e228136fb8bdf
3603 Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
3604 Date:   Tue Dec 22 10:56:12 2009 +0530
3605
3606     DA8xx: Add GPIO register definitions
3607
3608     Added DA8xx GPIO base addresses in gpio_defs.h and pointers
3609     to different BANKs which can be used to program GPIOs.
3610
3611     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
3612     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
3613
3614 commit 82a821f89bee913d7ba17cb500c778cf08dce321
3615 Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
3616 Date:   Tue Dec 22 10:56:11 2009 +0530
3617
3618     DA830: Add pinmux for USB0_DRVVBUS
3619
3620     USB0_DRVVBUS pinmux configuration is required for USB functinality
3621     in uboot.
3622
3623     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
3624     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
3625
3626 commit a3f5da1bee9a8c343a411080d7d468bdc78794a4
3627 Author: Heiko Schocher <hs@denx.de>
3628 Date:   Thu Jan 7 08:56:00 2010 +0100
3629
3630     mpc83xx: add support configure bus parking
3631
3632     Add support to configure bus parking mode and master in bus arbitration
3633     configuration (ACR). Add this for the kmeter1 port:
3634
3635     Configure bus arbiter with recommended values from Freescale
3636     to improve bus latency/throughput for application with
3637     intensive QuiccEngine activity.
3638
3639     Signed-off-by: Heiko Schocher <hs@denx.de>
3640     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3641
3642 commit a0daa2e06f05d97c03c59b656d50371319bf29ec
3643 Author: Reinhard Arlt <reinhard.arlt@esd.eu>
3644 Date:   Tue Dec 8 09:21:41 2009 +0100
3645
3646     mpc83xx: vme8349: Fix power up reset sequence for tsi148
3647
3648     Remove PCI reset, if there is a monarch PMC module.
3649
3650     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd.eu>
3651     Signed-off-by: Stefan Roese <sr@denx.de>
3652
3653     convert clrbits_be32 + setbits_be32 to clrsetbits_be32, use out_be32 to set gcr.
3654
3655     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3656
3657 commit 1dee9be683c9b0f060452aaf1a97a34fae87f07a
3658 Author: Reinhard Arlt <reinhard.arlt@esd.eu>
3659 Date:   Tue Dec 8 09:13:08 2009 +0100
3660
3661     mpc83xx: Add support for MPC8349 esd caddy2
3662
3663     The caddy2 is a variant of the already supported vme8349. So we just
3664     add the differences to this board port. To better support those two
3665     boards we switched from fixed SDRAM configuration to usage of
3666     spd_sdram(). This is done by providing a board specific SPD EEPROM
3667     routine with different values for both boards.
3668
3669     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd.eu>
3670     Signed-off-by: Stefan Roese <sr@denx.de>
3671
3672     changed to use mkconfig -t option instead, plus misc codingstyle fixes.
3673
3674     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3675
3676 commit 7693640acd5222f5a64e59ccf5e3bc511e8054b9
3677 Author: Stefan Roese <sr@denx.de>
3678 Date:   Tue Dec 8 09:10:04 2009 +0100
3679
3680     mpc83xx: spd_sdram.c: Disable memory controller before initializing
3681
3682     The memory controller could already be enabled, when spd_sdram() is
3683     called. This could be the case for example, when the SDRAM is initialized
3684     by the JTAG debugger.
3685
3686     The "sync" after the register access via the accessor function is
3687     still needed, because the macro uses the sync before the real write
3688     is done. So until not all accesses are converted to using accessor
3689     functions, this sync still needs to be made "manually" here.
3690
3691     Signed-off-by: Stefan Roese <sr@denx.de>
3692     Cc: Reinhard Arlt <reinhard.arlt@esd.eu>
3693     Acked-by: Dave Liu <daveliu@freescale.com>
3694     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3695
3696 commit 2e95004deb6e33e33bf1b8a92a38cd2115bac4c2
3697 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3698 Date:   Tue Nov 24 20:12:12 2009 +0300
3699
3700     mpc83xx: Add NAND boot support for MPC8315E-RDB boards
3701
3702     The core support for NAND booting is there already, so this patch
3703     is pretty straightforward.
3704
3705     There is one trick though: top level Makefile expects nand_spl to
3706     be in nand_spl/board/$(BOARDDIR), but we can fully reuse the code
3707     from mpc8313erdb boards, and so to not duplicate the code we just
3708     symlink nand_spl/board/freescale/mpc8315erdb to mpc8313erdb.
3709
3710     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3711
3712     o silence make during ln echo
3713     o update documentation
3714     o and avoid:
3715
3716     $ ./MAKEALL MPC8315ERDB_NAND
3717     Configuring for MPC8315ERDB board...
3718     sdram.o: In function `fixed_sdram':
3719     /home/r1aaha/git/u-boot/nand_spl/board/freescale/mpc8313erdb/sdram.c:72: undefined reference to `udelay'
3720
3721     by renaming udelay -> __udelay in the spirit of commit
3722     3eb90bad651fab39cffba750ec4421a9c01d60e7 "Generic udelay() with watchdog
3723     support".
3724
3725     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3726
3727 commit b821cead7d2147724d5f1d8ccbca40710faad38a
3728 Author: Sanjeev Premi <premi@ti.com>
3729 Date:   Fri Dec 18 14:55:24 2009 +0530
3730
3731     onenand: Fix compile errors due to FlexOneNAND
3732
3733     This patch fixes the compile error while trying to
3734     compile for omap3evm.
3735
3736     env_onenand.c: In function 'env_relocate_spec':
3737     env_onenand.c:70: error: 'CONFIG_ENV_ADDR_FLEX' undeclared
3738      (first use in this function)
3739     env_onenand.c:70: error: (Each undeclared identifier is re
3740     ported only once
3741     env_onenand.c:70: error: for each function it appears in.)
3742     env_onenand.c: In function 'saveenv':
3743     env_onenand.c:106: error: 'CONFIG_ENV_ADDR_FLEX' undeclare
3744     d (first use in this function)
3745     env_onenand.c:107: error: 'CONFIG_ENV_SIZE_FLEX' undeclare
3746     d (first use in this function)
3747
3748     Signed-off-by: Sanjeev Premi <premi@ti.com>
3749     Acked-by: Tom Rix <Tom.Rix@windriver.com>
3750
3751 commit 20da6f4d93db270c57eb67968e441a20faf61938
3752 Author: Nick Thompson <nick.thompson@ge.com>
3753 Date:   Wed Dec 16 11:15:58 2009 +0000
3754
3755     Davinci: davinci_nand.c performance enhancments
3756
3757     Introduces various optimisations that approximately triple the
3758     read data rate from NAND when run on da830evm.
3759
3760     Most of these optimisations depend on the endianess of the machine
3761     and most of them are very similar to optimisations already present
3762     in the Linux Kernel.
3763
3764     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
3765
3766 commit 06f95959bc5421e516a9a25012e303dea8833385
3767 Author: Tom Rix <Tom.Rix@windriver.com>
3768 Date:   Wed Jan 6 09:36:24 2010 -0600
3769
3770     ARM Update mach-types
3771
3772     Fetched from http://www.arm.linux.org.uk/developer/machines/download.php
3773     And built with
3774
3775     repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
3776     commit c9f937e4a3f4ebf9924ec21d80632e5eb61d949c
3777
3778     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
3779
3780 commit 8b0ab304943b07d13a29db6d3d2ca3edad32cdcb
3781 Author: Becky Bruce <beckyb@kernel.crashing.org>
3782 Date:   Tue Nov 17 21:10:21 2009 -0600
3783
3784     ppc/p4080: Add Corenet Platform Cache (CPC) registers
3785
3786     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
3787     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3788
3789 commit 3e731aaba30c7011edf6391072eee845ed1b816f
3790 Author: Dave Liu <daveliu@freescale.com>
3791 Date:   Wed Dec 16 10:24:39 2009 -0600
3792
3793     fsl-ddr: setup ODT_RD_CFG & ODT_WR_CFG when we interleave
3794
3795     In chip-select interleaving case, we also need set the ODT_RD_CFG
3796     and ODT_WR_CFG in cs1_config register.
3797
3798     Signed-off-by: Dave Liu <daveliu@freescale.com>
3799     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3800
3801 commit 1aa3d08a0244506b94031522e54fe06ee7a5ae0e
3802 Author: Dave Liu <daveliu@freescale.com>
3803 Date:   Wed Dec 16 10:24:38 2009 -0600
3804
3805     fsl-ddr: add override for the Rtt_Wr
3806
3807     Different boards may require different settings of Dynamic ODT (Rtt_Wr).
3808     We provide a means to allow the board specific code to provide its own
3809     value of Rtt_Wr.
3810
3811     Signed-off-by: Dave Liu <daveliu@freescale.com>
3812     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3813
3814 commit bdc9f7b5eab8d5edd8a8cc5d80ef080836b00e85
3815 Author: Dave Liu <daveliu@freescale.com>
3816 Date:   Wed Dec 16 10:24:37 2009 -0600
3817
3818     fsl-ddr: add the override for write leveling
3819
3820     add the override for write leveling sampling and
3821     start time according to specific board.
3822
3823     Signed-off-by: Dave Liu <daveliu@freescale.com>
3824     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3825
3826 commit 0a71c92c7e1e565111cb34cd389a21ec500ca5c1
3827 Author: Dave Liu <daveliu@freescale.com>
3828 Date:   Wed Dec 16 10:24:36 2009 -0600
3829
3830     fsl-ddr: Fix power-down timing settings
3831
3832     1. TIMING_CFG_0[ACT_PD_EXIT] was set to 6 clocks, but
3833        It should be set to tXP parameter, tXP=max(3CK, 7.5ns)
3834     2. TIMING_CFG_0[PRE_PD_EXIT] was set to 6 clocks, but
3835        It should be set to tXP (if MR0[A12]=1) else to tXPDLL parameter
3836        We are setting the mode register MR0[A12]='1'
3837
3838     Signed-off-by: Dave Liu <daveliu@freescale.com>
3839     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3840
3841 commit c4ca10f1db36c3ce649c656dec14f7aab644dd86
3842 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3843 Date:   Wed Dec 16 01:14:31 2009 +0300
3844
3845     mpc85xx: Add 4-bits eSDHC support for MPC8569E-MDS boards
3846
3847     Thanks to "Errata to MPC8569E PowerQUICC III Integrated Host Processor
3848     Family Reference Manual, Rev. 0" document, which describes all eSDHC
3849     pins, we can add 4-bits eSDHC support for MPC8569E-MDS boards.
3850
3851     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3852     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3853
3854 commit bc20f9a9527afe8ae406a74f74765d4323f04922
3855 Author: Kumar Gala <galak@kernel.crashing.org>
3856 Date:   Wed Dec 9 17:28:17 2009 -0600
3857
3858     ppc/p4080: Fix reporting of PME & FM clock frequencies
3859
3860     We incorrectly had the sense of PME_CLK_SEL, FM1_CLK_SEL, FM2_CLK_SEL
3861     backwards so we report the wrong frequency.
3862
3863     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3864
3865 commit de3cbd78c9a485389b233f8ca705a9e5f51afaf3
3866 Author: Li Yang <leoli@freescale.com>
3867 Date:   Wed Dec 9 14:26:08 2009 +0800
3868
3869     fsl_law: add SRIO2 target id and law_size_bits() macro
3870
3871     Signed-off-by: Li Yang <leoli@freescale.com>
3872     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3873
3874 commit abc76eb6a6936a99811eda256222b3927427f8e2
3875 Author: Kumar Gala <galak@kernel.crashing.org>
3876 Date:   Tue Nov 17 20:21:20 2009 -0600
3877
3878     ppc/85xx: Map boot page guarded for MP boot
3879
3880     We already map the page cache-inhibited.  There is no reason we
3881     shouldn't also be marking it guarded to prevent speculative accesses.
3882
3883     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3884
3885 commit effe4973f2f349e6e87d455ae718aabaf919a75d
3886 Author: Kumar Gala <galak@kernel.crashing.org>
3887 Date:   Tue Nov 17 22:44:52 2009 -0600
3888
3889     ppc: Added macro to test for specific SVR revision
3890
3891     Various SoC errata are specific to a given revision of silicon. This
3892     patch gives us a simple macro to use when doing such tests.
3893
3894     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3895
3896 commit f5ecc6e027150289c2a46db7cec197b2b6da893c
3897 Author: Dave Liu <daveliu@freescale.com>
3898 Date:   Tue Nov 17 20:01:24 2009 -0600
3899
3900     p4080: add readback to bootpage translation window
3901
3902     We need to add the readback to bootpage translation LAW
3903     to make it effect.
3904
3905     Signed-off-by: Dave Liu <daveliu@freescale.com>
3906     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
3907     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3908
3909 commit 5fb6ea3ad3562f78df8693ed8c4ca89654236c4f
3910 Author: Kumar Gala <galak@kernel.crashing.org>
3911 Date:   Fri Nov 13 09:25:07 2009 -0600
3912
3913     ppc/85xx: Make flash TLB entry determined at runtime on FSL boards
3914
3915     Rather than hard coding which TLB entry the FLASH is mapped with we can
3916     use find_tlb_idx to determine the entry.
3917
3918     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3919
3920 commit 783852e467f32a3a5568b542379e9fec3d26a173
3921 Author: Kumar Gala <galak@kernel.crashing.org>
3922 Date:   Fri Nov 13 09:09:10 2009 -0600
3923
3924     ppc/85xx: Remove CONFIG_SYS_DDR_TLB_START
3925
3926     Now that we dynamically determine TLB CAM entries to use we dont need
3927     CONFIG_SYS_DDR_TLB_START anymore.
3928
3929     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3930
3931 commit 355f4f85e90ce2e6d91883012c2993be7970c8b1
3932 Author: Kumar Gala <galak@kernel.crashing.org>
3933 Date:   Fri Nov 13 09:04:19 2009 -0600
3934
3935     ppc/85xx: Make SPD DDR TLB setup code use dynamic entry allocation
3936
3937     Now that we track which TLB CAM entries are used we can allocate
3938     entries on the fly.  Change the SPD DDR TLB setup code to assume
3939     we use at most 8 TLBs (or the number free, which ever is fewer).
3940
3941     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3942
3943 commit 94e9411b9dda182dd63d53ba6ea640c98b35db5f
3944 Author: Kumar Gala <galak@kernel.crashing.org>
3945 Date:   Thu Nov 12 10:26:16 2009 -0600
3946
3947     ppc/85xx: Add tracking of TLB CAM usage
3948
3949     We need to track which TLB CAM entries are used to allow us to
3950     "dynamically" allocate entries later in the code.  For example the SPD
3951     DDR code today hard codes which TLB entries it uses.  We can now make
3952     that pick entries that are free.
3953
3954     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3955
3956 commit ee53650dad2fede057e93fdf6f8cd72b29ef7cd0
3957 Author: Kumar Gala <galak@kernel.crashing.org>
3958 Date:   Wed Nov 4 13:00:55 2009 -0600
3959
3960     ppc/8xxx: Remove is_fsl_pci_agent
3961
3962     All users of is_fsl_pci_agent have been converted to fsl_is_pci_agent
3963     that uses the standard PCI programming model to determine host vs
3964     agent/end-point.
3965
3966     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3967
3968 commit 7cb8f79b44c70a3c66891f407254d9c739e2e7da
3969 Author: Kumar Gala <galak@kernel.crashing.org>
3970 Date:   Wed Nov 4 11:39:55 2009 -0600
3971
3972     ppc/85xx: Move to using fsl_setup_hose on TQM 85xx
3973
3974     We can use fsl_setup_hose to determine if we are a agent/end-point or
3975     a host.  Rather than using some SoC specific register we can just look
3976     at the PCI cfg space of the host controller to determine this.
3977
3978     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3979
3980 commit 9263e829f025661cbd3a80675285b42c14350ea4
3981 Author: Kumar Gala <galak@kernel.crashing.org>
3982 Date:   Wed Nov 4 13:01:51 2009 -0600
3983
3984     ppc/85xx: Move to using fsl_setup_hose on P2020 DS
3985
3986     We can use fsl_setup_hose to determine if we are a agent/end-point or
3987     a host.  Rather than using some SoC specific register we can just look
3988     at the PCI cfg space of the host controller to determine this.
3989
3990     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3991
3992 commit 1e21ba8f6d0708fe7f44066059927cfa6bfedf7a
3993 Author: Kumar Gala <galak@kernel.crashing.org>
3994 Date:   Wed Nov 4 13:01:38 2009 -0600
3995
3996     ppc/85xx: Move to using fsl_setup_hose on P1/P2 RDB
3997
3998     We can use fsl_setup_hose to determine if we are a agent/end-point or
3999     a host.  Rather than using some SoC specific register we can just look
4000     at the PCI cfg space of the host controller to determine this.
4001
4002     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4003
4004 commit 42c01b9d1f0132a6d82e2c8333b236b1e3b0831f
4005 Author: Kumar Gala <galak@kernel.crashing.org>
4006 Date:   Wed Nov 4 13:01:17 2009 -0600
4007
4008     ppc/85xx: Move to using fsl_setup_hose on MPC8572 DS
4009
4010     We can use fsl_setup_hose to determine if we are a agent/end-point or
4011     a host.  Rather than using some SoC specific register we can just look
4012     at the PCI cfg space of the host controller to determine this.
4013
4014     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4015
4016 commit 5e3d7050cf127dfcd6ab260c551e9183299d0dca
4017 Author: Kumar Gala <galak@kernel.crashing.org>
4018 Date:   Wed Nov 4 12:51:10 2009 -0600
4019
4020     ppc/86xx: Clean up MPC8610 HPCD PCI setup code
4021
4022     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4023     board ports, use IO accessors and clean up printing of status info.
4024
4025     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4026
4027 commit 7b626880b4e1fd8d2297c9341b92c2253fc27fd0
4028 Author: Kumar Gala <galak@kernel.crashing.org>
4029 Date:   Wed Nov 4 11:15:29 2009 -0600
4030
4031     ppc/85xx: Clean up MPC8548 CDS PCI setup code
4032
4033     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4034     board ports, use IO accessors and clean up printing of status info.
4035
4036     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4037
4038 commit feadd5d53ba5047c3bc912ff5b7c7a690c8c53cf
4039 Author: Kumar Gala <galak@kernel.crashing.org>
4040 Date:   Wed Nov 4 11:05:02 2009 -0600
4041
4042     ppc/85xx: Clean up ATUM8548 PCI setup code
4043
4044     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4045     board ports, use IO accessors and clean up printing of status info.
4046
4047     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4048
4049 commit 4681457e2aace8dff09dc4c6c02185231b970d6b
4050 Author: Kumar Gala <galak@kernel.crashing.org>
4051 Date:   Wed Nov 4 10:31:53 2009 -0600
4052
4053     ppc/85xx: Clean up MPC8568 MDS PCI setup code
4054
4055     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4056     board ports, use IO accessors and clean up printing of status info.
4057
4058     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4059
4060 commit c847e98b143c154cc466f9d03e90a3495329172b
4061 Author: Kumar Gala <galak@kernel.crashing.org>
4062 Date:   Wed Nov 4 10:26:30 2009 -0600
4063
4064     ppc/85xx: Clean up MPC8569 MDS PCI setup code
4065
4066     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4067     board ports, use IO accessors and clean up printing of status info.
4068
4069     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4070
4071 commit 645d5a7838058ce603803935cd40a62a26aea04d
4072 Author: Kumar Gala <galak@kernel.crashing.org>
4073 Date:   Wed Nov 4 10:22:26 2009 -0600
4074
4075     ppc/85xx: Clean up MPC8544 DS PCI setup code
4076
4077     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4078     board ports, use IO accessors and clean up printing of status info.
4079
4080     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4081
4082 commit 8a414c4258aeeab93fb83fad0544894597c8bd35
4083 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4084 Date:   Wed Oct 28 10:49:31 2009 +0800
4085
4086     ppc/85xx: Clean up MPC8536 DS PCI setup code
4087
4088     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4089     board ports, use IO accessors and clean up printing of status info.
4090
4091     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4092     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4093
4094 commit 3ad89c4ecba51564c97075f031aef4fa5eafbb16
4095 Author: Kumar Gala <galak@kernel.crashing.org>
4096 Date:   Sat Oct 31 11:23:41 2009 -0500
4097
4098     NET: Base support for etsec2.0
4099
4100     1. Modified the tsec_mdio structure to include the new regs
4101     2. Modified the MDIO_BASE_ADDR so that it will handle both
4102     older version and new version of etsec.
4103
4104     Signed-off-by: Sandeep Gopalpet <sandeep.kumar@freescale.com>
4105     Acked-by: Kim Phillips <kim.phillips@freescale.com>
4106     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4107
4108 commit b9e186fc31683a4f1b6880c086950b2270e62e24
4109 Author: Sandeep Gopalpet <sandeep.kumar@freescale.com>
4110 Date:   Sat Oct 31 00:35:04 2009 +0530
4111
4112     NET: Move MDIO regs out of TSEC Space
4113
4114     Moved the mdio regs out of the tsec structure,and
4115     provided different offsets for tsec base and mdio
4116     base so that provision for etsec2.0 can be provided.
4117
4118     This patch helps in providing the support for etsec2.0
4119     In etsec2.0, the MDIO register space and the etsec reg
4120     space are different.
4121
4122     Also, moved the TSEC_BASE_ADDR and MDIO_BASE_ADDR definitons into
4123     platform specific files.
4124
4125     Signed-off-by: Sandeep Gopalpet <sandeep.kumar@freescale.com>
4126     Acked-by: Kim Phillips <kim.phillips@freescale.com>
4127     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4128
4129 commit bcad21fda187f7d8d5d2c026c395cca35a9c700e
4130 Author: Kumar Gala <galak@kernel.crashing.org>
4131 Date:   Thu Mar 19 02:46:28 2009 -0500
4132
4133     85xx: Add support to set DPAA (data path) devices clock frequencies
4134
4135     Set clock-frequency for Frame Manager 0/1 and Patter Match Engine on p4080.
4136
4137     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4138
4139 commit 178e39e199e9c985e5e5e968d60d7243fceb5616
4140 Author: Kumar Gala <galak@kernel.crashing.org>
4141 Date:   Thu Sep 17 00:01:14 2009 -0500
4142
4143     ppc/8xxx: Don't use pci_cfg on FSL_CORENET platforms
4144
4145     The FSL_CORENET platforms use a completely different means to determine
4146     which PCIe port is enabled as well as if its a host or agent/end-point.
4147
4148     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4149
4150 commit 11588b5dc4c581b2a68a24e3298ab14e83c59d31
4151 Author: Kumar Gala <galak@kernel.crashing.org>
4152 Date:   Thu Oct 15 23:22:10 2009 -0500
4153
4154     ppc/p4080: Added p4080 SERDES registers & USB offset
4155
4156     Added immap definition for SERDES registers on p4080, the USB offset
4157     (since it was missing) and a GPL header.
4158
4159     Signed-off-by: Li Yang <leoli@freescale.com>
4160     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4161
4162 commit 82fd1f8da9add2d74532cf78d224485f0042d00d
4163 Author: Kumar Gala <galak@kernel.crashing.org>
4164 Date:   Thu Mar 19 02:53:01 2009 -0500
4165
4166     85xx: Add support for e500mc cache stashing
4167
4168     The e500mc core supports the ability to stash into the L1 or L2 cache,
4169     however we need to uniquely identify the caches with an id.
4170
4171     We use the following equation to set the various stash-ids:
4172
4173     32 + coreID*2 + 0(L1) or 1(L2)
4174
4175     The 0 (for L1) or 1 (for L2) matches the CT field used be various cache
4176     control instructions.
4177
4178     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4179
4180 commit 26be2c53d671ecfd3e0483f0870649ac28322293
4181 Author: Nick Thompson <nick.thompson@ge.com>
4182 Date:   Sat Dec 12 12:13:10 2009 -0500
4183
4184     Davinci: NAND enable ECC even when not in NAND boot mode
4185
4186     Davinci: NAND enable ECC even when not in NAND boot mode
4187
4188     On Davinci platforms, the default NAND device is enabled (for ECC)
4189     in low level boot code when NAND boot mode is used. If booting in
4190     another mode, NAND ECC is not enabled. The driver should make
4191     sure ECC is enabled regardless of boot mode if NAND is configured
4192     in U-Boot.
4193
4194     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
4195
4196 commit 97f4eb8cfb97c7c5b158e3c0df4611efbf50f403
4197 Author: Nick Thompson <nick.thompson@gefanuc.com>
4198 Date:   Sat Dec 12 12:12:26 2009 -0500
4199
4200     Davinci: Configurable NAND chip selects
4201
4202     Davinci: Configurable NAND chip selects
4203
4204     Add a CONFIG_SYS_NAND_CS setting to all davinci configs and
4205     use it to setup the NAND controller in the davinci_nand
4206     mtd driver.
4207
4208     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
4209
4210 commit 90110e0eab5ac6ab714109ce1fd8873c858dd552
4211 Author: Nick Thompson <nick.thompson@gefanuc.com>
4212 Date:   Sat Dec 12 12:10:51 2009 -0500
4213
4214     Davinci: Table driven pinmux configuration
4215
4216     Davinci: Table driven pinmux configuration
4217
4218     Add code to allow pinmux_config tables to be grouped and configured
4219     as a single resource. This removes multiple calls to the pinmux
4220     configuration code from board_init and allows pinmuxes to be
4221     individually configured and added by data manipulation only.
4222
4223     All related #ifdefs can the be removed from board_init code and
4224     since the compiler optimises away statics, #ifdefs can be reduced in
4225     the data definitions as well.
4226
4227     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
4228
4229 commit 1270ec13d4fbae48a537dc76d418a6efa72f5725
4230 Author: Robert P. J. Day <rpjday@crashcourse.ca>
4231 Date:   Sat Dec 12 12:10:33 2009 -0500
4232
4233     Remove superfluous uses of V_PROMPT macro.
4234
4235     A number of config files define the V_PROMPT macro for the
4236     command-line prompt, only to immediately use that macro to define
4237     CONFIG_SYS_PROMPT, making V_PROMPT entirely superfluous.
4238
4239     Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
4240
4241 commit 8b432bebc205a959684559477472c048e31d137d
4242 Author: Grazvydas Ignotas <notasas@gmail.com>
4243 Date:   Fri Dec 11 15:07:30 2009 +0200
4244
4245     pandora: don't enable VAUX3, VDAC and VPLL2 regulators
4246
4247     These regulators are not needed to start the kernel and only
4248     cause "incomplete constraints" warnings from kernel, so don't
4249     turn them on to save power.
4250
4251     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
4252
4253 commit ead39d7aa3ddccb2e374217aeab23bd65cedb762
4254 Author: Grazvydas Ignotas <notasas@gmail.com>
4255 Date:   Thu Dec 10 17:10:21 2009 +0200
4256
4257     TWL4030: make LEDs selectable for twl4030_led_init()
4258
4259     Not all boards have both LEDs hooked, so enabling both on
4260     boards with single LED will just waste power. Make it
4261     possible to choose LEDs by adding argument to
4262     twl4030_led_init().
4263
4264     Using this turn on only LEDB for pandora, leave both LEDs
4265     on for all other boards, as it was before this patch.
4266
4267     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
4268
4269 commit be34fef7fdcfaffc68495e50929669ac5e4bd800
4270 Author: Stefan Roese <sr@denx.de>
4271 Date:   Wed Dec 16 09:27:31 2009 +0100
4272
4273     ppc4xx: alpr: Remove some not needed commands to make image fit again
4274
4275     The latest changes increased the size of the alpr image a bit more.
4276     Now it doesn't fit into the 256k reserved for it. This patch now removes
4277     the commands "ping" and "diag" which are not needed in the production
4278     systems.
4279
4280     Signed-off-by: Stefan Roese <sr@denx.de>
4281     Cc: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
4282
4283 commit 072e754b6b9bef438fc0870318755e33051baa7d
4284 Author: Heiko Schocher <hs@denx.de>
4285 Date:   Thu Dec 3 11:23:17 2009 +0100
4286
4287     i2c, ppc4xx: fix compiling KAREF and METROBOX boards.
4288
4289     commit eb5eb2b0f744f0cba405160c5d01335c40f09acf
4290
4291     ppc4xx: Cleanup PPC4xx I2C infrastructure
4292
4293     This patch cleans up the PPC4xx I2C intrastructure:
4294
4295     - Use C struct to describe the I2C registers instead of defines
4296     - Coding style cleanup (braces, whitespace, comments, line length)
4297     - Extract common code from i2c_read() and i2c_write()
4298     - Remove unneeded IIC defines from ppc405.h & ppc440.h
4299
4300     breaks comiling for the KAREF and METROBOX boards.
4301
4302     This patch fixes this issue.
4303
4304     Signed-off-by: Heiko Schocher <hs@denx.de>
4305     Signed-off-by: Stefan Roese <sr@denx.de>
4306
4307 commit 87d93a1ba2ae23550e1370adb7a3b00af0831165
4308 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
4309 Date:   Wed Dec 9 15:16:47 2009 +0100
4310
4311     move prototypes for gunzip() and zunzip() to common.h
4312
4313     Prototype for gunzip/zunzip was only in lib_generic/gunzip.c and thus
4314     repeated in every file using it. This patch moves the prototypes to
4315     common.h and removes all prototypes distributed anywhere else.
4316
4317     Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de>
4318
4319 commit 127e10842b2474ac20e40572a4102dd4d5ed80f1
4320 Author: Mahavir Jain <mjain@marvell.com>
4321 Date:   Tue Nov 3 12:22:10 2009 +0530
4322
4323     usb: write command for RAW partition.
4324
4325     This patch implements write support to usb device with raw partition.
4326     It will be useful for filesystem write support to usb device from
4327     u-boot in future.
4328
4329     Tested with writing kernel image to raw usb disk & booting with usb
4330     read command into ram.
4331
4332     [Note:  run usb part to get info about start sector & number of
4333     sectors on a partition for usb write operation.]
4334
4335     Signed-off-by: Mahavir Jain <mjain@marvell.com>
4336
4337 commit 73c8640e93881439b87a5734485a9e56a494ef50
4338 Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
4339 Date:   Wed Nov 4 15:58:23 2009 -0600
4340
4341     omap3evm: musb: add USB config
4342
4343     Added USB host and device config for host (MSC, Keyboard) and
4344     device (ACM) functionalities.
4345
4346     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
4347
4348 commit ae4caf2fb53cc7be5d59a649b8aee86d542cbb6f
4349 Author: Tom Rix <Tom.Rix@windriver.com>
4350 Date:   Sat Oct 31 12:37:46 2009 -0500
4351
4352     OMAP3 USB Initialize twl4030 only if required
4353
4354     OMAP3EVM uses ISP1504 phy and so twl4030 related init is not required.
4355
4356     Submitted-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
4357     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4358
4359 commit 2ec1abea4359b94523d45a20d68d8582e09ace46
4360 Author: Tom Rix <Tom.Rix@windriver.com>
4361 Date:   Sat Oct 31 12:37:45 2009 -0500
4362
4363     OMAP3 zoom2 Use usbtty if the debug board is not connected.
4364
4365     The preferred serial output comes from the debug board.
4366     When the debug board is disconnected, fall back on using
4367     usbtty from the usb connector on the Zoom2 board.
4368
4369     This shows up as /dev/ttyACM0 in a linux host.
4370
4371     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4372
4373 commit 6299487ef5dcdb06e0394f5955755c8dd9ce707b
4374 Author: Tom Rix <Tom.Rix@windriver.com>
4375 Date:   Sat Oct 31 12:37:44 2009 -0500
4376
4377     USBTTY make some function declarations easier to use.
4378
4379     Zoom2 needs to use these declarations and the include directory is a
4380     better place from them than in the middle of the driver directory.
4381     It did not make sense to create a new file for just a couple of
4382     lines so they were appended to the serial.h
4383
4384     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4385
4386 commit 25374bfbf3a6c6624d8db512c95a4960e3a84635
4387 Author: Tom Rix <Tom.Rix@windriver.com>
4388 Date:   Sat Oct 31 12:37:43 2009 -0500
4389
4390     OMAP3 beagle Add usbtty configuration
4391
4392     The primary console of beagle is the serial header.
4393
4394     A secondary console is to use the usbtty.  The user can set this
4395     manually by doing
4396
4397     setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty
4398     saveenv
4399
4400     usbtty will be usable by accessing the /dev/ttyACM0 on a linux host.
4401
4402     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4403
4404 commit 05be5a60e98eb1243901f556fefd66b1691fabe4
4405 Author: Tom Rix <Tom.Rix@windriver.com>
4406 Date:   Sat Oct 31 12:37:42 2009 -0500
4407
4408     OMAP3 zoom1 Add usbtty configuration
4409
4410     The primary console of zoom1 is the serial out from the jumpers
4411     accessed by removing the back panel.
4412
4413     A secondary console is to use the usbtty.  The user can set this
4414     manually by doing
4415
4416     setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty
4417     saveenv
4418
4419     usbtty will be usable by accessing the /dev/ttyACM0 on a linux host.
4420
4421     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4422
4423 commit f298e4b6dd56df3e35a13a6ddd572ca3baf06ad2
4424 Author: Tom Rix <Tom.Rix@windriver.com>
4425 Date:   Sat Oct 31 12:37:41 2009 -0500
4426
4427     OMAP3 Add usb device support
4428
4429     This change adds the usb device support for musb.
4430
4431     Omap3 platform support added at the same level as davinci.
4432
4433     The interface for usbtty to use the musb device support was added.
4434
4435     Verified on omap3 beagle, zoom1 and zoom2.
4436
4437     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4438
4439 commit bffbb2a86d2a3aa28bd8f9869aa553082fb5af5f
4440 Author: Tom Rix <Tom.Rix@windriver.com>
4441 Date:   Sat Oct 31 12:37:40 2009 -0500
4442
4443     TWL4030 Add usb PHY support
4444
4445     The twl4030 provides a PHY device for connecting a link device,
4446     like musb, to physical connection.
4447
4448     This change adds the twl4030 usb registers and functions for
4449     initializing the PHY as required by omap3.
4450
4451     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4452
4453 commit 988365a2048356f94ed0c294009233317c9fb4b2
4454 Author: Tom Rix <Tom.Rix@windriver.com>
4455 Date:   Sat Oct 31 12:37:39 2009 -0500
4456
4457     USB add macros for debugging usb device setup.
4458
4459     When developing usb device features, it is useful to print out
4460     common usb structures.
4461
4462     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4463
4464 commit 8f8bd565f35ff8a068727bfcf8975c50df082043
4465 Author: Tom Rix <Tom.Rix@windriver.com>
4466 Date:   Sat Oct 31 12:37:38 2009 -0500
4467
4468     USB Consolidate descriptor definitions
4469
4470     The header files usb.h and usbdescriptors.h have the same nameed
4471     structure definitions for
4472
4473     usb_config_descriptor
4474     usb_interface_descriptor
4475     usb_endpoint_descriptor
4476     usb_device_descriptor
4477     usb_string_descriptor
4478
4479     These are out right duplicates in usb.h
4480
4481     usb_device_descriptor
4482     usb_string_descriptor
4483
4484     This one has extra unused elements
4485
4486     usb_endpoint_descriptor
4487
4488         unsigned char   bRefresh
4489         unsigned char   bSynchAddress;
4490
4491     These in usb.h have extra elements at the end of the usb 2.0
4492     specified descriptor and are used.
4493
4494     usb_config_descriptor
4495     usb_interface_descriptor
4496
4497     The change is to consolidate the definition of the descriptors
4498     to usbdescriptors.h.  The dublicates in usb.h are removed.
4499     The extra element structure will have their name shorted by
4500     removing the '_descriptor' suffix.
4501
4502     So
4503
4504     usb_config_descriptor -> usb_config
4505     usb_interface_descriptor -> usb_interface
4506
4507     For these, the common descriptor elements are accessed now
4508     by an element 'desc'.
4509
4510     As an example
4511
4512     -   if (iface->bInterfaceClass != USB_CLASS_HUB)
4513     +   if (iface->desc.bInterfaceClass != USB_CLASS_HUB)
4514
4515     This has been compile tested on MAKEALL arm, ppc and mips.
4516
4517     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4518
4519 commit e5e4e705ce402856a4800ebf4c0cc163d41b58b0
4520 Author: Li Yang <leoli@freescale.com>
4521 Date:   Wed Dec 9 18:13:26 2009 +0800
4522
4523     Update Makefile for tag generating
4524
4525     Get tag directories from the $(__LIB) and also generate tag for .S files.
4526
4527     Signed-off-by: Li Yang <leoli@freescale.com>
4528
4529 commit d02ffbf8d72085035f746c63c2609daf20a84765
4530 Author: Kumar Gala <galak@kernel.crashing.org>
4531 Date:   Wed Dec 16 14:12:11 2009 -0600
4532
4533     drivers/bios_emulator: Fix compile error in .depend not being generated
4534
4535     make -C drivers/bios_emulator/
4536     make[2]: Entering directory
4537     `drivers/bios_emulator'
4538     In file included from atibios.c:49:
4539     biosemui.h:47:21: error: biosemu.h: No such file or directory
4540     ...
4541     x86emu/decode.c:40:28: error: x86emu/x86emui.h: No such file or directory
4542     ...
4543
4544     Due to lack of proper CPPFLAGS being passed to .depend generation rule
4545
4546     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4547
4548 commit a200a7c04d89853d2a1395b96d8ca5e3dd754551
4549 Author: Wolfgang Denk <wd@denx.de>
4550 Date:   Tue Dec 15 23:20:54 2009 +0100
4551
4552     Update CHANGELOG; prepare Prepare v2009.11
4553
4554     Signed-off-by: Wolfgang Denk <wd@denx.de>
4555
4556 commit f9476902b789b0481b9df49af88d6ca94fb16fa0
4557 Author: Peter Tyser <ptyser@xes-inc.com>
4558 Date:   Tue Dec 15 12:10:47 2009 -0600
4559
4560     mpc85xx, mpc86xx: Fix gd->cpu pointer after relocation
4561
4562     The gd->cpu pointer is set to an address located in flash when the
4563     probecpu() function is called while U-Boot is executing from flash.
4564     This pointer needs to be updated to point to an address in RAM after
4565     relocation has occurred otherwise Linux may not be able to boot due to
4566     "fdt board" crashing if flash has been erased or changed.
4567
4568     This bug was introduced in commit
4569     a0e2066f392782730f0398095e583c87812d97f2.
4570
4571     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4572     Reported-by: Ed Swarthout <Ed.Swarthout@freescale.com>
4573     Tested-by: Kumar Gala <galak@kernel.crashing.org>
4574     Tested on MPC8527DS.
4575     Tested by: Ed Swarthout <Ed.Swarthout@freescale.com>
4576
4577 commit 1ab70f6fff9fa3b7910c11b874f625e004256c50
4578 Author: Ben Warren <biggerbadderben@gmail.com>
4579 Date:   Mon Dec 14 16:30:39 2009 -0800
4580
4581     Net: Clean up LAN91C96 Support
4582
4583     A previous Commit converted the LAN91C96 Ethernet driver to using the
4584     CONFIG_NET_MULTI API, but did not include full board support.  This patch
4585     finishes the job.
4586
4587     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4588
4589 commit 3363a34b9eeda9783afcbbed5cdd738926d1f4bf
4590 Author: Peter Tyser <ptyser@xes-inc.com>
4591 Date:   Sun Dec 13 17:58:34 2009 -0600
4592
4593     MVBLUE: Remove CONFIG_CMD_IRQ
4594
4595     Neither the MVBLUE nor its underlying architecture implement the
4596     do_irqinfo() function which is required when CONFIG_CMD_IRQ is defined.
4597     This change fixes the following MVBLUE compiler error:
4598
4599     -> ./MAKEALL MVBLUE
4600     Configuring for MVBLUE board...
4601     common/libcommon.a(cmd_irq.o):(.u_boot_cmd+0x24): undefined reference to `do_irqinfo'
4602     make: *** [u-boot] Error 1
4603
4604     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4605     Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
4606
4607 commit 18e8ad60ee87431c01cc2686985b60cc54f5dd3b
4608 Author: Detlev Zundel <dzu@denx.de>
4609 Date:   Mon Dec 14 17:54:40 2009 +0100
4610
4611     imx27lite: Reenable MTD support on NOR flash.
4612
4613     The support for this was silently dropped by a configuration
4614     split during the merge of the imx27lite board support in commit
4615     864aa034f3a0e10ce710e8bbda171df3cab59414 (cmd_mtdparts: Move to common
4616     handling of FLASH devices via MTD layer).
4617
4618     Signed-off-by: Detlev Zundel <dzu@denx.de>
4619
4620 commit 076cd24cb4278c125c8f36df386852dc0fcfefae
4621 Author: Thomas Weber <weber@corscience.de>
4622 Date:   Wed Dec 9 09:38:04 2009 +0100
4623
4624     net: dm9000x: fix debug output
4625
4626     commit 60f61e6d7655400bb785a2ef637581679941f6d1 breaks compile with gcc by introducing __func__
4627     instead of constant string "func" in the macro call but missed to change the macro.
4628
4629     Signed-off-by: Thomas Weber <weber@corscience.de>
4630     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4631
4632 commit c179a2896e6a5138e30786f1d7961d880dbd6d31
4633 Author: John Ogness <john.ogness@linutronix.de>
4634 Date:   Fri Dec 11 09:47:28 2009 +0100
4635
4636     fec_mxc: incomplete error handling
4637
4638     fec_init() will only allocate fec->base_ptr if it is non-NULL. But
4639     the cleanup routine on error will free the pointer without setting
4640     it to NULL. This means that a later call to fec_init() would result
4641     in using an invalid pointer.
4642
4643     Signed-off-by: John Ogness <john.ogness@linutronix.de>
4644     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4645
4646 commit 2ab4a4d0952b754b1c74f4d2b12b83d600d449c8
4647 Author: Reinhard Arlt <reinhard.arlt@esd.eu>
4648 Date:   Fri Dec 4 09:52:17 2009 +0100
4649
4650     net: e1000: Add support for the Intel 82546GB controller
4651
4652     This chip is equipped for example on the esd PMC-ETH2-GB board. So let's
4653     add it to the list of supported chips to the e1000 driver.
4654
4655     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd.eu>
4656     Signed-off-by: Stefan Roese <sr@denx.de>
4657     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4658
4659 commit aafda38fb266b94ca344e5ff014d430790c72279
4660 Author: Remy Bohmer <linux@bohmer.net>
4661 Date:   Wed Oct 28 22:13:40 2009 +0100
4662
4663     Add error codes/handling for TFTP-server
4664
4665     Signed-off-by: Remy Bohmer <linux@bohmer.net>
4666     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4667
4668 commit ac6b362a2598b8cd27beb071fa6224cf8b121e1b
4669 Author: Nishanth Menon <nm@ti.com>
4670 Date:   Fri Oct 16 00:06:37 2009 -0500
4671
4672     LAN91C96: Enable NET_MULTI LAN driver
4673
4674     This modification is NOT tested on any of the
4675     platforms modified as I dont have them. please
4676     help by testing+building+fixing
4677
4678     Signed-off-by: Nishanth Menon <nm@ti.com>
4679     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4680
4681 commit a1725999b8b7527971183122cdfb54e2f87f61ae
4682 Author: Nishanth Menon <nm@ti.com>
4683 Date:   Fri Oct 16 00:06:36 2009 -0500
4684
4685     TI OMAP3: SDP3430 FIX NET_MULTI Warning
4686
4687     Enable the NET MULTI option and remove build warning
4688
4689     Tested: SDP3430
4690
4691     Signed-off-by: Nishanth Menon <nm@ti.com>
4692     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4693
4694 commit b7ad4109da342dfc787468fc713d88d0a8b9e67a
4695 Author: Nishanth Menon <nm@ti.com>
4696 Date:   Fri Oct 16 00:06:35 2009 -0500
4697
4698     NET: LAN91C96 CONFIG_NET_MULTIify
4699
4700     Make the lan91c96 driver capable of CONFIG_NET_MULTI
4701     to be clean for the new arch, add a a lil detect function
4702     Most of the formatting change was done to keep checkpatch
4703     silent, but a few functions and #if 0ed code which
4704     does not make sense for NET_MULTI have been removed
4705
4706     Now, use the lan91c96_initialize() function to init the driver
4707
4708     Signed-off-by: Nishanth Menon <nm@ti.com>
4709     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4710
4711 commit 6ac59c5518e1d2e2ef1c4b8dee99267dfbdf9cdc
4712 Author: Mike Frysinger <vapier@gentoo.org>
4713 Date:   Tue Nov 3 11:35:42 2009 -0500
4714
4715     net: pull CONFIG checks out of source and into makefile
4716
4717     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4718     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4719
4720 commit f4cfe42758192d09f8375e384cc000aa70d97029
4721 Author: Stefan Roese <sr@denx.de>
4722 Date:   Wed Dec 9 09:01:43 2009 +0100
4723
4724     nand: Fix access to last block in NAND devices
4725
4726     Currently, the last block of NAND devices can't be accessed. This patch
4727     fixes this issue by correcting the boundary checking (off-by-one error).
4728
4729     Signed-off-by: Stefan Roese <sr@denx.de>
4730     Cc: Scott Wood <scottwood@freescale.com>
4731     Cc: Wolfgang Denk <wd@denx.de>
4732
4733 commit 3b887ca8ce72cc12129183538f6e828db13f4867
4734 Author: Peter Korsgaard <jacmet@sunsite.dk>
4735 Date:   Tue Dec 8 22:20:34 2009 +0100
4736
4737     mpc83xx: boot time regression, move LCRR setup back to cpu_init_f
4738
4739     Commit c7190f02 (retain POR values of non-configured ACR, SPCR, SCCR,
4740     and LCRR bitfields) moved the LCRR assignment to after relocation
4741     to RAM because of the potential problem with changing the local bus
4742     clock while executing from flash.
4743
4744     This change unfortunately adversely affects the boot time, as running
4745     all code up to cpu_init_r can cause significant slowdown.
4746
4747     E.G. on a 8347 board a bootup time increase of ~600ms has been observed:
4748
4749        0.020 CPU:   e300c1, MPC8347_PBGA_EA, Rev: 3.0 at 400 MHz, CSB: 266.667 MHz
4750        0.168 RS:    232
4751        0.172 I2C:   ready
4752        0.176 DRAM:  64 MB
4753        1.236 FLASH: 32 MB
4754
4755     Versus:
4756
4757        0.016 CPU:   e300c1, MPC8347_PBGA_EA, Rev: 3.0 at 400 MHz, CSB: 266.667 MHz
4758        0.092 RS:    232
4759        0.092 I2C:   ready
4760        0.096 DRAM:  64 MB
4761        0.644 FLASH: 32 MB
4762
4763     So far no boards have needed the late LCRR setup, so simply revert it
4764     for now - If it is needed at a later time, those boards can either do
4765     their own final LCRR setup in board code (E.G. in board_early_init_r),
4766     or we can introduce a CONFIG_SYS_LCRR_LATE config option to only do
4767     the setup in cpu_init_r.
4768
4769     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
4770     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4771
4772 commit 4b142febff71eabdb7ddbb125c7b583b24ddc434
4773 Author: Heiko Schocher <hs@denx.de>
4774 Date:   Thu Dec 3 11:21:21 2009 +0100
4775
4776     common: delete CONFIG_SYS_64BIT_VSPRINTF and CONFIG_SYS_64BIT_STRTOUL
4777
4778     There is more and more usage of printing 64bit values,
4779     so enable this feature generally, and delete the
4780     CONFIG_SYS_64BIT_VSPRINTF and CONFIG_SYS_64BIT_STRTOUL
4781     defines.
4782
4783     Signed-off-by: Heiko Schocher <hs@denx.de>
4784
4785 commit 00b6d927ba8900cdf218b90b277e1090e284bea6
4786 Author: Heiko Schocher <hs@denx.de>
4787 Date:   Thu Dec 3 11:20:06 2009 +0100
4788
4789     5xxx, fdt: move fdt_fixup_memory() to cpu.c file
4790
4791     u-boot updates, before starting Linux, the memory node in the
4792     DTS. As this is a "standard" feature, move this functionality
4793     to the cpu.c file for mpc5xxx and mpc512x processors.
4794
4795     Signed-off-by: Heiko Schocher <hs@denx.de>
4796
4797 commit 386118a896554b13f14ad0f82356276988f7de82
4798 Author: Michal Simek <monstr@monstr.eu>
4799 Date:   Tue Dec 8 09:12:49 2009 +0100
4800
4801     microblaze: Correct ffs regression for Microblaze
4802
4803     We are using generic implementation of ffs. This should
4804     be part of Simon's commit 0413cfecea350000eab5e591a0965c3e3ee0ff00
4805
4806     Here is warning message which this patch removes.
4807
4808     In file included from /tmp/u-boot-microblaze/include/common.h:38,
4809                      from cmd_mtdparts.c:87:
4810     /tmp/u-boot-microblaze/include/linux/bitops.h:123:1: warning: "ffs" redefined
4811     In file included from /tmp/u-boot-microblaze/include/linux/bitops.h:110,
4812                      from /tmp/u-boot-microblaze/include/common.h:38,
4813                      from cmd_mtdparts.c:87:
4814     /tmp/u-boot-microblaze/include/asm/bitops.h:269:1:
4815     warning: this is the location of the previous definition
4816
4817     Signed-off-by: Michal Simek <monstr@monstr.eu>
4818
4819 commit 8fe7b29f9811322931f0192a56431edcf819d6b9
4820 Author: Graeme Smecher <graeme.smecher@mail.mcgill.ca>
4821 Date:   Mon Dec 7 08:09:57 2009 -0800
4822
4823     microblaze: Stop stack clobbering in microblaze-generic.
4824
4825     A typo caused the stack and malloc regions to overlap, which prevented
4826     mem_malloc_init() from returning. This commit makes the memory layout match
4827     the example described in include/configs/microblaze-generic.h
4828
4829     Signed-off-by: Graeme Smecher <graeme.smecher@mail.mcgill.ca>
4830     Signed-off-by: Michal Simek <monstr@monstr.eu>
4831
4832 commit 0fc52948bda0734431cb528ee4fd82f1dec8c7b5
4833 Author: Wolfgang Denk <wd@denx.de>
4834 Date:   Mon Dec 7 23:14:13 2009 +0100
4835
4836     Update CHANGELOG, prepare -rc2
4837
4838     Signed-off-by: Wolfgang Denk <wd@denx.de>
4839
4840 commit f2352877cb2daac88115192fb09991a2397d0b27
4841 Author: Peter Tyser <ptyser@xes-inc.com>
4842 Date:   Sun Dec 6 23:58:28 2009 -0600
4843
4844     MAKEALL: Fix return value
4845
4846     Previously MAKEALL would always return a value of 0, even if 1 or more
4847     boards did not compile.  This change causes MAKEALL to return 0 if all
4848     boards were able to build, otherwise 1.
4849
4850     This change also requires changing the script interpreter from sh to
4851     bash to support bash's PIPESTATUS variable.
4852
4853     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4854
4855 commit fbc1c8f6f6c972524197829c56dd8f2f5da0200a
4856 Author: Peter Tyser <ptyser@xes-inc.com>
4857 Date:   Sun Dec 6 01:33:24 2009 -0600
4858
4859     tools/mkimage: Remove duplicate line of code
4860
4861     Recent commits 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e and
4862     6a590c5f5fd12cdd27f3153522acfac3854590e7 both fixed the same bug in the
4863     same manner.  Unfortunately git was "smart" enough to merge both changes
4864     which resulted in some duplicate code.
4865
4866     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4867
4868     Reordered code and comment a bit.
4869
4870     Signed-off-by: Wolfgang Denk <wd@denx.de>
4871
4872 commit df002fa6b9cd475909ede35bf95b803c2289c6a4
4873 Author: Heiko Schocher <hs@denx.de>
4874 Date:   Sat Dec 5 11:59:51 2009 +0100
4875
4876     i2c: fix dangling comment in do_i2c_mw()
4877
4878     commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b deleted some unused
4879     code in do_i2c_mw(), but missed to also remove the respective
4880     commment. This patch fixes this.
4881
4882     Signed-off-by: Heiko Schocher <hs@denx.de>
4883
4884 commit 7cb5fc15f22de46cc6fabc26baf994cf8f7fa546
4885 Author: Heiko Schocher <hs@denx.de>
4886 Date:   Thu Dec 3 11:20:42 2009 +0100
4887
4888     mpc52xx, manroland: add some commands
4889
4890     add the following commands for the manroland boards:
4891
4892     CONFIG_CMDLINE_EDITING
4893     CONFIG_COMMAND_HISTORY
4894     CONFIG_AUTO_COMPLETE
4895
4896     Signed-off-by: Heiko Schocher <hs@denx.de>
4897
4898 commit 39ff7d5f4cc547a2034a8bfc2a5b5f4b62fd5c20
4899 Author: Stefan Roese <sr@denx.de>
4900 Date:   Thu Dec 3 06:24:30 2009 +0100
4901
4902     POST: Remove duplicated post_hotkey_pressed() functions
4903
4904     This patch introduces a weak default function for post_hotkey_pressed(),
4905     returning 0, for boards without hotkey support. The long-running tests
4906     won't be started on those boards. This default function was implemented
4907     in many board directories. By implementing this weak default we can
4908     remove all those duplicate versions.
4909
4910     Boards with hotkey support, can override this weak default function
4911     by defining one in their board specific code.
4912
4913     Signed-off-by: Stefan Roese <sr@denx.de>
4914
4915 commit f8450829f921cf10667af98a8d08edfa3d998f04
4916 Author: Heiko Schocher <hs@denx.de>
4917 Date:   Tue Dec 1 19:30:47 2009 +0100
4918
4919     52xx, manroland: add fdt_fixup_memory() in ft_board_setup()
4920
4921     To update the real memory size in the memory node on the
4922     uc101 and mucmc52 boards call fdt_fixup_memory() in
4923     ft_board_setup().
4924
4925     Signed-off-by: Heiko Schocher <hs@denx.de>
4926
4927 commit 0ec81db20294efdad2454a753e79f1fe244a43ca
4928 Author: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
4929 Date:   Tue Dec 1 14:05:55 2009 +0100
4930
4931     Fix computation in nand_util.c:get_len_incl_bad
4932
4933     Depending on offset, flash size and the number of bad blocks,
4934     get_len_incl_bad may return a too small value which may lead to:
4935
4936     1) If there are no bad blocks, nand_{read,write}_skip_bad chooses the
4937     bad block aware read/write code. This may hurt performance, but does
4938     not have any adverse effects.
4939
4940     2) If there are bad blocks, the nand_{read,write}_skip_bad may choose
4941     the bad block unaware read/write code (if len_incl_bad == *length)
4942     which leads to corrupted data.
4943
4944     Signed-off-by: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
4945
4946 commit aabb8cb0818e285aeed0cfaf243635997e07554d
4947 Author: Evan Samanas <esamanas@xes-inc.com>
4948 Date:   Mon Nov 9 20:08:36 2009 -0600
4949
4950     nfs: NfsTimeout() updates
4951
4952     - NfsTimeout() does not correctly update the NFS timeout value which
4953       results in NfsTimeout() only being called once in certain situations.
4954       This can result in the 'nfs' command hanging indefinetly.  For
4955       example, the command:
4956
4957         nfs 192.168.0.1:/home/user/file
4958
4959       will not exit until ctrl-c is pressed if 192.168.0.1 does not have an
4960       NFS server running.
4961
4962       This issue is resolved by reinitializting the NFS timeout value inside
4963       NfsTimeout() when a timeout occurs.
4964
4965     - Make the 'nfs' command print the 'T' character when a timeout occurs.
4966       Previously there was no indication that timeouts were occuring.
4967
4968     - Mimic the 'tftpboot' command and when a download fails print "Retry
4969       count exceeded; starting again", and restart the download taking the
4970       'netretry' environment variable into account.
4971
4972     Signed-off-by: Evan Samanas <esamanas@xes-inc.com>
4973     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4974
4975     Tested on TQM8xxL.
4976
4977     Tested by: Wolfgang Denk <wd@denx.de>
4978
4979     Tested on MPC8527DS.
4980
4981     Tested by: Ed Swarthout <Ed.Swarthout@freescale.com>
4982
4983 commit 224c90d1060bf1a83cbf33ca51d060b9d19e0294
4984 Author: Peter Tyser <ptyser@xes-inc.com>
4985 Date:   Wed Nov 18 19:08:59 2009 -0600
4986
4987     bootm: Fix help message's sub-command ordering
4988
4989     The help message for the 'bootm' command listed the 'cmdline' and 'bdt'
4990     sub-commands in the wrong order which resulted in the error below when
4991     following the 'help' command's instructions:
4992
4993       "Trying to execute a command out of order"
4994
4995     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4996
4997 commit a93c92cddaedd5f0720e0da15c6664f7a688b582
4998 Author: Robert P. J. Day <rpjday@crashcourse.ca>
4999 Date:   Tue Nov 17 07:30:23 2009 -0500
5000
5001     help: Correct syntax of nandecc help output.
5002
5003     "nandecc" help output should not reproduce the command name, nor have
5004     a trailing newline.
5005
5006     Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
5007
5008 commit c2fff331a32ceca837d76eb7827d6340da270d52
5009 Author: Mike Rapoport <mike@compulab.co.il>
5010 Date:   Wed Nov 11 10:03:03 2009 +0200
5011
5012     smc911x: update SMC911X related configuration description
5013
5014     Since commit 736fead8fdbf8a8407048bebc373cd551d01ec98 "Convert SMC911X
5015     Ethernet driver to CONFIG_NET_MULTI API" SMC911X configration options
5016     are called CONFIG_SMC911X rather than CONFIG_DRIVER_SMC911X. Update
5017     README to reflect that change.
5018
5019     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
5020
5021 commit 45b6b65c6bf06a589ef3123192af94b0381db27b
5022 Author: Mike Rapoport <mike@compulab.co.il>
5023 Date:   Wed Nov 11 10:03:09 2009 +0200
5024
5025     smc911x: fix typo in smc911x_handle_mac_address name
5026
5027     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
5028
5029 commit f64ef9bb995687e24e0b61b52316f4eaa97c3bbc
5030 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
5031 Date:   Thu Nov 19 02:47:28 2009 -0600
5032
5033     fix nfs symlink name corruption
5034
5035     An off by one error may cause nfs readlink lookup fail if
5036     nfs_path_buff has non-zero data from a previous use.
5037
5038     Loading: *** ERROR: File lookup fail
5039
5040     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
5041
5042 commit e8fac25e83426fdf461c66aa8a2530ec28ec536e
5043 Author: Wolfgang Denk <wd@denx.de>
5044 Date:   Mon Dec 7 21:06:40 2009 +0100
5045
5046     at91sam9261ek.c: fix minor coding style issue.
5047
5048     Signed-off-by: Wolfgang Denk <wd@denx.de>
5049
5050 commit 4713010adf5beda87410d637ebfc58db0db9a9db
5051 Author: Wolfgang Denk <wd@denx.de>
5052 Date:   Sun Dec 6 01:21:28 2009 +0100
5053
5054     trab: fix warning: implicit declaration of function 'disable_vfd'
5055
5056     Signed-off-by: Wolfgang Denk <wd@denx.de>
5057
5058 commit a9f99ab44b473fb394169ba365f8b4380f981584
5059 Author: Wolfgang Denk <wd@denx.de>
5060 Date:   Sun Dec 6 00:53:18 2009 +0100
5061
5062     zlib.c: avoid build conflicts for cradle board
5063
5064     Commit dce3d79710 updated the zlib code to v0.95; this caused
5065     conflicts when building for the "cradle" board, because the (pretty
5066     generic) preprocessor variable "OFF" was used in multiple files.
5067     Make sure to avoid further conflicts by #undef'ing it in zlib.c
5068     before redefining it.
5069
5070     Signed-off-by: Wolfgang Denk <wd@denx.de>
5071     cc: Giuseppe Condorelli <giuseppe.condorelli@st.com>
5072     cc: Angelo Castello <angelo.castello@st.com>
5073     cc: Alessandro Rubini <rubini-list@gnudd.com>
5074
5075 commit 8cbf4e4f17121d732e78764f0ba317c9a1838ea6
5076 Author: Wolfgang Denk <wd@denx.de>
5077 Date:   Sun Dec 6 00:26:19 2009 +0100
5078
5079     Fix out-of-tree building of "apollon" board.
5080
5081     Signed-off-by: Wolfgang Denk <wd@denx.de>
5082
5083 commit f68ab43de67f59925542efb6bcec30f4a84fe695
5084 Author: Mike Frysinger <vapier@gentoo.org>
5085 Date:   Fri Dec 4 05:35:15 2009 -0500
5086
5087     lzma: ignore unset filesizes
5088
5089     The Linux kernel build system changed how it compresses things with LZMA
5090     such that the header no longer contains the filesize (it is instead set to
5091     all F's).  So if we get a LZMA image that has -1 for the 64bit field,
5092     let's just assume that the decompressed size is unknown and continue on.
5093
5094     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5095
5096 commit cccfc2ab77877dbdd2abe26b28d4c1f467feb0c0
5097 Author: Detlev Zundel <dzu@denx.de>
5098 Date:   Tue Dec 1 17:16:19 2009 +0100
5099
5100     README: Rearrange paragraphs to regain linear arrangement.
5101
5102     Two later additions to the Configuration Option section unfortunately
5103     split the description of Show boot progress and the list of its call outs.
5104
5105     Signed-off-by: Detlev Zundel <dzu@denx.de>
5106
5107 commit cd514aeb996e2f7aefbe1f78481965d9d074aed4
5108 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5109 Date:   Thu Nov 19 13:22:44 2009 +0100
5110
5111     zlib: Optimize decompression
5112
5113     This patch optimizes the direct copy procedure.
5114     Uses get_unaligned() but only in one place.
5115     The copy loop just above this one can also use this
5116     optimization, but I havn't done so as I have not tested if it
5117     is a win there too.
5118     On my MPC8321 this is about 17% faster on my JFFS2 root FS
5119     than the original. No speed test has been performed in u-boot.
5120
5121     Size increase on ppc: 484 bytes
5122
5123     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5124     Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
5125
5126 commit 20dde48bcadd856c86a91d5463831a10be46db83
5127 Author: Peter Korsgaard <jacmet@sunsite.dk>
5128 Date:   Thu Nov 19 11:37:51 2009 +0100
5129
5130     add lzop decompression support
5131
5132     Add lzop decompression support to the existing lzo bitstream handling
5133     (think gzip versus zlib), and support it for uImage decompression if
5134     CONFIG_LZO is enabled.
5135
5136     Lzop doesn't compress as good as gzip (~10% worse), but decompression
5137     is very fast (~0.7s faster here on a slow ppc). The lzop decompression
5138     code is based on Albin Tonnerre's recent ARM Linux lzo support patch.
5139
5140     Cc: albin.tonnerre@free-electrons.com
5141     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
5142
5143 commit c81296c16fd9d12422c9968cc0f1d9bf440a7d88
5144 Author: Peter Tyser <ptyser@xes-inc.com>
5145 Date:   Tue Nov 24 16:42:10 2009 -0600
5146
5147     tools/mkimage: Print FIT image contents after creation
5148
5149     Previously, there was no indication to the user that a FIT image was
5150     successfully created after executing mkimage.  For example:
5151
5152       $ mkimage -f uImage.its uImage.itb
5153       DTC: dts->dtb  on file "uImage.its"
5154
5155     Adding some additional output after creating a FIT image lets the user
5156     know exactly what is contained in their image, eg:
5157
5158       $ mkimage -f uImage.its uImage.itb
5159       DTC: dts->dtb  on file "uImage.its"
5160       FIT description: Linux kernel 2.6.32-rc7-00201-g7550d6f-dirty
5161       Created:         Tue Nov 24 15:43:01 2009
5162        Image 0 (kernel@1)
5163         Description:  Linux Kernel 2.6.32-rc7-00201-g7550d6f-dirty
5164         Type:         Kernel Image
5165         Compression:  gzip compressed
5166         Data Size:    2707311 Bytes = 2643.86 kB = 2.58 MB
5167         Architecture: PowerPC
5168         OS:           Linux
5169         Load Address: 0x00000000
5170         Entry Point:  0x00000000
5171         Hash algo:    crc32
5172         Hash value:   efe0798b
5173         Hash algo:    sha1
5174         Hash value:   ecafba8c95684f2c8fec67e33c41ec88df1534d7
5175        Image 1 (fdt@1)
5176         Description:  Flattened Device Tree blob
5177         Type:         Flat Device Tree
5178         Compression:  uncompressed
5179         Data Size:    12288 Bytes = 12.00 kB = 0.01 MB
5180         Architecture: PowerPC
5181         Hash algo:    crc32
5182         Hash value:   a5cab676
5183         Hash algo:    sha1
5184         Hash value:   168722b13e305283cfd6603dfe8248cc329adea6
5185        Default Configuration: 'config@1'
5186        Configuration 0 (config@1)
5187         Description:  Default Linux kernel
5188         Kernel:       kernel@1
5189         FDT:          fdt@1
5190
5191     This brings the behavior of creating a FIT image in line with creating a
5192     standard uImage, which also prints out the uImage contents after
5193     creation.
5194
5195     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5196
5197 commit 8e1c89663cc8796b85588910046e03b388a7597c
5198 Author: Peter Tyser <ptyser@xes-inc.com>
5199 Date:   Tue Nov 24 16:42:09 2009 -0600
5200
5201     tools/fit_image.c: Remove unused fit_set_header()
5202
5203     The FIT fit_set_header() function was copied from the standard uImage's
5204     image_set_header() function during mkimage reorganization.  However, the
5205     fit_set_header() function is not used since FIT images use a standard
5206     device tree blob header.
5207
5208     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5209
5210 commit 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e
5211 Author: Peter Tyser <ptyser@xes-inc.com>
5212 Date:   Tue Nov 24 16:42:08 2009 -0600
5213
5214     tools/mkimage: Assume FDT image type for FIT images
5215
5216     When building a Flattened Image Tree (FIT) the image type needs to be
5217     "flat_dt".  Commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5 introduced a
5218     regression which caused the user to need to specify the "-T flat_dt"
5219     parameter on the command line when building a FIT image.  The "-T
5220     flat_dt" parameter should not be needed and is at odds with the current
5221     FIT image documentation.
5222
5223     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5224
5225 commit 3eb90bad651fab39cffba750ec4421a9c01d60e7
5226 Author: Ingo van Lil <inguin@gmx.de>
5227 Date:   Tue Nov 24 14:09:21 2009 +0100
5228
5229     Generic udelay() with watchdog support
5230
5231     According to the PPC reference implementation the udelay() function is
5232     responsible for resetting the watchdog timer as frequently as needed.
5233     Most other architectures do not meet that requirement, so long-running
5234     operations might result in a watchdog reset.
5235
5236     This patch adds a generic udelay() function which takes care of
5237     resetting the watchdog before calling an architecture-specific
5238     __udelay().
5239
5240     Signed-off-by: Ingo van Lil <inguin@gmx.de>
5241
5242 commit 1c409bc7101a24ecd47a13a4e851845d66dc23ce
5243 Author: Graeme Russ <graeme.russ@gmail.com>
5244 Date:   Tue Nov 24 20:04:21 2009 +1100
5245
5246     i386: Final Relocation
5247
5248     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5249
5250 commit cabe5794803fbe18bedac2d9c7f2417a0fa95ec1
5251 Author: Graeme Russ <graeme.russ@gmail.com>
5252 Date:   Tue Nov 24 20:04:20 2009 +1100
5253
5254     i386: Move references to link script exports
5255
5256     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5257
5258 commit 0fc1b49ecbd7ec7371f9ede0600e4fd28cec7f33
5259 Author: Graeme Russ <graeme.russ@gmail.com>
5260 Date:   Tue Nov 24 20:04:19 2009 +1100
5261
5262     i386: Remove inline asm symbols from .dynsym
5263
5264     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5265
5266 commit 564a9984bdbf86a02cf4f0d848933a9fff4a1d18
5267 Author: Graeme Russ <graeme.russ@gmail.com>
5268 Date:   Tue Nov 24 20:04:18 2009 +1100
5269
5270     i386: Rearrange Interupt Handling
5271
5272     In preperation for full relocation
5273
5274     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5275
5276 commit 27f13075a659da046372dfe249d808f2f6ddb432
5277 Author: Graeme Russ <graeme.russ@gmail.com>
5278 Date:   Tue Nov 24 20:04:17 2009 +1100
5279
5280     i386: Fix race condition when using SC520 timers
5281
5282     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5283
5284 commit 141a62cc12bfbab49f0f44a394518a360dcddad8
5285 Author: Graeme Russ <graeme.russ@gmail.com>
5286 Date:   Tue Nov 24 20:04:16 2009 +1100
5287
5288     i386: Fix global label in inline asm compile error
5289
5290     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5291
5292 commit 4ee4e413baa8e951e3c42c17a808578867a63572
5293 Author: Graeme Russ <graeme.russ@gmail.com>
5294 Date:   Tue Nov 24 20:04:15 2009 +1100
5295
5296     i386: Reorder source objects in lib_i386 Makefile
5297
5298     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5299
5300 commit aea14421c52f31e39837aa2890e07e9c70ee61fd
5301 Author: Graeme Russ <graeme.russ@gmail.com>
5302 Date:   Tue Nov 24 20:04:14 2009 +1100
5303
5304     i386: Fix link collisions resulting from gcc4.4.1 upgrade
5305
5306     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5307
5308 commit b4feeb4e8a1d9124bae39985a97b99d08e06186d
5309 Author: Graeme Russ <graeme.russ@gmail.com>
5310 Date:   Tue Nov 24 20:04:13 2009 +1100
5311
5312     i386: Fix malloc initialization
5313
5314     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5315
5316 commit c74bfce0fb20ec4d01809fa0566263894923467b
5317 Author: Graeme Russ <graeme.russ@gmail.com>
5318 Date:   Tue Nov 24 20:04:12 2009 +1100
5319
5320     i386: Fix dlmalloc compile warning
5321
5322     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5323
5324 commit 270737acca21f3939f814de5dcf350a1c3d80d83
5325 Author: Michael Brandt <Michael.Brandt@emsyso.de>
5326 Date:   Sun Nov 22 14:13:27 2009 +0100
5327
5328     EXT2FS: fix inode size for ext2fs rev#0
5329
5330     extfs.c assumes that there is always a valid inode_size field in the
5331     superblock. But this is not true for ext2fs rev 0. Such ext2fs images
5332     are for instance generated by genext2fs. Symptoms on ARM machines are
5333     messages like: "raise: Signal # 8 caught"; on PowerPC "ext2ls" will
5334     print nothing.
5335     This fix checks for rev 0 and uses then 128 bytes as inode size.
5336
5337     Signed-off-by: Michael Brandt <Michael.Brandt@emsyso.de>
5338     Tested on: TQM5200S
5339     Tested-by: Wolfgang Denk <wd@denx.de>
5340     Signed-off-by: Wolfgang Denk <wd@denx.de>
5341
5342 commit bcb324d68f7955c1136dafc944eb55db8ebaa601
5343 Author: Robert P. J. Day <rpjday@crashcourse.ca>
5344 Date:   Thu Nov 19 11:00:28 2009 -0500
5345
5346     Remove superfluous preprocessor tests from some cmd_*.c files.
5347
5348     A small number of common/cmd_*.c files contain preprocessor tests that
5349     are apparently superfluous since those same tests are used in the
5350     Makefile to control the compilation of those files.  Those tests are
5351     clearly redundant as long as they surround the entirety of the source
5352     in those files.
5353
5354     Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
5355
5356 commit 3ee8c12071f0e3bdda25125b63c9d3fd54a7c9d8
5357 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5358 Date:   Thu Nov 19 13:44:16 2009 +0100
5359
5360     crc32: Impl. linux optimized crc32()
5361
5362     Ported over the more efficient linux crc32() function.
5363     A quick comparsion on ppc:
5364     After changing the old crc32 to do 4 bytes in the
5365     inner loop to be able to compare with new version one can note:
5366     - old inner loop has 61 insn, new has 19 insn.
5367     - new crc32 does one 32 bit load of data to crc while
5368       the old does four 8 bits loads.
5369     - size is bit bigger for the new crc32:
5370       1392(old) 1416(new) of text. The is because the new version
5371       shares code with crc32_no_comp() instead of duplicating code.
5372     - about 33% faster on ppc:
5373       New > crc 0 0xfffffff -> 39 secs
5374       Old > crc 0 0xfffffff -> 60 secs
5375
5376     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5377
5378 commit ad53226156fa64b6d04c0d1d6e91e09979cbea15
5379 Author: Robert P. J. Day <rpjday@crashcourse.ca>
5380 Date:   Tue Nov 17 01:59:29 2009 -0500
5381
5382     README: Update the list of directories.
5383
5384     Bring the directory listing more into line with current content.
5385
5386     Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
5387
5388 commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b
5389 Author: Pratap Chandu <pratap.rrke@gmail.com>
5390 Date:   Thu Nov 12 19:28:25 2009 +0530
5391
5392     Removes dead code in the file common/cmd_i2c.c
5393
5394     There is some dead code enclosed by #if 0 .... #endif in the file
5395     common/cmd_i2c.c
5396     This patch removes the dead code.
5397
5398     Signed-off-by: Pratap Chandu <pratap.rrke@gmail.com>
5399
5400 commit 64a480601a5614b441de692ae15a62c51e0bb381
5401 Author: Mike Frysinger <vapier@gentoo.org>
5402 Date:   Wed Nov 11 17:51:56 2009 -0500
5403
5404     smc91111_eeprom: drop CONFIG stub protection
5405
5406     Since the Makefile now controls the compilation of this, there is no need
5407     for CONFIG checking nor the stub function.
5408
5409     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5410
5411 commit f3a7bddc06c927c36a1a99a97131299479ef207a
5412 Author: Magnus Lilja <lilja.magnus@gmail.com>
5413 Date:   Wed Nov 11 19:56:58 2009 +0100
5414
5415     RTC: Fix return code in MC13783 RTC driver.
5416
5417     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
5418
5419 commit d52e3e0176a74c30549251e16c5c00a363c544d2
5420 Author: Magnus Lilja <lilja.magnus@gmail.com>
5421 Date:   Wed Nov 11 19:56:36 2009 +0100
5422
5423     cmd_date: Fix spelling in error message.
5424
5425     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
5426
5427 commit c253122395753abb9e531d8906c5265dc8803fb1
5428 Author: Peter Tyser <ptyser@xes-inc.com>
5429 Date:   Wed Nov 11 10:36:28 2009 -0600
5430
5431     Move do_irqinfo() to common/cmd_irq.c
5432
5433     cmd_irq.c is a much better home and it is already conditionally
5434     compiled based on CONFIG_CMD_IRQ.
5435
5436     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5437
5438 commit a5dd4dc64fe68e549c5ffcf6a048281b5ba94752
5439 Author: Peter Tyser <ptyser@xes-inc.com>
5440 Date:   Wed Nov 11 10:36:19 2009 -0600
5441
5442     cmd_license: Remove unneeded #ifdef CONFIG_CMD_LICENSE
5443
5444     cmd_license is already conditionally compiled at the Makefile-level.
5445
5446     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5447
5448 commit 06015146a15adc7455440c491d543f6a8091551d
5449 Author: Peter Tyser <ptyser@xes-inc.com>
5450 Date:   Mon Nov 9 15:18:52 2009 -0600
5451
5452     m41t11: Remove unused functions
5453
5454     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5455
5456 commit 9ef78511cda39987e5fc10febf386fd19f58ecf7
5457 Author: Peter Tyser <ptyser@xes-inc.com>
5458 Date:   Mon Nov 9 15:17:50 2009 -0600
5459
5460     circbuf: Move to lib_generic and conditionally compile
5461
5462     circbuf could be used as a generic library and is only currently
5463     needed when CONFIG_USB_TTY is defined.
5464
5465     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5466
5467 commit 604f7ce55ad74694ef8743ad2e99933dc0265e46
5468 Author: Sanjeev Premi <premi@ti.com>
5469 Date:   Mon Nov 9 22:43:00 2009 +0530
5470
5471     Fix build failure in examples/standalone
5472
5473     Some versions of 'make' do not handle trailing white-spaces
5474     properly. Trailing spaces in ELF causes a 'fake' source to
5475     be added to the variable COBJS; leading to build failure
5476     (listed below). The problem was found with GNU Make 3.80.
5477
5478     Using text-function 'strip' as a workaround for the problem.
5479
5480     make[1]: Entering directory `/home/sanjeev/u-boot/examples/standalone'
5481     arm-none-linux-gnueabi-gcc -g  -Os   -fno-common -ffixed-r8 -msoft-float
5482     -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanjeev/u-boot/include
5483     -fno-builtin -ffreestanding -nostdinc -isystem /opt/codesourcery/2009q1-
5484     203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -pipe  -DCONFIG_
5485     ARM -D__ARM__ -marm  -mabi=aapcs-linux -mno-thumb-interwork -march=armv5
5486     -Wall -Wstrict-prototypes -fno-stack-protector -g  -Os   -fno-common -ff
5487     ixed-r8 -msoft-float   -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanje
5488     ev/u-boot/include -fno-builtin -ffreestanding -nostdinc -isystem /opt/co
5489     desourcery/2009q1-203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/includ
5490     e -pipe  -DCONFIG_ARM -D__ARM__ -marm  -mabi=aapcs-linux -mno-thumb-inte
5491     rwork -march=armv5 -I.. -Bstatic -T u-boot.lds  -Ttext 0x80e80000 -o .c
5492     arm-none-linux-gnueabi-gcc: no input files
5493     make[1]: *** [.c] Error 1
5494     make[1]: Leaving directory `/home/sanjeev/u-boot/examples/standalone'
5495     make: *** [examples/standalone] Error 2
5496     premi #
5497
5498     Signed-off-by: Sanjeev Premi <premi@ti.com>
5499
5500     Fixed typo (s/ElF/ELF/).
5501     Signed-off-by: Wolfgang Denk <wd@denx.de>
5502
5503 commit d984fed068b3bec8a7edaf7a3de71479abde080a
5504 Author: Scott Wood <scottwood@freescale.com>
5505 Date:   Wed Nov 4 18:41:41 2009 -0600
5506
5507     makefiles: fixes for building build tools
5508
5509     Currently, some of the tools instead set CC to be HOSTCC in order to re-use
5510     some pattern rules -- but this fails when the user overrides CC on the make
5511     command line.  Also, the HOSTCFLAGS in tools/Makefile are currently not
5512     being used because config.mk overwrites them.
5513
5514     This patch adds static pattern rules for files that have been requested to
5515     be built with the native compiler using $(HOSTSRCS) and $(HOSTOBJS), and
5516     converts the tools to use them.
5517
5518     It restores easylogo to using the host compiler, which was broken by commit
5519     38d299c2db81bd889c601b5dfc12c4e83ef83333 (if this was an intentional change,
5520     please let me know -- but it seems to be a build tool).
5521
5522     It restores -pedantic and the special flags for darwin and cygwin that were
5523     requested in tools/makefile (but keeps the flags added by config.mk) --
5524     hopefully someone can test this on those platforms.  It no longer
5525     conditionalizes -pedantic on not being darwin; it wasn't clear that that was
5526     intentional, and unless there's a real problem it's just inviting people to
5527     contribute non-pedantic patches to those files (I'm not a fan of -pedantic
5528     personally, but if it's on for one platform it should be on for all).
5529
5530     HOST_LDFLAGS is renamed HOSTLDFLAGS for consistency with the previous
5531     HOST_CFLAGS to HOSTCFLAGS rename.  A new HOSTCFLAGS_NOPED is made available
5532     for those files which currently cannot be built with -pedantic, and replaces
5533     the old FIT_CFLAGS.
5534
5535     imls now uses the cross compiler properly, rather than by trying to
5536     reconstruct CC using the typoed $(CROSS_COMPILER).
5537
5538     envcrc.c is now dependency-processed unconditionally -- previously it would
5539     be built without being on (HOST)SRCS if CONFIG_ENV_IS_EMBEDDED was not
5540     selected.
5541
5542     Signed-off-by: Scott Wood <scottwood@freescale.com>
5543
5544 commit af860962b544ddf323c4ff68454f00d31e44df0a
5545 Author: Becky Bruce <beckyb@kernel.crashing.org>
5546 Date:   Wed Nov 4 18:30:08 2009 -0600
5547
5548     85xx: Remove unused CONFIG_ASSUME_AMD_FLASH from config files
5549
5550     A bunch of the 85xx boards have this cruft in them - it's not used
5551     anywhere.  Delete it.
5552
5553     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
5554
5555 commit bf44f3f327acddba202ff67f70192926ea47dfd1
5556 Author: Mike Frysinger <vapier@gentoo.org>
5557 Date:   Wed Nov 4 16:34:42 2009 -0500
5558
5559     exports: rewrite jump table init
5560
5561     The current jump table init fails to initialize a bunch of exported
5562     symbols (forceenv/do_reset/etc...).  Rather than fix just these few
5563     missing pieces, rewrite the code to utilize the existing list of
5564     exported symbols -- _exports.h.  Since every exported symbol has to
5565     be listed in this header, it makes sense to use it so that we only
5566     ever have one list that needs to be updated and things can't fall
5567     out of sync again.
5568
5569     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5570
5571 commit deec1fbd4f704dded2e668bb9e368631981ea139
5572 Author: Wolfgang Denk <wd@denx.de>
5573 Date:   Wed Dec 2 22:26:30 2009 +0100
5574
5575     MAINTAINERS: update responsible for MPC85xx/86xx
5576
5577     Signed-off-by: Wolfgang Denk <wd@denx.de>
5578     Cc: Kumar Gala <galak@kernel.crashing.org>
5579     Cc: Becky Bruce <beckyb@kernel.crashing.org>
5580
5581 commit 71636fa7c3de63de29c0f514d5c725eccb011657
5582 Author: Tom Rix <Tom.Rix@windriver.com>
5583 Date:   Sun Nov 29 17:56:36 2009 -0600
5584
5585     ARM Update mach-types
5586
5587     Fetched from http://www.arm.linux.org.uk/developer/machines/download.php
5588     And built with
5589
5590     repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
5591     commit 3fcca9ac6cbce35b3e81e247d375534117d5f4cd
5592
5593     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5594
5595 commit 7c15121f4007751af8c45c978c4ad7d6c5ff11f9
5596 Author: Vaibhav Hiremath <hvaibhav@ti.com>
5597 Date:   Mon Nov 23 16:36:05 2009 +0530
5598
5599     omap3_mmc: Encapsulate twl4030 under option CONFIG_TWL4030_POWER
5600
5601     Fixes the build/compilation error if we try to re-use the omap3_mmc code
5602     without TWL4030_POWER.
5603
5604     Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
5605
5606 commit 6406d6daea51bbeed21f3829b37d3f395c198e54
5607 Author: Sandeep Paulraj <s-paulraj@ti.com>
5608 Date:   Sat Nov 21 13:13:59 2009 -0500
5609
5610     TI DaVinci: Adding a README for the DaVinci series of SOC's
5611
5612     Adding an initial README for the DaVinci series of SOC's
5613
5614     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5615
5616 commit 990f569c4fa6b9e76b31d0a5229981c092b02dcf
5617 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at>
5618 Date:   Sat Jun 6 10:30:58 2009 +0000
5619
5620     avr32/hsdramc: Move conditional compilation to Makefile
5621
5622     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj <at> jcrosoft.com>
5623     Cc: Haavard Skinnemoen <haavard.skinnemoen <at> atmel.com>
5624
5625 commit 3f12f5217e8bdf8f6842bf1b8c5c5b98425ac3db
5626 Author: Sandeep Paulraj <s-paulraj@ti.com>
5627 Date:   Sat Nov 21 13:24:17 2009 -0500
5628
5629     NAND: Add config option for imx27lite
5630
5631     We will get compilation warnings without
5632     "CONFIG_SYS_64BIT_VSPRINTF" being defined
5633     in the board config.
5634
5635     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5636
5637 commit 43a5f0df2f2e3a2b5eab05d6742501c98d3c0d0c
5638 Author: Po-Yu Chuang <ratbert.chuang@gmail.com>
5639 Date:   Wed Nov 11 17:27:30 2009 +0800
5640
5641     arm: A320: Add support for Faraday A320 evaluation board
5642
5643     This patch adds support for A320 evaluation board from Faraday. This board
5644     uses FA526 processor by default and has 512kB and 32MB NOR flash, 64M RAM.
5645     FA526 is an ARMv4 processor and uses the ARM920T source in this patch.
5646
5647     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
5648
5649 commit 39ba774f9b02c44b8fd4df44afac932800c18662
5650 Author: Po-Yu Chuang <ratbert.chuang@gmail.com>
5651 Date:   Wed Nov 11 17:26:00 2009 +0800
5652
5653     arm: A320: driver for FTRTC010 real time clock
5654
5655     This patch adds an FTRTC010 driver for Faraday A320 evaluation board.
5656
5657     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
5658
5659 commit c1ee63cee89c5822fbbcc63586c8f2a1add70614
5660 Author: Sandeep Paulraj <s-paulraj@ti.com>
5661 Date:   Sat Nov 21 18:08:49 2009 -0500
5662
5663     TI DaVinci DM646x: Enable NAND on DM6467 EVM
5664
5665     This patch enables NAND on the DM6467 EVM
5666
5667     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5668
5669 commit d414aae552bc229dafcad92028effb4a8306c7a5
5670 Author: Nishanth Menon <nm@ti.com>
5671 Date:   Mon Nov 9 09:29:34 2009 -0500
5672
5673     OMAP3: Fix SDRC init
5674
5675     Defaults are for Infineon DDR timings.
5676     Since none of the supported boards currently do
5677     XIP boot, these seem to be faulty. fix the values
5678     as per the calculations(ACTIMA,B), conf
5679     the sdrc power with pwdnen and wakeupproc bits
5680
5681     Signed-off-by: Nishanth Menon <nm@ti.com>
5682
5683 commit 30563a04bff73fd4fbd840b846f4b6459759a839
5684 Author: Nishanth Menon <nm@ti.com>
5685 Date:   Sat Nov 7 10:51:24 2009 -0500
5686
5687     OMAP3:SDRC: introduce DDR types
5688
5689     Micron DDR timings based on:
5690     http://www.sakoman.net/cgi-bin/gitweb.cgi?p=x-load-omap3.git;a=blob;f=include/asm/arch-omap3/mem.h;h=e6fbfe3947f5d0d85fea776e30821d4017316d86;hb=HEAD
5691
5692     Introduce Micron DDR timings and provide
5693     CONFIG_OMAP3_INFINEON_DDR and CONFIG_OMAP3_MICRON_DDR config
5694     options to allow for platform files to setup their timings as
5695     per the type of DDR selected
5696
5697     Reported-by: Steve Sakoman in http://www.nabble.com/forum/Permalink.jtp?root=25779518&post=25959734&page=y
5698
5699     Signed-off-by: Nishanth Menon <nm@ti.com>
5700
5701 commit 169a4c804dbaf11facb041b1333d394c6ceb8d68
5702 Author: Nishanth Menon <nm@ti.com>
5703 Date:   Sat Nov 7 10:40:47 2009 -0500
5704
5705     OMAP3:SDRC: Cleanup references to SDP
5706
5707     Remove SDP referenced unused defines
5708
5709     Signed-off-by: Nishanth Menon <nm@ti.com>
5710
5711 commit 2819e1365be0c81a0141ef5c6a7996b40888f6d8
5712 Author: Sekhar Nori <nsekhar@ti.com>
5713 Date:   Thu Nov 12 11:09:25 2009 -0500
5714
5715     TI DA8xx: Integrate DA830 EVM support into U-Boot
5716
5717     Integrate DA830 EVM support into U-Boot.
5718
5719     Provides initial support for TI OMAP-L137/DA830 SoC devices on a Spectrum
5720     Digital EVM board. See http://www.spectrumdigital.com/
5721
5722     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
5723
5724 commit bdc9c6c7f77a9a63349ecb9f54b20ad34033a2ae
5725 Author: Sekhar Nori <nsekhar@ti.com>
5726 Date:   Thu Nov 12 11:08:39 2009 -0500
5727
5728     TI DA8xx: Add new directory for da830evm board
5729
5730     Add new directory for da830evm board
5731
5732     Provides initial support for TI OMAP-L137/DA830 SoC devices on a Spectrum
5733     Digital EVM board. See http://www.spectrumdigital.com/
5734
5735     Provides:
5736     Initial boot and configuration.
5737     Support for i2c.
5738     UART support (console).
5739
5740     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
5741
5742 commit 91172baf46a57807233eb7bcd724b9f10109cfe0
5743 Author: Sekhar Nori <nsekhar@ti.com>
5744 Date:   Thu Nov 12 11:07:22 2009 -0500
5745
5746     TI DA8xx: Add DA8xx cpu functions
5747
5748     Provides initial support for TI OMAP-L1x/DA8xx SoC devices.
5749     See http://www.ti.com
5750
5751     Provides:
5752     Low level initialisation.
5753     System clock API.
5754     Timer control.
5755
5756     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
5757
5758 commit bbed056e550b26712edc173411c9d7ff9cb7e0e6
5759 Author: Nick Thompson <nick.thompson@gefanuc.com>
5760 Date:   Thu Nov 12 11:06:08 2009 -0500
5761
5762     Add TI DA8xx support: DA8xx includes
5763
5764     Provides initial support for TI OMAP-L1x/DA8xx SoC devices.
5765     See http://www.ti.com
5766
5767     The DA8xx devices are similar to DaVinci devices but have a differing
5768     memory map and updated peripheral versions.
5769
5770     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
5771     Signed-off-by: Sekhar Nori <nsekhar@ti.com>
5772
5773 commit ca8480d444bdcc1670e42a613c5a5e4e8366d2d9
5774 Author: Nick Thompson <nick.thompson@gefanuc.com>
5775 Date:   Thu Nov 12 11:03:23 2009 -0500
5776
5777     TI Davinci: add a pin multiplexer configuration API
5778
5779     Creates a method allowing pin settings to be logically grouped into data
5780     structure arrays and provides an API to configure the pinmux settings to
5781     enable the relevant pin functions.
5782
5783     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
5784
5785 commit 9868a36dfb8de4bb98b48e4f4eb912312d67279e
5786 Author: Nick Thompson <nick.thompson@gefanuc.com>
5787 Date:   Thu Nov 12 11:02:17 2009 -0500
5788
5789     TI Davinci timer.c: Remove volatiles and memory mapped structures
5790
5791     Remove volatiles and memory mapped structure accesses and replace with
5792     readl and writel macro usage.
5793
5794     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
5795
5796 commit c90b32739a50ca52d9b8d220ea6875ae994566ec
5797 Author: Grazvydas Ignotas <notasas@gmail.com>
5798 Date:   Thu Nov 12 11:46:07 2009 +0200
5799
5800     OMAP3: pandora: fix booting without serial attached
5801
5802     When the board is booted without serial cable attached (which
5803     is how most of them will be used) UART RX is left floating and
5804     sometimes picks noise, which interrupts countdown and enters
5805     U-Boot prompt instead of booting the kernel.
5806
5807     Fix this by setting up internal pullup on UART RX pin. This
5808     does not prevent serial from working as the internal pullup
5809     is weak.
5810
5811     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
5812
5813 commit ac67804fbb2d82a19170066c02af7053d474ce8d
5814 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
5815 Date:   Tue Nov 17 18:30:34 2009 +0900
5816
5817     Add a unified s3c24x0 header file
5818
5819     This patch adds a unified s3c24x0 cpu header file that selects the header
5820     file for the specific s3c24x0 cpu from the SOC and CPU configs defined in
5821     board config file. This removes the current chain of s3c24-type #ifdef's
5822     from the s3c24x0 code.
5823
5824     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
5825     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
5826
5827 commit a59a23d68ae4f4a1c07d105520c93e6e289d186f
5828 Author: Seunghyeon Rhee <rhee4j1@gmail.com>
5829 Date:   Fri Nov 13 16:49:41 2009 +0900
5830
5831     S3C6400/SMDK6400: fix stack_setup in start.S
5832
5833     Fix stack_setup to place the stack on the correct address in DRAM
5834     accroding to U-Boot standard and remove conditional compilation by
5835     CONFIG_MEMORY_UPPER_CODE macro that is not necessry. This macro
5836     was introduced and used only by this board for some unclear reason.
5837
5838     The definition of this macro is also removed because it's not
5839     referenced elsewhere.
5840
5841     Signed-off-by: Seunghyeon Rhee <seunghyeon@lpmtec.com>
5842     Tested-by: Minkyu Kang <mk7.kang@samsung.com>
5843
5844 commit 940032260914076b1594906334b2e3f7af6fb7cf
5845 Author: Minkyu Kang <mk7.kang@samsung.com>
5846 Date:   Tue Nov 10 20:23:50 2009 +0900
5847
5848     s5pc1xx: serial: fix the error check logic
5849
5850     Because of Frame error, Parity error and Overrun error are occured only receive
5851     operation, need to masking when error checking.
5852
5853     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
5854
5855 commit 9ebfdc202275bcd9eb4af56e32bfb4253ff1b781
5856 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
5857 Date:   Wed Nov 4 17:49:31 2009 +0900
5858
5859     Clean-up of s3c24x0 header files
5860
5861     Cleans up the s3c24x0 header files:
5862
5863     s4c24x0.h: removes the use of 'volatile' from the S3C24X0_REG8,
5864     S3C24X0_REG16 and S3C24X0_REG32 register typedef's. Registers are always
5865     accessed using the IO accessor functions which cast the register address
5866     as 'volatile' anyway so it isn't required here.
5867
5868     s3c2400.h and s3c2410.h: insert a blank line between the static inline
5869     functions
5870
5871     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
5872
5873 commit 47e801bec360e69e4b087a141d015b318e1b0212
5874 Author: Minkyu Kang <mk7.kang@samsung.com>
5875 Date:   Wed Nov 4 16:07:59 2009 +0900
5876
5877     s3c64xx: move s3c64xx header files to asm-arm/arch-s3c64xx
5878
5879     This patch moves the s3c64xx header files from include/
5880     to include/asm-arm/arch-s3c64xx
5881
5882     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
5883
5884 commit 492fb1fdbcdd5e21be0b6742c15f76c648f0653b
5885 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
5886 Date:   Tue Nov 3 18:08:41 2009 +0900
5887
5888     Move s3c24x0 header files to asm-arm/arch-s3c24x0/
5889
5890     This patch moves the s3c24x0 header files from include/ to
5891     include/asm-arm/arch-s3c24x0/.
5892
5893     checkpatch.pl showed 2 errors and 3 warnings. The 2 errors were both due
5894     to a non-UTF8 character in David M?ller's name:
5895
5896     ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
5897     #489: FILE: include/asm-arm/arch-s3c24x0/s3c2410.h:3:
5898     + * David M?ller ELSOFT AG Switzerland. d.mueller@elsoft.ch
5899
5900     As David's name correctly contains a non-UTF8 character I haven't fixed
5901     these errors.
5902
5903     The 3 warnings were all because of the use of 'volatile' in s3c24x0.h:
5904
5905     WARNING: Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt
5906     #673: FILE: include/asm-arm/arch-s3c24x0/s3c24x0.h:35:
5907     +typedef volatile u8        S3C24X0_REG8;
5908     +typedef volatile u16       S3C24X0_REG16;
5909     +typedef volatile u32       S3C24X0_REG32;
5910
5911     I'll fix these errors in another patch.
5912
5913     Tested by running MAKEALL for ARM8 targets and ensuring there were no new
5914     errors or warnings.
5915
5916     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
5917     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
5918
5919 commit 2d251ccaa90997012e0b1f13bf791df2bf03a144
5920 Author: Tom Rix <Tom.Rix@windriver.com>
5921 Date:   Sun Nov 15 10:58:06 2009 -0600
5922
5923     ARM Update mach-types
5924
5925     Fetched from http://www.arm.linux.org.uk/developer/machines/download.php
5926     And built with
5927
5928     repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
5929     commit 156171c71a0dc4bce12b4408bb1591f8fe32dc1a
5930
5931     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5932
5933 commit c88ed4cb2eed29a690ac6689ed1dc2f5e9547d15
5934 Author: Mark Asselstine <[mark.asselstine@windriver.com]>
5935 Date:   Tue Oct 27 19:40:40 2009 +0530
5936
5937     sheevaplug: correct SDRAM address control register
5938
5939     value
5940
5941     The SheevaPlug DevKit is shipped with 4x8 by 1Gb DDR devices in
5942     two banks for a total of 512MB of RAM. Based on this configuration
5943     the existing values for SDRAM address control register are incorrect
5944     and result in random kernel oops as memory is incorrectly accessed
5945     (while for example extracting a large tarball such as a rootfs).
5946     Based on the hardware configuration along with the supporting
5947     documentation from Marvell these are the correct values, as
5948     well this change mimics values previously used in Marvell's own
5949     u-boot git tree for the SheevaPlug.
5950
5951     Other variants of the hardware such as the PogoPlug and TonidoPlug
5952     may have different memory configurations but to properly support
5953     those additional board directories should be maintained or a better
5954     system to support other kwb*.cfg is needed.
5955
5956     Tested on SheevaPlug DevKit.
5957
5958     Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
5959
5960 commit 9829cabbaa0474e94075bf7d62c99bdba996518b
5961 Author: Sandeep Paulraj <s-paulraj@ti.com>
5962 Date:   Wed Oct 28 19:16:43 2009 -0400
5963
5964     Fix for Void function returning value in sbc35-a9g20
5965
5966     Void function was returning 0 in the m41t94 rtc driver.
5967     This makes it similar to m41t62 rtc driver.
5968
5969     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5970
5971 commit d5e2d625c74c84aa419ba7fa0c81bad93fc69a60
5972 Author: Tom Rix <Tom.Rix@windriver.com>
5973 Date:   Sat Oct 24 14:48:33 2009 -0500
5974
5975     ARM Update mach-types.h
5976
5977     From http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
5978
5979     Commit id 0996391139f43d032335b5360db11da62a2cbb39
5980
5981     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5982
5983 commit 34ddbd171ba154e9afd83f07a07ad8b57ac592e3
5984 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5985 Date:   Thu Oct 22 23:06:59 2009 +0200
5986
5987     ppc4xx: Remove autoupdate feature from PLU405 board
5988
5989     The autoupdate feature is not used on PLU405 boards.
5990     So remove it.
5991
5992     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
5993     Signed-off-by: Stefan Roese <sr@denx.de>
5994
5995 commit 824d82997fbcf28e49081d36fdd5d3be1b92b03d
5996 Author: Ira W. Snyder <iws@ovro.caltech.edu>
5997 Date:   Wed Nov 4 13:37:59 2009 -0800
5998
5999     Fix example FIT image source files
6000
6001     The example FIT image source files do not compile with the latest dtc and
6002     mkimage. The following error message is produced:
6003
6004     DTC: dts->dtb  on file "kernel.its"
6005     Error: kernel.its 7:0 - 1:0 syntax error
6006     FATAL ERROR: Unable to parse input tree
6007     ./mkimage: Can't read kernel.itb.tmp: Invalid argument
6008
6009     The FIT image source files are missing the "/dts-v1/;" directive at the
6010     beginning of the file. Add the directive to the examples.
6011
6012     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
6013
6014 commit fd66066ee3ce15c2966feb9b2be0f0d51a95db48
6015 Author: Mike Frysinger <vapier@gentoo.org>
6016 Date:   Wed Nov 4 16:13:19 2009 -0500
6017
6018     img2srec: use standard types
6019
6020     The img2srec code creates a lot of typedefs with common names.  These
6021     easily clash with system headers that include these typedefs (like mingw).
6022
6023     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6024
6025 commit 8204e068110e8abe5db9c3b7df9971b58cda8f26
6026 Author: Mike Frysinger <vapier@gentoo.org>
6027 Date:   Wed Nov 4 16:03:25 2009 -0500
6028
6029     tools: gitignore *.exe binaries
6030
6031     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6032
6033 commit 425d3b666eee5c58fdb82fb894a535dd71782a05
6034 Author: Peter Tyser <ptyser@xes-inc.com>
6035 Date:   Tue Nov 3 23:31:07 2009 -0600
6036
6037     ppc: Move conditional compilation of kgdb.c to Makefile
6038
6039     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6040
6041 commit e06ab6546b332acc55ac4e7c31338662328b0fb3
6042 Author: Mike Frysinger <vapier@gentoo.org>
6043 Date:   Tue Nov 3 11:36:39 2009 -0500
6044
6045     spi_flash.h: pull in linux/types.h for u## types
6046
6047 commit 0008555f4d57c15ad86ee735861ca0d783042f61
6048 Author: Mike Frysinger <vapier@gentoo.org>
6049 Date:   Tue Nov 3 11:36:26 2009 -0500
6050
6051     bootm: mark local boot_os[] table static
6052
6053     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6054
6055 commit a8fa379d47f06c7d3ed75c8fb26ae43ee38e1fd7
6056 Author: Nishanth Menon <nm@ti.com>
6057 Date:   Mon Nov 2 09:40:18 2009 -0600
6058
6059     mkconfig: deny messed up ARCH definition
6060
6061     Refuse to setup a platform if the command line ARCH= is not the same
6062     as the one required for the board. This prevents any user with
6063     prehistoric aliases from messing up their builds.
6064
6065     Reported in thread:
6066     http://old.nabble.com/-U-Boot--Build-breaks-on-some-OMAP3-configs-to26132721.html
6067
6068     Inputs from: Mike Frysinger and Wolfgang Denk:
6069     http://lists.denx.de/pipermail/u-boot/2009-November/063642.html
6070
6071     Cc: Wolfgang Denk <wd@denx.de>
6072     Cc: Mike Frysinger <vapier@gentoo.org>
6073     Cc: Anand Gadiyar <gadiyar@ti.com>
6074     Cc: Dirk Behme <dirk.behme@googlemail.com>
6075     Signed-off-by: Nishanth Menon <nm@ti.com>
6076
6077 commit 67b96e87da1b84660fa1e5b78cc760246d116814
6078 Author: Remy Bohmer <linux@bohmer.net>
6079 Date:   Wed Oct 28 22:13:39 2009 +0100
6080
6081     Repair the 'netretry=once' option.
6082
6083     'netretry = once' does the same as 'netretry = yes', because it is not stored
6084     when it was tried once.
6085
6086     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6087     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6088
6089 commit b25e38fc36e13fa8037fa4d37fe909d1d6e6f372
6090 Author: Remy Bohmer <linux@bohmer.net>
6091 Date:   Thu Oct 29 14:24:22 2009 +0100
6092
6093     Repair build fail in case CONFIG_PPC=n and CONFIG_FIT=y
6094
6095     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6096
6097 commit 01826abc02ce160501534788e63629ccbe31b05c
6098 Author: Grazvydas Ignotas <notasas@gmail.com>
6099 Date:   Thu Nov 12 11:46:07 2009 +0200
6100
6101     OMAP3: pandora: fix booting without serial attached
6102
6103     When the board is booted without serial cable attached (which
6104     is how most of them will be used) UART RX is left floating and
6105     sometimes picks noise, which interrupts countdown and enters
6106     U-Boot prompt instead of booting the kernel.
6107
6108     Fix this by setting up internal pullup on UART RX pin. This
6109     does not prevent serial from working as the internal pullup
6110     is weak.
6111
6112     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
6113
6114 commit 41dfd8a60324243dbe2dc313a607910824a68aa7
6115 Author: Remy Bohmer <linux@bohmer.net>
6116 Date:   Wed Oct 28 22:13:37 2009 +0100
6117
6118     Add support for CS2 dataflash for Atmel-SPI.
6119
6120     The only missing chipselect line support is CS2, and I need it on
6121     CS2...
6122
6123     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6124
6125 commit faf36c1437c95e4a86835633d9801c5f6396a3c7
6126 Author: Remy Bohmer <linux@bohmer.net>
6127 Date:   Wed Oct 28 22:13:36 2009 +0100
6128
6129     Fix mingw tools build
6130
6131     mkimage does not build due to missing strtok_r() and getline() implementation
6132
6133     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6134
6135 commit 6a590c5f5fd12cdd27f3153522acfac3854590e7
6136 Author: Remy Bohmer <linux@bohmer.net>
6137 Date:   Wed Oct 28 22:13:35 2009 +0100
6138
6139     Building of FIT images does not work.
6140
6141     The type is not set for generation of the FIT images, resulting
6142     in no images being created without printing or returning an error
6143
6144     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6145
6146 commit 0a7691e820e33b23f61c6ea0ef6fa72099d1a6ae
6147 Author: Renato Andreola <renato.andreola@imagos.it>
6148 Date:   Mon Nov 23 16:45:14 2009 -0500
6149
6150     Nios2: do_boom_linux(): kernel gunzip input data integrity problem due to
6151         missing cache flush.
6152
6153         Added instruction and data caches flush.
6154
6155     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
6156
6157 commit de03825386eaedb5e17261dd87cde86e9a764ba9
6158 Author: Scott McNutt <smcnutt@psyent.com>
6159 Date:   Mon Nov 23 16:29:40 2009 -0500
6160
6161     Nios2: Fix compiler warnings in lib_nios2/board.c (unused variables)
6162
6163     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
6164
6165 commit 57baa379cf2f67df89a5c6052767fd25daff20bd
6166 Author: Scott McNutt <smcnutt@psyent.com>
6167 Date:   Mon Nov 23 15:54:25 2009 -0500
6168
6169     Nios2/Nios: Remove unnecessary (residual) linker Nios command scripts from
6170         the standalone examples.
6171
6172     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
6173
6174 commit eb5eb2b0f744f0cba405160c5d01335c40f09acf
6175 Author: Stefan Roese <sr@denx.de>
6176 Date:   Thu Nov 19 14:03:17 2009 +0100
6177
6178     ppc4xx: Cleanup PPC4xx I2C infrastructure
6179
6180     This patch cleans up the PPC4xx I2C intrastructure:
6181
6182     - Use C struct to describe the I2C registers instead of defines
6183     - Coding style cleanup (braces, whitespace, comments, line length)
6184     - Extract common code from i2c_read() and i2c_write()
6185     - Remove unneeded IIC defines from ppc405.h & ppc440.h
6186
6187     Signed-off-by: Stefan Roese <sr@denx.de>
6188
6189 commit b2f618f2150b15b2674f11d09e1c0fdfe460c1cd
6190 Author: Stefan Roese <sr@denx.de>
6191 Date:   Thu Nov 19 11:49:36 2009 +0100
6192
6193     ppc4xx: Remove some testing code from 4xx_pcie.c
6194
6195     This code got included accidentally.
6196
6197     Signed-off-by: Stefan Roese <sr@denx.de>
6198
6199 commit 4e574c4e2d3776d9db62dca4ca3c73be1574af43
6200 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
6201 Date:   Mon May 18 13:20:54 2009 +0200
6202
6203     at91: Extended soft_i2c driver for AT91SAM9263 SoC
6204
6205     While hard_i2c support is not available
6206     (see http://lists.denx.de/pipermail/u-boot/2009-March/049751.html),
6207     this patch enables soft_i2c on AT91SAM9263 SoC.
6208
6209     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
6210
6211 commit 396fd17338b9bf1f84f494ec1860427e18868ede
6212 Author: Peter Tyser <ptyser@xes-inc.com>
6213 Date:   Fri Oct 16 17:36:27 2009 -0500
6214
6215     Add 'true' and 'false' commands
6216
6217     These commands are only enabled when the hush shell is enabled and can
6218     be useful in scripts such as:
6219
6220     while true do
6221         echo "Booting OS...";
6222         run $bootcmd;
6223         echo "Booting OS failed";
6224         sleep 10;
6225     done
6226
6227     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6228
6229 commit 4e1ca93b6bae34b68be9280b43bf0289d994656c
6230 Author: Peter Tyser <ptyser@xes-inc.com>
6231 Date:   Fri Oct 16 17:36:26 2009 -0500
6232
6233     cmd_help: General cleanup
6234
6235     Shorten the overly-verbose help message of 'help' and clean up some
6236     redundant ifdefery while we're at it.
6237
6238     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6239
6240 commit 6b8f5ad10f567362a3682840f59ba0fc470af319
6241 Author: Peter Tyser <ptyser@xes-inc.com>
6242 Date:   Fri Oct 16 17:36:25 2009 -0500
6243
6244     command.c: Break commands out to appropriate cmd_*.c files
6245
6246     command.c should contain common code related to commands, not
6247     miscellaneous command implementations.
6248
6249     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6250
6251 commit fcffb680e77fcb48598d4a9944dbe2d4503170e0
6252 Author: Mike Frysinger <vapier@gentoo.org>
6253 Date:   Wed Oct 14 19:28:03 2009 -0400
6254
6255     sf: fix stmicro offset setup while erasing
6256
6257     Reported-by: Peter Gombos <gombos@protecta.hu>
6258     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6259
6260 commit d394a7795027d96ca55799df40bd5c4a13dbeebe
6261 Author: Jason McMullan <mcmullan@netapp.com>
6262 Date:   Fri Oct 9 17:12:23 2009 -0400
6263
6264     sf: new driver for Winbond W25X16/32/64 devices
6265
6266     Signed-off-by: Jason McMullan <jason.mcmullan@gmail.com>
6267     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6268
6269 commit cada315100c88894b85972a91309a6f2413966b6
6270 Author: Marcel Ziswiler <marcel@ziswiler.com>
6271 Date:   Thu Oct 1 23:55:17 2009 +0200
6272
6273     mpc8260: move FDT memory node fixup into common CPU code.
6274
6275     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
6276     Tested-by: Heiko Schocher <hs@denx.de>
6277
6278 commit f2cea405f83da46b72098ea874fb3eefe185d312
6279 Author: Po-Yu Chuang <ratbert.chuang@gmail.com>
6280 Date:   Wed Sep 23 15:52:35 2009 +0800
6281
6282     Add driver for FTRTC010 real time clock
6283
6284     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
6285
6286     Edited commit message.
6287     Signed-off-by: Wolfgang Denk <wd@denx.de>
6288
6289 commit c0356a88011330646e960dfac8a2c909bede3304
6290 Author: Mark Jackson <mpfj-list@mimc.co.uk>
6291 Date:   Mon Aug 17 16:42:52 2009 +0100
6292
6293     MIMC200: set default fbmem value
6294
6295     This patch adds a default bootargs "fbmem" value to the
6296     CONFIG_BOOTARGS string for the MIMC200 board.
6297
6298     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
6299
6300 commit 10a5a7991258019af155bc19b3b246aaa708b0e2
6301 Author: Sandeep Paulraj <s-paulraj@ti.com>
6302 Date:   Thu Nov 19 23:04:42 2009 -0500
6303
6304     NAND: Add Support for 4K page size in DaVinci NAND driver
6305
6306     This patch adds support for NAND devices with a page size of
6307     4K in the DaVinci NAND driver. The layout matches the layout that TI uses
6308     for 4K page size NAND devices in the kernel NAND driver.
6309
6310     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6311
6312 commit 14ce02c88116316a0285cc7d9c05f83367a5aae8
6313 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6314 Date:   Wed Nov 18 16:29:29 2009 +0100
6315
6316     ppc4xx: Remove unused features from PMC440 board support
6317
6318     This patch shrinks the PMC440 u-boot binary (from next branch)
6319     to fit into 384kB again.
6320
6321     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6322     Signed-off-by: Stefan Roese <sr@denx.de>
6323
6324 commit 629ab99b3b19c1b7e06a7c4e5d666138bc924c7c
6325 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6326 Date:   Wed Nov 18 16:28:42 2009 +0100
6327
6328     ppc4xx: Remove confusing comment
6329
6330     This is not the sequoia board.
6331
6332     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6333     Signed-off-by: Stefan Roese <sr@denx.de>
6334
6335 commit 79e2d8df3776b667257e609aefefa071b4fe13a2
6336 Author: Stefan Roese <sr@denx.de>
6337 Date:   Tue Nov 17 15:53:00 2009 +0100
6338
6339     ppc4xx: alpr: Remove some not needed commands to make image fit again
6340
6341     The latest changes in the u-boot/next branch increased the size of the
6342     alpr image a bit more. Now it doesn't fit into the 256k reserved for it.
6343     This patch now removes the commands "askenv" and "irq" which are not
6344     needed in the production systems.
6345
6346     Signed-off-by: Stefan Roese <sr@denx.de>
6347     Cc: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
6348
6349 commit 6c70049bd14e8e81764570732be7f34a89831f09
6350 Author: Stefan Roese <sr@denx.de>
6351 Date:   Thu Nov 12 17:19:37 2009 +0100
6352
6353     ppc4xx: Consolidate pci_master_init() function
6354
6355     This patch removes the duplicted implementations of the pci_master_init()
6356     function by introducing a weak default function for it. It can be
6357     overridden by a board specific version.
6358
6359     Signed-off-by: Stefan Roese <sr@denx.de>
6360
6361 commit a760b0203155da6fb8b8e9086169bb87d09d76fa
6362 Author: Stefan Roese <sr@denx.de>
6363 Date:   Thu Nov 12 16:41:09 2009 +0100
6364
6365     ppc4xx: Consolidate pci_pre_init() function
6366
6367     This patch removes the duplicted implementations of the pci_pre_init()
6368     function by introducing a weak default function for it. This weak default
6369     has a different implementation for some PPC variants. It can be
6370     overridden by a board specific version.
6371
6372     Signed-off-by: Stefan Roese <sr@denx.de>
6373
6374 commit 1095493a5d4c16f481a783f6f54d83ad0e07dfa0
6375 Author: Stefan Roese <sr@denx.de>
6376 Date:   Thu Nov 12 12:00:49 2009 +0100
6377
6378     ppc4xx: Consolidate pci_target_init() function
6379
6380     This patch removes the duplicted implementations of the pci_target_init()
6381     function by introducing a weak default function for it. This weak default
6382     has a different implementation for 440EP(x)/GR(x) PPC's. It can be
6383     overridden by a board specific version (e.g. PMC440, korat).
6384
6385     Signed-off-by: Stefan Roese <sr@denx.de>
6386     Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6387
6388 commit 5e1ded558b7cc28a62c14598f6437023b6262444
6389 Author: Hui.Tang <zetalabs@gmail.com>
6390 Date:   Wed Nov 18 16:24:04 2009 +0800
6391
6392     S3C2410 NAND Flash Add Missing Function
6393
6394     This patch add nand_read_buf() for S3C2410 NAND SPL.
6395     In nand_spl/nand_boot.c, nand_boot() will check nand->select_chip,
6396     so nand->select_chip should also be initialized.
6397
6398     Signed-off-by: Hui.Tang <zetalabs@gmail.com>
6399
6400 commit 6cd752f927e515e63a038fa363edceec5a59c028
6401 Author: Sandeep Paulraj <s-paulraj@ti.com>
6402 Date:   Mon Nov 16 13:32:01 2009 -0500
6403
6404     NAND: Update read_read_subpage API check
6405
6406     This patch updates a check condition in the NAND driver.
6407     The check condition is similat to what is in linux/next.
6408
6409     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6410
6411 commit bb3e9828e7fbcc9e4518e51592876f4a0997d9ec
6412 Author: Sandeep Paulraj <s-paulraj@ti.com>
6413 Date:   Mon Nov 16 13:31:47 2009 -0500
6414
6415     NAND:Extending the nand_ecclayout structure
6416
6417     NANDs with page size of lesser than and equal to 2K are
6418     reaching EOL. They are bing replaced with NANDs of
6419     page size 4K and above.
6420     To support this we have to extend the eccpos field
6421
6422     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6423
6424 commit 3ffc0d61bad7d986e344ce7062b37c5c8f04fb0e
6425 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6426 Date:   Tue Oct 27 19:58:09 2009 +0100
6427
6428     ppc4xx: Initialize magnetic coupler on VOM405 boards
6429
6430     This patch fixes an ugly behavior of the IL712 magnetic coupler
6431     as used on VOM405. These parts will remember their last state
6432     over a power cycle which might cause unwanted behavior.
6433
6434     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6435     Signed-off-by: Stefan Roese <sr@denx.de>
6436
6437 commit be0db3e3141c6c6b4e232b51091f35a284cc54e5
6438 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6439 Date:   Mon Oct 26 09:58:45 2009 +0100
6440
6441     ppc4xx: Initialize magnetic couplers in PLU405
6442
6443     This patch fixes an ugly behavior of the IL712 magnetic couplers
6444     as used on PLU405. These parts will remember their last state
6445     over a power cycle which might cause unwanted behavior.
6446
6447     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6448     Signed-off-by: Stefan Roese <sr@denx.de>
6449
6450 commit 067f54c66acd469870ef6946e1591bfcc02de1b3
6451 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6452 Date:   Mon Oct 26 09:55:40 2009 +0100
6453
6454     Add minimal SJA1000 header for basic CAN mode
6455
6456     This patch is in preparation for the upcoming PLU405 board fix.
6457
6458     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6459     Signed-off-by: Stefan Roese <sr@denx.de>
6460
6461 commit 1d2e96de56cc57e25a19bc40d297f36c4c4443a2
6462 Author: Dirk Behme <dirk.behme@googlemail.com>
6463 Date:   Mon Nov 2 20:36:26 2009 +0100
6464
6465     OMAP2/3: I2C: Add support for second and third bus
6466
6467     Add support to use second and third I2C bus, too.
6468
6469     Bus 0 is still the default, but by calling i2c_set_bus_num(1/2) before doing
6470     I2C accesses, code can switch to bus 1 and 2, too. Don't forget to switch
6471     back afterwards, then.
6472
6473     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
6474
6475 commit c758e947aa7d39a2be607ecdedd818ad300807b2
6476 Author: Amul Kumar Saha <amul.saha@samsung.com>
6477 Date:   Wed Nov 4 10:38:46 2009 +0530
6478
6479     ENV Variable support for Flex-OneNAND
6480
6481     Define and use CONFIG_ENV_ADDR_FLEX and CONFIG_ENV_SIZE_FLEX
6482     for storing environment variables.
6483
6484     Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
6485     Signed-off-by: Amul Kumar Saha <amul.saha@samsung.com>
6486
6487 commit cacbe919584193f64e74088e03f068e52775bb86
6488 Author: Amul Kumar Saha <amul.saha@samsung.com>
6489 Date:   Fri Nov 6 17:15:31 2009 +0530
6490
6491     Flex-OneNAND driver support
6492
6493     This patch adds support for Flex-OneNAND devices.
6494
6495     Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
6496     Signed-off-by: Amul Kumar Saha <amul.saha@samsung.com>
6497
6498 commit 35209cbceebe212a8c5ec17d552960f8bd4725f3
6499 Author: Mingkai Hu <Mingkai.hu@freescale.com>
6500 Date:   Tue Oct 20 16:58:17 2009 +0800
6501
6502     fsl_elbc_nand: remove the bbt descriptors relocation fixup
6503
6504     The commit 66372fe2 manually relocated the bbt pattern pointer,
6505     which can be removed by using full relocation.
6506
6507     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
6508
6509 commit 25643d4da257e51f6200b213c75de4fb5b345780
6510 Author: Mingkai Hu <Mingkai.hu@freescale.com>
6511 Date:   Tue Oct 20 16:58:16 2009 +0800
6512
6513     ppc/85xx: make boot from NAND full relocation to RAM
6514
6515     Take advantage of the latest full relocation commit of PPC platform
6516     for boot from NAND.
6517
6518     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
6519     Acked-by: Kumar Gala <galak@kernel.crashing.org>
6520
6521 commit 7e86661cd777eec1e81c5e57c468e81138fda983
6522 Author: David Brownell <dbrownell@users.sourceforge.net>
6523 Date:   Sat Nov 7 16:27:01 2009 -0500
6524
6525     NAND: fix "raw" reads with ECC syndrome layouts
6526
6527     The syndrome based page read/write routines store ECC, and possibly other
6528     "OOB" data, right after each chunk of ECC'd data.  With ECC chunk size of
6529     512 bytes and a large page (2KiB) NAND, the layout is:
6530
6531       data-0 OOB-0 data-1 OOB-1 data-2 OOB-2 data-3 OOB-3 OOB-leftover
6532
6533     Where OOBx is (prepad, ECC, postpad).  However, the current "raw" routines
6534     use a traditional layout -- data OOB, disregarding the prepad and postpad
6535     values -- so when they're used with that type of ECC hardware, those calls
6536     mix up the data and OOB.  Which means, in particular, that bad block
6537     tables won't be found on startup, with data corruption and related chaos
6538     ensuing.
6539
6540     The current syndrome-based drivers in mainline all seem to use one chunk
6541     per page; presumably they haven't noticed such bugs.
6542
6543     Fix this, by adding read/write page_raw_syndrome() routines as siblings of
6544     the existing non-raw routines; "raw" just means to bypass the ECC
6545     computations, not change data and OOB layout.
6546
6547     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6548     Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
6549     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
6550
6551 commit 5df3c2b62cebaa0ddb2817364f93726e5dbe3525
6552 Author: Sandeep Paulraj <s-paulraj@ti.com>
6553 Date:   Sat Nov 7 14:25:18 2009 -0500
6554
6555     NAND: Don't walk past end of oobfree[]
6556
6557     When computing oobavail from the list of free areas in the OOB,
6558     don't assume there will always be an unused slot at the end.
6559     This syncs up with the kernel NAND driver.
6560
6561     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6562
6563 commit 18b5a4b43af3c8359cb568f4fa32d6b9dcebbf26
6564 Author: Sandeep Paulraj <s-paulraj@ti.com>
6565 Date:   Sat Nov 7 14:25:03 2009 -0500
6566
6567     NAND: Update check condition for nand_read_page_hwecc API
6568
6569     The patch updates the check condition for determining
6570     whether the ECC corrections has failed.
6571     This makes it similar to what is in the kernel NAND driver.
6572
6573     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6574
6575 commit e25ee0396226fb56679702d0361cf2645504e7f6
6576 Author: Sandeep Paulraj <s-paulraj@ti.com>
6577 Date:   Sat Nov 7 14:24:50 2009 -0500
6578
6579     NAND: Updating comments/explanations in the NAND driver
6580
6581     Patch updates the comments and explanations for
6582     the arguments to various functions.
6583
6584     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6585
6586 commit aad4a28b2518e1d24ee606d9ea31f9b4dd029777
6587 Author: Sandeep Paulraj <s-paulraj@ti.com>
6588 Date:   Sat Nov 7 14:24:34 2009 -0500
6589
6590     NAND: Subpage shift for ecc_steps equal to 16
6591
6592     This was originally part of Thomas Gleixner's patch for
6593     adding support for 4KiB pages.
6594     This is not part of the U-Boot NAND driver so updating the
6595     driver with this to sync up with the kernel NAND driver.
6596
6597     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6598
6599 commit 36e0b98ec832bb5ec42d6e249058d5b84f75dff8
6600 Author: Sandeep Paulraj <s-paulraj@ti.com>
6601 Date:   Sat Nov 7 14:24:20 2009 -0500
6602
6603     NAND: Remove commented out code
6604
6605     Patch removes already commented out dead code
6606
6607     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6608
6609 commit 4f41e7ea1a17ba7207ca41379bf344b317e72c12
6610 Author: Sandeep Paulraj <s-paulraj@ti.com>
6611 Date:   Sat Nov 7 14:24:06 2009 -0500
6612
6613     NAND: Correct the "chip_shift" calculation
6614
6615     This patch updates the "chip_shift" calculation in the
6616     NAND driver. This is being done to sync up the NAND driver with
6617     the kernel NAND driver.
6618
6619     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6620
6621 commit aaa8eec532876c47acfd31bf9b573a00eaad92ae
6622 Author: Sandeep Paulraj <s-paulraj@ti.com>
6623 Date:   Fri Oct 30 13:51:23 2009 -0400
6624
6625     NAND: Update to support 64 bit device size
6626
6627     This patch adds support for NANDs greater than 2 GB.
6628     Patch is based on the MTD NAND driver in the kernel.
6629
6630     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6631     Signed-off-by: Scott Wood <scottwood@freescale.com>
6632
6633 commit 581d04f14d7a39b63d418e2a21e44101233096d1
6634 Author: Peter Tyser <ptyser@xes-inc.com>
6635 Date:   Thu Oct 15 10:48:18 2009 -0500
6636
6637     cmd_nand: Move conditional compilation to Makefile
6638
6639     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6640
6641 commit 9574fd63a97d080e379f30b6a81a1221eaeb797e
6642 Author: Peter Tyser <ptyser@xes-inc.com>
6643 Date:   Thu Oct 15 10:48:17 2009 -0500
6644
6645     cmd_nand: Remove duplicate include
6646
6647     Also remove vague, unnecessary comment
6648
6649     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6650
6651 commit cdbdbe65f5f006cba208accee5a126c659d4b867
6652 Author: Kumar Gala <galak@kernel.crashing.org>
6653 Date:   Fri Nov 13 08:52:21 2009 -0600
6654
6655     ppc/85xx: Fix how we determine the number of CAM entries
6656
6657     We were incorrectly use the max CAM size as the number of entries in
6658     the array for setting up the addrmap.  We should be using the NENTRY
6659     field which is the low 12-bits of TLB1CFG.
6660
6661     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6662
6663 commit fbd47b6753b08162436d9ccad1e63c8d43ede54c
6664 Author: Mike Rapoport <mike@compulab.co.il>
6665 Date:   Thu Nov 12 15:35:08 2009 +0200
6666
6667     smc911x: make smc911x_initialize return correct value
6668
6669     Make smc911x_initialize return -1 on error and number of interfaces
6670     detected otherwise.
6671
6672     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
6673     Acked-by: Mike Frysinger <vapier@gentoo.org>
6674     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6675
6676 commit c44efcf97b335dcef7d014f65b7d3094e79adb13
6677 Author: Mike Frysinger <vapier@gentoo.org>
6678 Date:   Thu Nov 12 22:26:02 2009 -0500
6679
6680     smc911x_eeprom: fix building after smc911x overhaul
6681
6682     When the smc911x driver was converted to NET_MULTI, the smc911x eeprom was
6683     missed.  The config option needed updating as well as overhauling of the
6684     rergister read/write functions.
6685
6686     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6687     Tested-by: Mike Rapoport <mike.rapoport@gmail.com>
6688     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6689
6690 commit 3ad95deb30ac73bd57e966d321215a17d3236f9f
6691 Author: Dave Liu <daveliu@freescale.com>
6692 Date:   Thu Nov 12 07:26:37 2009 +0800
6693
6694     fsl-ddr: Fix the chip-select interleaving issue
6695
6696     commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
6697     introduced one new bug to chip-select interleaving.
6698
6699     Single DDR controller also can do the chip-select
6700     interleaving if there is dual-rank or qual-rank DIMMs.
6701
6702     Signed-off-by: Dave Liu <daveliu@freescale.com>
6703     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6704
6705 commit 651ef90fa6ca824c8e581aeef9e04bbbe7f7e9ce
6706 Author: javier Martin <javier.martin@vista-silicon.com>
6707 Date:   Thu Oct 29 08:22:43 2009 +0100
6708
6709     mxc_fec: avoid free() calls to already freed pointers.
6710
6711     Sometimes, inside NetLoop, eth_halt() is called before eth_init() has
6712     been called. This is harmless except for free() calls to pointers
6713     which have not been allocated yet.
6714
6715     This patch initializes those pointers to NULL and allocates them only
6716     the first time. This way we can get rid of free calls in halt callback.
6717
6718     This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains.
6719
6720     Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
6721     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6722
6723 commit e8f1546a88b4ade6a910c4a7958a774ee1b40023
6724 Author: javier Martin <javier.martin@vista-silicon.com>
6725 Date:   Thu Oct 29 08:18:34 2009 +0100
6726
6727     mxc_fec: fix some erroneous PHY accesses.
6728
6729     This patch fixes erroneous access to the ethernet PHY which broke the driver.
6730     1. Selector field in the auto-negotiation register must be 0x00001 for
6731     using 802.3, not 0x00000 which is reseved.
6732     2. Access to the PHY address specified by CONFIG_FEC_MXC_PHYADDR, not
6733     0x0 fixed address.
6734
6735     This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains.
6736
6737     Now using proper defines for auto-negotiation register.
6738
6739     Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
6740     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6741
6742 commit f865fcbbb35851e75fee9c3a3fa8e0f71d9e6463
6743 Author: Ron Lee <ron@debian.org>
6744 Date:   Wed Aug 5 20:14:01 2009 +0200
6745
6746     ARM Don't inline weak symbols
6747
6748     ------------------------------------------------------------------------
6749
6750     GCC 4.4 complains about this now.
6751
6752     Signed-off-by: Ron Lee <ron@debian.org>
6753
6754 commit efe12bcec55c3d77b9ead56e62010d26b66781f3
6755 Author: Stefan Roese <sr@denx.de>
6756 Date:   Mon Nov 9 14:15:42 2009 +0100
6757
6758     ppc4xx: Katmai: Add chip_config command
6759
6760     This patch removes the Katmai "bootstrap" command and replaces it
6761     with the now common command "chip_config".
6762
6763     Signed-off-by: Stefan Roese <sr@denx.de>
6764
6765 commit cdaed5dc31f4023610f180fe158ec8c6f5e855a3
6766 Author: Stefan Roese <sr@denx.de>
6767 Date:   Mon Nov 9 14:13:43 2009 +0100
6768
6769     ppc4xx: Switch to I2C bus numer 0 for chip_config command
6770
6771     All currently available 4xx derivats have the I2C bootstrap EEPROM
6772     located on I2C bus number 0. This patch now first sets this bus number,
6773     so that the chip_config command also works for board with multiple
6774     I2C busses, like Katmai.
6775
6776     Signed-off-by: Stefan Roese <sr@denx.de>
6777
6778 commit 985edaccc4fbaef6d357d104aed08f839058a32f
6779 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6780 Date:   Tue Oct 27 12:19:11 2009 +0100
6781
6782     ppc4xx: Add UBI support to PLU405 boards
6783
6784     -add UBI support
6785     -increase malloc'able memory size
6786     -cleanup MONITOR|FLASH_BASE|LEN constants
6787
6788     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6789     Signed-off-by: Stefan Roese <sr@denx.de>
6790
6791 commit d14c7ec2b51fb92c4a5218b299b772c3d186510d
6792 Author: Ben Warren <biggerbadderben@gmail.com>
6793 Date:   Mon Nov 9 13:09:57 2009 -0800
6794
6795     Fix SMC91111 regression: lpd7a40x build failures
6796
6797     Both lpd7a400 and lpd7a404 failed to compile because they had
6798     CONFIG_SMC_USE_IOFUNCS defined:
6799
6800     examples/standalone/smc91111_eeprom.c:388: undefined reference to `SMC_outw'
6801
6802     Also removed an orphaned paren in lpd7a404.h
6803
6804     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6805
6806 commit 1031ae960ce6ce8332190278a06e2d72c2b2793e
6807 Author: Ben Warren <biggerbadderben@gmail.com>
6808 Date:   Mon Nov 9 14:01:08 2009 -0800
6809
6810     SMC91111: Clean up SMC_inx macros on xsengine and xaeniax
6811
6812     This patch fixes the following warnings:
6813
6814     Configuring for xaeniax board...
6815     smc91111_eeprom.c: In function 'print_macaddr':
6816     smc91111_eeprom.c:278: warning: suggest parentheses around + or - in operand of &
6817     smc91111_eeprom.c:281: warning: suggest parentheses around + or - in operand of &
6818     ...
6819     Configuring for xsengine board...
6820     smc91111_eeprom.c: In function 'print_macaddr':
6821     smc91111_eeprom.c:278: warning: suggest parentheses around + or - inside shift
6822     smc91111_eeprom.c:281: warning: suggest parentheses around + or - inside shift
6823
6824     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6825
6826 commit 830c7b6722c6a9762411bf52a7bf2fae4dc71dab
6827 Author: Ben Warren <biggerbadderben@gmail.com>
6828 Date:   Mon Nov 9 11:43:18 2009 -0800
6829
6830     Fix CS8900 regression on impa7 board
6831
6832     The following error was seen on impa7 board, due to its use of a 32-bit bus
6833     on CS8900.
6834     cs8900.c:137:37: error: macro "get_reg_init_bus" passed 2 arguments, but takes just 1
6835
6836     This patch gives the macro the correct number of arguments
6837
6838     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6839
6840 commit e5c5d9e0834bacf1c4787fa76cc4e369f2597cf5
6841 Author: Mike Frysinger <vapier@gentoo.org>
6842 Date:   Sun Nov 1 22:39:56 2009 -0500
6843
6844     clarify eth driver halt/recv steps
6845
6846     The dev->halt() func can be called at any time, and the dev->recv() func
6847     does not need to use NetRxPackets[] when calling NetReceive().
6848
6849     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6850     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6851
6852 commit 497ab0eec5e1e2dfccc141a4485cd6b940e1424a
6853 Author: Hui.Tang <zetalabs@gmail.com>
6854 Date:   Thu Nov 5 09:58:44 2009 +0800
6855
6856     Fix cs8900 dev->priv not init issue
6857
6858     Ensure all CS8900 data structures are assigned before accessing device
6859
6860     Signed-off-by: Hui.Tang <zetalabs@gmail.com>
6861     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6862
6863 commit 4fe5193d464ecdac26ddc71b1351be5b86bbff29
6864 Author: Stefan Roese <sr@denx.de>
6865 Date:   Tue Nov 3 14:34:45 2009 +0100
6866
6867     ppc4xx: 44x_spd_ddr2.c: Fix register macro ECCCR -> ECCES (SDRAM_ECCES)
6868
6869     This error only appears when DEBUG is enabled in this driver. That's why
6870     it went unnoticed till now.
6871
6872     Signed-off-by: Stefan Roese <sr@denx.de>
6873
6874 commit 916ed9444d3ab7b5cd6312557005f2a764a8baf7
6875 Author: Stefan Roese <sr@denx.de>
6876 Date:   Thu Oct 29 18:37:45 2009 +0100
6877
6878     ppc4xx: Canyonlands: Change EBC bus config to drive always (no high-z)
6879
6880     This patch fixes a problem only seen very occasionally on Canyonlands.
6881     The NOR flash interface (CFI driver) doesn't work reliably in all cases.
6882     Erasing and/or programming sometimes doesn't work. Sometimes with
6883     an error message, like "flash not erased" when trying to program an
6884     area that should have just been erased. And sometimes without any error
6885     messages. As mentioned above, this problem was only seen rarely and with
6886     some PLL configuration (CPU speed, EBC speed).
6887
6888     Now I spotted this problem a few times, when running my Canyonlands with
6889     the following setup (chip_config):
6890
6891     1000-nor         - NOR  CPU:1000 PLB: 200 OPB: 100 EBC: 100
6892
6893     Changing the EBC configuration to not release the bus into high
6894     impedance state inbetween the transfers (ATC, DTC and CTC bits set to 1
6895     in EBC0_CFG) seems to fix this problem. I haven't seen any failure
6896     anymore with this patch applied.
6897
6898     Signed-off-by: Stefan Roese <sr@denx.de>
6899     Cc: David Mitchell <dmitchell@amcc.com>
6900     Cc: Jeff Mann <MannJ@embeddedplanet.com>
6901
6902 commit 56f9b39d1f5d3c51e4b19792adb65bd93a8b6fcb
6903 Author: Stefan Roese <sr@denx.de>
6904 Date:   Mon Nov 9 13:01:19 2009 +0100
6905
6906     ppc4xx: Fix NAND booting targets after 4xx linker script consolidation
6907
6908     Somehow I missed the NAND booting targets in the 4xx linker script
6909     consolidation patchset. This patch fixes this issue.
6910
6911     Signed-off-by: Stefan Roese <sr@denx.de>
6912
6913 commit 9a81c61249d8361ed57d81f496121f3eb9c0eee8
6914 Author: Stefan Roese <sr@denx.de>
6915 Date:   Thu Oct 29 16:54:52 2009 +0100
6916
6917     ppc4xx: Remove duplicated is_pci_host() functions
6918
6919     This patch introduces a weak default function for is_pci_host(),
6920     returning 1. This is the default behaviour, since most boards only
6921     implement PCI host functionality. This weak default can be overridden
6922     by a board specific version if needed.
6923
6924     Signed-off-by: Stefan Roese <sr@denx.de>
6925
6926 commit b0b867462c569e7accd6f78c942cbab028116ecf
6927 Author: Stefan Roese <sr@denx.de>
6928 Date:   Thu Oct 29 15:04:35 2009 +0100
6929
6930     ppc4xx: Consolidate 4xx PCIe board specific configuration
6931
6932     This patch consolidates the PPC4xx board specific PCIe configuration
6933     code. This way the duplicated code is removed. Boards can implement a
6934     special, non standard behaviour (e.g. number of PCIe slots, etc) by
6935     overriding the weak default functions.
6936
6937     Signed-off-by: Stefan Roese <sr@denx.de>
6938
6939 commit 25793f76bf9a7be59c9415ef0f78d034e8d53dae
6940 Author: Remy Bohmer <linux@bohmer.net>
6941 Date:   Thu Oct 29 12:29:37 2009 +0100
6942
6943     ARM: Use Linux version for unaligned access code
6944
6945     The asm-arm/unaligned.h includes linux/unaligned/access_ok.h
6946     This file is unsafe to be used on ARM, since it does an unaligned memory
6947     accesses which fails on ARM.
6948
6949     Lookin at Linux the basic difference seems to be the header
6950     "include/asm-arm/unaligned.h". The Linux version of "unaligned.h"
6951     does *not* include "access_ok.h" at all. It includes "le_byteshift.h"
6952     and "be_byteshift.h" instead.
6953
6954     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6955     Signed-off-by: Stefan Roese <sr@denx.de>
6956     --
6957      include/asm-arm/unaligned.h            |    3 -
6958      include/linux/unaligned/be_byteshift.h |   70 +++++++++++++++++++++++++++++++++
6959      include/linux/unaligned/le_byteshift.h |   70 +++++++++++++++++++++++++++++++++
6960      3 files changed, 142 insertions(+), 1 deletion(-)
6961      create mode 100644 include/linux/unaligned/be_byteshift.h
6962      create mode 100644 include/linux/unaligned/le_byteshift.h
6963
6964 commit 6d6e7c53d5c75e5e24841c5506f4ed9d82adee09
6965 Author: Kumar Gala <galak@kernel.crashing.org>
6966 Date:   Wed Nov 4 18:02:10 2009 -0600
6967
6968     ppc/85xx: Fix inclusion of 83xx immap in 85xx builds
6969
6970     The nand_boot_fsl_elbc.c is shared between 83xx & 85xx however we should
6971     not be including the immap_83xx.h when building 85xx.  We can just get
6972     this all from common.h
6973
6974     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6975
6976 commit 107b579c75256212d4bf8b99ee8d68e0078f3646
6977 Author: Becky Bruce <beckyb@kernel.crashing.org>
6978 Date:   Wed Nov 4 17:34:04 2009 -0600
6979
6980     86xx: Remove redundant code in initdram
6981
6982     The same code exists both inside an #ifdef and outside of it.
6983     Remove the extra code for all the 86xx boards.
6984
6985     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
6986     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6987
6988 commit 715d8f7608f77c93f1807a032644893fd5b6d08b
6989 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
6990 Date:   Mon Nov 2 09:05:49 2009 -0600
6991
6992     fsl_pci_init_port end-point initialization is broken
6993
6994     commit 70ed869e broke fsl pcie end-point initialization.
6995     Returning 0 is not correct.  The function must return the first free
6996     bus number for the next controller.
6997
6998     fsl_pci_init() must still be called and a bus allocated even if the
6999     controller is an end-point.
7000
7001     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
7002     Acked-by: Vivek Mahajan <vivek.mahajan@freescale.com>
7003     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7004
7005 commit 01471d538fb163f472a769f21267d7676c91267c
7006 Author: Kumar Gala <galak@kernel.crashing.org>
7007 Date:   Wed Nov 4 01:29:04 2009 -0600
7008
7009     Revert "ppc/85xx/pci: fsl_pci_init: pcie agent mode support"
7010
7011     This reverts commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc.
7012
7013     There isn't any need to modify the API for fsl_pci_init_port to pass the
7014     status of host/agent(end-point) status.  We can determine that
7015     internally to fsl_pci_init_port.  Revert the patch that makes the API
7016     change.
7017
7018     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7019
7020 commit 2cd95a25cb0ee8218b271d23d64fb3f719ac5390
7021 Author: Stefan Roese <sr@denx.de>
7022 Date:   Tue Oct 27 16:20:05 2009 +0100
7023
7024     ppc4xx: Remove board specific linker scripts from most PPC4xx boards
7025
7026     All these linker scripts can be removed since the new common ppc4xx
7027     linker script should be able to handle all of those boards.
7028
7029     Please test and report problems. Thanks.
7030
7031     Signed-off-by: Stefan Roese <sr@denx.de>
7032
7033 commit 4649913ea5f440d756d150a6fdf2fb2e8ecb75fd
7034 Author: Stefan Roese <sr@denx.de>
7035 Date:   Tue Oct 27 16:11:26 2009 +0100
7036
7037     ppc4xx: Add common ppc4xx linker script
7038
7039     This linker script can be used by all PPC4xx platforms. It works for
7040     PPC405 and PPC440 platforms. Boards which need a board specific linker
7041     script can override this default linker script in board/*/config.mk.
7042
7043     Signed-off-by: Stefan Roese <sr@denx.de>
7044
7045 commit b1245dd3c6409c743f6c2768d00e909a4c8cc4ea
7046 Author: Stefan Roese <sr@denx.de>
7047 Date:   Tue Oct 27 16:16:13 2009 +0100
7048
7049     ppc4xx: Add custom linker script to board/*/config.mk
7050
7051     These boards have special linker scripts right now. We can't use the
7052     common 4xx linker script here. So overrride the linker script (LDSCRIPT)
7053     in board/*/config.mk and choose the board specific version.
7054
7055     Signed-off-by: Stefan Roese <sr@denx.de>
7056
7057 commit ceaa62a6f0237a8ddd2a5f659e6535fcd054332f
7058 Author: Stefan Roese <sr@denx.de>
7059 Date:   Tue Oct 27 15:57:24 2009 +0100
7060
7061     ppc4xx: Fix problems in some ppc4xx board Makefiles
7062
7063     Some 4xx Makefiles didn't add $(SOBJ) to their board library. This was
7064     no till now problem, since those boards included this object (init.o
7065     most of the time) directly from their linker scripts. This patch clean
7066     this up, so that all objects are now collected in the board library. This
7067     is in preparation for the upcoming PPC4xx linker script consolidation.
7068
7069     Signed-off-by: Stefan Roese <sr@denx.de>
7070
7071 commit a0ff1f129a0e1a466e4f8568fce12b7b84578e4c
7072 Author: Stefan Roese <sr@denx.de>
7073 Date:   Tue Oct 27 11:20:53 2009 +0100
7074
7075     ppc4xx: sc3: Remove unreferenced external declarations from sc3.h
7076
7077     Signed-off-by: Stefan Roese <sr@denx.de>
7078     Acked-by: Heiko Schocher <hs@denx.de>
7079
7080 commit 7ec1fedda6ac551c67f2214ced94e4b49b6680e4
7081 Author: Stefan Roese <sr@denx.de>
7082 Date:   Tue Oct 27 11:46:23 2009 +0100
7083
7084     mkconfig: Create board directory (CONFIG_BOARDDIR) in include/config.h
7085
7086     This patch extends the mkconfig script to automatically create a define
7087     for the board directory in include/config.h:
7088
7089     #define CONFIG_BOARDDIR board/amcc/canyonlands
7090
7091     This is needed for the upcoming PPC4xx linker script consolidation,
7092     where the PPC440 platforms need to include a board specific file in
7093     the common linker script.
7094
7095     Signed-off-by: Stefan Roese <sr@denx.de>
7096
7097 commit ff88229549e08fdd3f9127c1cc4db11a3576250f
7098 Author: Dave Liu <daveliu@freescale.com>
7099 Date:   Sat Oct 31 07:59:55 2009 +0800
7100
7101     ppc/85xx: Fix misc L2 cache enabling bug
7102
7103     We need loop-check the flash clear lock and enable bit for L2 cache.
7104
7105     Signed-off-by: Dave Liu <daveliu@freescale.com>
7106     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7107
7108 commit cd12f615e4dd1dd24caab93f4157894783c6c1c0
7109 Author: Wolfgang Grandegger <wg@denx.de>
7110 Date:   Fri Oct 23 12:03:16 2009 +0200
7111
7112     mpc52xx: add support for the IPEK01 board
7113
7114     This patch adds support for the board IPEK01 based on the MPC5200.
7115     The Futjitsu Lime graphics controller is configured in 16 bpp mode.
7116
7117     Signed-off-by: Wolfgang Grandegger <wg@denx.de>
7118
7119 commit 229b6dce675c729ee0ea2d7b61fbcda89b23b6b8
7120 Author: Wolfgang Grandegger <wg@denx.de>
7121 Date:   Fri Oct 23 12:03:15 2009 +0200
7122
7123     video: mb862xx: add option VIDEO_FB_16BPP_WORD_SWAP for IPEK01
7124
7125     In 16 bpp mode, the new IPEK01 board only requires swapping of D16 words
7126     for D32 accesses due to the diffferent connecting to the GDC bus. This
7127     patch introduces the configuration option VIDEO_FB_16BPP_WORD_SWAP,
7128     which should be set for all board using the mb862xx in 16 bpp mode. For
7129     the IPEK01, VIDEO_FB_16BPP_PIXEL_SWAP should not be set.
7130
7131     Signed-off-by: Wolfgang Grandegger <wg@denx.de>
7132
7133 commit 5d16ca87100ea58c93c46b9f0264981eaed49568
7134 Author: Anatolij Gustschin <agust@denx.de>
7135 Date:   Fri Oct 23 12:03:14 2009 +0200
7136
7137     video: mb862xx: add option CONFIG_VIDEO_MB862xx_ACCEL for 32bpp mode
7138
7139     The new IPEK01 board can use the 32 bpp mode for the Lime graphics
7140     controller. For this mode, video accelaration does not work. This patch
7141     makes the accelaration configurable via CONFIG_VIDEO_MB862xx_ACCEL,
7142     which is enabled for the lwmon5 and the socrates board for backward
7143     compatibility.
7144
7145     Signed-off-by: Anatolij Gustschin <agust@denx.de>
7146     Signed-off-by: Wolfgang Grandegger <wg@denx.de>
7147
7148 commit c28d3bbe963f4c57937d6fdc1dd63cd3562c147c
7149 Author: Wolfgang Grandegger <wg@denx.de>
7150 Date:   Fri Oct 23 12:03:13 2009 +0200
7151
7152     video: mb862xx: improve board-specific Lime configuration
7153
7154     To avoid board-specific code accessing the mb862xx registers directly,
7155     the public function mb862xx_probe() has been introduced. Furthermore,
7156     the "Change of Clock Frequency" and "Set Memory I/F Mode" registers
7157     are now defined by CONFIG_SYS_MB862xx_CCF and CONFIG_SYS_MB862xx__MMR,
7158     respectively. The BSPs for the socrates and lwmon5 boards have been
7159     adapted accordingly.
7160
7161     Signed-off-by: Wolfgang Grandegger <wg@denx.de>
7162
7163 commit 08ea550eef310e9d59d83f3cfd57a902373bf17f
7164 Author: Valentin Yakovenkov <yakovenkov@niistt.ru>
7165 Date:   Mon Oct 26 18:49:06 2009 -0400
7166
7167     new PCA9564 i2c bridge driver
7168
7169     Signed-off-by: Valentin Yakovenkov <yakovenkov@niistt.ru>
7170     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7171
7172 commit 08a1c6258c2a04cead33eac50d96ea89979dcb94
7173 Author: Mike Frysinger <vapier@gentoo.org>
7174 Date:   Wed Oct 14 19:27:27 2009 -0400
7175
7176     Blackfin: TWI/I2C: implement bus speed get/set functions
7177
7178     While we're here, improve the speed calculation a bit to match the HRM.
7179
7180     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7181
7182 commit 3814ea4f0002536ac592480b2cdafa319a16e329
7183 Author: Mike Frysinger <vapier@gentoo.org>
7184 Date:   Wed Oct 14 19:27:26 2009 -0400
7185
7186     Blackfin: TWI/I2C: add timeout to transfer
7187
7188     The current transfer code relies on ctrlc() to abort transfers, but this
7189     requires user interactivity.  Naturalize the process with a timeout.
7190
7191     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7192
7193 commit 59434fe243962758742af5cb8e2ced976e17c302
7194 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7195 Date:   Fri Oct 30 10:16:27 2009 +0900
7196
7197     sh: Update lowlevel_init.S of espt-giga
7198
7199     There was the point that did not use write macro.
7200     Change to write macro.
7201
7202     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7203
7204 commit f1cae1969d9e971fb72827a5731ce7e752464aa2
7205 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7206 Date:   Fri Oct 30 10:01:25 2009 +0900
7207
7208     sh: Move some defs to convince 'pcrel too far'
7209
7210     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7211     Signed-off-by: Takashi Yoshii <yoshii.takashi@gmail.com>
7212
7213 commit 0f9eaf4b323ea0ca95944b84c7465b81ba575514
7214 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7215 Date:   Thu Oct 15 13:36:34 2009 +0900
7216
7217     sh: Remove malloc_bin_reloc from lib_sh, lib_nios2 and lib_nios.
7218
7219     By "arm/microblaze/nios/nios2/sh: Remove relocation fixups"
7220     (commit: 0630535e2d062dd73c1ceca5c6125c86d1127a49", doesn't need
7221     malloc_bin_reloc function. This commit remove this.
7222
7223     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7224
7225 commit 0775437293a6963cb21244dfae6978cbf67c6bfe
7226 Author: Ben Warren <biggerbadderben@gmail.com>
7227 Date:   Wed Oct 21 21:53:39 2009 -0700
7228
7229     Fix DM9000 MAC address handling
7230
7231     Proper behavior is to pull MAC address from NVRAM in the initialization() an
7232     stuff it in dev->address, then program the device from dev->address in
7233     the init() function.
7234
7235     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7236
7237 commit 98d92d8c9f4021629a45261ad5ec3f3595f3a27a
7238 Author: Wolfgang Denk <wd@denx.de>
7239 Date:   Wed Oct 28 22:07:56 2009 +0100
7240
7241     sbc8349: fix incorrect comment
7242
7243     The comment for the BR0_PRELIM port size initialization incorrectly
7244     stated 32 bit, while it's actually 16 bit. The code is correct.
7245
7246     Reported-by: Guenter Koellner <guenter.koellner@nsn.com>
7247     Signed-off-by: Wolfgang Denk <wd@denx.de>
7248
7249 commit a38f85e180a30b6225808828ded1017b1a5418c6
7250 Author: Sandeep Paulraj <s-paulraj@ti.com>
7251 Date:   Wed Oct 28 11:05:03 2009 -0400
7252
7253     Fix Compliation warning for TNY-A9260 and TNY-A9G20
7254
7255     The patch fixes a compilation warning by defining
7256     CONFIG_SYS_64BIT_VSPRINTF in the config file
7257
7258     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7259
7260 commit 264e42ee54f1d322805d9068168fd362b413fd09
7261 Author: Sandeep Paulraj <s-paulraj@ti.com>
7262 Date:   Wed Oct 28 11:04:53 2009 -0400
7263
7264     Fix Compliation warning for SBC35-A9G20 board
7265
7266     The patch fixes a compilation warning by defining
7267     CONFIG_SYS_64BIT_VSPRINTF in the config file
7268
7269     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7270
7271 commit 353462f6ff9769091fb644d44d8025f20a4192d9
7272 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
7273 Date:   Wed Oct 28 09:37:33 2009 -0500
7274
7275     galaxy5200: Add default environment variables
7276
7277     Extend bootdelay to 10 seconds.  Set boot retry time to 120 seconds and use
7278     reset to retry.  Define default bootcommand and bootargs for production.
7279
7280     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
7281
7282 commit fa36ae790eb10ce70935f9a78f07703719dca422
7283 Author: Stefan Roese <sr@denx.de>
7284 Date:   Tue Oct 27 15:15:55 2009 +0100
7285
7286     cfi: Add weak default function for flash_cmd_reset()
7287
7288     Currently the CFI driver issues both AMD and Intel reset commands.
7289     This is because the driver doesn't know yet which chips are connected.
7290     This dual reset seems to cause problems with the M29W128G chips as
7291     reported by Richard Retanubun. This patch now introduces a weak default
7292     function for the CFI reset command, still with both resets. This can
7293     be overridden by a board specific version if necessary.
7294
7295     Signed-off-by: Stefan Roese <sr@denx.de>
7296     Cc: Richard Retanubun <RichardRetanubun@ruggedcom.com>
7297
7298 commit 4946775c6db52dba28f72ba3525764b54f1d4593
7299 Author: Wolfgang Denk <wd@denx.de>
7300 Date:   Wed Oct 28 00:49:47 2009 +0100
7301
7302     Coding Style cleanup; update CHANGELOG, prepare -rc1
7303
7304     Signed-off-by: Wolfgang Denk <wd@denx.de>
7305
7306 commit 246c69225c7b962d5c93e92282b78ca9fc5fefee
7307 Author: Peter Tyser <ptyser@xes-inc.com>
7308 Date:   Sun Oct 25 15:12:56 2009 -0500
7309
7310     Add 'editenv' command
7311
7312     The editenv command can be used to edit an environment variable.
7313     Editing an environment variable is useful when one wants to tweak an
7314     existing variable, for example fix a typo or change the baudrate in the
7315     'bootargs' environment variable.
7316
7317     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7318
7319 commit b0fa8e50632a628766db23f5c884ec63f1469552
7320 Author: Peter Tyser <ptyser@xes-inc.com>
7321 Date:   Sun Oct 25 15:12:55 2009 -0500
7322
7323     setenv(): Delete 0-length environment variables
7324
7325     Previously setenv() would only delete an environment variable if it
7326     was passed a NULL string pointer as a value.  It should also delete an
7327     environment variable when it encounters a valid string pointer of
7328     0-length.
7329
7330     This change/fix is generally useful and is necessary for the upcoming
7331     "editenv" command.
7332
7333     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7334
7335 commit ecc5500ee487170d8af6ff893fd1e0082380a01a
7336 Author: Peter Tyser <ptyser@xes-inc.com>
7337 Date:   Sun Oct 25 15:12:54 2009 -0500
7338
7339     readline(): Add ability to modify a string buffer
7340
7341     If the 'buf' parameter is a non-0-length string, its contents will be
7342     edited.  Previously, the initial contents of 'buf' were ignored and the
7343     user entered its contents from scratch.
7344
7345     This change is necessary to support the upcoming "editenv" command but
7346     could also be used for future commands which require a user to modify
7347     an existing string.
7348
7349     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7350
7351 commit f923943843cd617d681387e7fe81a48060cc6401
7352 Author: Peter Tyser <ptyser@xes-inc.com>
7353 Date:   Sun Oct 25 15:12:53 2009 -0500
7354
7355     cread_line(): Remove unused variables
7356
7357     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7358
7359 commit e491a71e578e93bd3b2f8f20d8ef8f111c98010d
7360 Author: Peter Tyser <ptyser@xes-inc.com>
7361 Date:   Sun Oct 25 15:12:52 2009 -0500
7362
7363     Check for NULL prompt in readline_into_buffer()
7364
7365     Previously, passing readline() or readline_into_buffer() a NULL 'prompt'
7366     parameter would result in puts() printing garbage when
7367     CONFIG_CMDLINE_EDITING was enabled.
7368
7369     Note that no board currently triggers this bug.  Enabling
7370     CONFIG_CMDLINE_EDITING on some boards (eg bab7xx) would result in
7371     the bug appearing.  This change is only intended to prevent someone
7372     from running into this issue in the future.
7373
7374     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7375
7376 commit 16d1c10783660f3fdbc3c19141f42f3b0d1834d3
7377 Author: Wolfgang Denk <wd@denx.de>
7378 Date:   Sun Oct 25 23:00:09 2009 +0100
7379
7380     drivers/net/phy/miiphybb.c: fix warning: no newline at end of file
7381
7382     Add missing newline.
7383
7384     Signed-off-by: Wolfgang Denk <wd@denx.de>
7385     Cc: Luigi Mantellini <luigi.mantellini@idf-hit.com>
7386     Cc: Ben Warren <biggerbadderben@gmail.com>
7387
7388 commit a747a7f31059b9069e97c78bba5496409c33aa05
7389 Author: Wolfgang Denk <wd@denx.de>
7390 Date:   Tue Oct 27 00:03:32 2009 +0100
7391
7392     Revert "env: only build env_embedded and envcrc when needed"
7393
7394     Breaks building on many boards, and no really clean fix available yet.
7395
7396     This reverts commit 6dab6add2d8ee80905234b326abc3de11be1d178.
7397
7398 commit 3fca80375981fe83d4674a0267183b469a1ea7ff
7399 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7400 Date:   Thu Oct 15 17:47:16 2009 +0400
7401
7402     mpc85xx: Configure QE USB for MPC8569E-MDS boards
7403
7404     Setup QE pin multiplexing for USB function, configure needed BCSRs
7405     and add some fdt fixups.
7406
7407     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7408     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7409
7410 commit 14809b6c21c89dd65abaf3fea7627fb5ea0f78a3
7411 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7412 Date:   Thu Oct 15 17:47:13 2009 +0400
7413
7414     mpc85xx: Configure QE UART for MPC8569E-MDS boards
7415
7416     To make QE UART usable by Linux we should setup pin multiplexing
7417     and turn UCC2 Ethernet node into UCC2 QE UART node.
7418
7419     Also, QE UART is mutually exclusive with UART0, so we can't enable
7420     it if eSDHC is in 4-bits mode on pilot boards, or if it's a prototype
7421     board with eSDHC in 1- or 4-bits mode.
7422
7423     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7424     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7425
7426 commit 70d665b1d230b9575a647948e8db3da1e6743e5c
7427 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7428 Date:   Thu Oct 15 17:47:11 2009 +0400
7429
7430     mpc85xx: Setup QE pinmux for SPI Flash on MPC8569E-MDS boards
7431
7432     SPI Flash (M25P40) is connected to the SPI1 bus, we need a few
7433     qe_iop entries to actually enable SPI1 on these boards.
7434
7435     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7436     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7437
7438 commit 65dec3b4599a17e83ec69dfd059e4ea1e795ef37
7439 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7440 Date:   Thu Oct 15 17:47:09 2009 +0400
7441
7442     mpc85xx: Setup SRIO memory region LAW for MPC8569E-MDS boards
7443
7444     This patch sets memory window for Serial RapidIO on MPC8569E-MDS
7445     boards.
7446
7447     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7448     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7449
7450 commit a29155e12286cc5ec2df72c1cab28e3659bfdad5
7451 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7452 Date:   Thu Oct 15 17:47:08 2009 +0400
7453
7454     mpc85xx: Add eLBC NAND support for MPC8569E-MDS boards
7455
7456     Simply add some defines, and adjust TLBe setup to include some
7457     space for eLBC NAND.
7458
7459     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7460     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7461
7462 commit 7f52ed5ef1b490da282ace3316be381a6abf96a5
7463 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7464 Date:   Thu Oct 15 17:47:06 2009 +0400
7465
7466     mpc85xx: Add eSDHC support for MPC8569E-MDS boards
7467
7468     eSDHC is mutually exlusive with UART0 (in 4-bits mode) and I2C2
7469     (in 1-bit mode). When eSDHC is used, we should switch u-boot console to
7470     UART1, and make the proper device-tree fixups.
7471
7472     Because of an erratum in prototype boards it is impossible to use eSDHC
7473     without disabling UART0 (which makes it quite easy to 'brick' the board
7474     by simply issung 'setenv hwconfig esdhc', and not able to interact with
7475     U-Boot anylonger).
7476
7477     So, but default we assume that the board is a prototype, which is a most
7478     safe assumption. There is no way to determine board revision from a
7479     register, so we use hwconfig.
7480
7481     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7482     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7483
7484 commit 48618126f78f05042dae428811809b594f747eb9
7485 Author: Peter Tyser <ptyser@xes-inc.com>
7486 Date:   Fri Oct 23 15:55:48 2009 -0500
7487
7488     xpedite5370: Enable multi-core support
7489
7490     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7491     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7492
7493 commit 5ccd29c3679b3669b0bde5c501c1aa0f325a7acb
7494 Author: Peter Tyser <ptyser@xes-inc.com>
7495 Date:   Fri Oct 23 15:55:47 2009 -0500
7496
7497     85xx: MP Boot Page Translation update
7498
7499     This change has 3 goals:
7500     - Have secondary cores be released into spin loops at their 'true'
7501       address in SDRAM.  Previously, secondary cores were put into spin
7502       loops in the 0xfffffxxx address range which required that boot page
7503       translation was always enabled while cores were in their spin loops.
7504
7505     - Allow the TLB window that the primary core uses to access the
7506       secondary cores boot page to be placed at any address.  Previously, a
7507       TLB window at 0xfffff000 was always used to access the seconary cores'
7508       boot page.  This TLB address requirement overlapped with other
7509       peripherals on some boards (eg XPedite5370).  By default, the boot
7510       page TLB will still use the 0xfffffxxx address range, but this can be
7511       overridden on a board-by-board basis by defining a custom
7512       CONFIG_BPTR_VIRT_ADDR.  Note that the TLB used to map the boot page
7513       remains in use while U-Boot executes.  Previously it was only
7514       temporarily used, then restored to its initial value.
7515
7516     - Allow Boot Page Translation to be disabled on bootup.  Previously,
7517       Boot Page Translation was always left enabled after secondary cores
7518       were brought out of reset.  This caused the 0xfffffxxx address range
7519       to somewhat "magically" be translated to an address in SDRAM.  Some
7520       boards may not want this oddity in their memory map, so defining
7521       CONFIG_MPC8xxx_DISABLE_BPTR will turn off Boot Page Translation after
7522       the secondary cores are initialized.
7523
7524     These changes are only applicable to 85xx boards with CONFIG_MP defined.
7525
7526     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7527     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7528
7529 commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc
7530 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
7531 Date:   Tue Oct 27 12:18:55 2009 +0530
7532
7533     ppc/85xx/pci: fsl_pci_init: pcie agent mode support
7534
7535     Originally written by Jason Jin and Mingkai Hu for mpc8536.
7536
7537     When QorIQ based board is configured as a PCIe agent, then unlock/enable
7538     inbound PCI configuration cycles and init a 4K inbound memory window;
7539     so that a PCIe host can access the PCIe agents SDRAM at address 0x0
7540
7541     * Supported in fsl_pci_init_port() after adding pcie_ep as a param
7542     * Revamped copyright in drivers/pci/fsl_pci_init.c
7543     * Mods in 85xx based board specific pci init after this change
7544
7545     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
7546     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7547
7548 commit 273a28ad9ef59dcfcd4c056ec1f61f1e0896cfaa
7549 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
7550 Date:   Tue Oct 27 09:36:38 2009 +0530
7551
7552     85xx/p1_p2_rdb: Fixing DDR configuration for 800MHz data rate
7553
7554     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
7555     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7556
7557 commit 924024c396761c267b948f38d78e9905f2036501
7558 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
7559 Date:   Tue Oct 27 09:26:55 2009 +0530
7560
7561     85xx/p1_p2rdb: Fix crash while configuring 32 bit DDR i/f for P1020RDB.
7562
7563     The data being modified was in NOR flash which caused the crash.
7564
7565     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
7566     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7567
7568 commit 2c0c58b92dbb68007061bdc0edd23bdf142efebf
7569 Author: Sergey Mironov <ierton@gmail.com>
7570 Date:   Wed Sep 23 16:47:38 2009 +0400
7571
7572     Fix bug in jumptable call stubs for SPARC.
7573
7574     Signed-off-by: Sergey Mironov <ierton@gmail.com>
7575     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
7576
7577 commit 3e303f748cf57fb23e8ec95ab7eac0074be50e2b
7578 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7579 Date:   Thu Oct 15 17:47:04 2009 +0400
7580
7581     fdt_support: Add multi-serial support for stdout fixup
7582
7583     Currently fdt_fixup_stdout() is using hard-coded CONFIG_CONS_INDEX
7584     constant. With multi-serial support, the CONS_INDEX may no longer
7585     represent actual console, so we should try to extract port number
7586     from the current stdio device name instead of always hard-coding the
7587     constant value.
7588
7589     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7590     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7591     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7592
7593 commit da0e5f7ee828f246d85997486fff308837069453
7594 Author: Leon Woestenberg <leon.woestenberg@gmail.com>
7595 Date:   Mon Oct 26 10:03:32 2009 +0100
7596
7597     ppc/85xx: Fix crashes due to generation of SPE instruction
7598
7599     U-Boot crashed on the last instruction:
7600
7601     int parse_stream_outer(struct in_str *inp, int flag)
7602     {
7603     effa4784:       94 21 ff 38     stwu    r1,-200(r1)
7604     effa4788:       7c 08 02 a6     mflr    r0
7605     effa478c:       42 9f 00 05     bcl-    20,4*cr7+so,effa4790 <parse_stream_outer+0xc>
7606     effa4790:       7d 80 00 26     mfcr    r12
7607     effa4794:       13 c1 b3 21     evstdd  r30,176(r1)
7608
7609     ...which is a  SPE instruction, although -mno-spe was used.
7610
7611     tmp/cross/ppce500v2/bin/powerpc-angstrom-linux-gnuspe-gcc --version
7612     powerpc-angstrom-linux-gnuspe-gcc (GCC) 4.3.3
7613
7614     Seems to be a known issue (since 2008-04?!)
7615
7616     Googled some, turns out this patch/workaround works for me on MPC8536DS.
7617
7618     See http://gcc.gnu.org/ml/gcc-patches/2008-04/msg00311.html for more info
7619
7620     Signed-off-by: Leon Woestenberg <leon@sidebranch.com>
7621     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7622
7623 commit 654ea1f3184235694306ddc5874baa27ad3018fe
7624 Author: Dave Liu <daveliu@freescale.com>
7625 Date:   Thu Oct 22 00:10:23 2009 -0500
7626
7627     ppc/85xx: Make L2 support more robust
7628
7629     According the user manual, we need loop-check the L2 enable bit set.
7630
7631     Signed-off-by: Dave Liu <daveliu@freescale.com>
7632     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7633
7634 commit 613ad28c3da4c7fc6336ef9d94993b25a5d0586e
7635 Author: Kumar Gala <galak@kernel.crashing.org>
7636 Date:   Mon Oct 26 21:21:25 2009 -0500
7637
7638     ppc/85xx: Fix compiler warning in nand_spl/.../p1_p2_rdb/nand_boot.c
7639
7640     nand_boot.c: In function 'board_init_f':
7641     nand_boot.c:44: warning: 'sys_clk' may be used uninitialized in this function
7642
7643     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7644
7645 commit e8967d96a0e8d09d91a3b7bd292746996dd8e7ac
7646 Author: Kumar Gala <galak@kernel.crashing.org>
7647 Date:   Mon Oct 26 21:18:33 2009 -0500
7648
7649     ppc/85xx: Fix building NAND_SPL out of tree
7650
7651     We need to source files to exist in the O=<FOO> nand_spl dir when
7652     we build out of tree.
7653
7654     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7655
7656 commit f3ee25859e3920ee7c7cc519a3e6f60d70d7a53f
7657 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
7658 Date:   Fri Oct 23 10:52:38 2009 +0200
7659
7660     License cleanup: Fix license header for some esd display configurations
7661
7662     These files were autogenerated by EPSON configuration tools.
7663     This patch replaces the autogenerated file headers by the GPL
7664     license notice.
7665
7666     This change is done with the explicit permission
7667     of Epson Research & Development / IC Software Development.
7668
7669     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
7670
7671 commit 4166ee58d30ada7b298b9c941067f0341c2dccbe
7672 Author: Mike Frysinger <vapier@gentoo.org>
7673 Date:   Fri Oct 9 17:12:44 2009 -0400
7674
7675     sf: add GPL-2 license info
7676
7677     Some of the new spi flash files were missing explicit license lines.
7678
7679     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7680     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7681
7682 commit d535a493004fb701f131b132402a7704f9c9342d
7683 Author: Kumar Gala <galak@kernel.crashing.org>
7684 Date:   Wed Oct 21 23:29:51 2009 -0500
7685
7686     fdt: Fix fdt padding issue for initrd mem_rsv
7687
7688     Its possible that we end up with a device tree that happens to be a
7689     particular size that after we call fdt_resize() we don't have any
7690     space left for the initrd mem_rsv.
7691
7692     Fix this be adding a second mem_rsv into the size calculation.  We
7693     had one to cover the fdt itself and we have the potential of adding
7694     a second for the initrd.
7695
7696     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7697     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7698
7699 commit 4bc3d2afb380e78fdbb9c501d9a8da6d59eb178e
7700 Author: Steve Sakoman <sakoman@gmail.com>
7701 Date:   Tue Oct 20 18:21:18 2009 +0200
7702
7703     ARM: OMAP3: Refactors the SM911x driver
7704
7705     Move the test up in the function to not hang on systems without ethernet.
7706
7707     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
7708     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7709
7710 commit f3807374787e4394efb767e2e8527887f57e51b8
7711 Author: Minkyu Kang <mk7.kang@samsung.com>
7712 Date:   Thu Oct 15 11:19:15 2009 +0900
7713
7714     s5pc1xx: SMDKC100: fix compile warnings
7715
7716     fix the following compile warnings
7717     warning: dereferencing type-punned pointer will break strict-aliasing rules
7718
7719     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
7720
7721 commit 8003c361deec3ee651451662efd05352f1abdd40
7722 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
7723 Date:   Tue Oct 6 08:44:22 2009 +0200
7724
7725     arm926ejs: 8-byte align stack to avoid LDRD/STRD problems
7726
7727     U-boot for Marvell Kirkwood boards no longer work after the EABI changes
7728     introduced in commit f772acf8a584067033eff1e231fcd1fb3a00d3d9. This
7729     turns out to be caused by a stack alignment issue. The armv5te
7730     instructions ldrd/strd instructions require 8-byte alignment to work
7731     properly (otherwise undefined behavior).
7732
7733     Tested on an OpenRD base board, where both printouts and ubifs stuff now
7734     works.
7735
7736     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
7737
7738 commit e63e5904b48528f3f3cc98317df6fc62fab25bf9
7739 Author: Tom Rix <Tom.Rix@windriver.com>
7740 Date:   Sat Oct 17 12:41:06 2009 -0500
7741
7742     TI OMAP3 SDP3430: Initial Support
7743
7744     Start of support of
7745     Texas Instruments Software Development Platform(SDP)
7746     for OMAP3430 - SDP3430
7747
7748     Highlights of this platform are:
7749     Flash Memory devices:
7750         Sibley NOR, Micron 8bit NAND and OneNAND
7751     Connectivity:
7752         3 UARTs and expanded 4 UART ports + IrDA
7753         Ethernet, USB
7754     Other peripherals:
7755         TWL5030 PMIC+Audio+Keypad
7756         VGA display
7757     Expansion ports:
7758         Memory devices plugin boards (PISMO)
7759         Connectivity board for GPS,WLAN etc.
7760     Completely configurable boot sequence and device mapping
7761     etc.
7762
7763     Support default jumpering and:
7764      - UART1/ttyS0 console(legacy sdp3430 u-boot)
7765      - UART3/ttyS2 console (matching other boards,
7766                  and SDP HW docs)
7767      - Ethernet
7768      - mmc0
7769      - NOR boot
7770
7771     Currently the UART1 is enabled by default.  for
7772     compatibility with other OMAP3 u-boot platforms,
7773     enable the #define of CONSOLE_J9.
7774
7775     Conflicts:
7776
7777         Makefile
7778
7779     Fixed the conflict with smdkc100_config by moving omap_sdp3430_config
7780     to it is alphabetically sorted location above zoom1.
7781
7782     Signed-off-by: David Brownell <david-b@pacbell.net>
7783     Signed-off-by: Nishanth Menon <nm@ti.com>
7784     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
7785
7786 commit a4474ff8629be5f28aefb8a9f48d4411d62fb0d2
7787 Author: Sandeep Paulraj <s-paulraj@ti.com>
7788 Date:   Tue Oct 13 19:35:11 2009 -0400
7789
7790     TI DaVinci: Adding Copyright for DM365 EVM
7791
7792     Forgot to add Copyright while submitting the patch.
7793     This patch adds the copyright.
7794
7795     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7796
7797 commit 11b0102218bbb50ac5c04f1521f2a22ed4e90cf1
7798 Author: Sandeep Paulraj <s-paulraj@ti.com>
7799 Date:   Tue Oct 13 12:32:32 2009 -0400
7800
7801     TI DaVinci: Fix DM6467 EVM Compilation Warning
7802
7803     Due to new TI boards being added to U-Boot, the hardware.h
7804     is getting very messy. The warning being fixed is due to
7805     the EMIF addresses being redefined.
7806
7807     The long term solution(after 2009.11) to this is to
7808     have SOC specific header files.
7809
7810     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7811
7812 commit fac1ef4ba685606bf28349d18e050ea08b50e669
7813 Author: Sandeep Paulraj <s-paulraj@ti.com>
7814 Date:   Tue Oct 13 12:01:52 2009 -0400
7815
7816     TI DaVinci: DM355 Leopard: Fix compilation warning
7817
7818     We get a compliation warning when we enable the NAND driver
7819     for DM355 leopard. The waring we get is that we have
7820     an implicit declaration of davinci_nand_init.
7821
7822     It is fixed by including the asm/arch/nand_defs.h header file
7823
7824     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7825
7826 commit f8a812aa656bc34622303a26fa5003d19c34aeed
7827 Author: Nishanth Menon <nm@ti.com>
7828 Date:   Tue Oct 13 12:49:55 2009 -0400
7829
7830     TI OMAP3: make gpmc_config as const
7831
7832     gpmc_config should not be a variant as it is board specific
7833     hence make it a const parameter
7834
7835     Fixes issues identified by Dirk:
7836     - build issue for zoom2
7837     - warnings for all other OMAP3 platforms using nand/onenand etc
7838
7839     Signed-off-by: Nishanth Menon <nm@ti.com>
7840
7841 commit cfc25874624a328f53ad59b1206e2103f2e62d74
7842 Author: Stefan Roese <sr@denx.de>
7843 Date:   Mon Oct 19 16:19:36 2009 +0200
7844
7845     ppc4xx: Sequoia: Add chip_config command
7846
7847     This patch removes the Sequoia "bootstrap" command and replaces it
7848     with the now common command "chip_config".
7849
7850     Please note that the patches with the dynamic PCI sync clock
7851     configuration have to be applied, before this one should go in.
7852     This is because Sequoia has 2 different bootstrap EEPROMs, and
7853     the old bootstrap command configured different values depending
7854     on the detected PCI async clock (33 vs. 66MHz). With the PCI sync
7855     clock patches, this is not necessary anymore. The PCI sync clock
7856     will be configured correctly on-the-fly now.
7857
7858     Signed-off-by: Stefan Roese <sr@denx.de>
7859
7860 commit c85b58397030e25e146ccf5085c86221c40c53b3
7861 Author: Stefan Roese <sr@denx.de>
7862 Date:   Mon Oct 19 14:14:08 2009 +0200
7863
7864     ppc4xx: Yosemite/Yellowstone: Check and reconfigure the PCI sync clock
7865
7866     This patch now uses the 440EP(x)/GR(x) function to check and dynamically
7867     reconfigure the PCI sync clock.
7868
7869     Signed-off-by: Stefan Roese <sr@denx.de>
7870
7871 commit 23c51a2d6393cd3be9eb62cb42d92138ff6db8a9
7872 Author: Stefan Roese <sr@denx.de>
7873 Date:   Mon Oct 19 14:10:50 2009 +0200
7874
7875     ppc4xx: Sequoia/Rainer: Check and reconfigure the PCI sync clock
7876
7877     This patch now uses the 440EP(x)/GR(x) function to check and dynamically
7878     reconfigure the PCI sync clock.
7879
7880     Signed-off-by: Stefan Roese <sr@denx.de>
7881
7882 commit 08c6a2628478ace808b3767db17e4148cac5a7fb
7883 Author: Stefan Roese <sr@denx.de>
7884 Date:   Mon Oct 19 14:44:11 2009 +0200
7885
7886     ppc4xx: Print PCI synchronous clock frequency upon bootup
7887
7888     Some 4xx variants (e.g. 440EP(x)/GR(x)) have an internal
7889     synchronous PCI clock. Knowledge about the currently configured
7890     value might be helpful. So let's print it out upon bootup.
7891
7892     Signed-off-by: Stefan Roese <sr@denx.de>
7893
7894 commit 5e47f9535f53fd4cc05f32fb6166870f976fbb4e
7895 Author: Stefan Roese <sr@denx.de>
7896 Date:   Mon Oct 19 14:06:23 2009 +0200
7897
7898     ppc4xx: Add function to check and dynamically change PCI sync clock
7899
7900     PPC440EP(x)/PPC440GR(x):
7901     In asynchronous PCI mode, the synchronous PCI clock must meet
7902     certain requirements. The following equation describes the
7903     relationship that must be maintained between the asynchronous PCI
7904     clock and synchronous PCI clock. Select an appropriate PCI:PLB
7905     ratio to maintain the relationship:
7906
7907     AsyncPCIClk - 1MHz <= SyncPCIclock <= (2 * AsyncPCIClk) - 1MHz
7908
7909     This patch now adds a function to check and reconfigure the sync
7910     PCI clock to meet this requirement. This is in preparation for
7911     some AMCC boards (Sequoia/Rainier and Yosemite/Yellowstone) using this
7912     function to not violate the PCI clocking rules.
7913
7914     Signed-off-by: Stefan Roese <sr@denx.de>
7915
7916 commit 92b8964bed0d1b779d9e26be4e16755b5c635415
7917 Author: Stefan Roese <sr@denx.de>
7918 Date:   Fri Oct 16 10:01:09 2009 +0200
7919
7920     ppc4xx: Update flash size in reg property of the NOR flash node
7921
7922     Till now only the ranges in the ebc node are updated with the values
7923     currently configured in the PPC4xx EBC controller. With this patch now
7924     the NOR flash size is updated in the device tree blob as well. This is
7925     done by scanning the compatible nodes "cfi-flash" and "jedec-flash"
7926     for the correct chip select number.
7927
7928     This size fixup is enabled for all AMCC eval board right now. Other
7929     4xx boards may want to enable it as well, if this problem with multiple
7930     NOR FLASH sizes exists.
7931
7932     Signed-off-by: Stefan Roese <sr@denx.de>
7933     Cc: Wolfgang Denk <wd@denx.de>
7934
7935 commit 30d45c0d3ea2231f9131276ea113595959a0720e
7936 Author: Stefan Roese <sr@denx.de>
7937 Date:   Wed Oct 21 11:59:52 2009 +0200
7938
7939     fdt: Add fdt_fixup_nor_flash_size() to fixup NOR FLASH size in dtb
7940
7941     This function can be used to update the size in the "reg" property
7942     of the NOR FLASH device nodes. This is necessary for boards with
7943     non-fixed NOR FLASH sizes.
7944
7945     Signed-off-by: Stefan Roese <sr@denx.de>
7946     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7947     Acked-by: Wolfgang Denk <wd@denx.de>
7948
7949 commit 76706cb86b1c76954ff5353db6757ab99cfd95fb
7950 Author: Wolfgang Denk <wd@denx.de>
7951 Date:   Tue Oct 20 23:12:13 2009 +0200
7952
7953     cpu/ppc4xx/fdt.c: avoid strcpy() to constant string
7954
7955     strcpy() was iused with the target address being a pointer to a
7956     constant string, which potentially is read-only. Use a (writable)
7957     array of characters instead.
7958
7959     Signed-off-by: Wolfgang Denk <wd@denx.de>
7960     Signed-off-by: Stefan Roese <sr@denx.de>
7961
7962 commit 0e1ac981194aa0d92eff0934442cec48a4f57834
7963 Author: Wolfgang Denk <wd@denx.de>
7964 Date:   Tue Oct 20 23:07:04 2009 +0200
7965
7966     cpu/ppc4xx/fdt.c: avoid strcpy() to constant string
7967
7968     strcpy() was iused with the target address being a pointer to a
7969     constant string, which potentially is read-only. Use a (writable)
7970     array of characters instead.
7971
7972     Signed-off-by: Wolfgang Denk <wd@denx.de>
7973
7974 commit c55096c084308c08bf8891c190f90bdc3a232394
7975 Author: Daniel Mack <daniel@caiaq.de>
7976 Date:   Wed Apr 8 13:23:38 2009 +0200
7977
7978     smc911x: add support for LAN9220
7979
7980     Signed-off-by: Daniel Mack <daniel@caiaq.de>
7981     Cc: Sascha Hauer <s.hauer@pengutronix.de>
7982     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7983
7984 commit f67066b6b0740b826ed862615c5ab022aaf4779a
7985 Author: Mike Frysinger <vapier@gentoo.org>
7986 Date:   Sun Oct 18 20:43:14 2009 -0400
7987
7988     envcrc: check return value of fwrite()
7989
7990     Newer toolchains will often complain about unchecked fwrite():
7991         envcrc.c:117: warning: ignoring return value of `fwrite´, declared
7992                 with attribute warn_unused_result
7993
7994     So check the return value to silence the warnings.
7995
7996     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7997
7998 commit efd988ebaa241bab265b1511052350207cb7aaa0
7999 Author: Wolfgang Denk <wd@denx.de>
8000 Date:   Mon Oct 19 09:18:57 2009 +0200
8001
8002     mcc200: fix build error
8003
8004     Fix compile error:
8005     include/configs/mcc200.h:401:6: error: #elif with no expression
8006
8007     Signed-off-by: Wolfgang Denk <wd@denx.de>
8008
8009 commit 4e0539d2696992a5e32643a0c831e870cfe9a036
8010 Author: Nishanth Menon <nm@ti.com>
8011 Date:   Tue Oct 13 12:47:39 2009 -0400
8012
8013     OMAP3: fix warnings when NAND/ONENAND is not used
8014
8015     Fix build warnings by putting specific used variables
8016     under required #ifdefs for removing:
8017     mem.c:227: warning: unused variable 'f_sec'
8018     mem.c:226: warning: unused variable 'f_off'
8019     mem.c:225: warning: unused variable 'size'
8020     mem.c:224: warning: unused variable 'base'
8021     mem.c:222: warning: unused variable 'gpmc_config'
8022
8023     Signed-off-by: Nishanth Menon <nm@ti.com>
8024
8025 commit 73db0c71da365a2d101878ae3aeb8ff3545a1828
8026 Author: Nishanth Menon <nm@ti.com>
8027 Date:   Tue Oct 13 12:47:24 2009 -0400
8028
8029     OMAP3: export enable_gpmc_cs_config to board files
8030
8031     Export enable_gpmc_cs_config into common header to
8032     prevent warning:
8033
8034     warning: implicit declaration of function 'enable_gpmc_cs_config'
8035
8036     Signed-off-by: Nishanth Menon <nm@ti.com>
8037
8038 commit 96a27c6dc29abf11740632ecd8ccab607b209c5d
8039 Author: Tom Rix <Tom.Rix@windriver.com>
8040 Date:   Mon Oct 12 12:07:40 2009 -0400
8041
8042     Zoom2 Fix serial gpmc setup
8043
8044     The offset to the chip select is incorrect.
8045
8046     The change 187af954cf7958c24efcf0fd62289bbdb4f1f24e,
8047
8048     omap3: embedd gpmc_cs into gpmc config struct
8049
8050     introduced a problem with the serial gpmc setup.
8051
8052     This patch reverts the chip select to its previous value.
8053
8054     The symptoms of this problem are that the Zoom2
8055     currently hangs.
8056
8057     This was run tested on Zoom2.
8058
8059     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8060
8061 commit 64d945abe8cffbacdaeca5f63b9b84f895d2d9ab
8062 Author: Sandeep Paulraj <s-paulraj@ti.com>
8063 Date:   Sun Oct 11 09:10:27 2009 -0400
8064
8065     TI DaVinci Sonata: Add Config option for 64 bit Support
8066
8067     Adding the CONFIG_SYS_64BIT_VSPRINTF fot the DM644x based Sonata
8068     Without this option enabled while performing NAND operations we will get
8069     wrong diagnostic messages.
8070     Example if the MTD NAND driver find a bad block while erasing from
8071     a certain address, it will say bad block skipped at 0x00000000.
8072
8073     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8074
8075 commit 54aa603d2ce1d9374a1f5c6336362037ad2d8b51
8076 Author: Sandeep Paulraj <s-paulraj@ti.com>
8077 Date:   Sun Oct 11 09:14:58 2009 -0400
8078
8079     TI DaVinci DVEVM: Add Config option for 64 bit Support
8080
8081     Adding the CONFIG_SYS_64BIT_VSPRINTF in the DVEVM config.
8082     Without this option enabled while performing NAND operations we will get
8083     wrong diagnostic messages.
8084     Example if the MTD NAND driver find a bad block while erasing from
8085     a certain address, it will say bad block skipped at 0x00000000.
8086
8087     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8088
8089 commit b8d0aa0c78b8c0fa51acada3c486b81085924b53
8090 Author: Sandeep Paulraj <s-paulraj@ti.com>
8091 Date:   Sat Oct 10 10:19:20 2009 -0400
8092
8093     TI DaVinci DM365: Add Config option for 64 bit Support
8094
8095     Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM365 EVM config.
8096     Without this option enabled while performing NAND operations we will get
8097     wrong diagnostic messages.
8098     Example if the MTD NAND driver find a bad block while erasing from
8099     a certain address, it will say bad block skipped at 0x00000000.
8100
8101     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8102
8103 commit 86a725b9c8b829c217be90e590f3ca2c91fa1dca
8104 Author: Sandeep Paulraj <s-paulraj@ti.com>
8105 Date:   Sat Oct 10 10:18:46 2009 -0400
8106
8107     TI DaVinci DM355: Add Config option for 64 bit Support
8108
8109     Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM355 EVM config.
8110     Without this option enabled while performing NAND operations we will get
8111     wrong diagnostic messages.
8112     Example if the MTD NAND driver find a bad block while erasing from
8113     a certain address, it will say bad block skipped at 0x00000000.
8114
8115     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8116
8117 commit 9c44ddccb6602f620fc037974f3e4468ad8a7c0c
8118 Author: Sandeep Paulraj <s-paulraj@ti.com>
8119 Date:   Wed Sep 9 11:50:40 2009 -0400
8120
8121     TI: OMAP3: Remove SZ_xx references
8122
8123     This patch removes dependency on the sizes.h header file
8124     and removes all references to SZ_xx.
8125
8126     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8127
8128 commit 13d2cb988ff07addce6e10ab2cb8965a9dd23c63
8129 Author: Steve Sakoman <sakoman@gmail.com>
8130 Date:   Sat Oct 10 14:29:37 2009 -0400
8131
8132     OMAP3: Update Overo and Beagle environment
8133
8134     Update default environment to support new kernel DSS2 subsystem and
8135     simplify rootfs type and location changes.
8136
8137     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
8138     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8139
8140 commit c73607c5525c6957c815e64f7e865fdd3baffe98
8141 Author: Sandeep Paulraj <s-paulraj@ti.com>
8142 Date:   Sat Oct 10 13:46:26 2009 -0400
8143
8144     TI DaVinci: Maintainer for DM355 and DM365 EVM
8145
8146     Adding entries to the MAINTAINERS directory for the
8147     DM355 and DM365 EVM.
8148
8149     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8150
8151 commit 5df65cf56aeef9fdeab83a259c37aa7d23836dd3
8152 Author: Sandeep Paulraj <s-paulraj@ti.com>
8153 Date:   Sat Oct 10 13:37:10 2009 -0400
8154
8155     TI: DaVinci: DM355 Leopard board support
8156
8157     This patch adds support for the leopard board which is
8158     based on the DM355 SOC.
8159
8160     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8161
8162 commit 6ab176d7091d21960a1bd89fcb7fd87b9e91aca1
8163 Author: Sandeep Paulraj <s-paulraj@ti.com>
8164 Date:   Sat Oct 10 12:00:47 2009 -0400
8165
8166     TI DaVinci DM646x: Adding initial support for DM6467 EVM
8167
8168     This patch adds the initial support for DM6467 EVM.
8169     Other features like NET and NAND support will be added as follow up patches.
8170
8171     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8172
8173 commit d884f64a7b8482f6c9688600e0a4731fa5678e0c
8174 Author: Sandeep Paulraj <s-paulraj@ti.com>
8175 Date:   Thu Oct 1 20:22:09 2009 -0400
8176
8177     TI DaVinci DM365: Fix Compilation warning for DM365 EVM
8178
8179     This patch fixes a compilation warning while compiling
8180     the DM365 EVM.
8181
8182     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8183
8184 commit 6fe5e87be4b944edf428835210056e020c8bb794
8185 Author: Sandeep Paulraj <s-paulraj@ti.com>
8186 Date:   Thu Oct 1 20:21:13 2009 -0400
8187
8188     TI DaVinci DM355: Fix Compilation warning for DM355 EVM
8189
8190     This patch fixes a compilation warning while compiling
8191     the DM355 EVM.
8192
8193     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8194
8195 commit 513bbe1b1720682e6de0aba2d9db5e60f3a428bb
8196 Author: Eric Benard <eric@eukrea.com>
8197 Date:   Mon Oct 12 10:15:39 2009 +0200
8198
8199     AT91 CPUAT91 Fix compiler warning
8200
8201     This change fixes the compiler warning
8202
8203     main.c: In function 'abortboot':
8204     main.c:122: warning: too few arguments for format
8205
8206     Signed-off-by: Eric Benard <eric@eukrea.com>
8207     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8208
8209 commit b1e81f701d044eee3884202b127d5d1f0668bdb9
8210 Author: Eric Benard <eric@eukrea.com>
8211 Date:   Mon Oct 12 10:15:40 2009 +0200
8212
8213     AT91 CPU9260 CPU9G20 Fix compile warnings
8214
8215     This change fixes the compiler warning
8216
8217     nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF
8218       for correct output!
8219
8220     Signed-off-by: Eric Benard <eric@eukrea.com>
8221     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8222
8223 commit 94d50c527a3cedb6a41fbe6773256cdd1855317f
8224 Author: Eric Benard <eric@eukrea.com>
8225 Date:   Mon Oct 12 10:08:20 2009 +0200
8226
8227     AT91 CPU9260 Fix machine ID when using a CPU9G20.
8228
8229     Signed-off-by: Eric Benard <eric@eukrea.com>
8230     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8231
8232 commit 8c0a92c8f4cf399e873c2611939f3617983785a9
8233 Author: Alessandro Rubini <rubini@unipv.it>
8234 Date:   Sat Oct 10 11:51:26 2009 +0200
8235
8236     lcd: remove '#if 0' 32-bit scroll, now memcpy does it
8237
8238     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8239     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8240
8241 commit e3ea948d4588e7efddbf0ee92147d93f827d7cea
8242 Author: Alessandro Rubini <rubini@unipv.it>
8243 Date:   Sat Oct 10 11:51:16 2009 +0200
8244
8245     lib_generic memset: fill one word at a time if possible
8246
8247     If the destination is aligned, fill ulong values until possible.
8248     Then fill remaining part by byte.
8249
8250     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8251     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8252     Acked-by: Mike Frysinger <vapier@gentoo.org>
8253
8254 commit ecd830b863e5c6ac5d804d3b3a92453a98d526fc
8255 Author: Alessandro Rubini <rubini@unipv.it>
8256 Date:   Sat Oct 10 11:51:05 2009 +0200
8257
8258     lib_generic memcpy: copy one word at a time if possible
8259
8260     If source and destination are aligned, this copies ulong values
8261     until possible, trailing part is copied by byte. Thanks for the details
8262     to Wolfgang Denk, Mike Frysinger, Peter Tyser, Chris Moore.
8263
8264     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8265     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8266     Acked-by: Mike Frysinger <vapier@gentoo.org>
8267
8268 commit 9c5586aa19bbedf290d2a663813404d2db87dfa5
8269 Author: Alessandro Rubini <rubini@unipv.it>
8270 Date:   Thu Oct 8 14:29:14 2009 +0200
8271
8272     setenv: do console redirection even if previously unset
8273
8274     If "stdout" is not previously set, doing "setenv stdout lcd" had no
8275     effect, since console redirection only worked if the environment
8276     variable was already set; the second time you run setenv it worked.
8277     Most default environments lack stdin/out/err definitions, so I'm sure
8278     I'm not alone with this problem.
8279
8280     This patch simply moves a block of code out of a conditional, to do
8281     the same work even if the variable was previously unset.
8282
8283     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8284     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8285
8286 commit c9ee39972a7758e883b73c6c0e3c3a14cd5b2f43
8287 Author: Martha Stan <mmarx@silicontkx.com>
8288 Date:   Wed Oct 7 04:38:46 2009 -0400
8289
8290     mpc512x: fix System Clock Control constants for USB1 & USB2
8291
8292     Signer-off-by: Martha Stan <mmarx@silicontkx.com>
8293
8294 commit 87b22b7787f397fc3daad570d711e478b1a7d253
8295 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
8296 Date:   Fri Oct 2 18:18:33 2009 -0400
8297
8298     mem_mtest: fix error reporting, allow escape with ^C
8299
8300     The basic memtest function tries to watch for ^C after each
8301     pattern pass as an escape mechanism, but if things are horribly
8302     wrong, we'll be stuck in an inner loop flooding the console with
8303     error messages and never check for ^C.  To make matters worse,
8304     if the user waits for all the error messages to complete, we
8305     then incorrectly report the test passed without errors.
8306
8307     Adding a check for ^C after any error is printed will give
8308     the end user an escape mechanism from a console flood without
8309     slowing down the overall test speed on a slow processor.
8310
8311     Also, the more extensive memtest quit after just a single error,
8312     which is inconsistent with the normal memtest, and not useful if
8313     if you are doing dynamic environmental impact testing, such as
8314     heating/cooling etc.
8315
8316     Both tests now track the error count and report it properly
8317     at test completion.
8318
8319     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
8320     Acked-by: Mike Frysinger <vapier@gentoo.org>
8321
8322 commit 9f4a420663419dc13f08a0ce65b93033c6172c69
8323 Author: Mike Frysinger <vapier@gentoo.org>
8324 Date:   Thu Oct 1 12:11:54 2009 -0400
8325
8326     new default shortcut to config & build a board
8327
8328     The majority of the time that I build things in U-Boot, I want to just
8329     build for the board.  I don't make board config tweaks after selecting the
8330     board.  So add a new pattern rule that allows people to combine two steps
8331     in one go:
8332         `make foo_config && make` => `make foo`
8333
8334     This shouldn't conflict with any existing make rules as the pattern rule
8335     is used only the rule doesn't already exist.
8336
8337     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8338
8339 commit 6dab6add2d8ee80905234b326abc3de11be1d178
8340 Author: Mike Frysinger <vapier@gentoo.org>
8341 Date:   Wed Sep 30 15:29:58 2009 -0400
8342
8343     env: only build env_embedded and envcrc when needed
8344
8345     The env code is protected by the ENV_IS_EMBEDDED define, so attempting to
8346     compile the code when this isn't defined is pointless.  Now that the env
8347     headers have unified around CONFIG_ENV_IS_EMBEDDED, convert the build
8348     system to only build the env objects when this is enabled.  And now that
8349     the env code is conditionally compiled, we can drop the source code checks.
8350
8351     For people who want to extract the environment manually, add a new option
8352     CONFIG_BUILD_ENVCRC that only enables the envcrc utility.
8353
8354     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8355
8356 commit 78f4ca7976748159080c9d920d5eb542d1b32d4f
8357 Author: Daniel Mack <daniel@caiaq.de>
8358 Date:   Mon Sep 28 11:40:38 2009 +0200
8359
8360     part_dos: check status flags of partitions
8361
8362     Only read partitions which have 0x00 or 0x80 set in their status field.
8363     All others are invalid.
8364
8365     Signed-off-by: Daniel Mack <daniel@caiaq.de>
8366
8367 commit 45def0ab9d1dedcd2a73939aad8373f760498762
8368 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
8369 Date:   Fri Sep 25 17:47:43 2009 -0500
8370
8371     galaxy5200: change cs1 configuration
8372
8373     Correct the chip select configuration for the nand flash chip select.
8374
8375     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
8376
8377 commit 7936b51165b519a16ecf3db302fb88df8b8b3b3d
8378 Author: Niklaus Giger <niklaus.giger@netstal.com>
8379 Date:   Wed Sep 23 08:12:14 2009 +0200
8380
8381     Cleanup: use constant
8382
8383     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
8384
8385 commit 7120c888101952b7e61b9e54bb42370904aa0e68
8386 Author: Kim Phillips <kim.phillips@freescale.com>
8387 Date:   Mon Oct 12 11:06:19 2009 -0500
8388
8389     mpc83xx: mpc8313 - handle erratum IPIC1 (TSEC IRQ number swappage)
8390
8391     mpc8313e erratum IPIC1 swapped TSEC interrupt ID numbers on rev. 1
8392     h/w (see AN3545).  The base device tree in use has rev. 1 ID numbers,
8393     so if on Rev. 2 (and higher) h/w, we fix them up here.
8394
8395     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
8396     Reviewed-by: Roland Lezuo <roland.lezuo@chello.at>
8397
8398 commit 91525c67153fcf2c19b2fc8d9c6376ac1a019f52
8399 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
8400 Date:   Mon Oct 12 23:55:39 2009 +0400
8401
8402     mpc85xx: Fix booting on various boards
8403
8404     commit 0e870980a64584a591af775bb9c9fe9450124df9 ("8xxx: Removed
8405     CONFIG_NUM_CPUS from 85xx/86xx") breaks U-Boot on various boards,
8406     namely the ones that call get_sys_info() from board_early_init_f().
8407
8408     get_sys_info() calls cpu_numcores(), which depends on probecpu()
8409     being called before. But probecpu() is called after board_early_init_f(),
8410     and so cpu_numcores() returns random values, which in turn crashes
8411     get_sys_info().
8412
8413     To fix the issue we place probecpu() before board_early_init_f()
8414     in an initialization sequence.
8415
8416     Booting on the following boards should be revived now:
8417      mpc8540ads
8418      mpc8541cds
8419      mpc8548cds
8420      mpc8555cds
8421      mpc8560ads
8422      mpc8568mds
8423      mpc8569mds
8424      and maybe more.
8425
8426     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
8427     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8428
8429 commit 26df6aa9916443077139f8f008fbc5f414ba05e5
8430 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
8431 Date:   Fri Oct 2 18:48:07 2009 -0400
8432
8433     mpc86xx: delete unused MPC86xx_DDR_SDRAM_CLK_CNTL define
8434
8435     This is an orphaned legacy leftover that is just polluting
8436     the config file namespace.
8437
8438     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
8439     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8440
8441 commit fad15096e3b34927444ba5f6133742d40d78a425
8442 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
8443 Date:   Thu Oct 8 13:33:29 2009 +0530
8444
8445     ppc/P1_P2_RDB: On-chip BootROM support
8446
8447     On Chip BootROM support for P1 and P2 series RDB platforms.
8448
8449     This patch is derived from latest On Chip BootROM support on MPC8536DS
8450
8451     Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
8452     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8453
8454 commit f7780ec977e545b83bc5068e0957d640f1d98f13
8455 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
8456 Date:   Thu Oct 8 13:33:18 2009 +0530
8457
8458     ppc/P1_P2_RDB: NAND Boot Support
8459
8460     NAND Boot support for P1 and P2 series RDB platforms.
8461
8462     This patch is derived from NAND Boot support on MPC8536DS.
8463
8464     Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
8465     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8466
8467 commit d11823ca3cb551814ffcd926402c8bcf3a7eff35
8468 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
8469 Date:   Wed Oct 7 16:34:28 2009 -0400
8470
8471     mpc8xxx: improve LAW error messages when setting up DDR
8472
8473     When setting up the LAWs for the DDR, if there was an error,
8474     you got the not-so-helpful error text "ERROR" and nothing
8475     else.  Not only is it non-informative, but it is also
8476     pretty frustrating trying to grep for "ERROR" in the source.
8477
8478     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
8479     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8480
8481 commit a9946e3fc7089ddc6b7711a44e07a6b0827b79a7
8482 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
8483 Date:   Wed Sep 30 16:12:31 2009 -0400
8484
8485     sbc8641d: fix LAW so board doesn't hang on DDR init
8486
8487     All versions between now and since this commit:
8488
8489       commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
8490       MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
8491
8492     will fail to allow the SBC8641D to get past DDR init, because the
8493     LAW config was overlapping.  Eventually this board will do SPD
8494     EEPROM config, but for now this gets the board working again.
8495
8496     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
8497     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8498
8499 commit 3d1988ab47cc0e265272967e07d747ec600a44c9
8500 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
8501 Date:   Sat Oct 10 13:34:09 2009 +0900
8502
8503     Clean-up of s3c24x0 nand driver
8504
8505     This patch re-formats the arm920t s3c24x0 nand driver in preparation for changes
8506     to add support for the Embest SBC2440-II Board.
8507
8508     The changes are as follows:
8509     - re-indent the code using Lindent
8510     - make sure register layouts are defined using a C struct
8511     - replace the upper-case typedef'ed C struct names with lower case
8512     non-typedef'ed ones
8513     - make sure registers are accessed using the proper accessor functions
8514     - run checkpatch.pl and fix any error reports
8515
8516     It assumes the following patch has been applied first:
8517     - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
8518      - patches 1/4, 2/4 and 3/4 of this series
8519
8520     Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
8521     any s3c2400 or s3c2410 boards but need this patch applying before I can submit
8522     patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
8523     smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
8524     board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
8525     errors were found.
8526
8527     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
8528     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8529
8530 commit eb0ae7f549b7142826a8bcdd2dc945fac9c36349
8531 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
8532 Date:   Sat Oct 10 13:33:11 2009 +0900
8533
8534     Clean-up of s3c24x0 drivers excluding nand driver
8535
8536     This patch re-formats the arm920t s3c24x0 driver files, excluding the nand
8537     driver, in preparation for changes to add support for the Embest SBC2440-II Board.
8538
8539     The changes are as follows:
8540     - re-indent the code using Lindent
8541     - make sure register layouts are defined using a C struct
8542     - replace the upper-case typedef'ed C struct names with lower case
8543       non-typedef'ed ones
8544     - make sure registers are accessed using the proper accessor functions
8545     - run checkpatch.pl and fix any error reports
8546
8547     It assumes the following patch has been applied first:
8548     - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
8549     - patches 1/4 and 2/4 of this series
8550
8551     Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
8552     any s3c2400 or s3c2410 boards but need this patch applying before I can submit
8553     patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
8554     smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
8555     board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
8556     errors were found.
8557
8558     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
8559     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8560
8561 commit 8250d0bae84229abea397f6b474b3556b0f04e80
8562 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
8563 Date:   Sat Oct 10 13:32:01 2009 +0900
8564
8565     Clean-up of s3c24x0 header files
8566
8567     This patch re-formats the arm920t s3c24x0 header files in preparation for
8568     changes to add support for the Embest SBC2440-II Board.
8569
8570     The changes are as follows:
8571     - re-indent the code using Lindent
8572     - make sure register layouts are defined using a C struct
8573     - replace the upper-case typedef'ed C struct names with lower case
8574     non-typedef'ed ones
8575     - make sure registers are accessed using the proper accessor functions
8576     - run checkpatch.pl and fix any error reports
8577
8578     It assumes the following patch has been applied first:
8579     - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
8580     - patch 1/4 of this series
8581
8582     Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
8583     any s3c2400 or s3c2410 boards but need this patch applying before I can submit
8584     patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
8585     smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
8586     board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
8587     errors were found.
8588
8589     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
8590     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8591
8592 commit d67cce2dda3a40c3bd90a6c6e129fbb26dd4cfab
8593 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
8594 Date:   Sat Oct 10 13:30:22 2009 +0900
8595
8596     Clean-up of cpu_arm920t and cpu_arm920t_s3c24x0 code
8597
8598     This patch re-formats the code in cpu/arm920t and cpu/arm920t/23c24x0 in
8599     preparation for changes to add support for the Embest SBC2440-II Board.
8600
8601     The changes are as follows:
8602     - re-indent the code using Lindent
8603     - make sure register layouts are defined using a C struct
8604     - replace the upper-case typedef'ed C struct names with lower case
8605       non-typedef'ed ones
8606     - make sure registers are accessed using the proper accessor functions
8607     - run checkpatch.pl and fix any error reports
8608
8609     It assumes the following patch has been applied first:
8610     - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
8611
8612     Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
8613     any s3c2400 or s3c2410 boards but need this patch applying before I can submit
8614     patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets and no
8615     new warnings or errors were found.
8616
8617     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
8618     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8619
8620 commit cd85662b345c0c2248fd7637f65bb2fbb4d53dd9
8621 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
8622 Date:   Sun Sep 6 00:33:13 2009 +0900
8623
8624     CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards
8625
8626     This sets CONFIG_SYS_HZ to 1000 for all boards that use the s3c2400 and
8627     s3c2410 cpu's which fixes various problems such as the timeouts in tftp being
8628     too short.
8629
8630     Tested on an Embest SBC2440-II Board with local u-boot patches as I don't
8631     have any s3c2400 or s3c2410 boards but need this patch applying before I can
8632     submit patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets
8633     and no new warnings or errors were found.
8634
8635     It was originally submitted on 21/06/2009 but didn't get into the 2009.08
8636     release, and Jean-Pierre made one comment on the original patch (see
8637     http://lists.denx.de/pipermail/u-boot/2009-July/055470.html). I've made two
8638     changes to the original patch:
8639     - it's been re-based to the current release
8640     - I've re-named get_timer_raw() to get_ticks() in response to Jean-Pierre's comment
8641
8642     This affects the sbc2410, smdk2400, smdk2410 and trab boards. I've copied it
8643     directly to the maintainers of all except the sbc2410 which doesn't have an
8644     entry in MAINTAINERS.
8645
8646     Signed-off-by: Kevin Morfitt <kmorfitt@aselaptop-1.localdomain>
8647     Tested-by: Wolfgang Denk <wd@denx.de>
8648     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8649
8650 commit 8bc4ee9e8213abe4031ea1720aa02fa98d4402ad
8651 Author: Minkyu Kang <mk7.kang@samsung.com>
8652 Date:   Thu Oct 1 17:20:40 2009 +0900
8653
8654     s5pc1xx: add support SMDKC100 board
8655
8656     Adds new board SMDKC100 that uses s5pc100 SoC
8657
8658     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8659     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
8660
8661 commit dd2c9e6a3b67c8ff56694e515e6e3c7baddd8f52
8662 Author: Minkyu Kang <mk7.kang@samsung.com>
8663 Date:   Thu Oct 1 17:20:28 2009 +0900
8664
8665     s5pc1xx: support serial driver
8666
8667     This patch includes the serial driver for s5pc1xx.
8668     s5pc1xx uart driver needs own register setting and clock configuration.
8669     So, need to special driver.
8670
8671     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8672
8673 commit 4678d674f0cacc983dca7f6b9933cd8291c9797c
8674 Author: Minkyu Kang <mk7.kang@samsung.com>
8675 Date:   Thu Oct 1 17:20:08 2009 +0900
8676
8677     s5pc1xx: support onenand driver
8678
8679     This patch includes the onenand driver for s5pc100
8680
8681     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8682     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
8683
8684 commit 399e5ae0d0b2eb4663fc5784201968c07d45afac
8685 Author: Minkyu Kang <mk7.kang@samsung.com>
8686 Date:   Thu Oct 1 17:20:01 2009 +0900
8687
8688     s5pc1xx: support Samsung s5pc1xx SoC
8689
8690     This patch adds support for the Samsung s5pc100 and s5pc110
8691     SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor.
8692
8693     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8694     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
8695
8696 commit d087d19a994e741f0ce526124be117c90be482ae
8697 Author: Mike Frysinger <vapier@gentoo.org>
8698 Date:   Tue Oct 13 21:58:26 2009 -0400
8699
8700     Blackfin: drop MAC display at boot
8701
8702     The default Blackfin boot would display the MAC address for the first NIC,
8703     but this relies on the environment.  The current net multi stack no longer
8704     writes the default hardware settings to the environment, so most of the
8705     time the display shows all zeros.  This can be pretty confusing and really
8706     doesn't add anything useful, so just drop it.
8707
8708     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8709
8710 commit 1f003cf4738a199d99c818124784058526d2d40e
8711 Author: Mike Frysinger <vapier@gentoo.org>
8712 Date:   Fri Oct 9 02:24:33 2009 -0400
8713
8714     Blackfin: reset watchdog in udelay()
8715
8716     All arches apparently should reset the watchdog in their udelay loop as
8717     noted on the mailing list recently:
8718
8719       > A comment in flash_status_check() suggests that udelay() is
8720       > expected to reset the watchdog, but I can't find any architecture
8721       > where it does.
8722
8723       If this is missing in other architectures, it should be fixed at the
8724       root cause, i. e. in udelay() or in the respective support routines.
8725
8726     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8727
8728 commit 370ec734557d0b0f266e6d0953229ee12cae5edd
8729 Author: Mike Frysinger <vapier@gentoo.org>
8730 Date:   Fri Oct 9 02:22:11 2009 -0400
8731
8732     Blackfin: Remove relocation fixups
8733
8734     Blackfin pieces like commit 0630535e2d062dd73c1ceca5c6125c86d1127a49.
8735
8736     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8737
8738 commit a380279b2abe130c2d3d2c8de36f8ff98bc6b3b0
8739 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
8740 Date:   Tue Sep 29 08:03:12 2009 +0200
8741
8742     at91: Update MEESC board support
8743
8744     This patch implements several updates:
8745     -disable CONFIG_ENV_OVERWRITE
8746     -add new hardware style variants and set the arch numbers appropriate
8747     -pass the serial# and hardware revision to the kernel
8748     -removed unused macros from include/configs/meesc.h
8749     -fixed multiline comment style
8750
8751     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
8752
8753 commit 9df20ce211576aa7ac75710dcd8d0a6236abfd70
8754 Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]>
8755 Date:   Thu Oct 1 19:41:50 2009 +0530
8756
8757     arm: Correct build with CONFIG_SYS_HUSH_PARSER set
8758
8759     FLAG_PARSE_SEMICOLON is not defined without hush.h, so include that.
8760
8761     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
8762     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
8763
8764 commit df3826262c0efd2baec4df23d44b3942af98f5a7
8765 Author: Olof Johansson <olof@lixom.net>
8766 Date:   Tue Sep 29 10:22:45 2009 -0400
8767
8768     TI: OMAP3: Overo Tobi ethernet support
8769
8770     Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded
8771     over tftp.
8772
8773     This also refactors the smc911x driver to allow for detecting when the
8774     chip is missing. I.e. the detect_chip() function is called earlier and
8775     will abort gracefully when the Chip ID read returns all 1's.
8776
8777     Signed-off-by: Olof Johansson <olof@lixom.net>
8778     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
8779     Acked-by: Ben Warren <biggerbadderben@gmail.com>
8780
8781 commit 2a6cc97b91997ae485312ac91ffbcea6a89b663a
8782 Author: Olof Johansson <olof@lixom.net>
8783 Date:   Tue Sep 29 10:21:29 2009 -0400
8784
8785     SMC911X: Add chip auto detection
8786
8787     Refactor the smc911x driver to allow for detecting when the chip is missing.
8788     I.e. the detect_chip() function is called earlier and will abort gracefully
8789     when the Chip ID read returns all 1's.
8790
8791     Signed-off-by: Olof Johansson <olof@lixom.net>
8792     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
8793     Acked-by: Ben Warren <biggerbadderben@gmail.com>
8794
8795 commit 0297ec7e2a4039b8a28346f52f3ccca4db1ddc62
8796 Author: Tom Rix <Tom.Rix@windriver.com>
8797 Date:   Tue Sep 29 10:19:49 2009 -0400
8798
8799     TI OMAP3 Use arm init sequence to initialize i2c
8800
8801     This changes fixes an early i2c error.
8802
8803     It appears that I2C is working because once a read or write
8804     error is detected, the omap24xx_i2c driver calls i2c_init
8805     inside its error handling check.
8806
8807     While it is ok to attempt error handling this way, the boards
8808     must not depend on this side effect to initialize it's i2c.
8809
8810     Instead of explicitly calling i2c_init for every board, use
8811     the generic arm initialization in lib_arm/board.c. By defining
8812     the config variable CONFIG_HARD_I2C, the omap3 i2c initialization
8813     is included in the init_sequence table.
8814
8815     Run tested on Beagle.
8816     Compile tested on the omap3's
8817
8818     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8819     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
8820
8821 commit 4df30f3bb7285b2c962713a5c693c16fd90885e0
8822 Author: Sandeep Paulraj <s-paulraj@ti.com>
8823 Date:   Tue Sep 29 09:43:04 2009 -0400
8824
8825     TI: DaVinci DM365: Enabling network Support on DM365 EVM
8826
8827     This patch enables EMAC on the DM365 EVM.
8828
8829     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8830     Acked-by: Tom Rix <Tom.Rix@windriver.com>
8831
8832 commit 00e1665a3cf956e09ac2ce86ef6ec459f6bfb33c
8833 Author: Sandeep Paulraj <s-paulraj@ti.com>
8834 Date:   Tue Sep 29 10:02:38 2009 -0400
8835
8836     TI: DaVinci: GPIO header file and definitions
8837
8838     Some DaVinci SOC's use GPIOs to enable EMAC and DM9000.
8839     This patch adds some definitions for GPIO registers and also adds
8840     structures for GPIO.
8841     A separate header file is being added so that in future we
8842     can have a DaVinci GPIO driver similer to OMAP.
8843
8844     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8845     Acked-by: Tom Rix <Tom.Rix@windriver.com>
8846
8847 commit 95ae803afbdd9f673c94b992ea624a10d252afc2
8848 Author: Sandeep Paulraj <s-paulraj@ti.com>
8849 Date:   Fri Sep 18 17:30:05 2009 -0400
8850
8851     TI: DaVinci DM646x: Update flag used to represent DM646x SOC's
8852
8853     In the DaVinci specific code, we use both CONFIG_SOC_DM646X and
8854     CONFIG_SOC_DM646x to represent DM646x specific code.
8855     This patch changes occurrences of CONFIG_SOC_DM646x to
8856     CONFIG_SOC_DM646X. This is because for DM644x series of SOCs we use
8857     the flag CONFIG_SOC_DM644X. We want some uniformity.
8858
8859     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8860     Acked-by: Tom Rix <Tom.Rix@windriver.com>
8861
8862 commit fc9165fdb3b021aa8ff02417692220fe9344072b
8863 Author: Olof Johansson <olof@lixom.net>
8864 Date:   Mon Sep 28 08:19:30 2009 -0400
8865
8866     OMAP3: Clean up whitespace in mux configs
8867
8868     Switch from space-based indentation to tab-based in mux configs, as pointed
8869     out by WD at:
8870
8871     http://lists.denx.de/pipermail/u-boot/2009-September/061241.html
8872
8873     Nothing but whitespace changes in this patch (diff -w gives no output).
8874
8875     Signed-off-by: Olof Johansson <olof@lixom.net>
8876
8877 commit 9de0212bd7c4c82a7e8c2a2c8714f8c7abc57d08
8878 Author: Dirk Behme <dirk.behme@googlemail.com>
8879 Date:   Mon Sep 28 08:17:50 2009 -0400
8880
8881     OMAP3 MMC: Fix warning dereferencing type-punned pointer
8882
8883     Fix warning
8884     Dereferencing type-punned pointer will break strict-aliasing rules
8885
8886     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8887     CC: Steve Sakoman <sakoman@gmail.com>
8888     Acked-by: Tom Rix <Tom.Rix@windriver.com>
8889
8890 commit e92daeb5c2050438402b87c7d614e8a13c294348
8891 Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]>
8892 Date:   Tue Sep 22 04:01:01 2009 +0530
8893
8894     Support for the OpenRD base board
8895
8896     The implementation is borrowed from the sheevaplug board and the Marvell
8897     1.1.4 code. Unsupported (or untested) is the SD card, PCIe and SATA.
8898
8899     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
8900
8901 commit a62e78fc444c67f958be48891bef3dab0e9eb285
8902 Author: Prafulla Wadaskar <prafulla@marvell.com>
8903 Date:   Mon Sep 21 20:15:17 2009 +0530
8904
8905     Kirkwood: mv88f6281gtw_ge: Add kwbimage build support
8906
8907     This patch adds kwbimage configuration file
8908     (used by mkimage utility)
8909     to support u-boot.kwb target on mv88f6281gtw_ge board.
8910
8911     To create Kirkwood boot image to be flashed on SPI Flash,
8912     additional parameter u-boot.kwb need to be passed during make.
8913
8914     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
8915
8916 commit 5bc7cbc15b1890682c0b279f708914518bd25f8d
8917 Author: Prafulla Wadaskar <prafulla@marvell.com>
8918 Date:   Mon Sep 21 18:23:11 2009 +0530
8919
8920     Kirkwood: rd6281a: Add kwbimage build support
8921
8922     This patch adds kwbimage configuration file
8923     (used by mkimage utility)
8924     to support u-boot.kwb target on rd6281a platform.
8925
8926     To create Kirkwood boot image to be flashed on NAND,
8927     additional parameter u-boot.kwb need to be passed during make.
8928
8929     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
8930
8931 commit 23b80982a02a43bf4ead91574c9d6f1b647ccc8f
8932 Author: Tom Rix <Tom.Rix@windriver.com>
8933 Date:   Sun Sep 27 11:10:09 2009 -0500
8934
8935     Add support for Eukrea CPU9260/CPU9G20 SBC
8936
8937     these boards are built around Atmel's AT91SAM9260/9G20 and have
8938     up to 64MB of NOR flash, up to 128MB of SDRAM, up to 2GB of NAND
8939     and include a 10/100 Ethernet PHY in RMII mode.
8940
8941     Signed-off-by: Eric Benard <eric@eukrea.com>
8942     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8943
8944 commit d8380c9d35e88759c96e68a03738446ca0cb292f
8945 Author: Tom Rix <Tom.Rix@windriver.com>
8946 Date:   Sun Sep 27 07:47:24 2009 -0500
8947
8948     Add support for Eukrea CPUAT91 SBC
8949
8950     CPUAT91 is built around Atmel's AT91RM9200 and has up to 16MB of NOR
8951     flash, up to 128MB of SDRAM, and includes a Micrel KS8721 PHY in RMII
8952     mode.
8953
8954     Signed-off-by: Eric Benard <eric@eukrea.com>
8955     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8956
8957 commit eb95aa15e644c29b01832703aa4964fe419170f0
8958 Author: Sandeep Paulraj <s-paulraj@ti.com>
8959 Date:   Mon Sep 14 14:57:47 2009 -0400
8960
8961     TI: DaVinci DM365: Minor config cleanup
8962
8963     The DM365 config was using the 'CONFIG_CMD_SAVEENV' flag.
8964     This is already included when we include the
8965     config_cmd_default.h header file. So this flag is removed.
8966     Also another flag to enable NAND functions was being
8967     enabled incorrectly.
8968
8969     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8970
8971 commit 5d783c1ffd691ffdadbc2c2f796c41481b7cdce7
8972 Author: Sandeep Paulraj <s-paulraj@ti.com>
8973 Date:   Mon Sep 14 15:03:06 2009 -0400
8974
8975     TI DaVinci DM365: Removing header file which does not exist
8976
8977     The DaVinci DM365 EVM board specific code was including a header file
8978     which does not exist. So removing this header file.
8979
8980     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8981
8982 commit 409ec37bd8ae8822d276e77419d899571891b191
8983 Author: Sandeep Paulraj <s-paulraj@ti.com>
8984 Date:   Tue Sep 8 18:08:06 2009 -0400
8985
8986     TI DaVinci: DM355: Config Cleanup and Update
8987
8988     This patch does the following
8989     1) Enables the NAND driver which is now available.
8990     2) Enables the 'CONFIG_MTD_DEVICE' as without this the
8991     compilation will fail
8992     3) We now have a safe place to store environment and defines
8993     an offset where this can be stored. This offset value is such that it is after
8994     the location where U-Boot is flashed using TI flash utilities.
8995     4) Enables Bootdelay
8996     5) Increases malloc() arena size. Manufacturers are coming out with
8997     NAND with large blocks sizes of upto 1 MiB. It has been noticed that
8998     as the block size of the NAND used is increased, if this particular
8999     value is not increased, the NAND driver will output out of memory
9000     errors.
9001
9002     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9003
9004 commit 7908c97a106765ad8816bf2271a5bf315728b274
9005 Author: Sandeep Paulraj <s-paulraj@ti.com>
9006 Date:   Tue Sep 8 11:37:39 2009 -0400
9007
9008     TI DaVinci: DM646x: Initial Support for DM646x SOC
9009
9010     DM646x is an SOC from TI which has both an ARM and a DSP.
9011     There are multiple variants of the SOC mainly dealing with different
9012     core speeds.
9013     This patch adds the initial framework for the DM646x SOC.
9014
9015     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9016
9017 commit 5d0f53624c24eaf82d58368a6a5b8476392dd5c7
9018 Author: Sandeep Paulraj <s-paulraj@ti.com>
9019 Date:   Wed Sep 9 15:26:00 2009 -0400
9020
9021     TI DaVinci: DM6446: Fix Compilation error in NAND mode
9022
9023     The Default mode that is built for the Davinci DVEVM happens
9024     to be the NOR mode.
9025     When we want to build for the NAND mode, we get a compilation
9026     error. This is overcome by defining the CONFIG_MTD_DEVICE
9027     flag in the NAND mode.
9028     The image built for NAND mode was successfully tested on the
9029     DaVinci DM6446 EVM.
9030
9031     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9032
9033 commit 7a2aa8b68120f333ed2edc33475ca195810d6cb1
9034 Author: Tom Rix <Tom.Rix@windriver.com>
9035 Date:   Thu Sep 10 15:27:57 2009 -0400
9036
9037     OMAP3 Move cache routine to cache.S
9038
9039     v7_flush_dcache_all, because it depends on omap ROM code is not
9040     generic.  Rename the function to 'invalidate_dcache' and move it
9041     to the omap cpu directory.
9042
9043     Collect the other omap cache routines l2_cache_enable and
9044     l2_cache_disable with invalide_dcache into cache.S.  This
9045     means removing the old cache.c file that contained l2_cache_enable
9046     and l2_cache_disable.
9047
9048     The conversion from cache.c to cache.S was done most through
9049     disassembling the uboot binary.  The only significant change was
9050     to change the comparision for the return of get_cpu_rev from
9051
9052        cmp      r0, #0
9053        beq      earlier_than_label
9054
9055     Which was lost information to
9056
9057        cmp      r0, #CPU_3XX_ES20
9058        blt      earlier_than_label
9059
9060     The paths through the enable routine were verified by
9061     adding an infinite loop and seeing the hang.  Then
9062     removing the infinite loop and seeing it continue.
9063
9064     The disable routine is similar enough that it was not
9065     tested with this method.
9066
9067     Run tested by cold booting from nand on beagle and zoom1.
9068     Compile tested on MAKEALL arm.
9069
9070     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
9071
9072 commit a16df2c11188297eca43cf6080c70fb69b960232
9073 Author: Sandeep Paulraj <s-paulraj@ti.com>
9074 Date:   Tue Sep 8 17:09:52 2009 -0400
9075
9076     TI DaVinci: Remove references to SZ_xx
9077
9078     This patch removes the asm/sizes.h header file from being
9079     included in the DaVinci SOC configs.
9080     References to SZ_xx have been replaced by appropriate
9081     bit shifted values.
9082
9083     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9084     Acked-by: Wolfgang Denk <wd@denx.de>
9085
9086 commit 285870f75378aca41c5063e4358ad93bf3014fd8
9087 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
9088 Date:   Thu Oct 9 01:27:18 2008 -0500
9089
9090     Leave x86emu op code tables in default section
9091
9092     Forcing the tables into got2 caused extra relocation when using -mrelocatable.
9093     This patch requires any board defining CONFIG_BIOSEMU to use -mrelocatable.
9094
9095     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
9096     Acked-by: Jin Zhengxiong <Jason.Jin@freescale.com>
9097
9098 commit be2254423b86572841aa70ff05d20933d1b49823
9099 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9100 Date:   Sat Oct 10 12:42:22 2009 +0200
9101
9102     Update all board to support new bbmiiphy driver (with multibus support)
9103
9104     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9105     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9106
9107 commit 310cecb8ccdbc8a9be580e75b2fd362179d78535
9108 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9109 Date:   Sat Oct 10 12:42:21 2009 +0200
9110
9111     Add bb_miiphy_init call before any ethernet bring-up code.
9112
9113     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9114     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9115
9116 commit 4ba31ab33ac824635fcb49ac609070a9ebcab7f0
9117 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9118 Date:   Sat Oct 10 12:42:20 2009 +0200
9119
9120     Rewrite the miiphybb (Bit-banged MII bus driver) in order to support an arbitrary number of mii buses.
9121
9122     This feature is useful when your board uses different mii buses for different
9123     phys and all (or a part) of these buses are implemented via bit-banging mode.
9124
9125     The driver requires that the following macros should be defined into the board
9126     configuration file:
9127
9128     CONFIG_BITBANGMII       - Enable the miiphybb driver
9129     CONFIG_BITBANGMII_MULTI - Enable the multi bus support
9130
9131     If the CONFIG_BITBANGMII_MULTI is not defined, the board's config file needs
9132     to define at least the following macros:
9133
9134     MII_INIT      - Generic code to enable the MII bus (optional)
9135     MDIO_DECLARE  - Declaration needed to access to the MDIO pin (optional)
9136     MDIO_ACTIVE   - Activate the MDIO pin as out pin
9137     MDIO_TRISTATE - Activate the MDIO pin as input/tristate pin
9138     MDIO_READ     - Read the MDIO pin
9139     MDIO(v)       - Write v on the MDIO pin
9140     MDC_DECLARE   - Declaration needed to access to the MDC pin (optional)
9141     MDC(v)        - Write v on the MDC pin
9142
9143     The previous macros make the driver compatible with the previous version
9144     (that didn't support the multi-bus).
9145
9146     When the CONFIG_BITBANGMII_MULTI is also defined, the board code needs to fill
9147     the bb_miiphy_buses[] array with a record for each required bus and declare
9148     the bb_miiphy_buses_num variable with the number of mii buses.
9149     The record (struct bb_miiphy_bus) has the following fields/callbacks (see
9150     miiphy.h for details):
9151
9152     char name[]            - The symbolic name that must be equal to the MII bus
9153                              registered name
9154     int (*init)()          - Initialization function called at startup time (just
9155                              before the Ethernet initialization)
9156     int (*mdio_active)()   - Activate the MDIO pin as output
9157     int (*mdio_tristate)() - Activate the MDIO pin as input/tristate pin
9158     int (*set_mdio)()      - Write the MDIO pin
9159     int (*get_mdio)()      - Read the MDIO pin
9160     int (*set_mdc)()       - Write the MDC pin
9161     int (*delay)()         - Delay function
9162     void *priv             - Private data used by board specific code
9163
9164     The board code will look like:
9165
9166     struct bb_miiphy_bus bb_miiphy_buses[] = {
9167      { .name = miibus#1, .init = b1_init, .mdio_active = b1_mdio_active, ... },
9168      { .name = miibus#2, .init = b2_init, .mdio_active = b2_mdio_active, ... },
9169      ...
9170     int bb_miiphy_buses_num = sizeof(bb_miiphy_buses) /
9171                               sizeof(bb_miiphy_buses[0]);
9172
9173     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9174     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9175
9176 commit efaf6f1bf6ebdd8f16b0d0c2960abe8d06f95af4
9177 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
9178 Date:   Fri Oct 2 18:54:20 2009 -0400
9179
9180     mpc83xx: cosmetic comment update relating to SPD EEPROM
9181
9182     commit 6d0f6bcf337c5261c08fabe12982178c2c489d76 did the big
9183     rename of CFG_ macros to CONFIG_SYS macros.  But it missed
9184     a couple of instances within comments.
9185
9186     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
9187     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9188
9189 commit afc3ba0fc4195624e79e21244380ed7cc2fd6969
9190 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9191 Date:   Thu Oct 8 02:03:51 2009 +0200
9192
9193     relocation: Do not relocate NULL pointers.
9194
9195     NULL is an absolute value and should not be relocated.
9196     After this correction code like:
9197      void weak_fun(void) __attribute__((weak));
9198      printf("weak_fun:%p\n", weak_fun);
9199     will still print null after relocation.
9200
9201     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9202
9203 commit 3beb40c2473f0dd373231c723d88c51e46ad96f7
9204 Author: Peter Tyser <ptyser@xes-inc.com>
9205 Date:   Wed Oct 7 11:45:00 2009 -0500
9206
9207     85xx: Ensure BSS segment isn't linked at address 0
9208
9209     When U-Boot is relocated from flash to RAM pointers are modified
9210     accordingly.  However, pointers initialzed with NULL values should not
9211     be modified so that they maintain their intended NULL value.  If the
9212     BSS segment is linked at address 0 its address will not be
9213     updated as necessary during relocation.
9214
9215     This is a temporary workaround.  The end goal is to add support to
9216     U-Boot to dynamically locate the BSS at an arbitrary address at
9217     runtime.  When the ability to fixup the BSS inteligently is
9218     added, this workaround can be removed and the 85xx link script
9219     can put the BSS at a fixed address at link time.
9220
9221     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9222
9223 commit 95c44ec485b46ffb43dbdaa299f1491a500fdadf
9224 Author: Detlev Zundel <dzu@denx.de>
9225 Date:   Wed Oct 7 16:38:05 2009 +0200
9226
9227     tqm5200: Correct comment and code in post_hotkeys_pressed.
9228
9229     This fixes the code and the comment according to the original intent of
9230     doing an intensive memory test when PSC6_3 is pulled low on the STK52xx.
9231     Notably PORT_CONFIG will be overridden with this correct code now,
9232     so beware.
9233
9234     The original code only worked by coincidence depending on the PORT_CONFIG
9235     setting from the header file.  The new code was tested to ensure that the
9236     (undocumented) memory test still works on the STK52x.
9237
9238     Signed-off-by: Detlev Zundel <dzu@denx.de>
9239     CC: Martin Krause <Martin.Krause@tqs.de>
9240
9241     Minor white-space cleanup.
9242     Signed-off-by: Wolfgang Denk <wd@denx.de>
9243
9244 commit da01f53404f99db185d196867af79371725d4683
9245 Author: Wolfgang Denk <wd@denx.de>
9246 Date:   Sun Oct 4 22:56:08 2009 +0200
9247
9248     mpc512x: fix fixed_sdram() init code.
9249
9250     Commit 054197ba and later fixes used an array to initialize some of
9251     the MDDRC parameters; however, the use of an array turned out to be a
9252     bad idea as it was not possible to correlate structure entries to
9253     array indices in readable and reliable way. Now we use a struct
9254     instead, which makes this self-explanatory.
9255
9256     Signed-off-by: Wolfgang Denk <wd@denx.de>
9257
9258 commit dbcc357166bed20df13450e93a501f30b197efd1
9259 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
9260 Date:   Sun Oct 4 20:04:22 2009 +0200
9261
9262     ppc4xx: respect 80-chars per line in ppc*.h files
9263
9264     After running checkstyle.pl on the three previous patches I noted that in
9265     the *.h files there were a lot of long lines. This patch solves this problem.
9266
9267     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
9268     Signed-off-by: Stefan Roese <sr@denx.de>
9269
9270 commit 78d2a641371ec71cc3786b167a318c7b115fbb90
9271 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
9272 Date:   Sun Oct 4 20:04:21 2009 +0200
9273
9274     ppc4xx: Rework cmd reginfo
9275
9276     The command "reginfo" got an overhaul for the ppc4xx. It dumps all the
9277     relevant HW configuration registers (address, symbolic name, content).
9278     This allows to easily detect errors in *.h files and changes in the HW
9279     configuration.
9280
9281     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
9282     Signed-off-by: Stefan Roese <sr@denx.de>
9283
9284 commit ddc922ff2c20ae0b7f9ce2df1ac28143e2f325bd
9285 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
9286 Date:   Sun Oct 4 20:04:20 2009 +0200
9287
9288     ppc_4xx: Apply new HW register names
9289
9290     Modify all existing *.c files to use the new register names
9291     as seen in the AMCC manuals.
9292
9293     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
9294     Signed-off-by: Stefan Roese <sr@denx.de>
9295
9296 commit f80e61dcfe53fa3a5936659883415c9bd1b5a3d9
9297 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
9298 Date:   Sun Oct 4 20:04:19 2009 +0200
9299
9300     ppc4xx: Cleanup some HW register names
9301
9302     Here you find all the changes in the include directory for new register names
9303     and adapting other ones to the names used by AMCC in their manuals, e.g.
9304     For 440EPx/GRPPC440EPx/GRX, Revision 1.15 â€“ September 22, 2008
9305     For PPC405GP Embedded Processor, Revision 1.02 â€“ March 22, 2006
9306
9307     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
9308     Signed-off-by: Stefan Roese <sr@denx.de>
9309
9310 commit 56f14818f66c68a8b9e45925f29ceb974405ad48
9311 Author: Stefan Roese <sr@denx.de>
9312 Date:   Tue Oct 6 07:21:08 2009 +0200
9313
9314     ppc4xx: Add PPC405EX(r) Rev D support
9315
9316     Unfortunately some Rev D PPC405EX/405EXr PVR's are identical with older
9317     405EX(r) parts. Here a list:
9318
9319     0x12911475 - 405EX Rev D with Security *and* 405EX Rev A/B witout Sec
9320     0x12911473 - 405EX Rev D without Security *and* 405EXr Rev A/B with Sec
9321
9322     Since there are only a few older parts in the field, this patch now
9323     changes the PVR's above to represent the new Rev D versions.
9324
9325     Signed-off-by: Stefan Roese <sr@denx.de>
9326     Cc: Phong Vo" <pvo@amcc.com>
9327
9328 commit 06dfaeef52a5f773ae4292432e3c74ff52ead316
9329 Author: Stefan Roese <sr@denx.de>
9330 Date:   Fri Oct 2 14:35:16 2009 +0200
9331
9332     ppc4xx: Fix msg "initialization as root-complex failed" upon PCIe scan
9333
9334     This message is printed upon PCIe bus scan, not only upon error, but also
9335     if no PCIe device is detected at all. Since this is not an error, let's
9336     remove this message in this case. We already have the message
9337     "link is not up." if there is no PCIe device present.
9338
9339     Signed-off-by: Stefan Roese <sr@denx.de>
9340     Acked-by: Wolfgang Denk <wd@denx.de>
9341
9342 commit 54f5f056aa1daa3e39bad1c5c3fb43a72cdb9e84
9343 Author: Mike Nuss <mike@terascala.com>
9344 Date:   Mon Oct 5 12:33:28 2009 -0400
9345
9346     PPC4xx: Denali core: Fix incorrect DDR row bits
9347
9348     The SPD detection code for the Denali memory controller used on some
9349     ppc4xx
9350     processors incorrectly encodes DDR0_42. With certain memory
9351     configurations,
9352     this can cause the bootwrapper to incorrectly calculate the installed
9353     memory
9354     size, because the number of row bits is wrong. This patch fixes that
9355     encoding.
9356
9357     Signed-off-by: Mike Nuss <mike@terascala.com>
9358     Signed-off-by: Stefan Roese <sr@denx.de>
9359
9360 commit 99dbd4efd6d5ecc37d7e8f28b20d9be8c83055c7
9361 Author: Ben Warren <biggerbadderben@gmail.com>
9362 Date:   Mon Oct 5 00:02:51 2009 -0700
9363
9364     Add information about return values of xxx_eth_register() in documentation
9365
9366     As discussed on mailing list, <0 indicates failure, >=0 indicates number
9367     of interfaces found.
9368
9369     Also added blurb about private data
9370
9371     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9372
9373 commit 1f1e774ec6242d4ea34e5cff57232deb5bb587e0
9374 Author: Mike Frysinger <vapier@gentoo.org>
9375 Date:   Wed Sep 9 14:41:22 2009 -0400
9376
9377     document network driver framework
9378
9379     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9380     Acked-by: Wolfgang Denk <wd@denx.de>
9381     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9382
9383 commit aba8237257dd15b0e76cc517f0e741c0908ee0b9
9384 Author: Prafulla Wadaskar <prafulla@marvell.com>
9385 Date:   Wed Sep 9 15:59:19 2009 +0530
9386
9387     net: kirkwood_egiga.c: fixed build warning
9388
9389     if link up detection code is disabled through config option, it gives build warning.
9390     This patch fixes the same
9391
9392     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
9393     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9394
9395 commit 7194ab809532eeca3e2ee5dc12017cb901cc5842
9396 Author: Ben Warren <biggerbadderben@gmail.com>
9397 Date:   Sun Oct 4 22:37:03 2009 -0700
9398
9399     Convert SMC91111 Ethernet driver to CONFIG_NET_MULTI API
9400
9401     All in-tree boards that use this controller have CONFIG_NET_MULTI
9402     added
9403     Also:
9404       - changed CONFIG_DRIVER_SMC91111 to CONFIG_SMC91111
9405       - cleaned up line lengths
9406       - modified all boards that override weak function in this driver
9407       - modified all eeprom standalone apps to work with new driver
9408       - updated blackfin standalone EEPROM app after testing
9409
9410     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9411     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9412
9413 commit 32e7f239dda8638377edb0d3e7ac269cabbafbe6
9414 Author: Prafulla Wadaskar <prafulla@marvell.com>
9415 Date:   Mon Sep 21 20:28:18 2009 +0530
9416
9417     net: phy: mv88e61xx.c : fixed build warning
9418
9419     following build warning was observed
9420
9421     mv88e61xx.c: In function â€˜mv88e61xx_busychk’:
9422     mv88e61xx.c:208: warning: dereferencing type-punned pointer will break strict-aliasing rules
9423
9424     This patch fixes the same
9425     Patch tested for rd6281a board build
9426
9427     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
9428     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9429
9430 commit c0b46d8ead3c6c5b569c83544fd71b9d73356869
9431 Author: James Clough <james@rtetc.com>
9432 Date:   Thu Sep 10 09:11:50 2009 +0200
9433
9434     net: Fix problem with 405EZ ethernet interrupt
9435
9436     On 405EZ the RX-/TX-interrupts are coalesced into one IRQ bit in the
9437     UIC. We need to acknowledge the RX-/TX-interrupts in the
9438     SDR0_ICINTSTAT reg as well.
9439
9440     This problem was introduced with commit
9441     d1631fe1 [ppc4xx: Consolidate PPC4xx UIC defines]
9442
9443     Signed-off-by: James Clough <james@rtetc.com>
9444     Signed-off-by: Stefan Roese <sr@denx.de>
9445     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9446
9447 commit 91b469c95faf92435e3d5d78292ba78075a3c5ca
9448 Author: Mike Frysinger <vapier@gentoo.org>
9449 Date:   Wed Sep 2 04:18:55 2009 -0400
9450
9451     net: add random_port() prototype
9452
9453     The random_port() is meant to be used by other net code, but without a
9454     prototype, we get fun warnings like:
9455     dns.c: In function 'DnsSend':
9456     dns.c:89: warning: implicit declaration of function 'random_port'
9457
9458     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9459     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9460
9461 commit 3469424cb6d939c7aedf1e0efdec44a797c0a18c
9462 Author: Peter Tyser <ptyser@xes-inc.com>
9463 Date:   Mon Sep 21 11:20:37 2009 -0500
9464
9465     ppc: Remove reloc_off field from global_data structure
9466
9467     Now that proper relocation is supported, the reloc_off field is no longer
9468     necessary.
9469
9470     Note that the location of the standalone application jump table pointer
9471     in the global data structure is affected by this change, breaking
9472     execution of standalone applications compiled for previous versions of
9473     U-Boot.
9474
9475     We therefore increment XF_VERSION to 6
9476
9477     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9478     Signed-off-by: Wolfgang Denk <wd@denx.de>
9479
9480 commit 0630535e2d062dd73c1ceca5c6125c86d1127a49
9481 Author: Peter Tyser <ptyser@xes-inc.com>
9482 Date:   Tue Sep 22 09:27:55 2009 -0500
9483
9484     arm/microblaze/nios/nios2/sh: Remove relocation fixups
9485
9486     These architectures don't need relocation fixups, so reduce their
9487     codesize a bit by defining CONFIG_RELOC_FIXUP_WORKS.
9488
9489     Also remove the reloc_off field from their global data structures
9490     as it is no longer needed.
9491
9492     Note that the location of the standalone application jump table pointer
9493     in the global data structure is affected by this change, breaking
9494     execution of standalone applications compiled for previous versions of
9495     U-Boot. We will therefore increment XF_VERSION in the next commit,
9496     which also touches this area.
9497
9498     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9499     Signed-off-by: Wolfgang Denk <wd@denx.de>
9500
9501 commit 521af04d853361b49344b61892eb0618f9f713c5
9502 Author: Peter Tyser <ptyser@xes-inc.com>
9503 Date:   Mon Sep 21 11:20:36 2009 -0500
9504
9505     Conditionally perform common relocation fixups
9506
9507     Add #ifdefs where necessary to not perform relocation fixups.  This
9508     allows boards/architectures which support relocation to trim a decent
9509     chunk of code.
9510
9511     Note that this patch doesn't add #ifdefs to architecture-specific code
9512     which does not support relocation.
9513
9514     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9515
9516 commit 3cbcfa70b116df1bbdc90ba31c61adcaec058a8a
9517 Author: Peter Tyser <ptyser@xes-inc.com>
9518 Date:   Mon Sep 21 11:20:35 2009 -0500
9519
9520     p3mx: Remove serial relocation fixups
9521
9522     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9523
9524 commit 80f73b92a19129854876ec3f1aef531a09e86d2d
9525 Author: Peter Tyser <ptyser@xes-inc.com>
9526 Date:   Mon Sep 21 11:20:34 2009 -0500
9527
9528     lwmon, lwmon5: Remove sysmon POST relocation fixups
9529
9530     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9531
9532 commit 331ab60c4a418c39e5b1a05d4648a4155d0ad13e
9533 Author: Peter Tyser <ptyser@xes-inc.com>
9534 Date:   Mon Sep 21 11:20:33 2009 -0500
9535
9536     mpl: Remove memory test relocation fixups
9537
9538     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9539
9540 commit 6385b28116f775da4771b768ba9bf93c3aaaf26e
9541 Author: Peter Tyser <ptyser@xes-inc.com>
9542 Date:   Mon Sep 21 11:20:32 2009 -0500
9543
9544     fpga: Remove relocation fixups
9545
9546     PPC boards are the only users of the current FPGA code which is littered
9547     with manual relocation fixups.  Now that proper relocation is supported
9548     for PPC boards, remove FPGA manual relocation.
9549
9550     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9551
9552 commit cd1011db80287eef933d1599b74cff1116c93134
9553 Author: Peter Tyser <ptyser@xes-inc.com>
9554 Date:   Mon Sep 21 11:20:31 2009 -0500
9555
9556     tsec: Remove PHY command relocation fixups
9557
9558     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9559
9560 commit b5650c5d8c99100144d8e4e9af910405f857bb7a
9561 Author: Peter Tyser <ptyser@xes-inc.com>
9562 Date:   Mon Sep 21 11:20:30 2009 -0500
9563
9564     ppc: Remove board-specific command table relocation fixups
9565
9566     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9567
9568 commit e6b05e774d7ce1641613cdeffb69c1d48139a869
9569 Author: Peter Tyser <ptyser@xes-inc.com>
9570 Date:   Mon Sep 21 11:20:29 2009 -0500
9571
9572     ppc: Remove extable relocation fixups
9573
9574     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9575
9576 commit b32a894011b1436758905fa10e6a03b8539c43c9
9577 Author: Peter Tyser <ptyser@xes-inc.com>
9578 Date:   Mon Sep 21 11:20:28 2009 -0500
9579
9580     ppc: Remove pci config table pointer relocation fixups
9581
9582     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9583
9584 commit a0e2066f392782730f0398095e583c87812d97f2
9585 Author: Peter Tyser <ptyser@xes-inc.com>
9586 Date:   Mon Sep 21 11:20:27 2009 -0500
9587
9588     ppc: Remove board.c relocation fixups
9589
9590     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9591
9592 commit 244615197469dd6fe75ae082f38424b97c79aeaf
9593 Author: Peter Tyser <ptyser@xes-inc.com>
9594 Date:   Mon Sep 21 11:20:26 2009 -0500
9595
9596     ppc: Check for compilers that don't support relocation
9597
9598     Certain ppc compilers are known not to generate the .fixup section
9599     properly.  The .fixup section is necessary to create a relocatable
9600     U-Boot image.  A basic check for the existence of the .fixup section
9601     should hopefully catch the majority of broken compilers which don't
9602     support relocation.
9603
9604     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9605
9606 commit 858290178f222d998b6425d85cf06822467918f3
9607 Author: Peter Tyser <ptyser@xes-inc.com>
9608 Date:   Mon Sep 21 11:20:25 2009 -0500
9609
9610     ppc: Enable full relocation to RAM
9611
9612     The following changes allow U-Boot to fully relocate from flash to
9613     RAM:
9614      - Remove linker scripts' .fixup sections from the .text section
9615      - Add -mrelocatable to PLATFORM_RELFLAGS for all boards
9616      - Define CONFIG_RELOC_FIXUP_WORKS for all boards
9617
9618     Previously, U-Boot would partially relocate, but statically initialized
9619     pointers needed to be manually relocated.
9620
9621     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9622
9623 commit 3b4bd2d75c4b3c1a4570f47ffaaed66f56a78ff4
9624 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
9625 Date:   Wed Sep 30 11:55:04 2009 +0200
9626
9627     ppc4xx: Add SDRAM detection for PMC440 boards
9628
9629     This patch adds support to detect the amount of DDR2 SDRAM
9630     on PMC440 modules. Detection is done by probing through
9631     a list of available and supported hardware configurations
9632     from 1GByte down to 256MB.
9633
9634     The static TLB entry is replaced by dynamically created entries.
9635
9636     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9637     Signed-off-by: Stefan Roese <sr@denx.de>
9638
9639 commit fb95169e39f2d03270bed552d27bbb02627a443e
9640 Author: Stefan Roese <sr@denx.de>
9641 Date:   Mon Sep 28 17:33:45 2009 +0200
9642
9643     ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling
9644
9645     This patch merges the ECC handling (ECC parity byte writing) into one
9646     file (ecc.c) for all PPC4xx SDRAM controllers except for PPC440EPx/GRx.
9647     This exception is because only those PPC's use the completely different
9648     Denali SDRAM controller core.
9649
9650     Previously we had two routines to generate/write the ECC parity bytes.
9651     With this patch we now only have one core function left.
9652
9653     Tested on Kilauea (no ECC) and Katmai (with and without ECC).
9654
9655     Signed-off-by: Stefan Roese <sr@denx.de>
9656     Cc: Felix Radensky <felix@embedded-sol.com>
9657     Cc: Grant Erickson <gerickson@nuovations.com>
9658     Cc: Pieter Voorthuijsen <pv@prodrive.nl>
9659
9660 commit d24bd2517a2b847f773453eab0ee5b1c8ebc74ba
9661 Author: Felix Radensky <felix@embedded-sol.com>
9662 Date:   Sun Sep 27 23:56:12 2009 +0200
9663
9664     ppc4xx: Reorganize DDR2 ECC handling
9665
9666     Reorganize DDR2 ECC handling to use common code for
9667     SPD DIMMs and soldered SDRAM. Also, use common code
9668     to display SDRAM info (ECC, CAS latency) for SPD and
9669     soldered SDRAM variants.
9670
9671     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
9672     Signed-off-by: Stefan Roese <sr@denx.de>
9673
9674 commit 46a887949e11d2cddb91e17ca47e73341d71a379
9675 Author: Mike Frysinger <vapier@gentoo.org>
9676 Date:   Wed Sep 30 03:09:16 2009 -0400
9677
9678     Blackfin: update default console= settings
9679
9680     The Linux kernel has changed the way it numbers serial ports, so update
9681     the default command line to match it.
9682
9683     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9684
9685 commit 4c5f307d58604dea001cccf388aa077a902ab0a5
9686 Author: Mike Frysinger <vapier@gentoo.org>
9687 Date:   Mon Sep 21 18:04:49 2009 -0400
9688
9689     Blackfin: bf533-ezkit: update env location
9690
9691     The u-boot image has outgrown the current space and overflowed into the
9692     env sector.  So move the env to the next available sector (we've already
9693     allocated the first few sectors anyways for u-boot).
9694
9695     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9696
9697 commit 24b17d8a3c3a4b9ceaf6363ebe0021011b0b8bd8
9698 Author: Kumar Gala <galak@kernel.crashing.org>
9699 Date:   Wed Sep 30 08:39:44 2009 -0500
9700
9701     ppc/85xx: get_law_entry isn't used in CONFIG_NAND_SPL
9702
9703     Don't include get_law_entry as part of the NAND_SPL build since the
9704     code isnt used.
9705
9706     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9707
9708 commit 693a048d8ac191181f5b9adbff642d3f1bbd479f
9709 Author: Mingkai Hu <Mingkai.hu@freescale.com>
9710 Date:   Wed Sep 23 15:20:39 2009 +0800
9711
9712     Add README.mpc8536ds
9713
9714     Add boot from NAND/eSDHC/eSPI description
9715
9716     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
9717     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9718
9719 commit e40ac4870c6e72302044e98338322f45c34435bd
9720 Author: Mingkai Hu <Mingkai.hu@freescale.com>
9721 Date:   Wed Sep 23 15:20:38 2009 +0800
9722
9723     On-chip ROM boot: MPC8536DS support
9724
9725     The MPC8536E is capable of booting from the on-chip ROM - boot from
9726     eSDHC and boot from eSPI. When power on, the porcessor excutes the
9727     ROM code to initialize the eSPI/eSDHC controller, and loads the mian
9728     U-Boot image from the memory device that interfaced to the controller,
9729     such as the SDCard or SPI EEPROM, to the target memory, e.g. SDRAM or
9730     L2SRAM, then boot from it.
9731
9732     The memory device should contain a specific data structure with control
9733     word and config word at the fixed address. The config word direct the
9734     process how to config the memory device, and the control word direct
9735     the processor where to find the image on the memory device, or where
9736     copy the main image to. The user can use any method to store the data
9737     structure to the memory device, only if store it on the assigned address.
9738
9739     The on-chip ROM code will map the whole 4GB address space by setting
9740     entry0 in the TLB1, so the main image need to switch to Address space 1
9741     to disable this mapping and map the address space again.
9742
9743     This patch implements loading the mian U-Boot image into L2SRAM, so
9744     the image can configure the system memory by using SPD EEPROM.
9745
9746     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
9747     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9748
9749 commit 9a1a0aedbbd56f901bfbc124f18ec6d9dcefe282
9750 Author: Mingkai Hu <Mingkai.hu@freescale.com>
9751 Date:   Wed Sep 23 15:20:37 2009 +0800
9752
9753     NAND boot: MPC8536DS support
9754
9755     MPC8536E can support booting from NAND flash which uses the
9756     image u-boot-nand.bin. This image contains two parts: a 4K
9757     NAND loader and a main U-Boot image. The former is appended
9758     to the latter to produce u-boot-nand.bin. The 4K NAND loader
9759     includes the corresponding nand_spl directory, along with the
9760     code twisted by CONFIG_NAND_SPL. The main U-Boot image just
9761     like a general U-Boot image except the parts that included by
9762     CONFIG_SYS_RAMBOOT.
9763
9764     When power on, eLBC will automatically load from bank 0 the
9765     4K NAND loader into the FCM buffer RAM where CPU can execute
9766     the boot code directly. In the first stage, the NAND loader
9767     copies itself to RAM or L2SRAM to free up the FCM buffer RAM,
9768     then loads the main image from NAND flash to RAM or L2SRAM
9769     and boot from it.
9770
9771     This patch implements the NAND loader to load the main image
9772     into L2SRAM, so the main image can configure the RAM by using
9773     SPD EEPROM. In the first stage, the NAND loader copies itself
9774     to the second to last 4K address space, and uses the last 4K
9775     address space as the initial RAM for stack.
9776
9777     Obviously, the size of L2SRAM shouldn't be less than the size
9778     of the image used. If so, the workaround is to generate another
9779     image that includes the code to configure the RAM by SPD and
9780     load it to L2SRAM first, then relocate the main image to RAM
9781     to boot up.
9782
9783     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
9784     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9785
9786 commit 07355700523203c5f72018712cf0d93683f255c8
9787 Author: Mingkai Hu <Mingkai.hu@freescale.com>
9788 Date:   Wed Sep 23 15:19:32 2009 +0800
9789
9790     mpc8536: fix board config file line length
9791
9792     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
9793     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9794
9795 commit dd9ca98f2600000e5c2744735040100b770650e7
9796 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
9797 Date:   Fri Sep 25 11:14:11 2009 -0400
9798
9799     sbc8548: reclaim wasted sector in boot flash
9800
9801     By nature of being based off the MPC8548CDS board, this
9802     board inherited an ENV_SIZE setting of 256k.  But since
9803     it has a smaller flash device (8MB soldered on), it has
9804     a native sector size of 128k, and hence the ENV_SIZE was
9805     causing 2 sectors to be used for the environment.
9806
9807     By removing the unused sector, we can push TEXT_BASE up
9808     closer to the end of address space and reclaim that
9809     sector for any other application.  This also fixes the
9810     mismatch between TEXT_BASE and MONITOR_LEN reported by
9811     Kumar earlier.
9812
9813     Since this board also supports the ability to boot off
9814     the 64MB SODIMM flash, this change is forward looking
9815     with that in mind; i.e. the settings for MONITOR_LEN
9816     and ENV_SIZE will work when the 512k sectors of the
9817     SODIMM flash are used for alternate boot in the future.
9818
9819     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
9820     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9821
9822 commit 8280912e0657e96a7b7d8da7003656d62b0fd109
9823 Author: Kumar Gala <galak@kernel.crashing.org>
9824 Date:   Mon Sep 28 21:38:00 2009 -0500
9825
9826     ppc/85xx: Clean up immap_85xx.h
9827
9828     * Converted all white space to tabs
9829     * Converted all types to u8/u16/u32
9830     * Reduce lines to fit in 80 columns
9831     * Renamed MPC85xx_{Q,B}MAN -> FSL_CORENET_{Q,B}MAN
9832
9833     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9834
9835 commit d44e9c1736283f0abc5d3c5d28cfea8480c93a79
9836 Author: Scott Wood <scottwood@freescale.com>
9837 Date:   Mon Sep 28 16:33:18 2009 -0500
9838
9839     NAND: davinci: Fix warnings when 4-bit ECC not used
9840
9841     I accidentally left v2 of "NAND: DaVinci:Adding 4 BIT ECC support"
9842     applied when I pushed the tree last merge window, and missed these fixes
9843     which were in v3 of that patch.
9844
9845     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9846     Signed-off-by: Scott Wood <scottwood@freescale.com>
9847
9848 commit ca6189db484882798f2a35a476c07e618e21f6d3
9849 Author: Kyungmin Park <kmpark@infradead.org>
9850 Date:   Tue Sep 22 09:05:00 2009 +0900
9851
9852     Refactor OneNAND IPL code
9853
9854     Refactoring the OneNAND IPL code
9855
9856     and some minor fixed:
9857     - Remove unnecessary header file
9858     - Fix wrong access at read interrupt
9859     - The recent OneNAND has 4KiB pagesize
9860
9861     Also Board can override OneNAND IPL image
9862
9863     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9864
9865 commit a05e3f9a084fc8951d87745b3a91df246432df7d
9866 Author: Shinya Kuribayashi <skuribay@pobox.com>
9867 Date:   Sat Sep 12 18:01:40 2009 +0900
9868
9869     MIPS: VCT: Remove read_spareram reference
9870
9871     The commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29 (OneNAND: Remove
9872     unused read_spareram and add unlock_all as kernel does) forgot to remove
9873     a local reference to read_spareram in board/micronas/vct/ebi_onenand.c,
9874     which causes the following build failure when configured with OneNAND:
9875
9876     ebi_onenand.c: In function 'onenand_board_init':
9877     ebi_onenand.c:196: error: 'struct onenand_chip' has no member named 'read_spareram'
9878     make[1]: *** [ebi_onenand.o] Error 1
9879     make[1]: *** Waiting for unfinished jobs....
9880     make: *** [board/micronas/vct/libvct.a] Error 2
9881
9882     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
9883     Acked-by: Stefan Roese <sr@denx.de>
9884     Cc: Kyungmin Park <kyungmin.park@samsung.com>
9885     Signed-off-by: Scott Wood <scottwood@freescale.com>
9886
9887 commit ef37c6835eac66206a9c7c11f0c7186f5d64bf91
9888 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
9889 Date:   Fri Sep 25 14:05:57 2009 +0200
9890
9891     ubifs: Correct dereferencing of files-after-symlinks
9892
9893     Files in directories which are symlinked to were not dereferenced
9894     correctly in last commit. E.g., with a symlink
9895
9896        /boot/lnk -> /boot/real_dir
9897
9898     loading
9899
9900        /boot/lnk/uImage
9901
9902     will fail. This patch fixes that by simply seeing to it that the target
9903     base directory has a slash after it.
9904
9905     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
9906     Signed-off-by: Stefan Roese <sr@denx.de>
9907
9908 commit b306db2f1bf561b5823a655c677fe28cfad80cfb
9909 Author: Stefan Roese <sr@denx.de>
9910 Date:   Thu Sep 24 14:10:30 2009 +0200
9911
9912     ppc4xx: Remove mtsdram0() marcos and use common mtsdram() instead
9913
9914     Additionally some whitespace coding style fixes.
9915
9916     Signed-off-by: Stefan Roese <sr@denx.de>
9917
9918 commit 95b602bab5fec2fffab07a01ea3947c70d1bacc1
9919 Author: Stefan Roese <sr@denx.de>
9920 Date:   Thu Sep 24 13:59:57 2009 +0200
9921
9922     ppc4xx: Convert PPC4xx SDRAM defines from lower case to upper case
9923
9924     The latest PPC4xx register cleanup patch missed some SDRAM defines.
9925     This patch now changes lower case UIC defines to upper case. Also
9926     some names are changed to match the naming in the IBM/AMCC users
9927     manuals (e.g. mem_mcopt1 -> SDRAM0_CFG).
9928
9929     Signed-off-by: Stefan Roese <sr@denx.de>
9930
9931 commit 952e7760bfc5b0e3b142b9ce34e7fbb7d008c900
9932 Author: Stefan Roese <sr@denx.de>
9933 Date:   Thu Sep 24 09:55:50 2009 +0200
9934
9935     ppc4xx: Convert PPC4xx UIC defines from lower case to upper case
9936
9937     The latest PPC4xx register cleanup patch missed the UIC defines.
9938     This patch now changes lower case UIC defines to upper case.
9939
9940     Signed-off-by: Stefan Roese <sr@denx.de>
9941
9942 commit d1c9e5b37901b53ffc1ce3f08ec8ed61bfd557b6
9943 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9944 Date:   Tue Sep 22 13:40:44 2009 +0200
9945
9946     fsl_i2c: Do not generate STOP after read.
9947
9948     __i2c_read always ends with a STOP condition thereby releasing
9949     the bus. It is cleaner to do the STOP magic in i2c_read(), like
9950     i2c_write() does. This may also help future multimaster systems which
9951     wants to hold on to the bus until all transactions are finished.
9952
9953     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9954
9955 commit 99404202127346b9e91503bbd69deafa18c980c4
9956 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9957 Date:   Thu Sep 17 11:07:17 2009 +0200
9958
9959     fsl_i2c: Impl. AN2919, rev 5 to calculate FDR/DFSR
9960
9961     The latest AN2919 has changed the way FDR/DFSR should be calculated.
9962     Update the driver according to spec. However, Condition 2
9963     is not accounted for as it is not clear how to do so.
9964
9965     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9966     Acked-by: Wolfgang Grandegger <wg@grandegger.com>
9967
9968 commit d01ee4db9302cfccaa5c548a1c4e873b415681a0
9969 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9970 Date:   Thu Sep 17 11:07:16 2009 +0200
9971
9972     fsl_i2c: Add CONFIG_FSL_I2C_CUSTOM_{DFSR/FDR}
9973
9974     Some boards need a higher DFSR value than the spec currently
9975     recommends so give these boards the means to define there own.
9976
9977     For completeness, add CONFIG_FSL_I2C_CUSTOM_FDR too.
9978
9979     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9980
9981 commit 21f4cbb77299788e2b06c9b0f48cf20a5ab00d4a
9982 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9983 Date:   Thu Sep 17 11:07:15 2009 +0200
9984
9985     fsl_i2c: Wait for STOP condition to propagate
9986
9987     After issuing a STOP one must wait until the STOP has completed
9988     on the bus before doing something new to the controller.
9989
9990     Also add an extra read of SR as the manual mentions doing that
9991     is a good idea.
9992
9993     Remove surplus write of CR just before a write, isn't required and
9994     could potentially disturb the I2C bus.
9995
9996     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9997
9998 commit c7190f028fa950d4d36b6d0b4bb3fc72602ec54c
9999 Author: Kim Phillips <kim.phillips@freescale.com>
10000 Date:   Fri Sep 25 18:19:44 2009 -0500
10001
10002     mpc83xx: retain POR values of non-configured ACR, SPCR, SCCR, and LCRR bitfields
10003
10004     some LCRR bits are not documented throughout the 83xx family RMs.
10005     New board porters copying similar board configurations might omit
10006     setting e.g., DBYP since it was not documented in their SoC's RM.
10007
10008     Prevent them bricking their board by retaining power on reset values
10009     in bit fields that the board porter doesn't explicitly configure
10010     via CONFIG_SYS_<registername>_<bitfield> assignments in the board
10011     config file.
10012
10013     also move LCRR assignment to cpu_init_r[am] to help ensure no
10014     transactions are being executed via the local bus while CLKDIV is being
10015     modified.
10016
10017     also start to use i/o accessors.
10018
10019     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10020
10021 commit 00ec0ff549b8cb6fb6d40e275aeb5a460642a3bd
10022 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10023 Date:   Mon Sep 21 17:44:51 2009 -0400
10024
10025     sbc8349: tidy up Makefile to use new configuration script.
10026
10027     Commit 804d83a5 allows us to move all the configuration
10028     variation tweaks out of the top level Makefile and down
10029     into the board config header.  This takes advantage of
10030     that for the sbc8349 board.
10031
10032     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10033     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10034
10035 commit da6eea0f48c24a318e6de69d6bca0bb5ab70572b
10036 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10037 Date:   Wed Sep 16 23:22:08 2009 +0400
10038
10039     mpc83xx: mpc8360emds: Add QE USB device tree fixups
10040
10041     With this patch we can change QE USB mode without need to hand-edit
10042     the device tree.
10043
10044     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10045     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10046
10047 commit 89da44ce3fe1638312d71cb3add8c6a6d2c7c1f3
10048 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10049 Date:   Wed Sep 16 23:21:59 2009 +0400
10050
10051     mpc83xx: mpc8360emds: Use RGMII-ID mode, add workarounds for rev. 2.1 CPUs
10052
10053     This patch fixes various ethernet issues with gigabit links handling
10054     in U-Boot. The workarounds originally implemented by Kim Phillips for
10055     Linux kernel.
10056
10057     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10058     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10059
10060 commit 034477bb31948d698d18b84bc0834c3e25a14d04
10061 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10062 Date:   Wed Sep 16 23:21:57 2009 +0400
10063
10064     mpc83xx: mpc8360emds: Don't use LBC SDRAM when DDR is available
10065
10066     Since commit 5c2ff323a94e27e481f70c44838d43fcd844dd46 ("mpc8360emds:
10067     rework LBC SDRAM setup"), LBC SDRAM is available for use in Linux.
10068
10069     Though, it appears that QE Ethernet in Gigabit mode can't transmit
10070     large packets when it tries to work with a data in LBC SDRAM (memtest
10071     didn't discover any issues, is LBC SDRAM just too slow?).
10072
10073     With this patch we can still use the board without DDR memory, but
10074     if DDR is available, we don't use LBC SDRAM.
10075
10076     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10077     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10078
10079 commit d77c779bc23596aa3693d1c5c4d5b6e1072f93f2
10080 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10081 Date:   Wed Sep 16 23:21:55 2009 +0400
10082
10083     net: uec: Fix uccf.h and uec.h headers to include headers they depend on
10084
10085     Headers should include headers containing prototypes and defines they
10086     depend on, don't assume that they're included by somebody else.
10087
10088     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10089     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10090
10091 commit 6185f80c311cc3bdef2f8d5096c61e40ca6f48b2
10092 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10093 Date:   Wed Sep 16 23:21:53 2009 +0400
10094
10095     net: uec_phy: Implement TXID and RXID RGMII modes for Marvell PHYs
10096
10097     This will be needed for MPC8360E-MDS boards with rev. 2.1 CPUs.
10098
10099     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10100     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10101
10102 commit 984f10baac8ef6032df52f135943d6b0bc96f724
10103 Author: Wolfgang Denk <wd@denx.de>
10104 Date:   Fri Sep 25 14:16:00 2009 +0200
10105
10106     mpc5121ads: fix breakage introduced when reordering elpida_mddrc_config[]
10107
10108     Signed-off-by: Wolfgang Denk <wd@denx.de>
10109
10110 commit 6e748ea004473cce99fbde6382dd580c10ffdb60
10111 Author: Ken MacLeod <ken@bitsko.slc.ut.us>
10112 Date:   Fri Sep 11 15:16:18 2009 -0500
10113
10114     cmd_fdt.c: fix parse of byte streams and strings
10115
10116     Commit 4abd844d8e extended the fdt command parser to handle property
10117     strings which are split across multiple arguments but it was broken for
10118     byte streams and strings.
10119
10120     Byte stream parsing:
10121
10122      * Fixes where it would terminate early or go into an endless loop.
10123
10124      * Fixes a 0x00 being inserted into the data if there is a space after
10125        '[' or a separate argument.
10126
10127      * Fixes dereferencing the argument pointer after the last argument.
10128
10129      * Checks for bad characters.
10130
10131     String parsing:
10132
10133      * Treat multiple arguments as a string list.  This fixes an issue where
10134        only the last argument was stored.
10135
10136     Signed-off-by: Ken MacLeod <ken@bitsko.slc.ut.us>
10137
10138 commit 3887c3fbdbbe6bbb4df60ed415c8e1ab9fe56b5e
10139 Author: Heiko Schocher <hs@denx.de>
10140 Date:   Wed Sep 23 07:56:08 2009 +0200
10141
10142     mucmc52, uc101: delete ata@3a00 node, if no CF card is detected
10143
10144     U-Boot can detect if an IDE device is present or not.
10145     If not, and this new config option is activated, U-Boot
10146     removes the ATA node from the DTS before booting Linux,
10147     so the Linux IDE driver does not probe the device and
10148     crash. This is needed for buggy hardware (uc101) where
10149     no pull down resistor is connected to the signal IDE5V_DD7.
10150
10151     Signed-off-by: Heiko Schocher <hs@denx.de>
10152
10153 commit 7f625fc6d3ba8f890e843ac01717804c2462ed53
10154 Author: Heiko Schocher <hs@denx.de>
10155 Date:   Wed Sep 23 07:56:04 2009 +0200
10156
10157     mpc5200, mucmc52, uc101: config cleanup
10158
10159     - As these boards are similiar, collect common config options
10160       in manroland/common.h and manroland/mpc52xx-common.h
10161       for mpc5200 specific common options for this manufacturer.
10162     - add OF support
10163     - update default environment
10164
10165     Signed-off-by: Heiko Schocher <hs@denx.de>
10166
10167     Minor edit of commit message.
10168
10169     Signed-off-by: Wolfgang Denk <wd@denx.de>
10170
10171 commit 9d142ea8f787882ab732fa531a34db091bfa363d
10172 Author: Wolfgang Denk <wd@denx.de>
10173 Date:   Fri Sep 25 00:57:49 2009 +0200
10174
10175     Fix "ppc/85xx: Clean up use of LAWAR defines" breakage
10176
10177     Commit 002741ae86 modified include/asm-ppc/mmu.h such that the LAWAR_
10178     defines were only enabled for the 83xx platform, but they are also
10179     needed on MPC512x system. Enabling these for E300 systems seems thus
10180     more appropriate.
10181
10182     Signed-off-by: Wolfgang Denk <wd@denx.de>
10183
10184 commit a5aa3998ab6408a6ac738a3ce8005e647b9465f8
10185 Author: Martha M Stan <mmarx@silicontkx.com>
10186 Date:   Mon Sep 21 14:08:00 2009 -0400
10187
10188     Add Elpida Memory Configuration to mpc5121ads Boards
10189
10190     Signed-off-by: Martha M Stan <mmarx@silicontkx.com>
10191
10192     Minor coding style cleanup.
10193
10194     Signed-off-by: Wolfgang Denk <wd@denx.de>
10195
10196 commit 054197ba8ee5ef1e41694df58531b6e53ec43f2d
10197 Author: Martha M Stan <mmarx@silicontkx.com>
10198 Date:   Mon Sep 21 14:07:14 2009 -0400
10199
10200     mpc512x: Streamlined fixed_sdram() init sequence.
10201
10202     Signed-off-by: Martha M Stan <mmarx@silicontkx.com>
10203
10204     Minor cleanup:
10205
10206     Re-ordered default_mddrc_config[] to have matching indices.
10207
10208     This allows to use the same index "N" for source and target fields;
10209     before, we had code like this
10210
10211         out_be32(&im->mddrc.ddr_time_config2, mddrc_config[3]);
10212
10213     which always looked like a copy & paste error because 2 != 3.
10214
10215     Also, use NULL when meaning a null pointer.
10216
10217     Signed-off-by: Wolfgang Denk <wd@denx.de>
10218
10219 commit 39aaca1f66a0e5b1204b0789f6c0097938c00ad1
10220 Author: Kumar Gala <galak@kernel.crashing.org>
10221 Date:   Thu Mar 19 02:46:19 2009 -0500
10222
10223     ppc/p4080: Determine various chip frequencies on CoreNet platforms
10224
10225     The means to determine the core, bus, and DDR frequencies are completely
10226     new on CoreNet style platforms.  Additionally on p4080 we can have
10227     different frequencies for FMAN and PME IP blocks.  We need to keep track
10228     of the FMAN & PME frequencies since they are used for time stamping
10229     capabilities inside each block.
10230
10231     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10232
10233 commit 3c2a67eec8a0facc865b400caca52e7f6b7adf01
10234 Author: Kumar Gala <galak@kernel.crashing.org>
10235 Date:   Thu Sep 17 01:52:37 2009 -0500
10236
10237     ppc/p4080: Handle timebase enabling and frequency reporting
10238
10239     On CoreNet style platforms the timebase frequency is the bus frequency
10240     defined by 16 (on PQ3 it is divide by 8).  Also on the CoreNet platforms
10241     the core not longer controls the enabling of the timebase.  We now need
10242     to enable the boot core's timebase via CCSR register writes.
10243
10244     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10245
10246 commit 7e4259bba4c56536760e42d32dacfb3233f216fd
10247 Author: Kumar Gala <galak@kernel.crashing.org>
10248 Date:   Thu Mar 19 02:39:17 2009 -0500
10249
10250     ppc/p4080: Add various p4080 related defines (and p4040)
10251
10252     There are various locations that we have chip specific info:
10253
10254     * Makefile for which ddr code to build
10255     * Added p4080 & p4040 to cpu_type_list and SVR list
10256     * Added number of LAWs for p4080
10257     * Set CONFIG_MAX_CPUS to 8 for p4080
10258
10259     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10260
10261 commit 39a7e7fd538cdf49e7e8a2f0634ea5e15e12b4ec
10262 Author: Kumar Gala <galak@kernel.crashing.org>
10263 Date:   Thu Sep 17 01:44:39 2009 -0500
10264
10265     ppc/p4080: CoreNet platfrom style secondary core release
10266
10267     The CoreNet platform style of bringing secondary cores out of reset is
10268     a bit different that the PQ3 style.  Mostly the registers that we use
10269     to setup boot translation, enable time bases, and boot release the cores
10270     have moved around.
10271
10272     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10273
10274 commit a880cf3e0e1c220d780eccd0b101170c4499485d
10275 Author: Kumar Gala <galak@kernel.crashing.org>
10276 Date:   Thu Sep 17 01:44:00 2009 -0500
10277
10278     ppc/p4080: CoreNet platfrom style CCSRBAR setting
10279
10280     On CoreNet based platforms the CCSRBAR address is split between an high &
10281     low register and we no longer shift the address.
10282
10283     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10284     Signed-off-by: Scott Wood <scottwood@freescale.com>
10285
10286 commit 418ec8584343f04048e2cc7ee96b6b29be54ad97
10287 Author: Kumar Gala <galak@kernel.crashing.org>
10288 Date:   Thu Mar 19 02:32:23 2009 -0500
10289
10290     ppc/p4080: Add support for CoreNet style platform LAWs
10291
10292     On CoreNet based platforms the LAW address is split between an high &
10293     low register and we no longer shift the address.  Also, the target IDs
10294     on CoreNet platforms have been completely re-assigned.
10295
10296     Additionally, added a new find_law() API to which LAW an address hits in.
10297     This is need for the CoreNet style boot release code since it will need
10298     to determine what the target ID should be set to for boot window
10299     translation.
10300
10301     Finally, enamed LAWAR_EN to LAW_EN and moved to header so we can use
10302     it elsewhere.
10303
10304     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10305
10306 commit 01df521217957d77d53c2d570183eded7030938f
10307 Author: Kumar Gala <galak@kernel.crashing.org>
10308 Date:   Wed Sep 16 09:43:12 2009 -0500
10309
10310     ppc/p4080: Add p4080 platform immap definitions
10311
10312     The p4080 SoC has a significant amount of commonality with the 85xx/PQ3
10313     platform.  We reuse the 85xx immap and just add new definitions for
10314     local access and global utils.  The global utils is now broken into
10315     global utils, clocking and run control/power management.
10316
10317     The offsets from CCSR for a number of blocks have also changed.  We
10318     introduce the CONFIG_FSL_CORENET define to distinquish the PQ3 style of
10319     platform from the new p4080 platform.  We don't use QoirQ as there are
10320     products (like p2020) that are PQ3 based platforms but have the QoirQ
10321     name.
10322
10323     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10324
10325 commit 25bacf7a2b096496e2c58f2de4e5b2bce8fba038
10326 Author: Kumar Gala <galak@kernel.crashing.org>
10327 Date:   Tue Sep 22 15:45:44 2009 -0500
10328
10329     ppc/85xx: Fix enabling of L2 cache
10330
10331     We need to flash invalidate the locks in addition to the cache
10332     before we enable.
10333
10334     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10335
10336 commit cb0ff65c619efacdc0ba69aa8ee6ede7dd364a38
10337 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
10338 Date:   Tue Sep 22 12:48:27 2009 +0530
10339
10340     85xx-fdt: Fixed l2-ctlr's compatible prop for QorIQ
10341
10342     The code assumed names where just numbers and always prefixed 'mpc'.
10343     However newer QorIQ don't follow the mpc naming scheme.
10344
10345     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
10346     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10347
10348 commit 234a89d911ce28e46372f555d7c14e28424f2b0d
10349 Author: Mingkai Hu <Mingkai.hu@freescale.com>
10350 Date:   Tue Sep 22 14:53:21 2009 +0800
10351
10352     ppc/85xx: add cpu init config file for boot from NAND
10353
10354     When boot from NAND, the NAND flash must be connected to br/or0.
10355     Also init RAM(L2 SRAM or DDR SDRAM) for load the second image to
10356     it.
10357
10358     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10359     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10360
10361 commit 266139b88b43ae1d87abb5f5431e6f57b801795f
10362 Author: Mingkai Hu <Mingkai.hu@freescale.com>
10363 Date:   Tue Sep 22 14:53:34 2009 +0800
10364
10365     immap_85xx: add porpllsr's plat ratio definition
10366
10367     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10368     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10369
10370 commit 098bcbae3172d73d24ca8ba196328d901eed4132
10371 Author: Mingkai Hu <Mingkai.hu@freescale.com>
10372 Date:   Tue Sep 22 14:53:10 2009 +0800
10373
10374     ppc/85xx: add ld script file for boot from NAND
10375
10376     The first stage 4K image uses a seperate ld script file to
10377     generate 4K image. This patch moves it to the cpu/mpc85xx/*
10378     to make it avaliable for 85xx platform.
10379
10380     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10381     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10382
10383 commit 8439f05cfd8cbb38485376a34d9fe297ba262737
10384 Author: Peter Tyser <ptyser@xes-inc.com>
10385 Date:   Mon Sep 21 23:09:28 2009 -0500
10386
10387     mpc8610hpcd: Use common 86xx fdt fixup code
10388
10389     Using the common 86xx fdt fixups removes some board-specific code and
10390     should make the mpc8610hpcd easier to maintain in the long run.
10391
10392     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10393     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10394
10395 commit 928435d11b898870415910efff87a4d6399cecb8
10396 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10397 Date:   Mon Sep 21 17:19:17 2009 -0400
10398
10399     sbc85x0: tidy up Makefile to use new configuration script.
10400
10401     Commit 804d83a5 allows us to move all the configuration
10402     variation tweaks out of the top level Makefile and down
10403     into the boards config header.  This takes advantage of
10404     that for the sbc8540/sbc8560 boards.
10405
10406     There were a couple of cheezy comments pointing at incorrect
10407     files, or files that don't exist, so I've cleaned those up too.
10408
10409     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10410     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10411
10412 commit 2738bc8df65ec905094d83f62f87fed123a03b9c
10413 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10414 Date:   Sun Sep 20 20:36:06 2009 -0400
10415
10416     sbc8548: allow enabling PCI via a make config option
10417
10418     Prior to this commit, to enable PCI, you had to go manually
10419     edit the board config header, and if you had 33MHz PCI, you
10420     had to manually change CONFIG_SYS_NS16550_CLK too, which was
10421     not real user friendly,
10422
10423     This adds the typical PCI and clock speed make targets to the
10424     toplevel Makefile in accordance with what is being done with
10425     other boards (i.e. using the "-t" to mkconfig).
10426
10427     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10428     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10429
10430 commit fdc7eb90b504daa020f290604d50da8f7cb70d8a
10431 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10432 Date:   Sun Sep 20 20:36:05 2009 -0400
10433
10434     sbc8548: update PCI/PCI-e support code
10435
10436     The PCI/PCI-e support for the sbc8548 was based on an earlier
10437     version of what the MPC8548CDS board was using, and in its
10438     current state it won't even compile.  This re-syncs it to match
10439     the latest codebase and makes use of the new shared PCI functions
10440     to reduce board duplication.
10441
10442     It borrows from the MPC8568MDS, in that it pulls the PCI-e I/O
10443     back to 0xe280_0000 (where PCI2 would be on MPC8548CDS), and
10444     similarly it coalesces the PCI and PCI-e mem into one single TLB.
10445
10446     Both PCI-x and PCI-e have been tested with intel e1000 cards
10447     under linux (with an accompanying dts change in place)
10448
10449     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10450     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10451
10452 commit a8b3e90f798e0cca5f11c912f9d0823a1c5b6c24
10453 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10454 Date:   Sun Sep 20 20:36:01 2009 -0400
10455
10456     fsl_pci: create a SET_STD_PCI_INFO() helper wrapper
10457
10458     Recycle the recently added PCI-e wrapper used to reduce board
10459     duplication of code by creating a similar version for plain PCI.
10460
10461     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10462     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10463
10464 commit 11d5a629f8a40f9d7cffc74e58f4e3ed258e56ab
10465 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10466 Date:   Sun Sep 20 20:36:04 2009 -0400
10467
10468     sbc8548: correct local bus SDRAM size from 64M to 128M
10469
10470     The size of the LB SDRAM on this board is 128MB, spanning CS3
10471     and CS4.  It was previously only being configured for 64MB on
10472     CS3, since that was what the original codebase of the MPC8548CDS
10473     had.  In addition to setting up BR4/OR4, this also adds the TLB
10474     entry for the second half of the SDRAM.
10475
10476     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10477     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10478
10479 commit 0c7e4d45d9fb3c9e503ee93d50572d346dae150e
10480 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10481 Date:   Sun Sep 20 20:36:03 2009 -0400
10482
10483     sbc8548: use I/O accessors
10484
10485     Sweep throught the board specific file and replace the various
10486     register proddings with the equivalent I/O accessors.
10487
10488     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10489     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10490
10491 commit fc38eb98ff226f2c53eecbee033a6ab7619473dc
10492 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10493 Date:   Sun Sep 20 20:36:02 2009 -0400
10494
10495     sbc8548: remove eTSEC3/4 voltage hack
10496
10497     With only eTSEC1 and 2 being brought out to RJ-45 connectors, we
10498     aren't interested in the eTSEC3/4 voltage hack on this board
10499
10500     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10501     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10502
10503 commit 9b3ba24f18900633a394416cc056c44a1a6eb754
10504 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10505 Date:   Fri Sep 18 19:08:41 2009 -0400
10506
10507     sbc8548: enable access to second bank of flash
10508
10509     The sbc8548 has a 64MB SODIMM flash module off of CS6 that
10510     previously wasn't enumerated by u-boot.  There were already
10511     BR6/OR6 settings for it [used by cpu_init_f()] but there
10512     was no TLB entry and it wasn't in the list of flash banks
10513     reported to u-boot.
10514
10515     The location of the 64MB flash is "pulled back" 8MB from
10516     a 64MB boundary, in order to allow address space for the
10517     8MB boot flash that is at the end of 32 bit address space.
10518     This means creating two 4MB TLB entries for the 8MB chunk,
10519     and then expanding the original boot flash entry to 64MB
10520     in order to cover the 8MB boot flash and the remainder
10521     (56MB) of the user flash.
10522
10523     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10524     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10525
10526 commit ded58f4153923dfff16d2f96495bd7acf1f7e10e
10527 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10528 Date:   Wed Sep 23 17:30:57 2009 -0400
10529
10530     sbc8548: cosmetic line re-wrap
10531
10532     Fix the extra long lines to be consistent with u-boot coding style.
10533     No functional change here.
10534
10535     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10536
10537 commit 2c40acd3525b75db3fcd3f5a5bd40445679b5547
10538 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10539 Date:   Fri Sep 18 19:08:40 2009 -0400
10540
10541     sbc8548: get_clock_freq is not valid for this board
10542
10543     The get_clock_freq() comes from freescale/common/cadmus.c and is
10544     only valid for the CDS based 85xx reference platforms.  It would
10545     be nice if we could read the 33 vs. 66MHz status somehow, but in
10546     the meantime, tie it to CONFIG_SYS_CLK_FREQ like all the other
10547     non-CDS boards do.
10548
10549     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10550     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10551
10552 commit 7b1f1399e876587e0a268a5a471dd444bfbc3114
10553 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10554 Date:   Fri Sep 18 19:08:39 2009 -0400
10555
10556     sbc8548: delete unused MPC8548CDS info carried over from port
10557
10558     There are a couple defines and PCI bridge quirks related to the PCI
10559     backplane of the MPC8548CDS that have no meaning in the context of
10560     the port to the sbc8548 board, so delete them.
10561
10562     Also, the form factor of the sbc8548 is a standalone board with a
10563     single PCI-X and a single PCI-e slot.  That pretty much guarantees
10564     that it will never be a PCI agent itself, so the host/agent and root
10565     complex/end node distinctions have been removed.
10566
10567     Similarly, since there is no physical connector mapping to PCI2, so
10568     all references of PCI2 in the board support files have been removed
10569     as well.
10570
10571     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10572     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10573
10574 commit 94ca091456d5c3040ddd6351c80cf3e74393f9be
10575 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10576 Date:   Fri Sep 18 19:08:44 2009 -0400
10577
10578     sbc8548: enable use of PCI network cards
10579
10580     Create a board_eth_init to allow a place to hook in
10581     the PCI ethernet init after all the eTSEC are up
10582     and configured.
10583
10584     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10585     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10586
10587 commit 82b7725b6d46d9ad2b962b4cdfa896bd5ee32fb5
10588 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
10589 Date:   Sat Sep 19 17:50:17 2009 +0530
10590
10591     ppc/85xx: 32bit DDR changes for P1020/P1011
10592
10593     The P1020/P1011 SOCs support max 32bit DDR width as opposed to P2020/P2010
10594     where max DDR data width supported is 64bit.
10595
10596     As a next step the DDR data width initialization would be made more dynamic
10597     with more flexibility from the board perspective and user choice.
10598     Going forward we would also remove the hardcodings for platforms with onboard
10599     memories and try to use the FSL SPD code for DDR initialization.
10600
10601     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
10602     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10603
10604 commit bd42bbb858dde713f023fc2e4f512ec174a1a8d2
10605 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10606 Date:   Fri Sep 18 19:08:46 2009 -0400
10607
10608     sbc8548: replace README with completely new document
10609
10610     The previous README.sbc8548 was pretty much content-free. Replace
10611     it with something that actually gives the end user some relevant
10612     hardware details, and also lists the u-boot configuration choices.
10613
10614     Also in the cosmetic department, fix the bogus line in the Makefile
10615     that was carried over from the SBC8560 Makefile, and the typo in
10616     the sbc8548.c copyright.
10617
10618     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10619     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10620
10621 commit 002741ae862c1c7e3dad89d020e392e6add1c05d
10622 Author: Kumar Gala <galak@kernel.crashing.org>
10623 Date:   Sat Sep 19 11:20:54 2009 -0500
10624
10625     ppc/85xx: Clean up use of LAWAR defines
10626
10627     On 85xx platforms we shouldn't be using any LAWAR_* defines
10628     but using the LAW_* ones provided by fsl-law.h.  Rename any such
10629     uses and limit the LAWAR_ to the 83xx platform as the only user so
10630     we will get compile errors in the future.
10631
10632     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10633
10634 commit f61dae7c9dc526410faec15ce352b11fc36a560b
10635 Author: Kumar Gala <galak@kernel.crashing.org>
10636 Date:   Thu Sep 3 10:20:09 2009 -0500
10637
10638     ppc/85xx: Clean up mpc8572DS PCI setup code
10639
10640     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
10641     board ports, use IO accessors and clean up printing of status info.
10642
10643     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10644
10645 commit 4958af8735207640181c4423e41b24ee7418361a
10646 Author: Kumar Gala <galak@kernel.crashing.org>
10647 Date:   Thu Sep 3 09:42:01 2009 -0500
10648
10649     ppc/85xx: Clean up p2020ds PCI setup code
10650
10651     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
10652     board ports, use IO accessors and clean up printing of status info.
10653
10654     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10655
10656 commit 93a83872c707891bad22f7776d79a650c870601f
10657 Author: Kumar Gala <galak@kernel.crashing.org>
10658 Date:   Thu Sep 3 10:09:04 2009 -0500
10659
10660     ppc/85xx: Clean up p1_p2_rdb PCI setup
10661
10662     General code cleanup to use in/out IO accessors as well as making
10663     the code that prints out info sane between board and generic fsl pci
10664     code.
10665
10666     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10667
10668 commit 62ca21c442e18fec118ec83e183d64ea49966ce7
10669 Author: Kumar Gala <galak@kernel.crashing.org>
10670 Date:   Thu Sep 10 16:31:53 2009 -0500
10671
10672     ppc/85xx: Simplify the top makefile for P1_P2_RDB boards
10673
10674     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10675
10676 commit a0f9e0e0f06033807de0ae017ad4d9cf5ddff84b
10677 Author: Kumar Gala <galak@kernel.crashing.org>
10678 Date:   Thu Sep 10 16:26:37 2009 -0500
10679
10680     ppc/85xx: Simplify the top makefile for 36-bit config for P2020DS
10681
10682     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10683
10684 commit f9edcc10e6cb497dd7dcbaf691cfd1859abae27a
10685 Author: Kumar Gala <galak@kernel.crashing.org>
10686 Date:   Thu Sep 10 16:23:45 2009 -0500
10687
10688     ppc/85xx: Simplify the top makefile for 36-bit config for MPC8572DS
10689
10690     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10691
10692 commit 0e905ac28b1e039d74e63232293972bff6b5a0ce
10693 Author: Mingkai Hu <Mingkai.hu@freescale.com>
10694 Date:   Fri Sep 18 11:45:09 2009 +0800
10695
10696     ppc/85xx: simplify the top makefile for 36-bit config for mpc8536ds
10697
10698     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10699     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10700
10701 commit 202d94875c98b7b573f136c4f353609758ed9733
10702 Author: Kumar Gala <galak@kernel.crashing.org>
10703 Date:   Tue Sep 15 22:21:58 2009 -0500
10704
10705     ppc/85xx: Fix LCRR_CLKDIV defines
10706
10707     For some reason the CLKDIV field varies between SoC in how it interprets
10708     the bit values.
10709
10710     All 83xx and early (e500v1) PQ3 devices support:
10711      clk/2: CLKDIV = 2
10712      clk/4: CLKDIV = 4
10713      clk/8: CLKDIV = 8
10714
10715     Newer PQ3 (e500v2) and MPC86xx support:
10716      clk/4: CLKDIV = 2
10717      clk/8: CLKDIV = 4
10718      clk/16: CLKDIV = 8
10719
10720     Ensure that the MPC86xx and MPC85xx still get the same behavior and make
10721     the defines reflect their logical view (not the value of the field).
10722
10723     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10724     Acked-by: Peter Tyser <ptyser@xes-inc.com>
10725
10726 commit 55f786d8ba8ce58a81428536da34a2192b9bad9f
10727 Author: Peter Tyser <ptyser@xes-inc.com>
10728 Date:   Mon Sep 21 12:04:33 2009 -0500
10729
10730     MAKEALL: Use POSIX math
10731
10732     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10733
10734 commit 40a28f0885e62b6607e12ed6baa6284927f5263e
10735 Author: Peter Tyser <ptyser@xes-inc.com>
10736 Date:   Mon Sep 21 12:04:32 2009 -0500
10737
10738     MAKEALL: Add summary information
10739
10740     This change adds some basic summary information to the MAKEALL script.
10741     The summary information includes how many boards were compiled, how many
10742     boards had compile warnings or errors, and which specific boards had
10743     compile warnings or errors.
10744
10745     This information is useful when doing compile testing to quickly
10746     determine which boards are broken.
10747
10748     As a side benefit, no empty $BOARD.ERR files are generated by MAKEALL.
10749     Previously, each board had a corresponding $BOARD.ERR file, even if the
10750     board compiled cleanly.
10751
10752     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10753
10754 commit 71ce9bd7f551e44c4ddb4c985c095da6d3452d79
10755 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
10756 Date:   Mon Sep 21 11:05:55 2009 -0500
10757
10758     galaxy5200: enable version environment variable
10759
10760     Add version environment variable configuration to the galaxy5200
10761     board header file.
10762
10763     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
10764
10765     Edited commit message.
10766
10767     Signed-off-by: Wolfgang Denk <wd@denx.de>
10768
10769 commit c569ad6e1e8768a0fec513ffc156412240b7eb35
10770 Author: Werner Pfister <werner.pfister@intercontrol.de>
10771 Date:   Mon Sep 21 14:49:56 2009 +0200
10772
10773     digsy_mtc: Add TCR register value for RTC (DS1339)
10774
10775     Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de>
10776     Signed-off-by: Detlev Zundel <dzu@denx.de>
10777
10778 commit b0078c8792badd81aed51b7eabe85e960036361c
10779 Author: Werner Pfister <werner.pfister@intercontrol.de>
10780 Date:   Mon Sep 21 14:49:55 2009 +0200
10781
10782     rtc/ds1337.c: Allow to set TCR register
10783
10784     This is needed to correctly start the charging of an attached capacitor
10785     or battery.
10786
10787     Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de>
10788     Signed-off-by: Detlev Zundel <dzu@denx.de>
10789
10790 commit 9d7952e4c636b8c99289a44dbe28c6f93c43b9f7
10791 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
10792 Date:   Tue Sep 15 09:53:29 2009 +0200
10793
10794     ubifs: Add support for looking up directory and relative symlinks
10795
10796     This patch adds support for resolving symlinks to directories as well as
10797     relative symlinks. Symlinks are now always resolved during file lookup,
10798     so the load stage no longer needs to special-case them.
10799
10800     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
10801     Signed-off-by: Stefan Roese <sr@denx.de>
10802
10803 commit fcdb36b85ac033c09a9762a0a14808f7cb2ed54c
10804 Author: Rupjyoti Sarmah <rsarmah@amcc.com>
10805 Date:   Mon Sep 21 11:26:19 2009 -0700
10806
10807     ppc4xx: Fix PCIE PLL lock on 440SPe Yucca board
10808
10809     u-boot reports a PCIE PLL lock error at boot time on Yucca board, and
10810     left PCIe nonfunctional. This is fixed by making u-boot function
10811     ppc4xx_init_pcie() to wait 300 uS after negating reset before the
10812     first check of the PLL lock.
10813
10814     Signed-off-by: Rupjyoti Sarmah <rsarmah@amcc.com>
10815     Signed-off-by: Stefan Roese <sr@denx.de>
10816
10817 commit 91d599044caac4a8c228115b16cf3b073f902080
10818 Author: Dirk Eibach <eibach@gdsys.de>
10819 Date:   Mon Sep 21 13:27:14 2009 +0200
10820
10821     ppc4xx: Make DDR2 timing for intip more robust
10822
10823     DDR2 timing for intip was on the edge for some of the available chips
10824     for this board. Now it is verfied to work with all of them.
10825
10826     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
10827     Signed-off-by: Stefan Roese <sr@denx.de>
10828
10829 commit 184a3a27f5cd2c64666f74df94c86b94c4383ef8
10830 Author: Wolfgang Denk <wd@denx.de>
10831 Date:   Tue Sep 15 00:26:02 2009 +0200
10832
10833     board/linkstation/ide.c: Fix compile warning
10834
10835     Fix warning: ide.c:60: warning: dereferencing type-punned pointer will
10836     break strict-aliasing rules
10837
10838     Signed-off-by: Wolfgang Denk <wd@denx.de>
10839     Cc: Guennadi Liakhovetski <lg@denx.de>
10840
10841 commit 004eca0c9ba328de457d5dc9ef8805639dfef893
10842 Author: Peter Tyser <ptyser@xes-inc.com>
10843 Date:   Wed Sep 16 22:03:08 2009 -0500
10844
10845     ppc: Clean up calling of phy_reset() during init
10846
10847     Remove board-specific #ifdefs for calling phy_reset() during
10848     initializtion
10849
10850     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10851
10852 commit 3a8f28d0a6d9f8505017680233064c13e4587174
10853 Author: Peter Tyser <ptyser@xes-inc.com>
10854 Date:   Wed Sep 16 22:03:07 2009 -0500
10855
10856     ppc: Clean up calling of misc_init_r() during init
10857
10858     Remove board-specific #ifdefs for calling misc_init_r() during
10859     initializtion
10860
10861     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10862     Acked-by: Heiko Schocher <hs@denx.de>
10863
10864 commit 3202d33169df04da5cf3dea8c5ab0a902b90ecaa
10865 Author: Peter Tyser <ptyser@xes-inc.com>
10866 Date:   Wed Sep 16 21:38:10 2009 -0500
10867
10868     Remove deprecated 'autoscr' command/variables
10869
10870     The more standard 'source' command provides identical functionality to
10871     the autoscr command.
10872
10873     Environment variable names/values on the MVBC_P, MVBML7, kmeter1,
10874     mgcoge, and km8xx boards are updated to no longer refernce 'autoscr'.
10875
10876     The 'autoscript' and 'autoscript_uname' environment variables are
10877     also removed.
10878
10879     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10880     Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
10881     Acked-by: Heiko Schocher <hs@denx.de>
10882
10883 commit d3f4941874a20d8a390a36ba71335ae1db2f9ba0
10884 Author: Paul Gibson <paul.gibson2074@gmail.com>
10885 Date:   Wed Sep 16 10:05:00 2009 +1000
10886
10887     mpc512x. Micron nand flash needs a reset before a read command is issued.
10888
10889     Micron nand flash needs a reset before a read command is issued.
10890     The current mpc5121_nfc driver ignores the reset command.
10891
10892 commit b55ae40249545eabb9d6bfb850b1400a32561b1f
10893 Author: Marcel Ziswiler <marcel@ziswiler.com>
10894 Date:   Wed Sep 9 21:18:41 2009 +0200
10895
10896     FDT: remove obsolete OF_CPU and OF_SOC macros.
10897
10898     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
10899     Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10900     Acked-by: Heiko Schocher <hs@denx.de>
10901
10902 commit 3b6a9267f0de7b85d387fa4123d0b58379363447
10903 Author: Wolfgang Denk <wd@denx.de>
10904 Date:   Tue Sep 15 00:09:21 2009 +0200
10905
10906     board/flagadm/flash.c: fix compile warning
10907
10908     Fix warning: flash.c:531: warning: dereferencing type-punned pointer
10909     will break strict-aliasing rules
10910
10911     Signed-off-by: Wolfgang Denk <wd@denx.de>
10912     Cc: Kári Davíðsson <kd@flaga.is>
10913
10914 commit 0413cfecea350000eab5e591a0965c3e3ee0ff00
10915 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
10916 Date:   Thu Sep 17 15:15:52 2009 +0200
10917
10918     Correct ffs/fls regression for PowerPC etc
10919
10920     Commits
10921
10922       02f99901ed1c9d828e3ea117f94ce2264bf8389e
10923       52d61227b66d4099b39c8309ab37cb67ee09a405
10924
10925     introduced a regression where platform-specific ffs/fls implementations
10926     were defined away. This patch corrects that by using PLATFORM_xxx
10927     instead of the name itself.
10928
10929     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
10930     Acked-by: Kumar Gala <galak@kernel.crashing.org>
10931     Acked-by: Stefan Roese <sr@denx.de>
10932
10933 commit e67af44d0167d8237dd2c2ddf8e301d19ca12914
10934 Author: Stefan Roese <sr@denx.de>
10935 Date:   Mon Sep 14 11:13:34 2009 +0200
10936
10937     ppc4xx: Consolidate get_OPB_freq()
10938
10939     All 4xx variants had their own, mostly identical get_OPB_freq()
10940     function. Some variants even only had the OPB frequency calculated
10941     in this routine and not supplied the sys_info.freqOPB variable
10942     correctly (e.g. 405EZ). This resulted in incorrect OPB values passed
10943     via the FDT to Linux.
10944
10945     This patch now removes all those copies and only uses one function
10946     for all 4xx variants (except for IOP480 which doesn't have an OPB).
10947
10948     Signed-off-by: Stefan Roese <sr@denx.de>
10949
10950 commit 84a45d33c2cc261dbd5411f7c2ad45f6003025b6
10951 Author: Stefan Roese <sr@denx.de>
10952 Date:   Fri Sep 11 17:09:45 2009 +0200
10953
10954     ppc4xx: Enable commands for FDT enabled Linux booting on AMCC Acadia
10955
10956     Acadia still used the "old" arch/ppc bootm commands for booting
10957     Linux images without FDT. This patch now enables these fdt-aware
10958     boot commands for Acadia as well.
10959
10960     Signed-off-by: Stefan Roese <sr@denx.de>
10961
10962 commit 95a4a593b577b6e2f1da2d4b0f5ec86975c33413
10963 Author: Stefan Roese <sr@denx.de>
10964 Date:   Fri Sep 11 17:07:55 2009 +0200
10965
10966     ppc4xx: Fix 405EZ uart base baud calculation
10967
10968     With this fix, Linux correctly configures the baudrate when booting
10969     with FDT passed from U-Boot to Linux.
10970
10971     Signed-off-by: Stefan Roese <sr@denx.de>
10972
10973 commit 15fba3279b56333bdb65ead366f82c945ed320d1
10974 Author: Kumar Gala <galak@kernel.crashing.org>
10975 Date:   Fri Sep 11 15:28:41 2009 -0500
10976
10977     ppc/85xx: Disable all async interrupt sources when we boot
10978
10979     We should make sure to clear MSR[ME, CE, DE] when we boot an OS image
10980     since we have changed the exception vectors and the OSes vectors might
10981     not be setup we should avoid async interrupts at all costs.
10982
10983     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10984
10985 commit 9f00409a9d04cf533305531da32437130802f3a3
10986 Author: Kumar Gala <galak@kernel.crashing.org>
10987 Date:   Fri Sep 11 13:52:45 2009 -0500
10988
10989     ppc/85xx: Split out cpu_init_early into its own file for NAND_SPL
10990
10991     By pulling out cpu_init_early we can build just it and not all of
10992     cpu_init for NAND_SPL.
10993
10994     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10995
10996 commit 0456dbf3475d0aec42873a967ac97ed81f376119
10997 Author: Kumar Gala <galak@kernel.crashing.org>
10998 Date:   Fri Sep 11 13:41:49 2009 -0500
10999
11000     ppc/85xx: Change cpu_init_early_f so we can use with NAND SPL
11001
11002     Use write_tlb and don't use memset so we can use the same code for
11003     cpu_init_early_f between NAND SPL and not.
11004
11005     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11006
11007 commit 6e1385d5f8d137e741dfef02465d7dc328040ad7
11008 Author: Mingkai Hu <Mingkai.hu@freescale.com>
11009 Date:   Fri Sep 11 10:53:08 2009 +0800
11010
11011     NAND boot: change NAND loader's relocate SP to CONFIG param
11012
11013     So that we can set the NAND loader's relocate stack pointer
11014     to the value other than the relocate address + 0x10000.
11015
11016     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
11017     Acked-by: Kim Phillips <kim.phillips@freescale.com>
11018     Acked-by: Scott Wood <scottwood@freescale.com>
11019     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11020
11021 commit 7da53351d817c6d77364cfde922891f37d0e5ed8
11022 Author: Mingkai Hu <Mingkai.hu@freescale.com>
11023 Date:   Fri Sep 11 14:19:10 2009 +0800
11024
11025     ppc/85xx: add boot from NAND/eSDHC/eSPI support
11026
11027     The MPC8536E is capable of booting form NAND/eSDHC/eSPI, this patch
11028     implements these three bootup methods in a unified way - all of these
11029     use the general cpu/mpc85xx/start.S, and load the main image to L2SRAM
11030     which lets us use the SPD to initialize the SDRAM.
11031
11032     For all three bootup methods, the bootup process can be divided into two
11033     stages: the first stage will initialize the corresponding controller,
11034     configure the L2SRAM, then copy the second stage image to L2SRAM and
11035     jump to it. The second stage image is just like the general U-Boot image
11036     to configure all the hardware and boot up to U-Boot command line.
11037
11038     When boot from NAND, the eLBC controller will first load the first stage
11039     image to internal 4K RAM buffer because it's also stored on the NAND
11040     flash. The first stage image, also call 4K NAND loader, will initialize
11041     the L2SRAM, load the second stage image to L2SRAM and jump to it. The 4K
11042     NAND loader's code comes from the corresponding nand_spl directory, along
11043     with the code twisted by CONFIG_NAND_SPL.
11044
11045     When boot from eSDHC/eSPI, there's no such a first stage image because
11046     the CPU ROM code does the same work. It will initialize the L2SRAM
11047     according to the config addr/word pairs on the fixed address and
11048     initialize the eSDHC/eSPI controller, then load the second stage image
11049     to L2SRAM and jump to it.
11050
11051     The macro CONFIG_SYS_RAMBOOT is used to control the code to produce the
11052     second stage image for all different bootup methods. It's set in the
11053     board config file when one of the bootup methods above is selected.
11054
11055     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
11056     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11057
11058 commit b2eec281a811bb52941f61203d8fe35256b3582c
11059 Author: Kumar Gala <galak@kernel.crashing.org>
11060 Date:   Fri Sep 11 12:32:01 2009 -0500
11061
11062     ppc/85xx: Move code around to prep for NAND_SPL
11063
11064     If we move some of the functions in tlb.c around we need less
11065     ifdefs.  The first stage loader just needs invalidate_tlb and
11066     init_tlbs.
11067
11068     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11069
11070 commit 206af3527c05e520e28d38a48a1d15433e34675d
11071 Author: Kumar Gala <galak@kernel.crashing.org>
11072 Date:   Fri Sep 11 11:30:30 2009 -0500
11073
11074     ppc/85xx: Repack tlb_table to save space
11075
11076     We can pack the initial tlb_table in MAS register format and use
11077     write_tlb to set things up.  This savings can be helpful for NAND
11078     style first stage boot loaders.
11079
11080     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11081
11082 commit d30f9043539d372cf66406bc2f21bb8c20e67009
11083 Author: Kumar Gala <galak@kernel.crashing.org>
11084 Date:   Fri Sep 11 11:27:00 2009 -0500
11085
11086     ppc/85xx: Introduce low level write_tlb function
11087
11088     Factor out the code we use to actually write a tlb entry.
11089
11090     set_tlb is a logical view of the TLB while write_tlb is a low level
11091     matching the MAS registers.
11092
11093     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11094
11095 commit 0ead6f2ed7cf4e1f70dab5b529ad121e38359485
11096 Author: Roy Zang <tie-fei.zang@freescale.com>
11097 Date:   Thu Sep 10 14:44:48 2009 +0800
11098
11099     ppc/85xx: Enable usb ehci support for p2020ds board
11100
11101     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
11102     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11103
11104 commit 6d8565a1ed5acb01bad4a4cd74a93be5f7fb7f7c
11105 Author: Kumar Gala <galak@kernel.crashing.org>
11106 Date:   Thu Sep 10 14:54:55 2009 -0500
11107
11108     ppc/8xxx: Misc DDR related fixes
11109
11110     * Fix setting of ESDMODE (MR1) register - the bit shifting was wrong
11111     * Fix the format string to match size in a debug print
11112
11113     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11114
11115 commit 3e3c9c157b89eab2dc2f897899b1b95cd70c1a58
11116 Author: Scott Wood <scottwood@freescale.com>
11117 Date:   Thu Aug 20 17:45:00 2009 -0500
11118
11119     ppc/85xx: Remove some bogus code from external interrupt handler.
11120
11121     Skipping the interrupted instruction will accomplish nothing other
11122     than turning a spurious interrupt into a crash.
11123
11124     External interrupts are not machine checks, so don't count them as such.
11125
11126     Signed-off-by: Scott Wood <scottwood@freescale.com>
11127
11128 commit dcc87dd58db466caa2d66755c5ec9455edf42fe8
11129 Author: Scott Wood <scottwood@freescale.com>
11130 Date:   Thu Aug 20 17:45:05 2009 -0500
11131
11132     ppc/85xx: Ensure that MAS8 is zero when writing TLB entries.
11133
11134     Its reset value is random, and we sometimes read uninitialized TLB
11135     arrays.  Make sure that we don't retain MAS8 from reading such an entry
11136     if the VF bit in MAS8 is set, attempts to use the mapping will trap.
11137
11138     Signed-off-by: Scott Wood <scottwood@freescale.com>
11139
11140 commit 1b72dbecca2d7ad7a21c92d80227daa2d8ec5a57
11141 Author: Scott Wood <scottwood@freescale.com>
11142 Date:   Thu Aug 20 17:44:20 2009 -0500
11143
11144     ppc/85xx: Don't enable interrupts before we're ready
11145
11146     We cannot handle any exceptions while running in AS1, as the exceptions
11147     will transition back to AS0 without a valid mapping.
11148
11149     Signed-off-by: Scott Wood <scottwood@freescale.com>
11150
11151 commit 3ca55bce9c8bf00df06a20487fafc16fa2f8084b
11152 Author: Marcel Ziswiler <marcel@ziswiler.com>
11153 Date:   Fri Sep 11 07:50:33 2009 -0400
11154
11155     mpc8260: remove Ethernet node fixup to use generic FDT code.
11156
11157     Remove Ethernet node fixup from mgcoge and muas3001 boards and modify its
11158     configs for the common mpc8260 code to use generic Ethernet fixup.
11159
11160     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
11161     Tested-by: Heiko Schocher <hs@denx.de>
11162
11163 commit 1c20e4a9fbc531e2149ae061e8583f5fad82f163
11164 Author: Mike Frysinger <vapier@gentoo.org>
11165 Date:   Wed Sep 9 12:20:21 2009 -0400
11166
11167     tools/netconsole: use ncb automatically if available
11168
11169     The standard netcat, while ubiquitous, doesn't handle broadcast udp packets
11170     properly.  The local ncb util does however.  So if ncb can be located in
11171     the standard locations, automatically use that instead.
11172
11173     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11174
11175 commit 770931805d292908a57a3d2c5f9a4fcde888b5a2
11176 Author: Mike Frysinger <vapier@gentoo.org>
11177 Date:   Wed Sep 9 12:20:20 2009 -0400
11178
11179     tools/netconsole: make a bit more robust
11180
11181     The netcat utility likes to exit when it receives an empty packet (as it
11182     thinks this means EOF).  This can easily occur when working with command
11183     line editing as this behavior will be triggered when using backspace.  Or
11184     with tabs and command line completion.  So create two netcat processes -
11185     one to only listen (and put it into a loop), and one to do the sending.
11186     Once the user quits the transmitting netcat, the listening one will be
11187     killed automatically.
11188
11189     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11190
11191 commit a6e19d69f63c14b7672c65ca4b014621c6fd0201
11192 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
11193 Date:   Mon Aug 24 09:10:16 2009 +0200
11194
11195     arm: Define test_and_set_bit and test_and_clear bit for ARM
11196
11197     Needed for (e.g.) ubifs support to work.
11198
11199     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
11200
11201 commit 52d61227b66d4099b39c8309ab37cb67ee09a405
11202 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
11203 Date:   Mon Aug 24 09:10:12 2009 +0200
11204
11205     Define ffs/fls for all architectures
11206
11207     UBIFS requires fls(), which is not defined for arm (and some other
11208     architectures) and this patch adds it. The implementation is taken from
11209     Linux and is generic. ffs() is also defined for those that miss it.
11210
11211     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
11212
11213 commit 4b15de08fe4d2c9d12a3764394731018a763216b
11214 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
11215 Date:   Mon Aug 24 09:10:03 2009 +0200
11216
11217     arm: Make arm bitops endianness-independent
11218
11219     Bring over the bitop implementations from the Linux
11220     include/asm-generic/bitops/non-atomic.h to provide
11221     endianness-independence.
11222
11223     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
11224
11225 commit 02f99901ed1c9d828e3ea117f94ce2264bf8389e
11226 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
11227 Date:   Mon Aug 24 09:09:50 2009 +0200
11228
11229     Move __set/clear_bit from ubifs.h to bitops.h
11230
11231     __set_bit and __clear_bit are defined in ubifs.h as well as in
11232     asm/include/bitops.h for some architectures. This patch moves
11233     the generic implementation to include/linux/bitops.h and uses
11234     that unless it's defined by the architecture.
11235
11236     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
11237
11238 commit 557555fe0b82940ba7cc69f81d31d6ef4d4933b4
11239 Author: Mike Frysinger <vapier@gentoo.org>
11240 Date:   Fri Sep 4 19:54:45 2009 -0400
11241
11242     standalone: convert to kbuild style
11243
11244     Clean up the arch/cpu/board/config checks as well as redundant setting of
11245     srec/bin variables by using the kbuild VAR-$(...) style.
11246
11247     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11248
11249 commit 804d83a563c47b55e1f14f5de3b6e9d7e2a7ef5e
11250 Author: Wolfgang Denk <wd@denx.de>
11251 Date:   Tue Sep 15 22:12:31 2009 +0200
11252
11253     mkconfig: split the board make target to multiple config targets
11254
11255     To simplify the top level makefile it useful to be able to parse
11256     the top level makefile target to multiple individual target, then
11257     put them to the config.h, leave the board config file to handle
11258     the different targets.
11259
11260     Note that this method uses the '_'(underline) as the delimiter when
11261     splits the board make target.
11262
11263     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
11264
11265     This also reverts commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f.
11266
11267     Signed-off-by: Wolfgang Denk <wd@denx.de>
11268
11269 commit ceb2d57c2205db5bbd868577f756c74a2568160c
11270 Author: Wolfgang Denk <wd@denx.de>
11271 Date:   Tue Sep 15 21:13:27 2009 +0200
11272
11273     kwbimage.c: Fix compile warning when building on 64 bit systems (again)
11274
11275     Commit 51003b89 attempted to fix a build problem on 64 bit systems,
11276     but just turned it into a build problem on 32 bit systems (silly me).
11277
11278     Now do the Right Thing (TM) and use a "%zu" printf format.
11279
11280     Also fix spelling error.
11281
11282     Signed-off-by: Wolfgang Denk <wd@denx.de>
11283
11284 commit 6c7bc91fb3dba186d3398a1653f6db236510ffa7
11285 Author: Wolfgang Denk <wd@denx.de>
11286 Date:   Fri Sep 11 11:30:34 2009 +0200
11287
11288     board/amcc/common/flash.c: Fix compile warning
11289
11290     Fix warning: ../common/flash.c:917: warning: dereferencing type-punned
11291     pointer will break strict-aliasing rules
11292
11293     Signed-off-by: Wolfgang Denk <wd@denx.de>
11294     Cc: Stefan Roese <sr@denx.de>
11295     Acked-by: Stefan Roese <sr@denx.de>
11296
11297 commit 70fb809c563c340538264d2a9436135e74c38bfe
11298 Author: Wolfgang Denk <wd@denx.de>
11299 Date:   Fri Sep 11 11:47:07 2009 +0200
11300
11301     board/amcc/yucca/flash.c: Fix compile warning
11302
11303     Fix warning: flash.c:919: warning: dereferencing type-punned pointer
11304     will break strict-aliasing rules
11305
11306     Signed-off-by: Wolfgang Denk <wd@denx.de>
11307     Cc: Stefan Roese <sr@denx.de>
11308     Acked-by: Stefan Roese <sr@denx.de>
11309
11310 commit 030ec52f8cc83015f968db30208f4bd07feffa6c
11311 Author: Wolfgang Denk <wd@denx.de>
11312 Date:   Fri Sep 11 11:44:39 2009 +0200
11313
11314     board/amcc/taihu/flash.c: Fix compile warning
11315
11316     Fix warnings:
11317     flash.c: In function 'write_word_1':
11318     flash.c:696: warning: dereferencing type-punned pointer will break strict-aliasing rules
11319     flash.c: In function 'write_word_2':
11320     flash.c:1044: warning: dereferencing type-punned pointer will break strict-aliasing rules
11321
11322     Signed-off-by: Wolfgang Denk <wd@denx.de>
11323     Cc: Stefan Roese <sr@denx.de>
11324     Acked-by: Stefan Roese <sr@denx.de>
11325
11326 commit 0fd3d902d920f3e60f88530c33f1ae7581260951
11327 Author: Wolfgang Denk <wd@denx.de>
11328 Date:   Fri Sep 11 11:37:20 2009 +0200
11329
11330     board/etin/debris/phantom.c: Fix compile error
11331
11332     Fix build problem caused by commit e84aba13: "Replace BCD2BIN and
11333     BIN2BCD macros with inline functions"
11334
11335     phantom.c:163: error: redefinition of 'bcd2bin'
11336     /home/wd/git/u-boot/work/include/bcd.h:16: error: previous definition of 'bcd2bin' was here
11337     phantom.c:168: error: redefinition of 'bin2bcd'
11338     /home/wd/git/u-boot/work/include/bcd.h:21: error: previous definition of 'bin2bcd' was here
11339
11340     Signed-off-by: Wolfgang Denk <wd@denx.de>
11341     Cc: Sangmoon Kim <dogoil@etinsys.com>
11342
11343 commit 5168801f4b71c2f8dcd92a80cfcfda84246e67fe
11344 Author: Wolfgang Denk <wd@denx.de>
11345 Date:   Fri Sep 11 11:28:21 2009 +0200
11346
11347     board/dave/common/flash.c: fix compile warning
11348
11349     Fix warning: ../common/flash.c:668: warning: dereferencing type-punned
11350     pointer will break strict-aliasing rules
11351
11352     Signed-off-by: Wolfgang Denk <wd@denx.de>
11353     Cc: Andrea Marson <andrea.marson@dave-tech.it>
11354
11355 commit 97138fc48091f2b063c4e32f36d05854b9d113fb
11356 Author: Wolfgang Denk <wd@denx.de>
11357 Date:   Fri Sep 11 11:15:31 2009 +0200
11358
11359     board/esd/cpci750/ide.c: fix compile warning
11360
11361     Fix warning: ide.c:54: warning: dereferencing type-punned pointer will
11362     break strict-aliasing rules
11363
11364     Signed-off-by: Wolfgang Denk <wd@denx.de>
11365     Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11366     Cc: Stefan Roese <sr@denx.de>
11367     Acked-by: Stefan Roese <sr@denx.de>
11368
11369 commit ba73060cf4163bd5eb1711020126e2f7f62d363e
11370 Author: Wolfgang Denk <wd@denx.de>
11371 Date:   Fri Sep 11 10:13:26 2009 +0200
11372
11373     board/esd/common/flash.c: Fix compile warning
11374
11375     Fix warning: ../common/flash.c:635: warning: dereferencing type-punned
11376     pointer will break strict-aliasing rules
11377
11378     Signed-off-by: Wolfgang Denk <wd@denx.de>
11379     Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11380     Cc: Stefan Roese <sr@denx.de>
11381     Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11382     Acked-by: Stefan Roese <sr@denx.de>
11383
11384 commit 2d6d9f0848e952ea33c658dfba335685a2725b8b
11385 Author: Wolfgang Denk <wd@denx.de>
11386 Date:   Fri Sep 11 09:36:31 2009 +0200
11387
11388     sk98lin: fix compile warnings
11389
11390     Fix warnings:
11391     skge.c: In function 'BoardInitMem':
11392     skge.c:1389: warning: dereferencing type-punned pointer will break strict-aliasing rules
11393     skge.c:1390: warning: dereferencing type-punned pointer will break strict-aliasing rules
11394     skge.c:1391: warning: dereferencing type-punned pointer will break strict-aliasing rules
11395     skgesirq.c: In function 'SkGePortCheckUpXmac':
11396     skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules
11397     skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules
11398     skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules
11399     skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules
11400     skrlmt.c: In function 'SkRlmtInit':
11401     skrlmt.c:661: warning: dereferencing type-punned pointer will break strict-aliasing rules
11402     skxmac2.c: In function 'SkMacPromiscMode':
11403     skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules
11404     skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules
11405     skxmac2.c: In function 'SkMacHashing':
11406     skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules
11407     skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules
11408     skxmac2.c: In function 'SkMacFlushTxFifo':
11409     skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules
11410     skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules
11411     skxmac2.c: In function 'SkMacFlushRxFifo':
11412     skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules
11413     skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules
11414     skxmac2.c: In function 'SkXmInitPauseMd':
11415     skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules
11416     skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules
11417     skxmac2.c: In function 'SkXmOverflowStatus':
11418     skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules
11419     skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules
11420     skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules
11421     skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules
11422
11423     Signed-off-by: Wolfgang Denk <wd@denx.de>
11424     Cc: Ben Warren <biggerbadderben@gmail.com>
11425
11426 commit 3708e4cdb1f1d3d5128cf87be040d7e6b85f60dd
11427 Author: Wolfgang Denk <wd@denx.de>
11428 Date:   Fri Sep 11 09:13:58 2009 +0200
11429
11430     drivers/net/natsemi.c: fix compile warning
11431
11432     Fix warning: natsemi.c:757: warning: dereferencing type-punned pointer
11433     will break strict-aliasing rules
11434
11435     Signed-off-by: Wolfgang Denk <wd@denx.de>
11436     Cc: Ben Warren <biggerbadderben@gmail.com>
11437
11438 commit 78d19a398778a58d7b40b0c78e026515271b1a84
11439 Author: Michal Simek <monstr@monstr.eu>
11440 Date:   Mon Sep 7 09:08:02 2009 +0200
11441
11442     net: emaclite: Cleanup license to be GPL compatible
11443
11444     Signed-off-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com>
11445     Signed-off-by: Michal Simek <monstr@monstr.eu>
11446
11447 commit 0900bee9ab9818439b2d1298fa8909a88f74ec0d
11448 Author: Michal Simek <monstr@monstr.eu>
11449 Date:   Fri Aug 14 13:41:17 2009 +0200
11450
11451     microblaze: Enable hush parser
11452
11453     With Hush parser is possible to change command line in dtb
11454
11455     Signed-off-by: Michal Simek <monstr@monstr.eu>
11456
11457 commit 13916abf996b127b681ddc26664c236ded28ba7f
11458 Author: Michal Simek <monstr@monstr.eu>
11459 Date:   Thu Aug 20 22:44:02 2009 +0200
11460
11461     microblaze: Remove AtmarkTechno Suzaku board
11462
11463     Users should use microblaze-generic platform.
11464     This platform is longer not supported.
11465
11466     Signed-off-by: Michal Simek <monstr@monstr.eu>
11467
11468 commit 3ceba1d45d007144d10368f91ff9e36f3b5f39a1
11469 Author: Michal Simek <monstr@monstr.eu>
11470 Date:   Thu Aug 20 22:36:20 2009 +0200
11471
11472     net: Remove old Xilinx Emac driver
11473
11474     Signed-off-by: Michal Simek <monstr@monstr.eu>
11475
11476 commit 2fddd44464d02e0f3ade06dabe0e165835fa61f0
11477 Author: Michal Simek <monstr@monstr.eu>
11478 Date:   Wed Aug 19 08:10:08 2009 +0200
11479
11480     microblaze: Short size of global data and fix malloc size
11481
11482     If is full malloc area global, data are rewrite because
11483     there was bad size of malloc area.
11484
11485     Signed-off-by: Michal Simek <monstr@monstr.eu>
11486
11487 commit aedb4683097d3e5de8833f4a9e34664d3d2bd077
11488 Author: Michal Simek <monstr@monstr.eu>
11489 Date:   Fri Aug 14 17:02:35 2009 +0200
11490
11491     microblaze: Add sbss, scommon and COMMON symbols for clearing
11492
11493     Signed-off-by: Michal Simek <monstr@monstr.eu>
11494
11495 commit 4c1883670acbf1cc83c04df1876235c3aedde128
11496 Author: Dirk Eibach <eibach@gdsys.de>
11497 Date:   Wed Sep 9 12:36:07 2009 +0200
11498
11499     ppc4xx: Rename compactcenter to intip
11500
11501     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
11502     Signed-off-by: Stefan Roese <sr@denx.de>
11503
11504 commit d1c3b27525b664e8c4db6bb173eed51bfc8220de
11505 Author: Stefan Roese <sr@denx.de>
11506 Date:   Wed Sep 9 16:25:29 2009 +0200
11507
11508     ppc4xx: Big cleanup of PPC4xx defines
11509
11510     This patch cleans up multiple issues of the 4xx register (mostly
11511     DCR, SDR, CPR, etc) definitions:
11512
11513     - Change lower case defines to upper case (plb4_acr -> PLB4_ACR)
11514     - Change the defines to better match the names from the
11515       user's manuals (e.g. cprpllc -> CPR0_PLLC)
11516     - Removal of some unused defines
11517
11518     Please test this patch intensive on your PPC4xx platform. Even though
11519     I tried not to break anything and tested successfully on multiple
11520     4xx AMCC platforms, testing on custom platforms is recommended.
11521
11522     Signed-off-by: Stefan Roese <sr@denx.de>
11523
11524 commit d8d8724be06df43772162dc344ae20dfa814dc72
11525 Author: Wolfgang Denk <wd@denx.de>
11526 Date:   Fri Sep 11 09:05:32 2009 +0200
11527
11528     net/bootp.c: fix compile warning
11529
11530     Fix warning: bootp.c:695: warning: dereferencing type-punned pointer
11531     will break strict-aliasing rules
11532
11533     Signed-off-by: Wolfgang Denk <wd@denx.de>
11534     Cc: Ben Warren <biggerbadderben@gmail.com>
11535
11536 commit 51003b89816848cbe86a8fe48f970ba8b14005f5
11537 Author: Wolfgang Denk <wd@denx.de>
11538 Date:   Fri Sep 11 08:58:11 2009 +0200
11539
11540     kwbimage.c: Fix compile warning when building on 64 bit systems
11541
11542     Fix this warning when building on 64 bit systems:
11543     tools/kwbimage.c: In function 'kwbimage_checksum32':
11544     tools/kwbimage.c:135: warning: format '%d' expects type 'int',
11545     but argument 4 has type 'long unsigned int'
11546
11547     Signed-off-by: Wolfgang Denk <wd@denx.de>
11548     Cc: Prafulla Wadaskar <prafulla@marvell.com>
11549
11550 commit e7963772eb78a6aa1fa65063d64eab3a8626daac
11551 Author: Marcel Ziswiler <marcel@ziswiler.com>
11552 Date:   Wed Sep 9 21:11:18 2009 +0200
11553
11554     muas3001: remove BRG clock node fixup to use common mpc8260 code.
11555
11556     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
11557     Acked-by: Heiko Schocher <hs@denx.de>
11558
11559 commit c7c1dbbf7159b38f3302b845dd97d28a543ff91b
11560 Author: Marcel Ziswiler <marcel@ziswiler.com>
11561 Date:   Wed Sep 9 21:09:00 2009 +0200
11562
11563     r7780mp: fix typo in Ethernet chip model number comment.
11564
11565     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
11566
11567 commit 45f89f340b4d8aa099fd022260dcb13cf3321b61
11568 Author: Marcel Ziswiler <marcel@ziswiler.com>
11569 Date:   Wed Sep 9 21:22:08 2009 +0200
11570
11571     ep8248: add support for device tree and secondary Ethernet interface.
11572
11573     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
11574
11575 commit aa0c7a86cd236b8193218a09e1365c8991bb5ddc
11576 Author: Prafulla Wadaskar <prafulla@marvell.com>
11577 Date:   Mon Sep 7 15:05:02 2009 +0530
11578
11579     mkimage: Add Kirkwood Boot Image support (kwbimage)
11580
11581     This patch adds support for "kwbimage" (Kirkwood Boot Image)
11582     image types to the mkimage code.
11583
11584     For details refer to docs/README.kwbimage
11585
11586     This patch is tested with Sheevaplug board
11587
11588     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11589     Acked-by: Ron Lee <ron@debian.org>
11590
11591     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11592
11593 commit 7809fbb9aafd60e3a6e5dfe456ae30b93ac61338
11594 Author: Prafulla Wadaskar <prafulla@marvell.com>
11595 Date:   Mon Sep 7 14:59:09 2009 +0530
11596
11597     Kirkwood: Sheevaplug: Add kwimage configuration file
11598
11599     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11600
11601 commit b029dddc9ae958b1ccf875649f52c6db396a742d
11602 Author: Prafulla Wadaskar <prafulla@marvell.com>
11603 Date:   Mon Sep 7 14:59:08 2009 +0530
11604
11605     mkimage: Make table_entry code global
11606
11607     - make get_table_entry_id() global
11608     - make get_table_entry_name() global
11609     - move struct table_entry to image.h
11610
11611     Currently this code is used by image.c only.
11612
11613     This patch makes this API global so it can be used by other parts of
11614     code, too.
11615
11616     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11617     Acked-by: Ron Lee <ron.debian.org>
11618
11619     Edit comments and commit message.
11620
11621     Signed-off-by: Wolfgang Denk <wd@denx.de>
11622
11623 commit f666dea8ab215c76c3c2a077ad299f90dd1ace7c
11624 Author: Prafulla Wadaskar <prafulla@marvell.com>
11625 Date:   Mon Sep 7 14:59:07 2009 +0530
11626
11627     mkimage: Make genimg_print_size() global
11628
11629     Currently it is used by image.c only, but the the function can be
11630     used to support additional mkimage types like for example kwbimage,
11631     so make this function globally visible.
11632
11633     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11634
11635     Edited commit message.
11636
11637     Signed-off-by: Wolfgang Denk <wd@denx.de>
11638
11639 commit 37b801888cf73b18f78c1109140ff44e3e37914f
11640 Author: Prafulla Wadaskar <prafulla@marvell.com>
11641 Date:   Mon Sep 7 14:59:06 2009 +0530
11642
11643     mkimage: Include missing files in build dependency calculations
11644
11645     Include default_image.o and fit_image.o into the build dependency
11646     calculations. This makes sure they get rebuilt if any of the headers
11647     they include are modified
11648
11649     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11650     Acked-by: Ron Lee <ron@debian.org>
11651
11652     Edited commit message.
11653
11654     Signed-off-by: Wolfgang Denk <wd@denx.de>
11655
11656 commit 3a2003f61ee79ac53d20c24cc896c2637a2dfc24
11657 Author: Wolfgang Denk <wd@denx.de>
11658 Date:   Wed Aug 19 11:42:56 2009 +0200
11659
11660     tools/mkimage: fix compiler warnings, use "const"
11661
11662     This fixes some compiler warnings:
11663     tools/default_image.c:141: warning: initialization from incompatible pointer type
11664     tools/fit_image.c:202: warning: initialization from incompatible pointer type
11665     and changes to code to use "const" attributes in a few places where
11666     it's appropriate.
11667
11668     Signed-off-by: Wolfgang Denk <wd@denx.de>
11669
11670 commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5
11671 Author: Prafulla Wadaskar <prafulla@marvell.com>
11672 Date:   Wed Aug 19 17:36:46 2009 +0530
11673
11674     tools: mkimage: split code into core, default and FIT image specific
11675
11676     This is a first step towards reorganizing the mkimage code to make it
11677     easier to add support for additional images types. Current mkimage
11678     code is specific to generating uImage and FIT image files, but the
11679     same framework can be used to generate other image types like
11680     Kirkwood boot images (kwbimage-TBD). For this, the mkimage code gets
11681     reworked:
11682
11683     Here is the brief plan for the same:-
11684     a) Split mkimage code into core and image specific support
11685     b) Implement callback functions for image specific code
11686     c) Move image type specific code to respective C files
11687            Currently there are two types of file generation/list
11688            supported (i.e uImage, FIT), the code is abstracted from
11689            mkimage.c/.h and put in default_image.c and fit_image.c;
11690            all code in these file is static except init function call
11691     d) mkimage_register API is added to add new image type support
11692     All above is addressed in this patch
11693     e) Add kwbimage type support to this new framework (TBD)
11694     This will be implemented in a following commit.
11695
11696     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11697     Edit commit message, fix coding style and typos.
11698     Signed-off-by: Wolfgang Denk <wd@denx.de>
11699
11700 commit 449609f5b11cce6beba7338bc4ce0f3345376a0b
11701 Author: Prafulla Wadaskar <prafulla@marvell.com>
11702 Date:   Sun Aug 16 05:28:19 2009 +0530
11703
11704     tools: mkimage: Fixed build warnings
11705
11706     uninitialized retval variable warning fixed
11707     crc32 APIs moved to crc.h (newly added) and build warnings fixed
11708
11709     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11710     Signed-off-by: Wolfgang Denk <wd@denx.de>
11711
11712 commit 14821d7dea8d7209f2457c3179fa6551c088ba71
11713 Author: Prafulla Wadaskar <prafulla@marvell.com>
11714 Date:   Mon Aug 10 20:44:06 2009 +0530
11715
11716     tools: mkimage: Makefile sorted
11717
11718     The tools/Makefile is sorted for all entries,
11719
11720     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11721
11722 commit f7644c0bf3502529031657a869fa213cda5a2424
11723 Author: Prafulla Wadaskar <prafulla@marvell.com>
11724 Date:   Mon Aug 10 18:49:37 2009 +0530
11725
11726     tools: mkimage : bugfix returns correct value for list command
11727
11728     List command always return "EXIT_SUCCESS" even in case of
11729     failure by any means.
11730
11731     This patch return 0 if list command is sucessful,
11732     returns negative value reported by check_header functions
11733
11734     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11735     Signed-off-by: Wolfgang Denk <wd@denx.de>
11736
11737 commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f
11738 Author: Mingkai Hu <Mingkai.hu@freescale.com>
11739 Date:   Tue Sep 8 15:07:12 2009 +0800
11740
11741     mkconfig: pass the board name to board config file
11742
11743     Then we can handle different config targets in the board file, which
11744     simplifies the top level Makefile for boards that have multiple
11745     config targets.
11746
11747     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
11748
11749 commit d640ac58dbf61c769864b3fe76314306b7336cf1
11750 Author: Wolfgang Denk <wd@denx.de>
11751 Date:   Mon Sep 7 23:52:31 2009 +0200
11752
11753     Remove "atmel_df_pow2" binary with "make clean"
11754
11755     Commit 65f6f07b added support for the atmel_df_pow2 standalone program
11756     but missed to add a rule to remove it to the "clean" make target.
11757
11758     Signed-off-by: Wolfgang Denk <wd@denx.de>
11759
11760 commit 0b34dbbd0b6969c98c44313b291836d9056ec40a
11761 Author: Stefan Roese <sr@denx.de>
11762 Date:   Mon Sep 7 10:52:24 2009 +0200
11763
11764     ppc4xx: Fix compilation warning in 4xx miiphy.c
11765
11766     This patch fixes the following compilation warning:
11767
11768     miiphy.c: In function 'emac4xx_miiphy_read':
11769     miiphy.c:353: warning: dereferencing type-punned pointer will break
11770     strict-aliasing rules
11771
11772     Signed-off-by: Stefan Roese <sr@denx.de>
11773
11774 commit 82379b5564819e62624a3c58fbc43f1afedf4f5f
11775 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
11776 Date:   Mon Sep 7 17:00:41 2009 +0200
11777
11778     ppc4xx: Add CONFIG_PCI_4xx_PTM_OVERWRITE to some esd 4xx boards
11779
11780     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11781     Signed-off-by: Stefan Roese <sr@denx.de>
11782
11783 commit 99bcf14d553f399148a7660b98f7acbd8cc72d80
11784 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
11785 Date:   Mon Sep 7 17:00:40 2009 +0200
11786
11787     ppc4xx: Allow overwriting pci target registers for all 4xx boards
11788
11789     This patch adds the CONFIG_PCI_4xx_PTM_OVERWRITE option and replaces
11790     the ugly 'if defined(BOARD1) || ... || defined(BOARDn)' construct
11791     in 4xx pci code.
11792
11793     When CONFIG_PCI_4xx_PTM_OVERWRITE is defined the default ptm register
11794     setup can be overwritten through environment variables ptm1la, ptm1ms,
11795     ptm2la and ptm2ms to do application specific pci target BAR configuration.
11796
11797     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11798     Signed-off-by: Stefan Roese <sr@denx.de>
11799
11800 commit cfab2ae322a99ad55364d054054f138f51130c2a
11801 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
11802 Date:   Fri Sep 4 10:37:04 2009 +0200
11803
11804     ppc4xx: Fix PMC405DE support
11805
11806     This patch fixes PMC405DE support. Patch 85d6bf0b fixed out-of-tree
11807     building for this board but the loadpci object did not get linked
11808     after that.
11809
11810     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11811     Signed-off-by: Stefan Roese <sr@denx.de>
11812
11813 commit c8355b9d9f778bd12ee19c8f34d88e13758a4efd
11814 Author: Detlev Zundel <dzu@denx.de>
11815 Date:   Wed Sep 2 17:24:57 2009 +0200
11816
11817     amcc-common.h: Use filenames from environment variables for update procedure.
11818
11819     Using a separate "u-boot" environment variable allows to easily
11820     specify different filenames for the update procedure.  This is also in
11821     line with many other board configurations defining an "update" script.
11822
11823     Signed-off-by: Detlev Zundel <dzu@denx.de>
11824     Acked-by: Wolfgang Denk <wd@denx.de>
11825     Signed-off-by: Stefan Roese <sr@denx.de>
11826
11827 commit 6c97a20d0b2f56cb4f3745d94b1f96986e8cced5
11828 Author: Kumar Gala <galak@kernel.crashing.org>
11829 Date:   Wed Sep 9 11:40:41 2009 -0500
11830
11831     ppc/85xx: Introduce RESET_VECTOR_ADDRESS to handle non-standard link address
11832
11833     Some board ports place TEXT_BASE at a location that would cause the
11834     RESET_VECTOR_ADDRESS not to be at 0xfffffffc when we link.  By default
11835     we assume RESET_VECTOR_ADDRESS will be 0xfffffffc if the board doesn't
11836     explicitly set it.
11837
11838     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11839     Acked-by: Wolfgang Denk <wd@denx.de>
11840
11841 commit c348322ac7f76318295cf25ffab2cc2a4900a234
11842 Author: Kumar Gala <galak@kernel.crashing.org>
11843 Date:   Tue Sep 8 13:46:46 2009 -0500
11844
11845     ppc/85xx: Clean up do_reset
11846
11847     There is no reason to do a run time check for e500 v1 based cores to
11848     determine if we have the GUTs RSTCR facility.  Only the first generation
11849     of PQ3 parts (MPC8540/41/55/60) do not have it.  So checking to see if
11850     we are e500 v2 would miss future parts (like e500mc).
11851
11852     Just change this to be ifdef'd based on CONFIG_MPC85{40,41,55,60}.
11853
11854     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11855
11856 commit 21170c80a83f1e60ce7f6f83005e06a5c2d15a8e
11857 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
11858 Date:   Thu Sep 3 19:42:40 2009 +0530
11859
11860     ppc/85xx/86xx: Bug fix: call to puts in probecpu() moved to checkcpu().
11861
11862     While in probecpu() UART is still not initialized.
11863
11864     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
11865     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11866
11867 commit f8027f6b4789e3340f10620d8fb6113b95b88d9c
11868 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
11869 Date:   Wed Sep 2 19:40:36 2009 +0530
11870
11871     ppc/85xx/86xx: Device tree fixup for number of cores
11872
11873     Fixing the number of cores in the device tree based on the actual number of
11874     cores on the system.  With this same device tree image can be used for dual
11875     core and single core members of otherwise exactly same SOC.
11876
11877     For example:
11878     * P2020RDB and P2010RDB
11879     * P1020RDB and P1011RDB
11880     * MPC8641D and MPC8641
11881
11882     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
11883     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11884
11885 commit 58442dc01e47cc8ce42af4f29486a34cad60b9d2
11886 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
11887 Date:   Wed Sep 2 13:35:21 2009 +0530
11888
11889     ppc/85xx,86xx: Handling Unknown SOC version
11890
11891     Incase the system is detected with Unknown SVR, let the system boot
11892     with a default value and a proper message.
11893
11894     Now with dynamic detection of SOC properties from SVR, this is necessary
11895     to prevent a crash.
11896
11897     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
11898     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11899
11900 commit 3e7b6c1f2db5ec31f9e7dbc3e0cbca602167a46a
11901 Author: Kumar Gala <galak@kernel.crashing.org>
11902 Date:   Wed Sep 2 09:03:08 2009 -0500
11903
11904     ppc/8xxx: Refactor code to determine if PCI is enabled & agent/host
11905
11906     Refactor the code into a simple bitmask lookup table that determines if
11907     a given PCI controller is enabled and if its in host/root-complex or
11908     agent/end-point mode.
11909
11910     Each processor in the PQ3/MPC86xx family specified different encodings
11911     for the cfg_host_agt[] and cfg_IO_ports[] boot strapping signals.
11912
11913     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11914
11915 commit 5052a771cf1722c37c732f3c340775b55fbe3a22
11916 Author: Kumar Gala <galak@kernel.crashing.org>
11917 Date:   Wed Sep 2 09:00:50 2009 -0500
11918
11919     ppc/85xx: Cleanup makefile and related optional files
11920
11921     Cleaned up cpu/mpc85xx/Makefile to use CONFIG_* for those obvious cases
11922     we have like PCI, CPM2, QE.  Also reworked it to use one line per file
11923     for everything and sorted in alphabetical order.
11924
11925     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11926
11927 commit 74c5dfd81f94a2a1f0d6990d17c491d718e8b9ea
11928 Author: Timur Tabi <timur@freescale.com>
11929 Date:   Fri Sep 4 17:05:24 2009 -0500
11930
11931     fsl: add register read-back to set_law()
11932
11933     After programming a new LAW, we should read-back the LAWAR register so that
11934     we sync the writes.  Otherwise, code that attempts to use the new LAW-mapped
11935     memory might fail right away.
11936
11937     Signed-off-by: Timur Tabi <timur@freescale.com>
11938     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11939
11940 commit c7259086816405fe0eb77f4dc22e76980a040cef
11941 Author: Kumar Gala <galak@kernel.crashing.org>
11942 Date:   Thu Sep 3 08:41:31 2009 -0500
11943
11944     ppc/85xx: Fix bug in setup_mp code
11945
11946     Its possible that we try and copy the boot page code out of flash into a
11947     DDR location that doesn't have a TLB cover it.  For example, if we have
11948     3G of DDR we typically only map the first 2G.  In the cases of 4G+ this
11949     wasn't an issue since the reset page TLB mapping covered the last page
11950     of memory which we wanted to copy to.
11951
11952     We now change the physical address of the reset page TLB to map to the
11953     true physical location of the boot page code, copy and than set the
11954     TLB back to its 1:1 mapping of the reset page.
11955
11956     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11957
11958 commit c2287af1552bd630956568d3957c370f86801b7d
11959 Author: Kumar Gala <galak@kernel.crashing.org>
11960 Date:   Thu Sep 3 08:20:24 2009 -0500
11961
11962     ppc/85xx: Add a simple function to search the TLB
11963
11964     Allow us to search the TLB array based on an address.  This is useful
11965     if we want to change an entry but dont know where it happens to be
11966     located.
11967
11968     For example, the boot page mapping we use on MP or the flash TLB that
11969     we change the WIMGE settings for after we've relocated.
11970
11971     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11972
11973 commit 26f4cdba6b51deab4ec99d60be381244068ef950
11974 Author: Kumar Gala <galak@kernel.crashing.org>
11975 Date:   Fri Aug 14 13:37:54 2009 -0500
11976
11977     85xx: Add support for setting IVORs to fixed offset defaults
11978
11979     In future Book-E implementations IVORs will most likely go away and be
11980     replaced with fixed offsets.  The IVPR will continue to exist to allow
11981     for relocation of the interrupt vectors.
11982
11983     This code adds support to setup the IVORs as their fixed offset values
11984     per the ISA 2.06 spec when we transition from u-boot to another OS
11985     either via 'bootm' or a cpu release.
11986
11987     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11988
11989 commit da1cd955dfec35b0e15381ad1ee248fa194eed82
11990 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
11991 Date:   Wed Sep 2 11:25:08 2009 +0530
11992
11993     ppc/85xx: Fix up eSDHC controller clock frequency in the device tree
11994
11995     Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
11996     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11997
11998 commit 2abbd31da6d900473ed678ca50789ee58bc9bb00
11999 Author: Kumar Gala <galak@kernel.crashing.org>
12000 Date:   Tue Sep 1 22:01:54 2009 -0500
12001
12002     ppc/8xxx: Remove ddr_pd_cntl register since it doesn't exist
12003
12004     The ddr_pd_cntl isn't defined in any reference manual and thus we wil
12005     remove especially since we set it to 0, which would most likely be its
12006     POR value.
12007
12008     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12009
12010 commit 13d46ab2572c0283d34f93bebc9a41295ef84ca5
12011 Author: Kumar Gala <galak@kernel.crashing.org>
12012 Date:   Tue Sep 1 21:07:08 2009 -0500
12013
12014     ppc/8xxx: relocate cpu pointer in global data
12015
12016     Now that we have a pointer to the cpu struct we need to relocate it once
12017     we get into ram.
12018
12019     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12020
12021 commit 9c671e7062720074f894ee329eaa6995b0823727
12022 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12023 Date:   Wed Sep 2 02:17:24 2009 +0400
12024
12025     fsl: sys_eeprom: Fix 'may be used uninitialized' warning
12026
12027     The warning is bogus, so silence it by initializing the 'ret' variable.
12028
12029     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12030     Acked-by: Timur Tabi <timur@freescale.com>
12031     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12032
12033 commit 6b9ea08c5010eab5ad1056bc9bf033afb672d9cc
12034 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
12035 Date:   Tue Sep 1 17:27:00 2009 +0530
12036
12037     ppc/85xx: Use CONFIG_FSL_ESDHC to enable sdhc clk
12038
12039     Enable eSDHC Clock based on generic CONFIG_FSL_ESDHC define instead of a
12040     platform define.  This will enable all the 85xx platforms to use sdhc_clk
12041     based on CONFIG_FSL_ESDHC.
12042
12043     Signed-off-by: Gao Guanhua <B22826@freescale.com>
12044     Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
12045     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12046
12047 commit 92477a631bbda2dc0dd2194e03f9bd3ddb8b9c21
12048 Author: Timur Tabi <timur@freescale.com>
12049 Date:   Fri Sep 4 16:28:35 2009 -0500
12050
12051     fsl_i2c: increase I2C timeout values and make them configurable
12052
12053     The value of I2C_TIMEOUT in fsl_i2c.c has several problems.  First, it is
12054     defined as CONFIG_HZ/4, but it is used as a count of microseconds, so it makes
12055     no sense to derive it from a clock rate.  Second, the current value (250) is
12056     too low for some boards, so it needs to be increased.  Third, the timeout
12057     necessary for multiple-master arbitration is larger than the timeout for basic
12058     read/write operations, so we shouldn't have a single constant for both timeouts.
12059     Finally, it would be nice if we could override these values on a per-board
12060     basis.
12061
12062     Signed-off-by: Timur Tabi <timur@freescale.com>
12063     Acked-by: Wolfgang Denk <wd@denx.de>
12064     Tested-by: Peter Tyser <ptyser@xes-inc.com>
12065     Acked-by: Peter Tyser <ptyser@xes-inc.com>
12066
12067 commit 5da71efa18e8b4eac9afd8bfa13e3c7e7ddde1d0
12068 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
12069 Date:   Thu Sep 3 08:09:44 2009 -0500
12070
12071     Reset i2c slave devices during init on mpc5xxx cpus
12072
12073     Reset any i2c devices that may have been interrupted during a system reset.
12074     Normally this would be accomplished by clocking the line until SCL and SDA
12075     are released and then sending a start condtiion (From an Atmel datasheet).
12076     There is no direct access to the i2c pins so instead create start commands
12077     through the i2c interface.  Send a start command then delay for the SDA Hold
12078     time, repeat this by disabling/enabling the bus a total of 9 times.
12079
12080     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
12081
12082 commit 2d4072c06b5549444e4140231bba3d47d9b0bc53
12083 Author: Sandeep Paulraj <s-paulraj@ti.com>
12084 Date:   Sat Aug 15 11:20:58 2009 -0400
12085
12086     ARM: DaVinci: Adding Support for DaVinci DM365 EVM
12087
12088     This patch adds support for the DM365 EVM.
12089     It has been tested on a DM365 EVM.
12090
12091     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
12092
12093 commit cf463091bce8b0f8951dd08f94754d08d64793b8
12094 Author: Sandeep Paulraj <s-paulraj@ti.com>
12095 Date:   Sat Aug 15 11:20:44 2009 -0400
12096
12097     ARM: DaVinci: DaVinci DM365 SOC specific code
12098
12099     This patch adds support for DaVinci DM365 SOC.
12100
12101     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
12102
12103 commit e830b66b3592f115316600d370399f3ee148e909
12104 Author: Ilko Iliev <iliev@ronetix.at>
12105 Date:   Sat Sep 5 02:51:34 2009 +0200
12106
12107     DM9000 init for pm9261
12108
12109     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
12110
12111 commit c35d7cf071f171bd6bba69f1563a6ac578a18ea6
12112 Author: Frederik Kriewitz <frederik@kriewitz.eu>
12113 Date:   Sun Aug 23 12:56:42 2009 +0200
12114
12115     Add support for the DevKit8000 board
12116
12117     This patch adds support for the DevKit8000 board.
12118
12119     Signed-off-by: Frederik Kriewitz <frederik@kriewitz.eu>
12120
12121 commit 127f9ae575991aee3e105e1448c49b5b4e254998
12122 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12123 Date:   Sun Aug 23 16:32:40 2009 +0200
12124
12125     omap3: move the other boards to board/
12126
12127     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12128
12129 commit 350f3ac5731faf0f02ca55ab016694b7c7269f97
12130 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12131 Date:   Sun Aug 23 16:32:39 2009 +0200
12132
12133     arm: move Logicpd's boards to board/logicpd/
12134
12135     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12136
12137 commit 0a0e4bad9693ef1d2ca8c33ba551d395a4e3d641
12138 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12139 Date:   Sun Aug 23 16:32:38 2009 +0200
12140
12141     omap: move TI's boards to board/ti/
12142
12143     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12144
12145 commit 9f23ca42b3ba19b24e66fade572f2b86d929b6e8
12146 Author: Wolfgang Denk <wd@denx.de>
12147 Date:   Fri Sep 4 23:20:29 2009 +0200
12148
12149     ARM: Update mach-types
12150
12151     Signed-off-by: Wolfgang Denk <wd@denx.de>
12152
12153 commit 262ae0a6193f10b6a94e86d2f752e7f5510416fa
12154 Author: Mike Frysinger <vapier@gentoo.org>
12155 Date:   Thu Sep 3 23:12:47 2009 -0400
12156
12157     push LOAD_ADDR out to arch mk files
12158
12159     Rather than maintain/extend the current ifeq($(ARCH)) mess that exists in
12160     the standalone Makefile, push the setting up of LOAD_ADDR out to the arch
12161     config.mk (and rename to STANDALONE_LOAD_ADDR in the process).  This keeps
12162     the common code clean and lets the arch do whatever crazy crap it wants in
12163     its own area.
12164
12165     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12166
12167 commit 7662eb2b9d6fbc95ecb1fb3e5b5147215e251e7d
12168 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
12169 Date:   Thu Sep 3 07:37:46 2009 -0400
12170
12171     zlib: fix code when DEBUG is defined
12172
12173     Removed stdio.h inclusion and moved trace macros to use printf avoiding to
12174     write debug informations to standard error.
12175
12176     Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
12177
12178 commit cfcbf8c4cf3da96b9e3f652506b664bfd766a520
12179 Author: Scott Wood <scottwood@freescale.com>
12180 Date:   Wed Sep 2 16:45:31 2009 -0500
12181
12182     mxc_nand: Remove Freescale's "All Rights Reserved."
12183
12184     Signed-off-by: Scott Wood <scottwood@freescale.com>
12185
12186 commit 001d615681333569c555e6cde07d8d23e2c536fb
12187 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12188 Date:   Wed Sep 2 17:58:48 2009 +0400
12189
12190     mpc83xx/serdes: License cleanup: remove "All Rights Reserved" notice
12191
12192     "All Rights Reserved" conflicts with the GPL.
12193
12194     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12195
12196 commit 46ff6d461321f5b565cc790e02679237ffd9a20f
12197 Author: Wolfgang Denk <wd@denx.de>
12198 Date:   Wed Sep 2 14:57:27 2009 +0200
12199
12200     License cleanup: remove unintended "All Rights Reserved" notices.
12201
12202     Some files included my old standerd file header which had a "All
12203     Rights Reserved" part. As this has never been my intention, I remove
12204     these lines to make the files compatible with GPL v.2 and later.
12205
12206     Signed-off-by: Wolfgang Denk <wd@denx.de>
12207
12208 commit 37daa77f3cafb5ec9a974eff3db2af4a0560a9ef
12209 Author: Wolfgang Denk <wd@denx.de>
12210 Date:   Wed Sep 2 10:21:20 2009 +0200
12211
12212     cmd_mtdparts.c: fix compiler warning in debug code
12213
12214     Fix warning messages:
12215     cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long
12216     unsigned int', but argument 6 has type 'u32'
12217     cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long
12218     unsigned int', but argument 7 has type 'u32'
12219
12220     Signed-off-by: Wolfgang Denk <wd@denx.de>
12221
12222 commit d8bc55a6fb28876abcbf4a3fc3b6c3ce429c1bb3
12223 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12224 Date:   Tue Sep 1 20:58:03 2009 +0400
12225
12226     Move uninitialized_var() macro from ubi_uboot.h to compiler.h
12227
12228     This is needed so that we could use this macro for non-UBI code.
12229
12230     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12231
12232 commit d72871e1387094972569e4b77c25e88020f7b68f
12233 Author: Kumar Gala <galak@kernel.crashing.org>
12234 Date:   Tue Sep 1 11:24:45 2009 -0500
12235
12236     arm: Remove -fno-strict-aliasing
12237
12238     -fno-strict-aliasing is hidding warnings.
12239
12240     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12241
12242 commit d6281ff0cc2ebb5d6a5c3e1021837334074f92ec
12243 Author: Kumar Gala <galak@kernel.crashing.org>
12244 Date:   Tue Sep 1 11:24:44 2009 -0500
12245
12246     ppc: Remove -fno-strict-aliasing
12247
12248     -fno-strict-aliasing is hidding warnings.
12249
12250     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12251
12252 commit 795d246c278e70b4ba9868cc9f2c8fbada49d388
12253 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
12254 Date:   Fri Aug 28 07:14:04 2009 -0500
12255
12256     galaxy5200: Add chip select region for an Epson S1D15313
12257
12258     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
12259
12260 commit 3dfad40a0459f63099e177dc15a1df39d048f860
12261 Author: Kumar Gala <galak@kernel.crashing.org>
12262 Date:   Thu Aug 27 08:23:55 2009 -0500
12263
12264     Add ability for arch code to make changes before we boot
12265
12266     Added a arch_preboot_os() function that cpu specific code can implement to
12267     allow for various modifications to the state of the machine right before
12268     we boot.  This can be useful to setup register state to a specific
12269     configuration.
12270
12271     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12272
12273 commit 9ea005fb4428c922536fa75991ce9972304a02fb
12274 Author: Roy Zang <tie-fei.zang@freescale.com>
12275 Date:   Sat Aug 22 03:49:52 2009 +0800
12276
12277     Use different PBA value for E1000 PCI and PCIe cards
12278
12279     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
12280     Acked-by: André Schwarz <andre.schwarz@matrix-vision.de>
12281
12282 commit 5b34a296d47b236dafbcaf1c91ae11b5aeb1ef51
12283 Author: Graeme Russ <graeme.russ@gmail.com>
12284 Date:   Sun Aug 23 12:59:58 2009 +1000
12285
12286     Add PCI support to eNET board
12287
12288     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12289
12290 commit f50b619d9cb297b0125fe78dcd6f255eb0d91659
12291 Author: Graeme Russ <graeme.russ@gmail.com>
12292 Date:   Sun Aug 23 12:59:57 2009 +1000
12293
12294     i386: Moved PCI from #ifdef to conditional compile for sc520 boards
12295
12296     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12297
12298 commit ed7a1b681de1e31d18d5b92e2767ae8df3241687
12299 Author: Graeme Russ <graeme.russ@gmail.com>
12300 Date:   Sun Aug 23 12:59:56 2009 +1000
12301
12302     i386: Replace [read, write]_mmcr_[byte, word, long] with memory mapped structure
12303
12304     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12305
12306 commit 9b32f96b5b92ba13fdb4b5eb637734752235f260
12307 Author: Graeme Russ <graeme.russ@gmail.com>
12308 Date:   Sun Aug 23 12:59:55 2009 +1000
12309
12310     Misc sc520 cdp fixups
12311
12312     Now that the PCI, SATA et al compile problems have been resolved, the
12313     cludge that was applied to avoid them can be removed
12314
12315     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12316
12317 commit 91ee4e183cb7ac5f86e7673ead51400f19906635
12318 Author: Graeme Russ <graeme.russ@gmail.com>
12319 Date:   Sun Aug 23 12:59:54 2009 +1000
12320
12321     Fixup sc520_spunk board
12322
12323     Primary intent is to resolve build errors for this board which has been
12324     neglected for a very long time. I do not have one of these boards, so I
12325     cannot test functionality
12326
12327     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12328
12329 commit 8907b8dbc5805094f1316d64737d3428b3863693
12330 Author: Graeme Russ <graeme.russ@gmail.com>
12331 Date:   Sun Aug 23 12:59:53 2009 +1000
12332
12333     Misc ds1722 fixups
12334
12335     This patch is based on a patch submitted by Jean-Christophe PLAGNIOL-VILLARD
12336     on 18th May 2008 as part of a general i386 / sc520 fixup which was never
12337     applied
12338
12339     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12340
12341 commit a92510e7fae523145b58765cdc46110f1162260d
12342 Author: Graeme Russ <graeme.russ@gmail.com>
12343 Date:   Sun Aug 23 12:59:52 2009 +1000
12344
12345     Misc ti_pci1410a fixups
12346
12347     Removed do_pinit() - now declared in cmd_pcmcia.c
12348
12349     Added #define CONFIG_CMD_PCMCIA around pcmcia_off() in line with other
12350     PCMCIA drivers
12351
12352     signed/unsigned type fixups
12353
12354     Added semi-colon after default: label as required by newer gcc
12355
12356     The only board that appears to use this driver is the sc520_spunk which
12357     is very old and very likely very broken anyway. I do not have one to test
12358     whether this patch breaks anything functionaly, I have can only check
12359     that it compiles without warning or error
12360
12361     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12362
12363 commit 31b9ab33d93d88ff89f3046aa45c68667a378a56
12364 Author: Graeme Russ <graeme.russ@gmail.com>
12365 Date:   Sun Aug 23 12:59:51 2009 +1000
12366
12367     Misc SATA fixups
12368
12369     Cast first parameter to sata_cpy()
12370
12371     In /drivers/block/ata_piix.h, ata_id_has_lba48(), ata_id_has_lba(),
12372     ata_id_has_dma(), ata_id_u32(), ata_id_u64() are all defined in
12373     include/libata.h which is included in ata.h which is included by all files
12374     which include ata_piix.h (only ata_piix.c) so these definitions are
12375     supurflous to (and conlict with) this in libata.h. Interestingly, my
12376     compiler complains about ata_id_u64 already being defined, but not
12377     ata_id_u32
12378
12379     ata_dump_id() is defined in include/libata.h and should not be static
12380     (maybe should even use ata_dump_id() in libata.c
12381
12382     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12383
12384 commit d7549024098af093785151261266a02be19af633
12385 Author: Graeme Russ <graeme.russ@gmail.com>
12386 Date:   Sun Aug 23 12:59:50 2009 +1000
12387
12388     i386: Misc PCI fixups
12389
12390     Change PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY (Originally done in
12391     commit ff4e66e93c1a, regressed by commit 6d7f610b09f8)
12392
12393     Cast PCI_ROM_ADDRESS_MASK to u32
12394
12395     Wrap probe_pci_video() call inside #ifdef CONFIG_VIDEO
12396
12397     Change call to pci_find_class() to pci_find_devices(). This is based on a
12398     patch submitted on 1st March 2007 (Patch that fixes the compilation errors
12399     for sc520_cdp board) by mushtaq_k
12400
12401     This patch requires that PCI_VIDEO_VENDOR_ID and PCI_VIDEO_DEVICE_ID be
12402     specified in the board config file.  Dummy values have been added for the
12403     SC520 CDP board to enable compilation, but since I do not have one of these,
12404     I do know what the values should be
12405
12406     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12407
12408 commit 04ff9ab158714d43cdf2f4f6f0235c3ea9d241a2
12409 Author: Graeme Russ <graeme.russ@gmail.com>
12410 Date:   Sun Aug 23 12:59:49 2009 +1000
12411
12412     Fix sc520 timer interrupt generation
12413
12414     The current implementation has the timer being started before the interrupt
12415     handler is installed. It the interrupt occurs before the handler is
12416     installed, the timer interrupt is never reset and the timer stops
12417
12418     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12419
12420 commit f3a8d6b29b1cd01fdd940e8ff7a62b1df0ebbf82
12421 Author: Graeme Russ <graeme.russ@gmail.com>
12422 Date:   Sun Aug 23 12:59:48 2009 +1000
12423
12424     Fix environment configuration for eNET board
12425
12426     The current configuration of the Environment has the redundant copy of the
12427     environment in the Boot Flash - This was never the intent. The Environment
12428     should instead be in the first two sectors of the first Strata Flash
12429
12430     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12431
12432 commit ea0c37798c3823fdd77edfffd27b20191f8ca1f0
12433 Author: Graeme Russ <graeme.russ@gmail.com>
12434 Date:   Sun Aug 23 12:59:47 2009 +1000
12435
12436     i386: Fix regression introduced by commit 8c63d47651f7
12437
12438     A local variable was deleted that should not have been
12439
12440     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12441
12442 commit cfb3a736ffcff3e3753b902cad536f22fcf8961d
12443 Author: Graeme Russ <graeme.russ@gmail.com>
12444 Date:   Sun Aug 23 12:59:46 2009 +1000
12445
12446     i386: Change inline asm global symbols to local
12447
12448     gcc 4.3.2 optimiser creates multiple copies of inline asm (who knows why)
12449     Remove use of global names for labels to prevent 'symbol already defined'
12450     errors
12451
12452     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12453
12454 commit a3ab8caee696a1d53fc82fa321e2b2f179970168
12455 Author: Graeme Russ <graeme.russ@gmail.com>
12456 Date:   Sun Aug 23 12:59:45 2009 +1000
12457
12458     i386: Add errno.h
12459
12460     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12461
12462 commit d4e8ada0f6d51e0e3b80790fb9375ac8910f5352
12463 Author: Peter Tyser <ptyser@xes-inc.com>
12464 Date:   Fri Aug 21 23:05:21 2009 -0500
12465
12466     Consolidate arch-specific mem_malloc_init() implementations
12467
12468     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12469
12470 commit a483a167bc8d808145ca1224a2c238cda90aa60c
12471 Author: Peter Tyser <ptyser@xes-inc.com>
12472 Date:   Fri Aug 21 23:05:20 2009 -0500
12473
12474     Standardize mem_malloc_init() implementation
12475
12476     This lays the groundwork to allow architectures to share a common
12477     mem_malloc_init().
12478
12479     Note that the x86 implementation was not modified as it did not fit the
12480     mold of all other architectures.
12481
12482     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12483
12484 commit 5e93bd1c9aaea886c5e5c7c1b6114ab36c30668f
12485 Author: Peter Tyser <ptyser@xes-inc.com>
12486 Date:   Fri Aug 21 23:05:19 2009 -0500
12487
12488     Consolidate arch-specific sbrk() implementations
12489
12490     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12491
12492 commit 65f6f07b72a71b83d775c4d20d7ebcd6b2d2086d
12493 Author: Mike Frysinger <vapier@gentoo.org>
12494 Date:   Thu Jul 23 16:37:03 2009 -0400
12495
12496     atmel_df_pow2: standalone to convert dataflashes to pow2
12497
12498     Atmel DataFlashes by default operate with pages that are slightly bigger
12499     than normal binary sizes (i.e. many are 1056 byte pages rather than 1024
12500     bytes).  However, they also have a "power of 2" mode where the pages show
12501     up with the normal binary size.  The latter mode is required in order to
12502     boot with a Blackfin processor, so many people wish to convert their
12503     DataFlashes on their development systems to this mode.  This standalone
12504     application does just that.
12505
12506     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12507
12508 commit cb95c7a935ab9b52dac5d08e5ba4007c5a480f97
12509 Author: Mike Frysinger <vapier@gentoo.org>
12510 Date:   Wed Sep 2 05:52:37 2009 -0400
12511
12512     Blackfin: cm-bf548: fix device->stdio_dev fallout
12513
12514     The recent 52cb4d4fb348 commit which renamed device to stdio_dev missed the
12515     cm-bf548's video board.
12516
12517     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12518
12519 commit c7bcdde46a7ef78628f0f09fdc6cb61bb1bd7e79
12520 Author: Mike Frysinger <vapier@gentoo.org>
12521 Date:   Wed Sep 2 04:21:16 2009 -0400
12522
12523     Blackfin: enable 64bit printf for nand
12524
12525     Since the NAND code now uses 64bit code, make sure we enable support for
12526     ADI Blackfin boards in printf to avoid the warning:
12527     nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output!
12528
12529     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12530
12531 commit 9c46e71af2b03ccd721c56b1dc906ead702d6fb5
12532 Author: Mike Frysinger <vapier@gentoo.org>
12533 Date:   Mon Aug 24 20:48:04 2009 -0400
12534
12535     Blackfin: use scratch pad for exception stack
12536
12537     If the memory layout pushes the stack out of the default DCPLB coverage,
12538     the exception handler may trigger a double fault by trying to push onto
12539     the uncovered stack.  So handle the exception stack similar to the kernel
12540     by using the top of the scratch pad SRAM.
12541
12542     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12543
12544 commit 69a25ce3578f34c8accb476f70089f3a44b78ed9
12545 Author: Mike Frysinger <vapier@gentoo.org>
12546 Date:   Mon Aug 24 20:36:25 2009 -0400
12547
12548     Blackfin: increase default console size
12549
12550     The default console size indirectly applies to length of env vars, so a
12551     smaller length makes it hard to pass longer command lines to kernels.
12552
12553     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12554
12555 commit f541e1d6d99c22bbd4bc8c84fdb02baad0277847
12556 Author: Mike Frysinger <vapier@gentoo.org>
12557 Date:   Mon Aug 24 19:03:18 2009 -0400
12558
12559     Blackfin: fix debug printf modifiers
12560
12561     The display_global_data() function generated warnings with pretty much
12562     every variable.
12563
12564     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12565
12566 commit 4640c2b8699bcdd2346a2c633486f07f061a2939
12567 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
12568 Date:   Thu Aug 20 19:20:41 2009 -0400
12569
12570     Blackfin: cm-bf537u: new board port
12571
12572     The CM-BF537U is similar to the CM-BF537E module, but enough to need its
12573     own board port.
12574
12575     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
12576     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12577
12578 commit c4db335c2e0805e1ce4c33d278b77492c0812353
12579 Author: Robin Getz <robin.getz@analog.com>
12580 Date:   Mon Aug 17 15:23:02 2009 +0000
12581
12582     Blackfin: change global data register from P5 to P3
12583
12584     Since the Blackfin ABI favors higher scratch registers by default, use the
12585     last scratch register (P3) for global data rather than the first (P5).
12586     This allows the compiler's register allocator to use higher number scratch
12587     P registers, which in turn better matches the Blackfin instruction set,
12588     which reduces the size of U-Boot by more than 1024 bytes...
12589
12590     Signed-off-by: Robin Getz <robin.getz@analog.com>
12591     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12592
12593 commit 574b70df03fba0ea635e2fe71fbd7b97d19b706a
12594 Author: Robin Getz <robin.getz@analog.com>
12595 Date:   Tue Aug 11 14:20:13 2009 +0000
12596
12597     Blackfin: enable more network commands for ADI dev boards
12598
12599     Add dns and ntp to default networking commands, and ask for more dhcp
12600     options to better configure the network environment.
12601
12602     Signed-off-by: Robin Getz <robin.getz@analog.com>
12603     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12604
12605 commit aa7b248a05323d4720969227603e39a22777ed95
12606 Author: Michael Hennerich <michael.hennerich@analog.com>
12607 Date:   Thu Jun 18 09:12:50 2009 +0000
12608
12609     Blackfin: bf537-stamp: comment CF-Flash Card Support better
12610
12611     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
12612     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12613
12614 commit 69c6d268a29cf6d61e096d815abf5abf24136f45
12615 Author: Robin Getz <robin.getz@analog.com>
12616 Date:   Fri Jul 10 18:37:15 2009 +0000
12617
12618     Blackfin: use +(filesize) to make sure we are only doing what is necessary
12619
12620     Signed-off-by: Robin Getz <robin.getz@analog.com>
12621     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12622
12623 commit 2dc851e3b0f07a56f83060f13882ff4b62cf5112
12624 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12625 Date:   Thu Aug 20 16:04:49 2009 +0200
12626
12627     Support for the Calao TNY-A9260/TNY-A9G20 boards
12628
12629     The Calao TNY-A9260 and TNY-9G20 are boards manufactured and sold by
12630     Calao Systems <http://www.calao-systems.com>. Their components are very
12631     similar to the AT91SAM9260EK board, so their configuration is based on
12632     the configuration of this board. There are however some differences:
12633     different clocks, no LCD, no ethernet. They also can use SPI EEPROM to
12634     store the environment.
12635
12636     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12637     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12638
12639 commit 49d2cb4d6153a6c18249dccb5de5cffeb261a61c
12640 Author: Prafulla Wadaskar <prafulla@marvell.com>
12641 Date:   Thu Aug 20 20:59:28 2009 +0530
12642
12643     arm: Kirkwood: add SYSRSTn Duration Counter Support
12644
12645     This feature can be used to trigger special command "sysrstcmd" using
12646     reset key long press event and environment variable "sysrstdelay" is set
12647     (useful for reset to factory or manufacturing mode execution)
12648
12649     Kirkwood SoC implements a hardware-based SYSRSTn duration counter.
12650     When SYSRSTn is asserted low, a SYSRSTn duration counter is running.
12651     The counter value is stored in the SYSRSTn Length Counter Register
12652     The counter is based on the 25-MHz reference clock (40ns)
12653     It is a 29-bit counter, yielding a maximum counting duration of
12654     2^29/25 MHz (21.4 seconds). When the counter reach its maximum value,
12655     it remains at this value until counter reset is triggered by setting
12656     bit 31 of KW_REG_SYSRST_CNT
12657
12658     Implementation:
12659     Upon long reset assertion (> ${sysrstdelay} in secs) sysrstcmd will be
12660     executed if pre-defined in environment variables.
12661     This feature will be disabled if "sysrstdelay" variable is unset.
12662
12663     for-ex.
12664     setenv sysrst_cmd "echo starting factory reset;
12665                    nand erase 0xa0000 0x20000;
12666                    echo finish ed sysrst command;"
12667     will erase particular nand sector if triggered by this event
12668
12669     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
12670
12671 commit 9453967e28c5e3abbf856f95735ea69bae1e77fa
12672 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12673 Date:   Mon Aug 24 18:03:26 2009 +0200
12674
12675     Add support for the Calao SBC35-A9G20 board
12676
12677     The Calao SBC35-A9G20 board is manufactured and sold by Calao Systems
12678     <http://www.calao-systems.com>. It is built around an AT91SAM9G20 ARM SoC
12679     running at 400MHz. It features an Ethernet port, an SPI RTC backed by an onboard
12680     battery , an SD/MMC slot, a CompactFlash slot, 64Mo of SDRAM, 256Mo of NAND
12681     flash, two USB host ports, and an USB device port. More informations can be
12682     found at <http://www.calao-systems.com/articles.php?lng=en&pg=5936>
12683
12684     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12685
12686 commit 10bc241dfc15a0820d9c52469173b7ccafec0b84
12687 Author: Ilya Yanok <yanok@emcraft.com>
12688 Date:   Tue Aug 11 02:32:09 2009 +0400
12689
12690     imx27lite: add support for imx27lite board from LogicPD
12691
12692     This patch adds support for i.MX27-LITEKIT development board from
12693     LogicPD. This board uses i.MX27 SoC and has 2MB NOR flash, 64MB NAND
12694     flash, FEC ethernet controller integrated into i.MX27.
12695
12696     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12697     Acked-by: Wolfgang Denk <wd@denx.de>
12698
12699 commit 50b5fff55827946c86a60db8b21a9358be720666
12700 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12701 Date:   Tue Sep 1 11:26:20 2009 +0200
12702
12703     at91sam9260/afeb9260: Fix SPI initialization
12704
12705     Commit 7ebafb7ec1a0285af8380623c009576f92583b98 introduced a mistake in the spi
12706     init function call for those boards. This patch fixes this.
12707
12708     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12709
12710 commit f3d4f8870e69e0fd177397778d97d0751bbd020a
12711 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
12712 Date:   Tue Aug 18 11:13:44 2009 +0200
12713
12714     Remove duplicate set_cr
12715
12716     Remove duplicate set_cr
12717
12718     set_cr is defined in both asm-arm/proc-armv/system.h and
12719     include/asm-arm/system.h. This patch removes it (and some duplicate
12720     defines) from the former.
12721
12722     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
12723
12724 commit 3d35d87d5482de23cd5dc4d7721b1086107cae50
12725 Author: Wolfgang Denk <wd@denx.de>
12726 Date:   Mon Aug 31 19:57:42 2009 +0200
12727
12728     Prepare 2009.08
12729
12730     Update CHANGELOG
12731
12732     Signed-off-by: Wolfgang Denk <wd@denx.de>
12733
12734 commit 632a6dd0b612eb7b143f789f2a0273917468c041
12735 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
12736 Date:   Mon Aug 31 16:18:24 2009 +0200
12737
12738     Add common code dir for Matrix Vision boards.
12739
12740     This fixes current build failure.
12741
12742     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
12743
12744     mvblm7.c: fix warning: implicit declaration of function
12745     'mv_reset_environment'
12746
12747     Signed-off-by: Wolfgang Denk <wd@denx.de>
12748
12749 commit 52f6c34c85d6c16f2a41433b5000490ecf374992
12750 Author: David Brownell <dbrownell@users.sourceforge.net>
12751 Date:   Sun Aug 30 11:05:29 2009 -0700
12752
12753     bugfix CONFIG_SYS_CONSOLE_INFO_QUIET
12754
12755     The "console: unify printing current devices" patch goofed:
12756     CONFIG_SYS_CONSOLE_INFO_QUIET is supposed to *REMOVE* boot
12757     time noise, not add it.  Said patch changed the #ifndefs
12758     to #ifdef; this one restores them to the proper sense.
12759
12760     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
12761
12762 commit 2d04db088e6df8a008bb09f604876a45031df93b
12763 Author: Timur Tabi <timur@freescale.com>
12764 Date:   Fri Aug 28 16:56:45 2009 -0500
12765
12766     fsl: simplify the "mac id" command, improve boot-time informational message
12767
12768     The "mac id" command took a 4-character parameter as the identifier string.
12769     However, for any given board, only one kind of identifier is acceptable, so it
12770     makes no sense to ask the user to type it in.  Instead, if the user enters
12771     "mac id", the identifier (and also the version, if it's NXID) will
12772     automatically be set to the correct value.
12773
12774     Improve the message that is displayed when EEPROM is read during boot.  It now
12775     displays "EEPROM:" and then either an error message or the EEPROM identifier
12776     if successful.
12777
12778     If the identifier in EEPROM is valid, then always reject a bad CRC, even if the
12779     CRC field has not been initialized.
12780
12781     Don't force the MAC address count to MAX_NUM_PORTS or less.  Forcing the value
12782     to be changed resulting in an in-memory copy that does not match what's in
12783     hardware, even though the user did not request that change.
12784
12785     Finally, always update the CRC value in the in-memory copy after any field
12786     is changed, so that the CRC is always correct.
12787
12788     Signed-off-by: Timur Tabi <timur@freescale.com>
12789     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12790
12791 commit 33f3f34255bd7cf0be502275c59f0ff22dc50080
12792 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12793 Date:   Fri Aug 21 07:29:58 2009 +0530
12794
12795     85xx: Added PCIe support for P1 P2 RDB
12796
12797     Call fsl_pci_init_port() to initialize all the PCIe ports on the board.
12798
12799     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12800     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12801
12802 commit 0d3d68b25a8e7790f58530ddccbd61f9fc0245ef
12803 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12804 Date:   Fri Aug 21 07:29:42 2009 +0530
12805
12806     driver/fsl_pci: Add fsl_pci_init_port function to initialize a PCI controller
12807
12808     fsl_pci_init_port can be called from board specific PCI initialization
12809     routines to setup the PCI (or PCIe) controller.  This will reduce code
12810     redundancy in most of the 85xx/86xx FSL board ports that setup PCI.
12811
12812     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12813     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12814
12815 commit 05f6f66474312ad03c39b4ca4875af46c87366bf
12816 Author: Timur Tabi <timur@freescale.com>
12817 Date:   Thu Aug 20 17:41:11 2009 -0500
12818
12819     85xx: Improve MPIC initialization
12820
12821     The MPIC initialization code for Freescale e500 CPUs was not using I/O
12822     accessors, and it was not issuing a read-back to the MPIC after setting
12823     mixed mode.  This may be the cause of a spurious interrupt on some systems.
12824
12825     Signed-off-by: Timur Tabi <timur@freescale.com>
12826     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12827
12828 commit c17b79fbd0c7923948331d65cb588734a9c681ff
12829 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12830 Date:   Thu Aug 20 18:59:18 2009 +0530
12831
12832     85xx: Added support for P1011RDB and P2010RDB
12833
12834     P1011 and P2010 are single core variants of P1010 and P2020 respectively.
12835     The board(RDB) will be same.
12836
12837     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12838     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12839
12840 commit a713ba926b45da9a6f923f1ac9e60a66852e5f2d
12841 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12842 Date:   Thu Aug 20 18:57:45 2009 +0530
12843
12844     85xx: Added single core members of FSL P1xx/P2xx processors series
12845
12846     P1011 - Single core variant of P1020
12847     P2010 - Single core variant of P2020
12848
12849     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12850     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12851
12852 commit bf488bc0949fc900d1296a7f35a38a6a28cb5fab
12853 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12854 Date:   Thu Aug 20 18:57:02 2009 +0530
12855
12856     85xx: P1020RDB Support Added
12857
12858     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12859     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12860
12861 commit 3b1f243b8dad30a646a0f056b0268519eadbc3c5
12862 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12863 Date:   Thu Aug 20 18:55:35 2009 +0530
12864
12865     85xx: Added CONFIG_MAX_CPUS for P1020
12866
12867     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12868     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12869
12870 commit 76b474e2f5a223fcabfeaa4f1c8fb699062b986c
12871 Author: Mingkai Hu <Mingkai.hu@freescale.com>
12872 Date:   Tue Aug 18 15:37:15 2009 +0800
12873
12874     85xx: Add L2SRAM Register's macro definition
12875
12876     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
12877     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12878
12879 commit 158c6724c99368a4d8eef11ee7e3c7ad0ef03a15
12880 Author: Felix Radensky <felix@embedded-sol.com>
12881 Date:   Sat Aug 15 15:08:37 2009 +0300
12882
12883     85xx: Fix memory test range on MPC8536DS
12884
12885     With current values of CONFIG_SYS_MEMTEST_START and CONFIG_SYS_MEMTEST_END
12886     memory test hangs if run without arguments. Set them to sane values, so
12887     that all available 512MB of RAM excluding exception vectors at the bottom
12888     and u-boot code and stack at the top can be tested.
12889
12890     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
12891     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12892
12893 commit ef41f2a25c554604156b59f5945feadae2f3cb55
12894 Author: Kumar Gala <galak@kernel.crashing.org>
12895 Date:   Wed Aug 12 00:10:44 2009 -0500
12896
12897     85xx: Removed BEDBUG support on P1_P2_RDB
12898
12899     To match all other 85xx platforms we are removing BEDBUG support.
12900
12901     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12902
12903 commit b560ab85edfb68da653bf2527c390c3e182392a1
12904 Author: Kumar Gala <galak@kernel.crashing.org>
12905 Date:   Sat Aug 8 10:42:30 2009 -0500
12906
12907     85xx: Init pci ethernet cards if we enable any on MPC8572DS
12908
12909     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12910
12911 commit 1bb61b69f7aba4931ede35fdcabd8e5ecad121d7
12912 Author: Peter Tyser <ptyser@xes-inc.com>
12913 Date:   Fri Aug 7 13:16:34 2009 -0500
12914
12915     xes: Use proper IO access functions
12916
12917     Also fix some minor whitespace oddities while we're cleaning up
12918
12919     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12920     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12921
12922 commit ec79d33b2c41ee8b6d1354cc0910217b769c5036
12923 Author: Kumar Gala <galak@kernel.crashing.org>
12924 Date:   Fri Aug 7 13:00:55 2009 -0500
12925
12926     85xx: Move to a common linker script
12927
12928     There are really no differences between all the 85xx linker scripts so
12929     we can just move to a single common one.  Board code is still able to
12930     override the common one if need be.
12931
12932     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12933
12934 commit 87c7661b42aa7672539b54b51d3d5c4013ec6f6c
12935 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12936 Date:   Fri Jul 31 12:08:27 2009 +0530
12937
12938     85xx: Added P1020 Processor Support.
12939
12940     P1020 is another member of QorIQ series of processors which falls in ULE
12941     category. It is an e500 based dual core SOC.
12942
12943     Being a scaled down version of P2020 it has following differences:
12944     - 533MHz - 800MHz core frequency.
12945     - 256Kbyte L2 cache
12946     - Ethernet controllers with classification capabilities.
12947     Also the SOC is pin compatible with P2020
12948
12949     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12950     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12951
12952 commit 728ece343e8bb2a66ee977c49d455439e3b28da9
12953 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12954 Date:   Wed Aug 5 13:29:24 2009 +0530
12955
12956     85xx: Add support for P2020RDB board
12957
12958     The code base adds P1 & P2 RDB platforms support.
12959     The folder and file names can cater to future SOCs of P1/P2 family.
12960     P1 & P2 processors are 85xx platforms, part of Freescale QorIQ series.
12961
12962     Tested following on P2020RDB:
12963     1. eTSECs
12964     2. DDR, NAND, NOR, I2C.
12965
12966     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12967     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12968
12969 commit 0e870980a64584a591af775bb9c9fe9450124df9
12970 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12971 Date:   Fri Jul 31 12:08:14 2009 +0530
12972
12973     8xxx: Removed CONFIG_NUM_CPUS from 85xx/86xx
12974
12975     The number of CPUs are getting detected dynamically by checking the
12976     processor SVR value.  Also removed CONFIG_NUM_CPUS references from all
12977     the platforms with 85xx/86xx processors.
12978
12979     This can help to use the same u-boot image across the platforms.
12980
12981     Also revamped and corrected few Freescale Copyright messages.
12982
12983     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12984     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12985
12986 commit 18bacc2027f8531d8dec15ba8da3242dfb4e63f3
12987 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12988 Date:   Fri Jul 31 12:07:45 2009 +0530
12989
12990     8xxx: Refactored common cpu specific code for 85xx/86xx into one file.
12991
12992     Removed same code pieces from cpu/mpc85xx/cpu.c and cpu/mpc86xx/cpu.c
12993     and moved to cpu/mpc8xxx/cpu.c(new file)
12994
12995     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12996     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12997
12998 commit 7b18c227b847e4782eb1492219ebd555f521b08b
12999 Author: Alex Dubov <oakad@yahoo.com>
13000 Date:   Fri Aug 7 15:28:32 2009 +1000
13001
13002     stx: create common vendor/board hierarchy for STx boards
13003
13004     Move files belonging to the STx boards into common vendor directory and
13005     update the Makefile to reflect this.
13006
13007     Signed-off-by: Alex Dubov <oakad@yahoo.com>
13008     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13009
13010 commit bafdf9aa9dbb69d937b72db17ed5800998c59523
13011 Author: Peter Tyser <ptyser@xes-inc.com>
13012 Date:   Tue Aug 4 17:38:00 2009 -0500
13013
13014     85xx: Remove unused CONFIG_CLEAR_LAW0 defines
13015
13016     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13017     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13018
13019 commit 73aacc522849486b60a5611f678f0bf1c3053779
13020 Author: Kumar Gala <galak@kernel.crashing.org>
13021 Date:   Thu Aug 6 18:38:43 2009 -0500
13022
13023     86xx: Remove redudant PLATFORM_CPPFLAGS
13024
13025     For historic reasons we had defined some additional PLATFORM_CPPFLAGS like:
13026
13027     PLATFORM_CPPFLAGS += -DCONFIG_MPC86xx=1
13028     PLATFORM_CPPFLAGS += -DCONFIG_MPC8641=1
13029
13030     However these are all captured in the config.h and thus redudant.  Also
13031     moved common 86xx flags into cpu/mpc86xx/config.mk.
13032
13033     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13034
13035 commit 53efa1f1acacacb76fa9a21b09b3294783a11c03
13036 Author: Kumar Gala <galak@kernel.crashing.org>
13037 Date:   Thu Aug 6 18:28:34 2009 -0500
13038
13039     85xx: Remove redudant PLATFORM_CPPFLAGS
13040
13041     For historic reasons we had defined some additional PLATFORM_CPPFLAGS
13042     like:
13043
13044     PLATFORM_CPPFLAGS += -DCONFIG_E500=1
13045     PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx=1
13046     PLATFORM_CPPFLAGS += -DCONFIG_MPC8548=1
13047
13048     However these are all captured in the config.h and thus redudant.
13049
13050     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13051
13052 commit 337f9fde2e9317c1d9e85a4a8955a2f14730a00f
13053 Author: Kumar Gala <galak@kernel.crashing.org>
13054 Date:   Thu Jul 30 15:54:07 2009 -0500
13055
13056     85xx: Add a 36-bit physical configuration for MPC8536DS
13057
13058     We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
13059     to allow for larger memory sizes.
13060
13061     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13062     Acked-by: Wolfgang Denk <wd@denx.de>
13063
13064     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13065
13066 commit ecead84d56b0ced67b727f5ce21ba08c53b5f09e
13067 Author: Kumar Gala <galak@kernel.crashing.org>
13068 Date:   Tue Aug 4 09:10:03 2009 -0500
13069
13070     85xx: Cleanup whitespace in mpc8536ds.c
13071
13072     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13073
13074 commit ad19e7a5d2de337064ce7728d6504df9648f5d31
13075 Author: Kumar Gala <galak@kernel.crashing.org>
13076 Date:   Wed Aug 5 07:59:35 2009 -0500
13077
13078     pci/fsl_pci_init: Rework PCI ATMU setup to handle >4G of memory
13079
13080     The old PCI ATMU setup code would just mimic the PCI regions into the
13081     ATMU registers.  For simple memory maps in which all memory, MMIO, etc
13082     space fit into 4G this works ok.  However there are issues with we have
13083     >4G of memory as we know can't access all of memory and we need to
13084     ensure that PCICSRBAR (PEXCSRBAR on PCIe) isn't overlapping with
13085     anything since we can't turn it off.
13086
13087     We first setup outbound windows based on what the board code setup
13088     in the pci regions for MMIO and IO access.  Next we place PCICSRBAR
13089     below the MMIO window.  After which we try to setup the inbound windows
13090     to map as much of memory as possible.
13091
13092     On PCIe based controllers we are able to overmap the ATMU setup since
13093     RX & TX links are separate but report the proper amount of inbound
13094     address space to the region tracking to ensure there is no overlap.
13095
13096     On PCI based controllers we use as many inbound windows as available to
13097     map as much of the memory as possible.
13098
13099     Additionally we changed all the CCSR register access to use proper IO
13100     accessor functions.  Also had to add CONFIG_SYS_CCSRBAR_PHYS to some
13101     86xx platforms that didn't have it defined.
13102
13103     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13104
13105 commit 8295b94400449586505ffe34ec024feb3d2c8fe4
13106 Author: Kumar Gala <galak@kernel.crashing.org>
13107 Date:   Wed Aug 5 07:49:27 2009 -0500
13108
13109     pci/fsl_pci_init: Use PCIe capability to determine if controller is PCIe
13110
13111     Change the code to use the PCIe capabilities register to determine if we
13112     are a PCIe controller or not.  Additionally cleaned up some white space
13113     and formatting in the file.
13114
13115     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13116
13117 commit cb151aa2cf5fbb1e412fc763a3a611758f066238
13118 Author: Kumar Gala <galak@kernel.crashing.org>
13119 Date:   Mon Aug 3 21:02:02 2009 -0500
13120
13121     pci/fsl_pci_init: Fold fsl_pci_setup_inbound_windows into fsl_pci_init
13122
13123     Every platform that calls fsl_pci_init calls fsl_pci_setup_inbound_windows
13124     before it calls fsl_pci_init.  There isn't any reason to just call it
13125     from fsl_pci_init and simplify things a bit.
13126
13127     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13128
13129 commit fb3143b35eb5890ec72e79d17a6068a84a057d47
13130 Author: Kumar Gala <galak@kernel.crashing.org>
13131 Date:   Mon Aug 3 20:44:55 2009 -0500
13132
13133     pci/fsl_pci_init: Fold pci_setup_indirect into fsl_pci_init
13134
13135     Every platform that calls fsl_pci_init calls pci_setup_indirect before
13136     it calls fsl_pci_init.  There isn't any reason to just call it from
13137     fsl_pci_init and simplify things a bit.
13138
13139     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13140
13141 commit 28887d831b02c66ccc10d7f1379204b5a62f4543
13142 Author: André Schwarz <andre.schwarz@matrix-vision.de>
13143 Date:   Thu Aug 27 14:48:35 2009 +0200
13144
13145     Use common code for Matrix Vision boards
13146
13147     Clean up existing boards (mvBC-P/MPC5200 and mvBL-M7/MPC8343) by
13148     using common code.
13149
13150     Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
13151
13152 commit 05f91a65abc3180e2896cd8ddee7a34b1d1ce6e0
13153 Author: Kim Phillips <kim.phillips@freescale.com>
13154 Date:   Wed Aug 26 21:27:37 2009 -0500
13155
13156     mpc83xx: mpc8349itx - accommodate larger kernel sizes & unzero the bootdelay
13157
13158     apparently the ITX was missed last round.
13159
13160     Also make bootdelay consistent with other boards, so as to give on the
13161     opportunity to fix mistakenly set bootcmd without having checked for an
13162     bootdelay zero setting first.
13163
13164     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13165
13166 commit cc861f7127f200e704baaf061a7f508e3c93f2a3
13167 Author: Kim Phillips <kim.phillips@freescale.com>
13168 Date:   Wed Aug 26 21:25:46 2009 -0500
13169
13170     mpc83xx: match dtb filename references to their dts equivalents in the linux kernel
13171
13172     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13173
13174 commit 77b351cd0f20483eefa09bebebb3e0cbf5555b2c
13175 Author: Sandeep Paulraj <s-paulraj@ti.com>
13176 Date:   Tue Aug 18 10:10:42 2009 -0400
13177
13178     NAND: DaVinci: V2 Adding 4 BIT ECC support
13179
13180     This patch adds 4 BIT ECC support in the DaVinci NAND
13181     driver. Tested on both the DM355 and DM365.
13182
13183     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
13184     Signed-off-by: Scott Wood <scottwood@freescale.com>
13185
13186 commit f83b7f9e8a5d1334e24506ea5953dd871596ea8a
13187 Author: Sandeep Paulraj <s-paulraj@ti.com>
13188 Date:   Mon Aug 10 13:27:56 2009 -0400
13189
13190     MTD:NAND: ADD new ECC mode NAND_ECC_HW_OOB_FIRST
13191
13192     This patch adds the new mode NAND_ECC_HW_OOB_FIRST in the nand code to
13193     support 4-bit ECC on TI DaVinci devices with large page (up to 2K) NAND
13194     chips.  This ECC mode is similar to NAND_ECC_HW, with the exception of
13195     read_page API that first reads the OOB area, reads the data in chunks,
13196     feeds the ECC from OOB area to the ECC hw engine and perform any
13197     correction on the data as per the ECC status reported by the engine.
13198
13199     This patch has been accepted by Andrew Morton and can be found at
13200
13201     http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-new-ecc-mode-ecc_hw_oob_first.patch
13202
13203     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
13204     Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com>
13205     Signed-off-by: Scott Wood <scottwood@freescale.com>
13206
13207 commit 36fab997d85d89ee7fd2c7fd6057fab786d556aa
13208 Author: Ilya Yanok <yanok@emcraft.com>
13209 Date:   Tue Aug 11 02:32:54 2009 +0400
13210
13211     mxc_nand: add nand driver for MX2/MX3
13212
13213     Driver for NFC NAND controller found on Freescale's MX2 and MX3
13214     processors. Ported from Linux. Tested only with i.MX27 but should
13215     works with other MX2 and MX3 processors too.
13216
13217     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
13218     Signed-off-by: Scott Wood <scottwood@freescale.com>
13219
13220 commit a2c65b47effcb3d0aa23e58596538acd338ac7c5
13221 Author: Sandeep Paulraj <s-paulraj@ti.com>
13222 Date:   Mon Aug 10 13:27:46 2009 -0400
13223
13224     NAND: ADD page Parameter to all read_page/read_page_raw API's
13225
13226     This patch adds a new "page" parameter to all NAND read_page/read_page_raw
13227     APIs.  The read_page API for the new mode ECC_HW_OOB_FIRST requires the
13228     page information to send the READOOB command and read the OOB area before
13229     the data area.
13230
13231     This patch has been accepted by Andrew Morton and can be found at
13232     http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-page-parameter-to-all-read_page-read_page_raw-apis.patch
13233
13234     WE would like this to become part of the u-boot GIT as well
13235
13236     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
13237     Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com>
13238     Signed-off-by: Scott Wood <scottwood@freescale.com>
13239
13240 commit de4250929f37e6c16860741b74546bedbe0bdaba
13241 Author: Heiko Schocher <hs@denx.de>
13242 Date:   Tue Jul 21 17:13:40 2009 +0200
13243
13244     83xx, kmeter1: added NAND support
13245
13246     Signed-off-by: Heiko Schocher <hs@denx.de>
13247     Signed-off-by: Scott Wood <scottwood@freescale.com>
13248
13249 commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29
13250 Author: Kyungmin Park <kmpark@infradead.org>
13251 Date:   Tue Jul 21 11:58:04 2009 +0900
13252
13253     OneNAND: Remove unused read_spareram
13254
13255     Remove unused read_spareram and add unlock_all as kernel does
13256
13257     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13258     Signed-off-by: Scott Wood <scottwood@freescale.com>
13259
13260 commit 403ce1f759b5acec8514cd7e10ce76704fed519c
13261 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
13262 Date:   Thu Jul 16 21:19:29 2009 +0200
13263
13264     KB9202: Add NAND support
13265
13266     Add KB9202 NAND driver
13267
13268     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
13269     Signed-off-by: Scott Wood <scottwood@freescale.com>
13270
13271 commit ce3277a6f2c082f39596d3d3d88dd0a5bc91439d
13272 Author: Kyungmin Park <kmpark@infradead.org>
13273 Date:   Tue Jul 21 11:58:04 2009 +0900
13274
13275     OneNAND: Remove unused read_spareram
13276
13277     Remove unused read_spareram and add unlock_all as kernel does
13278
13279     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13280
13281 commit 0d042037b3cf8693ea0f793d0c292430bfc5a95c
13282 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
13283 Date:   Tue Aug 25 10:30:26 2009 -0500
13284
13285     galaxy5200: Cleanup typo and trailing whitespace
13286
13287     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
13288
13289 commit f6a309080b2da9e509b5ee8d091dca5e175415b7
13290 Author: TsiChung Liew <tsicliew@gmail.com>
13291 Date:   Wed Jul 22 18:42:45 2009 +0000
13292
13293     ColdFire: Fix compile warning messages
13294
13295     Change %08lX to %08X in board.c. Remove unused variable
13296     'oscillator' in mcf5227x/cpu_init.c and 'scm2' in
13297     mcf532x/cpu_init.c. Provide argument type cast in
13298     drivers/dma/MCD_dmaApi.c.
13299
13300     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
13301
13302 commit 88c811b153771a3d1bfe958297c69722efb278e9
13303 Author: TsiChung Liew <tsicliew@gmail.com>
13304 Date:   Wed Jul 22 16:32:39 2009 +0000
13305
13306     ColdFire: Fix missing _IO_BASE which caused compile error
13307
13308     The compile error was caused by a recent patch. Affected platforms -
13309     M5253DEMO.h, M5253EVBE.h, and M54455EVB.h. Adding the _IO_BASE
13310     automatically defined to 0 in asm-m68k/io.h if it isn't set in
13311     platform configuration file.
13312
13313     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
13314
13315 commit 3a7b2c21fb08b022e3e624cd071002b4aaed1606
13316 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
13317 Date:   Wed Jul 22 17:13:24 2009 +0200
13318
13319     Support up to 7 banks for ids as specified in JEDEC JEP106Z
13320
13321     see http://www.jedec.org/download/search/jep106Z.pdf
13322     Add some second source legacy flash chips 256x8.
13323
13324     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
13325     Signed-off-by: Stefan Roese <sr@denx.de>
13326
13327 commit 0d071cdd782e917b43e04869843df31670231ffd
13328 Author: Kim Phillips <kim.phillips@freescale.com>
13329 Date:   Mon Aug 24 14:32:26 2009 -0500
13330
13331     net: tsec - handle user interrupt while waiting for PHY auto negotiation to complete
13332
13333     if you don't have firmware installed for the PHY to come to life, this
13334     wait can be painful - let's give the option to avoid it if we want.
13335
13336     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13337     Acked-by: Andy Fleming <afleming@freescale.com>
13338     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13339
13340 commit 4fccb818e7ee1190602e79aa5729a23bc349bf0c
13341 Author: Robin Getz <rgetz@blackfin.uclinux.org>
13342 Date:   Thu Aug 20 10:50:20 2009 -0400
13343
13344     Add Transfer Size Option to tftp
13345
13346     Optionally add RFC 2349 "Transfer Size Option", so we can minimize the
13347     time spent sending data over the UART (now print a single line during a
13348     tftp transfer).
13349
13350      - If turned on (CONFIG_TFTP_TSIZE), U-Boot asks for the size of the file.
13351      - if receives the file size, a single line (50 chars) are printed.
13352          one hash mark == 2% of the file downloaded.
13353      - if it doesn't receive the file size (the server doesn't support RFC
13354          2349, prints standard hash marks (one mark for each UDP frame).
13355
13356     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
13357     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13358
13359 commit 488feef85229c08cd3aa1fa183bc8f483d2ae832
13360 Author: Robin Getz <rgetz@blackfin.uclinux.org>
13361 Date:   Mon Aug 24 10:33:39 2009 -0400
13362
13363     Add debug message for Blackfin Ethernet Rx function.
13364
13365     Add a simple print for the Blackfin's Ethernet Rx function,
13366     so we can debug incomming Ethernet functions easier.
13367
13368     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
13369     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13370
13371 commit b1c0eaac110bc919e5b4e88821348e714493f266
13372 Author: Ben Warren <biggerbadderben@gmail.com>
13373 Date:   Tue Aug 25 13:09:37 2009 -0700
13374
13375     Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API
13376
13377     All in-tree boards that use this controller have CONFIG_NET_MULTI added
13378     Also:
13379       - changed CONFIG_DRIVER_CS8900 to CONFIG_CS8900
13380       - changed CS8900_BASE to CONFIG_CS8900_BASE
13381       - changed CS8900_BUS?? to CONFIG_CS8900_BUS??
13382       - cleaned up line lengths
13383       - modified VCMA9 command function that accesses the device
13384       - removed MAC address initialization from lib_arm/board.c
13385
13386     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13387     Tested-by: Wolfgang Denk <wd@denx.de>
13388     Acked-by: Wolfgang Denk <wd@denx.de>
13389
13390 commit d47628a6ecf80cd4584a50b6c795b90c985a48e5
13391 Author: Alessandro Rubini <rubini-list@gnudd.com>
13392 Date:   Fri Aug 7 13:59:26 2009 +0200
13393
13394     arm nomadik: activate defrag choose 4k transfer block size
13395
13396     This chooses 4kB data size for both TFTP and NFS, as an example
13397     about how to use support for IP fragments.
13398
13399     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
13400     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13401
13402 commit bd931ca61c84039241d438ade4a9755ae0e5372f
13403 Author: Alessandro Rubini <rubini-list@gnudd.com>
13404 Date:   Fri Aug 7 13:59:16 2009 +0200
13405
13406     nfs: accept CONFIG_NFS_READ_SIZE from config file
13407
13408     To take advantage of defragmented packets, the config file
13409     can define CONFIG_NFS_READ_SIZE to override the 1kB default.
13410     No support is there for an environment variable by now.
13411
13412     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
13413     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13414
13415 commit 89ba81d1079a07b8430a98c1746c6d411312eb0d
13416 Author: Alessandro Rubini <rubini-list@gnudd.com>
13417 Date:   Fri Aug 7 13:59:06 2009 +0200
13418
13419     tftp: get the tftp block size from config file and from the environment
13420
13421     Increasing the block size is useful if CONFIG_IP_DEFRAG is
13422     used. Howerver, the last fragments in a burst may overflow the
13423     receiving ethernet, so the default is left at 1468, with thre new
13424     CONFIG_TFTP_BLOCKSIZE for config files. Further, "tftpblocksize"
13425     can be set in the environment.
13426
13427     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
13428     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13429
13430 commit 5cfaa4e54d0eb8232fa1cf092d955fdaed5b673d
13431 Author: Alessandro Rubini <rubini-list@gnudd.com>
13432 Date:   Fri Aug 7 13:58:56 2009 +0200
13433
13434     net: defragment IP packets
13435
13436     The defragmenting code is enabled by CONFIG_IP_DEFRAG; the code is
13437     useful for TFTP and NFS transfers.  The user can specify the maximum
13438     defragmented payload as CONFIG_NET_MAXDEFRAG (default 16k).
13439     Since NFS has a bigger per-packet overhead than TFTP, the static
13440     reassembly buffer can hold CONFIG_NET_MAXDEFRAG + the NFS overhead.
13441
13442     The packet buffer is used as an array of "hole" structures, acting as
13443     a double-linked list. Each new fragment can split a hole in two,
13444     reduce a hole or fill a hole. No support is there for a fragment
13445     overlapping two diffrent holes (i.e., thre new fragment is across an
13446     already-received fragment).
13447
13448     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
13449     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13450
13451 commit 68e74567cf317318df52dbcb2ac170ffc5e7758a
13452 Author: Feng Kan <fkan@amcc.com>
13453 Date:   Fri Aug 21 10:59:42 2009 -0700
13454
13455     ppc4xx: Fix ECC Correction bug with SMC ordering for NDFC driver
13456
13457     Fix ECC Correction bug where the byte offset location were double
13458     flipped causing correction routine to toggle the wrong byte location
13459     in the ECC segment. The ndfc_calculate_ecc routine change the order
13460     of getting the ECC code.
13461             /* The NDFC uses Smart Media (SMC) bytes order */
13462             ecc_code[0] = p[2];
13463             ecc_code[1] = p[1];
13464             ecc_code[2] = p[3];
13465     But in the Correction algorithm when calculating the byte offset
13466     location, the s1 is used as the upper part of the address. Which
13467     again reverse the order making the final byte offset address
13468     location incorrect.
13469         byteoffs = (s1 << 0) & 0x80;
13470         .
13471         .
13472         byteoffs |= (s0 >> 4) & 0x08;
13473     The order is change to read it in straight and let the correction
13474     function to revert it to SMC order.
13475
13476     Signed-off-by: Feng Kan <fkan@amcc.com>
13477     Acked-by: Victor Gallardo <vgallardo@amcc.com>
13478     Acked-by: Prodyut Hazarika <phazarika@amcc.com>
13479     Signed-off-by: Stefan Roese <sr@denx.de>
13480
13481 commit 307ecb6db04eebdc06b8c87d48bf48d3cbd5e9d7
13482 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
13483 Date:   Thu Aug 13 08:32:37 2009 -0500
13484
13485     Add support for USB on PSC3 for the mpc5200
13486
13487     Support USB on PSC3 on the mpc5200.  Before this patch, enabling USB support
13488     would reconfigure PSC4 and PSC5 to USB.  The mpc5200 does not support USB
13489     enabled on both the standard USB port and PSC3.  This patch masks the
13490     appropriate bits when enabling USB.
13491
13492     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
13493     Acked-by: Grant Likely <grant.likely@secretlab.ca>
13494     Acked-by: Remy Bohmer <linux@bohmer.net>
13495
13496 commit 6b8548b0f7068379ad1efa4fa28725f361b2d3cd
13497 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13498 Date:   Thu Aug 13 19:12:44 2009 +0200
13499
13500     Add driver for the ST M41T94 SPI RTC
13501
13502     This RTC is used in some Calao boards. The driver code is taken from
13503     the linux rtc-m41t94 driver
13504
13505     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13506
13507 commit 885fc78c28fbe773bcb4edc9dd0fdac05ebb5b38
13508 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13509 Date:   Thu Aug 13 15:31:12 2009 +0200
13510
13511     Switch from per-driver to common definition of bin2bcd and bcd2bin
13512
13513     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13514     Acked-by: Stefan Roese <sr@denx.de>
13515
13516 commit e84aba135ed7145299304ef550e92f08b2c99d7a
13517 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13518 Date:   Thu Aug 13 15:31:11 2009 +0200
13519
13520     Replace BCD2BIN and BIN2BCD macros with inline functions
13521
13522     In the process, also remove backward-compatiblity macros BIN_TO_BCD and
13523     BCD_TO_BIN and update the sole board using them to use the new bin2bcd
13524     and bcd2bin instead
13525
13526     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13527     Acked-by: Stefan Roese <sr@denx.de>
13528     Acked-by: Detlev Zundel <dzu@denx.de>
13529
13530 commit 5b53b29bc2e82b80b669f1d2402068c60d7fecd0
13531 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
13532 Date:   Thu Aug 13 10:14:21 2009 -0500
13533
13534     Add support for the galaxy5200
13535
13536     Add support for the DEKA Research and Development galaxy5200 board
13537
13538     The galaxy5200 is an Freescale mpc5200 based embedded industrial
13539     control board.
13540
13541     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
13542
13543 commit 0a9e4e772123fe3e2bb499d7d2160c4cfd8a3a8d
13544 Author: Mike Frysinger <vapier@gentoo.org>
13545 Date:   Fri Jul 24 16:34:32 2009 -0400
13546
13547     unify {CONFIG_,}ENV_IS_EMBEDDED
13548
13549     Some boards have fallen out of sync by defining CONFIG_ENV_IS_EMBEDDED
13550     manually.  While it is useful to have this available to the build system,
13551     let's do it automatically rather than forcing people to opt into it.
13552
13553     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13554     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13555     Signed-off-by: Wolfgang Denk <wd@denx.de>
13556
13557 commit 02c9aa1d41f73fdcf8383a36cc0cbbfaf952855d
13558 Author: Robin Getz <rgetz@blackfin.uclinux.org>
13559 Date:   Mon Jul 27 00:07:59 2009 -0400
13560
13561     Add md5sum and sha1 commands...
13562
13563     Now that we have sha1 and md5 in lib_generic, allow people to use
13564     them on the command line, for checking downloaded files.
13565
13566     Signed-off-by: Robin Getz <rgetz@analog.com>
13567
13568 commit 30fc5cd3116cb112d0aab7e6d7c8eef1b67ed075
13569 Author: Wolfgang Denk <wd@denx.de>
13570 Date:   Tue Aug 25 12:22:38 2009 +0200
13571
13572     include/s3c24x0.h: fix S3C24X0_SPI_CHANNEL declaration
13573
13574     The SPI controller on the S3C24X0 has 8 bit registers, not 32 bit.
13575
13576     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13577     Signed-off-by: Wolfgang Denk <wd@denx.de>
13578
13579 commit e637385e69f63bc73b9dfd2ddd8d0f383790ca28
13580 Author: Mike Frysinger <vapier@gentoo.org>
13581 Date:   Thu Aug 20 19:17:59 2009 -0400
13582
13583     Blackfin: fix typos in gpio comments
13584
13585     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13586
13587 commit c2fbcb6ae86c10621a386c13be57eaa766221ed5
13588 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
13589 Date:   Tue Aug 18 04:49:57 2009 -0400
13590
13591     Blackfin: cm-bf527/cm-bf537: increase flash sectors
13592
13593     Newer revisions of these boards have slightly larger flashes, so increase
13594     the configured number of sectors so that U-Boot works on all revisions.
13595
13596     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
13597     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13598
13599 commit a794f59a75bf9fd4a44f1ad2349cae903c42b89c
13600 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13601 Date:   Sun Aug 23 14:14:52 2009 +0200
13602
13603     sh/rsk7203: add missing include net.h
13604
13605     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13606
13607 commit 6ac9f47977a9fc1876979871eeb14f26ba1bdbe6
13608 Author: Mike Frysinger <vapier@gentoo.org>
13609 Date:   Sun Aug 23 02:47:59 2009 -0400
13610
13611     start a linker script helper file
13612
13613     Start a common header file for common linker script code (such as
13614     workarounds for older linkers) rather than doing this in the build system.
13615
13616     As fallout, we no longer execute the linker every time config.mk is
13617     included by a build file (which can easily be 70+ times), but rather only
13618     execute it once.
13619
13620     This also fixes a bug in the major version checking by creating a macro to
13621     easily compare versions and keep people from making the same common
13622     mistake (forgetting to check major and minor together).
13623
13624     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13625
13626 commit 2ed0869d30602eb660569eababb8fedff36bd23a
13627 Author: Mike Frysinger <vapier@gentoo.org>
13628 Date:   Sat Aug 22 19:50:22 2009 -0400
13629
13630     Blackfin: use common code to preprocess linker script
13631
13632     Now that the common code preprocesses the linker script, the Blackfin code
13633     no longer needs to do it.
13634
13635     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13636
13637 commit 4d3758c835c7e96da2a291e7fb5acfc19bc06e8e
13638 Author: Mike Frysinger <vapier@gentoo.org>
13639 Date:   Sat Aug 22 19:48:56 2009 -0400
13640
13641     .gitignore: ignore generated u-boot.lds
13642
13643     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13644
13645 commit 79b91de958511840d2a7491be92d435b7ef43f17
13646 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13647 Date:   Sat Aug 22 14:21:53 2009 +0200
13648
13649     include/mmc.h: Fix typo in IS_SD() macro
13650
13651     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13652
13653 commit 963f2f611741f8d9c38bd7caf20ae8c95cab7b3f
13654 Author: Wolfgang Denk <wd@denx.de>
13655 Date:   Sat Aug 22 23:27:26 2009 +0200
13656
13657     Prepare 2009.08-rc3
13658
13659     Update CHANGELOG, minor Coding Style cleanup.
13660
13661     Signed-off-by: Wolfgang Denk <wd@denx.de>
13662
13663 commit 5b2da6a309266f21cbb68f06fcfdf9ba141022e7
13664 Author: Michal Simek <monstr@monstr.eu>
13665 Date:   Fri Aug 21 06:52:25 2009 +1000
13666
13667     qemu-mips: Fix Qemu website
13668
13669     Signed-off-by: Michal Simek <monstr@monstr.eu>
13670     Signed-off-by: Michal Simek <michal.simek@petalogix.com>
13671     Acked-by: Shinya Kuribayashi <skuribay@pobox.com>
13672
13673 commit 79f516bccc3cff5a5cd4b3dffb7d254e746fdbde
13674 Author: Kim Phillips <kim.phillips@freescale.com>
13675 Date:   Fri Aug 21 16:34:38 2009 -0500
13676
13677     mpc83xx: accommodate larger kernel sizes by default
13678
13679     linux mpc83xx_defconfig kernels are getting bigger, accommodate for
13680     their growth by adjusting default load and fdt addresses.
13681
13682     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13683
13684 commit 8eceeb7fd656d6d071c0a8b615e178aca5775fff
13685 Author: Kim Phillips <kim.phillips@freescale.com>
13686 Date:   Fri Aug 21 16:33:15 2009 -0500
13687
13688     mpc83xx: mpc8377erdb - change DDR settings to those from latest bsp
13689
13690     when using Linus' 83xx_defconfig, the mpc8377rdb would hang at boot
13691     at either:
13692
13693     NET: Registered protocol family 16
13694
13695     or the
13696
13697     io scheduler cfq registered
13698
13699     message.  Fixing up these DDR settings appears to fix the problem.
13700
13701     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13702
13703 commit 27c5248dd4c9ba4a36899689595956c5e59e349a
13704 Author: Kim Phillips <kim.phillips@freescale.com>
13705 Date:   Fri Aug 21 16:31:20 2009 -0500
13706
13707     mpc83xx: tqm8349 - remove pci & flash window conflict
13708
13709     commit 9993e196da707a0a1cd4584f1fcef12382c1c144 "mpc83xx: convert all
13710     remaining boards over to 83XX_GENERIC_PCI" remapped pci windows on
13711     tqm834x to make it more consistent with the other 83xx boards.  During
13712     that time however, the author failed to realize that FLASH_BASE was
13713     occupying the same range as what PCI1_MEM_BASE was being assigned.
13714
13715     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13716     Tested-by: Wolfgang Denk <wd@denx.de>
13717
13718 commit 6d2c26ac831f033b0025cfb256365a047f8dd115
13719 Author: Heiko Schocher <hs@denx.de>
13720 Date:   Fri Aug 21 16:30:30 2009 -0500
13721
13722     mpc83xx: add missing CSCONFIG_ODT_WR_CFG for 832x CPUs
13723
13724     Signed-off-by: Heiko Schocher <hs@denx.de>
13725     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13726
13727 commit 193b4cb3f641ed0fd9bb79b8fa4671882c50ffdb
13728 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
13729 Date:   Fri Aug 21 16:27:05 2009 -0500
13730
13731     mpc83xx: mpc8349 - delete unused SYS_MID_FLASH_JUMP
13732
13733     This was introduced with the MPC8349EMDS board, and then copied to
13734     a couple other boards by nature of being the reference implementation.
13735
13736       u-boot$git grep CONFIG_SYS_MID_FLASH_JUMP
13737       include/configs/MPC8349EMDS.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
13738       include/configs/sbc8349.h:#define CONFIG_SYS_MID_FLASH_JUMP     0x7F000000
13739       include/configs/vme8349.h:#define CONFIG_SYS_MID_FLASH_JUMP     0x7F000000
13740       u-boot$
13741
13742     It currently isn't used, so delete it before it spreads further.
13743
13744     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
13745     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13746
13747 commit c0d660fbbede322648ec79d3e39389e48f5fab24
13748 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
13749 Date:   Fri Aug 21 16:21:58 2009 -0500
13750
13751     mpc83xx: sbc8349 - make enabling PCI more user friendly
13752
13753     Prior to this commit, to enable PCI, you had to go manually
13754     edit the board config header, which isn't really user friendly.
13755     This adds the typical PCI make targets to the toplevel Makefile
13756     in accordance with what is being done with other boards.
13757
13758     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
13759     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13760
13761 commit a3c5057a6c05b4c7235a270486220e4511366133
13762 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13763 Date:   Fri Aug 7 23:37:54 2009 +0200
13764
13765     eeprom_m95xxx: remove unused variable i
13766
13767     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13768
13769 commit 8cf19b9fec92d8aa22b2fe4b4e6976743b1daa51
13770 Author: Ilya Yanok <yanok@emcraft.com>
13771 Date:   Fri Jul 17 15:02:42 2009 +0400
13772
13773     jffs2: some fixes to summary support
13774
13775     This patch fixes some issues with JFFS2 summary support in U-Boot.
13776     1/ Summary support made compilation configurable (as summary support
13777     considered expiremental even in Linux).
13778     2/ Summary code can do unaligned 16-bit and 32-bit memory accesses.
13779     We need to get data byte by byte to exclude data aborts.
13780     3/ Make summary scan in two passes so we can safely fall back to full
13781     scan if we found unsupported entry in the summary.
13782
13783     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
13784
13785 commit 11906936e168d12d684bb3d2930a62693ba3d84e
13786 Author: Prafulla Wadaskar <prafulla@marvell.com>
13787 Date:   Mon Aug 10 18:55:54 2009 +0530
13788
13789     arm: rd6281a: Fixed NAND specific warning
13790
13791     It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
13792     for NAND specific warning removal, same is done in this patch
13793
13794     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13795
13796 commit b5ffb193330113d2e00489d96bf8ec1f541ed4e1
13797 Author: Wolfgang Denk <wd@denx.de>
13798 Date:   Thu Aug 13 00:37:16 2009 +0200
13799
13800     TRAB: make independent of specific libgcc helper routines
13801
13802     The TRAB board references local libgcc helper routines
13803     (lib_arm/div0.o and lib_arm/_umodsi3.o) which cause build problems
13804     when we try to use the normal, compiler provided libgcc instead.
13805     Removing these references allows to build both with and without the
13806     local libgcc helper routines.
13807
13808     Signed-off-by: Wolfgang Denk <wd@denx.de>
13809
13810 commit 1aada9cd643567d351667138851e9231ccfa245a
13811 Author: Wolfgang Denk <wd@denx.de>
13812 Date:   Mon Aug 17 14:00:53 2009 +0200
13813
13814     Fix all linker scripts for older binutils versions (pre-2.16)
13815
13816     Commit f62fb99941c6 fixed handling of all rodata sections by using a
13817     wildcard combined with calls to ld's builtin functions SORT_BY_ALIGNMENT()
13818     and SORT_BY_NAME().  Unfortunately these functions were only
13819     introduced with biunutils version 2.16, so the modification broke
13820     building with all tool chains using older binutils.
13821
13822     This patch makes it work again.  This is done by omitting the use of
13823     these functions for such old tool chains.  This will result in
13824     slightly larger target binaries, as the rodata sections are no longer
13825     in optimal order alignment-wise which reauls in unused gaps, but the
13826     effect was found to be insignificant - especially compared to the fact
13827     that you cannot build U-Boot at all in the current state.
13828
13829     As ld seems to have no support for conditionals we run the linker
13830     script through the C preprocessor which can be easily used to remove
13831     the unwanted function calls.
13832
13833     Note that the C preprocessor must be run with the "-ansi" (or a
13834     "-std=") option to make sure all the system-specific predefined
13835     macros outside the reserved namespace are suppressed. Otherise, cpp
13836     might for example substitute "powerpc" to "1", thus corrupting for
13837     example "OUTPUT_ARCH(powerpc)" etc.
13838
13839     Signed-off-by: Wolfgang Denk <wd@denx.de>
13840     Cc: Mike Frysinger <vapier@gentoo.org>
13841
13842 commit f772acf8a584067033eff1e231fcd1fb3a00d3d9
13843 Author: Wolfgang Denk <wd@denx.de>
13844 Date:   Mon Aug 17 13:17:29 2009 +0200
13845
13846     ARM: compiler options cleanup - improve tool chain support
13847
13848     For some time there have been repeated reports about build problems
13849     with some ARM (cross) tool chains.  Especially issues about
13850     (in)compatibility with the tool chain provided runtime support
13851     library libgcc.a caused to add and support a private implementation
13852     of such runtime support code in U-Boot.  A closer look at the code
13853     indicated that some of these issues are actually home-made.  This
13854     patch attempts to clean up some of the most obvious problems and make
13855     building of U-Boot with different tool chains easier:
13856
13857     - Even though all ARM systems basicy used the same compiler options
13858       to select a specific ABI from the tool chain, the code for this was
13859       distributed over all cpu/*/config.mk files.  We move this one level
13860       up into lib_arm/config.mk instead.
13861
13862     - So far, we only checked if "-mapcs-32" was supported by the tool
13863       chain; if yes, this was used, if not, "-mabi=apcs-gnu" was
13864       selected, no matter if the tool chain actually understood this
13865       option.  There was no support for EABI conformant tool chains.
13866       This patch implements the following logic:
13867
13868       1) If the tool chain supports
13869         "-mabi=aapcs-linux -mno-thumb-interwork"
13870          we use these options (EABI conformant tool chain).
13871       2) Otherwise, we check first if
13872         "-mapcs-32"
13873          is supported, and then check for
13874         "-mabi=apcs-gnu"
13875          If one test succeeds, we use the first found option.
13876       3) In case 2), we also test if "-mno-thumb-interwork", and use
13877          this if the test succeeds. [For "-mabi=aapcs-linux" we set
13878          "-mno-thumb-interwork" mandatorily.]
13879
13880       This way we use a similar logic for the compile options as the
13881       Linux kernel does.
13882
13883     - Some EABI conformant tool chains cause external references to
13884       utility functions like raise(); such functions are provided in the
13885       new file lib_arm/eabi_compat.c
13886
13887       Note that lib_arm/config.mk gets parsed several times, so we must
13888       make sure to add eabi_compat.o only once to the linker list.
13889
13890     Signed-off-by: Wolfgang Denk <wd@denx.de>
13891     Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13892     Cc: Dirk Behme <dirk.behme@googlemail.com>
13893     Cc: Magnus Lilja <lilja.magnus@gmail.com>
13894     Cc: Tom Rix <Tom.Rix@windriver.com>
13895     Cc: Prafulla Wadaskar <prafulla@marvell.com>
13896     Acked-by: Sergey Kubushyn <ksi@koi8.net>
13897     Tested-by: Magnus Lilja <lilja.magnus@gmail.com>
13898     Tested-by: Andrzej Wolski <awolski@poczta.fm>
13899     Tested-by: Gaye Abdoulaye Walsimou <walsimou@walsimou.com>
13900     Tested-by: Tom Rix <Tom.Rix@windriver.com>
13901     Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13902
13903 commit 269610f6ba2e4a7bc27d2e53d43160614016964f
13904 Author: Mingkai Hu <Mingkai.hu@freescale.com>
13905 Date:   Thu Jul 30 17:56:51 2009 +0800
13906
13907     NAND boot: fix nand_load overlap issue
13908
13909     The code copy data from NAND flash block by block, so when
13910     the data length isn't a whole-number multiple of the block
13911     size, it will overlap the rest space.
13912
13913     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
13914     Signed-off-by: Scott Wood <scottwood@freescale.com>
13915
13916 commit 1fc1d9aed08f2b3366d634fda6712a710b2cff9a
13917 Author: Giulio Benetti <giulio.benetti@micronovasrl.com>
13918 Date:   Fri Jul 31 17:30:34 2009 -0500
13919
13920     add WATCHDOG_RESET() on nand write and read
13921
13922     Signed-off-by: giulio.benetti@micronovasrl.com
13923     Acked-by: Wolfgang Denk <wd@denx.de>
13924     Signed-off-by: Scott Wood <scottwood@freescale.com>
13925
13926 commit b1e849f2201bbbf3ca81fde164f154f9caf7f0e9
13927 Author: Peter Tyser <ptyser@xes-inc.com>
13928 Date:   Wed Feb 4 15:14:05 2009 -0600
13929
13930     tsec: Wait for auto-negotiation to complete without link
13931
13932     Previously, waiting for auto-negotiation would only occur if a valid
13933     link had been detected.  Problems arose when attempting to use a
13934     tsec immediately after bootup but before link was achieved, eg:
13935     => dhcp
13936     Auto-neg error, defaulting to 10BT/HD
13937     eTSEC1: No link.
13938     Auto-neg error, defaulting to 10BT/HD
13939     eTSEC2: No link.
13940     =>
13941
13942     With this patch applied the same operation as above resulted in:
13943     => dhcp
13944     Waiting for PHY auto negotiation to complete. done
13945     Enet starting in 1000BT/FD
13946     Speed: 1000, full duplex
13947
13948     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13949     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13950
13951 commit 477fa6378fbd3e47a5e2e83d0dd3970d5b1c8371
13952 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
13953 Date:   Thu Aug 20 10:14:11 2009 +0200
13954
13955     arm: kirkwood: See to it that sent data is 8-byte aligned
13956
13957     U-boot might use non-8-byte-aligned addresses for sending data, which
13958     the kwgbe_send doesn't accept (bootp does this for me). This patch
13959     copies the data to be sent to a malloced temporary buffer if it is
13960     non-aligned.
13961
13962     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
13963     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13964
13965 commit cad713bf7548b9e90433dac8270165402a6c9cc3
13966 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
13967 Date:   Thu Aug 20 10:13:06 2009 +0200
13968
13969     Wait for the link to come up on kirkwood network init
13970
13971     This patch makes the device wait for up to 5 seconds for the link to
13972     come up, similar to what many of the other network drivers do. This
13973     avoids confusing situations where, e.g., a tftp fails when initiated
13974     early after U-boot has started (before the link has come up).
13975
13976     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
13977     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13978
13979 commit bb1ca3b27f7fba8c73cb10279a6a8b8b69a308ff
13980 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
13981 Date:   Thu Aug 20 10:12:28 2009 +0200
13982
13983     arm:kirkwood Define kirkwood phy address magic number
13984
13985     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
13986     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13987
13988 commit f81ecb5d3300bf92d17302d3712f30585c182da9
13989 Author: Timur Tabi <timur@freescale.com>
13990 Date:   Mon Aug 17 15:55:38 2009 -0500
13991
13992     e1000: fix PCI memory addressing
13993
13994     The Intel E1000 driver was making assumptions about the relationship between
13995     some virtual, physical, and PCI addresses.
13996
13997     Also fix some bad usage of the DEBUGOUT macro
13998
13999     Signed-off-by: Timur Tabi <timur@freescale.com>
14000     Acked-by: Kumar Gala <galak@kernel.crashing.org>
14001     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14002
14003 commit b644006e1a7baa227aedc606ecdf0bb5eeb24cab
14004 Author: Ilya Yanok <yanok@emcraft.com>
14005 Date:   Wed Aug 12 16:42:48 2009 +0400
14006
14007     jffs2: clean the cache in case of malloc fails in build_lists
14008
14009     We should call jffs2_clean_cache() if we return from jffs2_build_lists()
14010     with an error to prevent usage of incomplete lists. Also we should
14011     free() a local buffer to prevent memory leaks.
14012
14013     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14014
14015 commit 7ff66bb0be80cadd681be22a72e5eb02ee14c878
14016 Author: Heiko Schocher <hs@denx.de>
14017 Date:   Wed Aug 12 10:17:03 2009 +0200
14018
14019     ppc: trigger WDT before starting Linux
14020
14021     Signed-off-by: Heiko Schocher <hs@denx.de>
14022
14023 commit 918319c705d8a3d6251919a660baef32ff3a829a
14024 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
14025 Date:   Wed Jul 22 18:30:03 2009 +0200
14026
14027     Update the mtd driver name in bootargs for at91-based boards
14028
14029     The name of the atmel nand driver in the kernel changed from at91_nand
14030     to atmel_nand back in June 2008, but the at91-based boards config files
14031     still refer to at91_nand. This patch updates them with the new name
14032
14033     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
14034
14035 commit 8fa656aa5289815d942ebdc26182ccb9f2b9c86f
14036 Author: Ben Goska <goskab@onid.oregonstate.edu>
14037 Date:   Fri Aug 14 10:03:36 2009 -0700
14038
14039     omap3: Fixed a problem with hwecc
14040
14041     In commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e there
14042     was a typo that offset all the ecc registers by 4 bytes, fixed that.
14043
14044     Signed-off-by: Ben Goska <goskab@onid.oregonstate.edu>
14045     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
14046
14047 commit 514bab6609acd1a2a19fdd75c2f6255178db7c96
14048 Author: Stefan Roese <sr@denx.de>
14049 Date:   Mon Aug 17 16:57:53 2009 +0200
14050
14051     ppc4xx: Fix "chip_config" command for AMCC Arches
14052
14053     This patch fixes the "chip_config" command for I2C bootstrap EEPROM
14054     configuration. First it changes the I2C bootstrap EEPROM address to
14055     0x54 as this is used on Arches (instead of 0x52 on Canyonlands/
14056     Glacier). Additionally, the NAND bootstrap settings are removed
14057     for Arches since Arches doesn't support NAND-booting.
14058
14059     Signed-off-by: Stefan Roese <sr@denx.de>
14060
14061 commit 4af34177b657e91263919a307fd0b0865a299e52
14062 Author: Wolfgang Denk <wd@denx.de>
14063 Date:   Sun Aug 16 23:40:13 2009 +0200
14064
14065     Monahans: avoid floating point calculations
14066
14067     Current code for the Monahans CPU defined OSCR_CLK_FREQ as 3.250 (MHz)
14068     which caused floating point operations to be used. This resulted in
14069     unresolved references to some FP related libgcc functions when using
14070     U-Boot's private libgcc functions.
14071
14072     Change the code to use fixed point math only.
14073
14074     Signed-off-by: Wolfgang Denk <wd@denx.de>
14075
14076 commit e393e2e9bc5cd3d5484e193d1380e7cd7587ab5c
14077 Author: Kumar Gala <galak@kernel.crashing.org>
14078 Date:   Fri Aug 14 16:43:22 2009 -0500
14079
14080     85xx: Fix addrmap to include memory
14081
14082     When we init the addrmap based on the TLB we will not end up getting
14083     the TLB that covers memory if we are using SPD.  The reason is we
14084     haven't relocated at the point that we setup the memory TLB and thus it
14085     will not get setup in the addrmap.
14086
14087     Instead we can just walk over the TLB array after we've relocated and
14088     see all the TLBs that have been set and use that information to populate
14089     the initial addrmap.  By doing this we insure that we get the TLB
14090     entries that cover memory.
14091
14092     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14093
14094 commit 7dedefdf749ff02c1086f7ddb8cb83a77b00d030
14095 Author: John Schmoller <jschmoller@xes-inc.com>
14096 Date:   Wed Aug 12 10:55:47 2009 -0500
14097
14098     flash: Fix CFI buffer size bug
14099
14100     Fix bug introduced by 9c048b523413ae5f3ff34e00cf57569c3368ab51.
14101
14102     The cfi_flash.c driver cast the flash buffer size to a uchar in
14103     flash_write_cfibuffer(). On some flash parts, (tested on Numonyx
14104     part PC32F512M29EWH), the buffer size is 1KB. Remove the cast to
14105     uchar to enable buffer sizes to be larger.
14106
14107     Signed-off-by: John Schmoller <jschmoller@xes-inc.com>
14108     Signed-off-by: Stefan Roese <sr@denx.de>
14109
14110 commit f6e3a1fa92f61083885178101e973c86b419a6f7
14111 Author: Mike Frysinger <vapier@gentoo.org>
14112 Date:   Thu Aug 13 00:32:14 2009 -0400
14113
14114     trab: rename spi_init()
14115
14116     The local board-specific spi_init() function conflicts with the common SPI
14117     layer, so rename it to something board-specific.
14118
14119     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14120
14121 commit 253cb831f5861358a7fa673305cdf7ded1096f44
14122 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
14123 Date:   Wed Jul 29 06:05:20 2009 -0400
14124
14125     zlib: add watchdog reset call
14126
14127     This patch adds watchdog reset call to allow its invokation during decompression
14128     phase. This control was present on old zlib version and here it is
14129     backported for those relevant routines. This patch is sent as a zlib separate
14130     one beacuse it was not tested due to specific board lack.
14131     zlib patches will be unified just in one when this will be validated through
14132     tests.
14133
14134     Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
14135
14136 commit dce3d797102b6618e8bdd4a09cfd35969f165d86
14137 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
14138 Date:   Wed Jul 29 08:05:08 2009 -0400
14139
14140     zlib: updated to v.1.2.3
14141
14142     This patch updates zlib to the latest stable version.
14143     Only relevant zlib parts were ported to u-boot tree, as already did for the
14144     current zlib (0.95). New zlib guarantees a faster inflate performances
14145     other then others improvements as explained at www.zlib.net.
14146     It also includes Alessandro Rubini's patches to allow 0 as destination pointer
14147     and to call watchdog reset if required by architecture.
14148
14149     Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
14150     Reviewed-by: Angelo Castello <angelo.castello@st.com>
14151     Reviewed-by: Alessandro Rubini <rubini-list@gnudd.com>
14152
14153 commit 3426d65daab6af483b177ed502038f52ed2e5aef
14154 Author: Heiko Schocher <hs@denx.de>
14155 Date:   Tue Aug 11 10:37:58 2009 +0200
14156
14157     dtt, lm81: move unneccessary printf into a debug printf
14158
14159     Signed-off-by: Heiko Schocher <hs@denx.de>
14160
14161 commit 54e399f110bbaa24e662e6dd9e88ddb86989d668
14162 Author: Mark Jackson <mpfj-list@mimc.co.uk>
14163 Date:   Tue Aug 11 11:33:47 2009 +0100
14164
14165     MIMC200: reduce LCD pixclock
14166
14167     The initial pixclock for the MIMC200 board is wrong (and causes
14168     screen corruption due to DMA underruns).
14169
14170     This patch simply reduces the pixel clock to fix the problem.
14171
14172     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
14173
14174 commit 1443cd7e54d6893ab7cc51d93fe7759cdaa8b31f
14175 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14176 Date:   Wed Jul 1 14:04:05 2009 -0400
14177
14178     UEC FIXED PHY: Determine fixed-phy port using UEC interface name.
14179
14180     Fixed a misunderstanding in the original implementation, 'devnum' that
14181     was used in the cpu/ppc4xx/4xx_enet.c implementation was NOT the
14182     PHY's SMI address, rather it was the number of the MAC interface on
14183     the CPU. The equivalent of this for uec_phy will be the UEC number
14184     stored in mii_info->dev->name. Usage example is updated for uec.
14185
14186     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14187     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14188
14189 commit 1a9519373b977ef3f7c9563ad3acb6c6f2424657
14190 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14191 Date:   Wed Jul 1 14:03:15 2009 -0400
14192
14193     Assigned a static SMI address to all UECs TBIPA address.
14194
14195     It is set to 0x1F by default and can be overwritten on the board
14196     header file by defining CONFIG_UTBIPAR_INIT_TBIPA. This allows
14197     the CPU to simply "reserve" one SMI address instead of using
14198     a different one for each UEC.
14199
14200     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14201     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14202
14203 commit 9fd38a01cbc0ce4a8db41f72677103ed04b23db5
14204 Author: Prafulla Wadaskar <prafulla@marvell.com>
14205 Date:   Mon Aug 10 19:43:06 2009 +0530
14206
14207     net: kirkwood: updates: used eth_setenv_enetaddr api
14208
14209     eth_setenv_enetaddr is avaible by upper layer
14210     using this saves 204 bytes on total image size
14211
14212     used Local OUI instead of Marvell OUI for
14213     random MAC address generation logic
14214
14215     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
14216     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14217
14218 commit ecbd2078a1f56c85b6c56afaaed862bf92ccd3f3
14219 Author: Roy Zang <tie-fei.zang@freescale.com>
14220 Date:   Tue Aug 11 03:48:05 2009 +0800
14221
14222     Fix E1000 build warning on AP1000 board
14223
14224      Fix E1000 build warning on AP1000 board
14225      Fix the build warning on AP1000 board:
14226      e1000.c:131: warning: 'e1000_read_eeprom' used but never defined
14227      e1000.c:2012: warning: 'e1000_set_phy_mode' defined but not used
14228
14229     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
14230     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14231
14232 commit b3af1d698b031e721bacaee8715d79daaf823de6
14233 Author: Sandeep Paulraj <s-paulraj@ti.com>
14234 Date:   Mon Aug 10 12:24:40 2009 -0400
14235
14236     ARM: Davinci DM355: Enabling DM9000 on DM355 EVM
14237
14238     Due to recent changes to the NET support on U-boot, DM9000
14239     is no longer detected on the DM355 EVM.
14240     This minor update enables DM9000 on the DM355 EVM.
14241     Tested on the DM355 EVM
14242
14243     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
14244     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14245
14246 commit 08c2df33f1cd5935938486e968696f94ad406313
14247 Author: Prafulla Wadaskar <prafulla@marvell.com>
14248 Date:   Mon Aug 10 19:23:19 2009 +0530
14249
14250     net: phy: bugfixes: mv88E61xx compiler warnings fixed
14251
14252     1. mv88E61xx driver compiler warnings fixed
14253     2. idstr if-else statements changed to switch() construct
14254        and added default case too.
14255        This fixed idstr may be uninitialized warning
14256
14257     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
14258     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14259
14260 commit 750326e5d540885e3ec36bda9464b8269249f6ce
14261 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
14262 Date:   Mon Aug 10 11:00:00 2009 +0800
14263
14264     arm: A320: driver for FTMAC100 ethernet controller
14265
14266     This patch adds an FTMAC100 ethernet driver for Faraday A320 evaluation board.
14267
14268     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
14269     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14270
14271 commit f90dc43fd67eea71124b999a7d5e617d0d86795b
14272 Author: Kumar Gala <galak@kernel.crashing.org>
14273 Date:   Mon Aug 10 16:40:55 2009 -0500
14274
14275     85xx: Removed BEDBUG support from FSL 85xx boards
14276
14277     For some reason the MPC8544 enabled BEDBUG if PCI was enabled and that
14278     got copied int the MPC8536, MPC8572 and P2020 DS boards.  The BEDBUG
14279     support has never been made to work completely on e500/85xx so we
14280     just disable it to save space and match the other FSL 85xx boards.
14281
14282     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14283
14284 commit eb1a4d0a471505c169bef19a73a60f8641f0b875
14285 Author: Wolfgang Denk <wd@denx.de>
14286 Date:   Mon Aug 10 10:39:12 2009 +0200
14287
14288     Prepare 2009.08-rc2
14289
14290     Update CHANGELOG
14291
14292     Signed-off-by: Wolfgang Denk <wd@denx.de>
14293
14294 commit 53cc18c71b2b920cca171874c6663e274fa80556
14295 Author: Wolfgang Denk <wd@denx.de>
14296 Date:   Mon Aug 10 10:38:34 2009 +0200
14297
14298     Minor coding style cleanup.
14299
14300     Signed-off-by: Wolfgang Denk <wd@denx.de>
14301
14302 commit d371708a1beda0f529756e614af785b30461379e
14303 Author: Wolfgang Denk <wd@denx.de>
14304 Date:   Mon Aug 10 09:59:10 2009 +0200
14305
14306     net/tftp.c: fix warning: pointer targets differ in signedness
14307
14308     tftp.c:294: warning: pointer targets in passing argument 1 of 'strlen'
14309     differ in signedness
14310
14311     This was only visible for the utx8245 board which seems to have DEBUG
14312     enabled.
14313
14314     Signed-off-by: Wolfgang Denk <wd@denx.de>
14315
14316 commit 3ed9e943fdfe51174b23989d48563b8c1b7d2ea8
14317 Author: Dirk Behme <dirk.behme@googlemail.com>
14318 Date:   Sat Aug 8 16:06:47 2009 +0200
14319
14320     ARM Cortex A8: Remove bogus config.mk entries
14321
14322     Remove bogus config.mk entry, fix newline and remove redundant
14323     omap3/config.mk
14324
14325     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
14326
14327 commit cd3dcba1422d3441503251fbc69cf2437c440781
14328 Author: Dirk Behme <dirk.behme@googlemail.com>
14329 Date:   Sat Aug 8 12:46:09 2009 +0200
14330
14331     OMAP3: Fix missing GPMC_CONFIG_CS0_BASE
14332
14333     Applying two indepenent OMAP3 patches resulted in missing
14334     GPMC_CONFIG_CS0_BASE. Patch "omap3: embedd gpmc_cs into gpmc
14335     config struct" removes GPMC_CONFIG_CS0_BASE, independent patch
14336     "omap3: bug fix for NOR boot support" introduces it's usage.
14337     Re-introduce GPMC_CONFIG_CS0_BASE.
14338
14339     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
14340
14341 commit ba3dbaf281130029ecb970a922551902c1d80b50
14342 Author: Ilya Yanok <yanok@emcraft.com>
14343 Date:   Mon Jun 8 04:12:49 2009 +0400
14344
14345     mxc-mmc: sdhc host driver for MX2 and MX3 proccessor
14346
14347     This is a port of Linux driver for SDHC host controller hardware
14348     found on Freescale's MX2 and MX3 processors. Uses new generic MMC
14349     framework (CONFIG_GENERIC_MMC) and it looks like there are some
14350     problems with a framework (at least on LE cpus). Some of these
14351     problems are addressed in the following patches.
14352
14353     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14354
14355 commit 642d7b63c343633dcafc4e23a20e32604a05ff13
14356 Author: Alessandro Rubini <rubini-list@gnudd.com>
14357 Date:   Fri Aug 7 12:35:47 2009 +0200
14358
14359     kirkwood/gpio.h: remove duplicate definition
14360
14361     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
14362
14363 commit 3ac374c0f0b7d856f1a43317a286f2079106bd6a
14364 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
14365 Date:   Fri Aug 7 12:37:36 2009 +0200
14366
14367     Add driver for the ST M95xxx SPI EEPROM
14368
14369     This chip is used in a number of boards manufactured by Calao-Systems
14370     which should be supported soon. This driver provides the necessary
14371     spi_read and spi_write functions necessary to communicate with the chip.
14372
14373     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
14374
14375 commit 30951960bae9a2c33e324a7165962a082e913f9e
14376 Author: Prafulla Wadaskar <prafulla@marvell.com>
14377 Date:   Fri Aug 7 22:27:32 2009 +0530
14378
14379     arm: Sheevaplug: Fixed NAND specific warning
14380
14381     It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
14382     for NAND specific warning removal, same is done in this patch
14383
14384     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
14385
14386 commit 317734966e763fdee183898c0ed940c9bada2541
14387 Author: Josh Boyer <jwboyer@linux.vnet.ibm.com>
14388 Date:   Fri Aug 7 13:53:20 2009 -0400
14389
14390     Dual-license IBM code contributions
14391
14392     It was brought to our attention that U-Boot contains code derived from the
14393     IBM OpenBIOS source code originally provided with some of the older PowerPC
14394     4xx development boards.  As a result, the original license of this code has
14395     been carried in the various files for a number of years in the U-Boot project.
14396
14397     IBM is dual-licensing the IBM code contributions already present in U-Boot
14398     under either the terms of the GNU General Public License version 2, or the
14399     original code license already present.
14400
14401     Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
14402
14403 commit cfd700be9f5ed289fd57a9bd61e266319badcb0d
14404 Author: Kumar Gala <galak@kernel.crashing.org>
14405 Date:   Wed Aug 5 09:03:54 2009 -0500
14406
14407     fdt: Fix fdt_pci_dma_ranges handling of 64-bit ranges
14408
14409     If the size of a region equal to 4G it can't be represnted in a 32-bit
14410     BAR so we should have marked that case as MEM64.
14411
14412     Additionally bump the number of inbound windows up to 4 to handle the
14413     fact that Freescale PPCs that have an implicit window for CCSRBAR.
14414
14415     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14416
14417 commit 59b4d7471c42e955bd9846892a0cc7478171778d
14418 Author: Wolfgang Denk <wd@denx.de>
14419 Date:   Thu Aug 6 21:29:59 2009 +0200
14420
14421     ARM EABI: add new helper functions resp. function names
14422
14423     The ARM EABI defines new names for GCC helper functions,
14424     and GCC seems to need some new functions as well.
14425
14426     This patch is a minimal-invasive approach to fix problems with EABI
14427     conformant tool chains (to be used with "USE_PRIVATE_LIBGCC=yes").
14428
14429     Signed-off-by: Wolfgang Denk <wd@denx.de>
14430     Tested-by: Dirk Behme <dirk.behme@googlemail.com>
14431
14432 commit 197324d7d998a791e5137b8176981b4af25220ae
14433 Author: Peter Tyser <ptyser@xes-inc.com>
14434 Date:   Wed Aug 5 16:18:44 2009 -0500
14435
14436     hush: Fix bogus free() call
14437
14438     An off-by-one error in hush.c resulted in an unintentional free() call
14439     every time a command was executed
14440
14441     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14442
14443 commit ff27650bb255e2275a212357b78c3b77cbf1d2e9
14444 Author: Detlev Zundel <dzu@denx.de>
14445 Date:   Wed Aug 5 18:37:45 2009 +0200
14446
14447     digsy_mtc: Update default environment
14448
14449     Signed-off-by: Detlev Zundel <dzu@denx.de>
14450
14451 commit 0b40bd439a33bde9e3cccf1acb5744225d0c6103
14452 Author: Detlev Zundel <dzu@denx.de>
14453 Date:   Wed Aug 5 18:37:44 2009 +0200
14454
14455     digsy_mtc: Add delay in SPI transfers to the companion controller.
14456
14457     While at it, remove initialization of variables which will be set
14458     before usage in all cases.
14459
14460     Signed-off-by: Detlev Zundel <dzu@denx.de>
14461
14462 commit 0bf00750e082a004e5fb058925622ae72890cc56
14463 Author: Anatolij Gustschin <agust@denx.de>
14464 Date:   Wed Aug 5 18:37:43 2009 +0200
14465
14466     digsy_mtc: minor fixes for mtc command help
14467
14468     Add mtc state subcommand description to the
14469     help of mtc command.
14470
14471     Remove some newlines in description of commands
14472     for proper help formating.
14473
14474     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14475
14476 commit 5cc69084189bf49aa99d13d57515be72d1844bdf
14477 Author: Grzegorz Bernacki <gjb@semihalf.com>
14478 Date:   Wed Aug 5 18:37:42 2009 +0200
14479
14480     digsy_mtc: Add mtc state command.
14481
14482     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
14483
14484 commit 716655288a53c95fad203ebf21d0b8ffdc2f7525
14485 Author: Wolfgang Denk <wd@denx.de>
14486 Date:   Tue Jul 28 22:35:39 2009 +0200
14487
14488     Partition support: remove newline from partition name
14489
14490     Remove bogus newline character that got added to the .name field of
14491     the disk_partition_t structure.
14492
14493     Signed-off-by: Wolfgang Denk <wd@denx.de>
14494
14495 commit 3f1649fb0dfb1e5c8890de154c332c394db5cdb5
14496 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
14497 Date:   Tue Jul 28 09:33:17 2009 +0200
14498
14499     Fix LZMA string.h header inclusion issue and remove unused variables.
14500
14501     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
14502
14503 commit 1c6232f1e2eae87e0e36d489611eb6891dff21e1
14504 Author: Jens Scharsig <esw@bus-elektronik.de>
14505 Date:   Mon Jul 27 15:28:42 2009 +0200
14506
14507     bus_vcxk.c: fix warning: unused variable 'lineptr'
14508
14509     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
14510
14511 commit 18304f7675e84252965b4e24cba279071f1da472
14512 Author: Mike Frysinger <vapier@gentoo.org>
14513 Date:   Fri Jul 24 17:51:27 2009 -0400
14514
14515     env: kill off default_environment_size
14516
14517     The only environment type that uses this variable is spi flash, and that is
14518     only because it is reimplementing the common set_default_env() function.
14519     So fix the spi flash code and kill off the default_environment_size in the
14520     process.
14521
14522     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14523
14524 commit bedd8403f77f790e9876578885eab1200ba2f8d8
14525 Author: Mike Frysinger <vapier@gentoo.org>
14526 Date:   Thu Jul 23 16:37:48 2009 -0400
14527
14528     export SPI functions to standalone apps
14529
14530     While we're here, fix the broken #ifdef handling in _exports.h.
14531
14532     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14533
14534 commit 3b9043a7c03290c9bdbef03848307263f5f3472c
14535 Author: Penda Naveen Kumar <pnaveen@ti.com>
14536 Date:   Fri Jul 31 00:06:36 2009 +0530
14537
14538     omap3: bug fix for NOR boot support
14539
14540     This patch provides bug fix, when omap3 uses nor boot.
14541
14542     Signed-off-by: Penda Naveen Kumar<pnaveen@ti.com>
14543     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
14544
14545 commit 61c68ae0b43bb5d6ab32958c45289aa197b1a2d1
14546 Author: Michael Evans <horse_dung@hotmail.com>
14547 Date:   Mon Jul 13 20:13:45 2009 +0100
14548
14549     Fix examples for OMAP3 boards...
14550
14551     The attached patch corrects an error in the examples/Makefile which
14552     causes the applications in the examples directory to hang on OMAP3
14553     based boards. The current Makefile sets -Ttext during linking to
14554     0x0c100000 which is outside of addressable SDRAM memory. The script
14555     corrects the existing ifeq...else...endif logic to look at the VENDOR
14556     tag rather than the CPU tag.
14557
14558     The patch affects the following configs: omap3_beagle_config,
14559     omap3_overo_config, omap3_evm_config, omap3_pandora_config,
14560     omap3_zoom1_config and omap3_zoom2_config.
14561
14562     Signed-off-by: Michael Evans <horse_dung@hotmail.com>
14563
14564     Edited commit message.
14565     Signed-off-by: Wolfgang Denk <wd@denx.de>
14566
14567 commit a3d1421dfd0bb1a729e171f8a093ac837f92cec6
14568 Author: Dirk Behme <dirk.behme@googlemail.com>
14569 Date:   Sat Aug 8 09:30:23 2009 +0200
14570
14571     omap3: use only fixed-size types inside ctrl_structs
14572
14573     replace variable types in ctrl_structs for omap3 by those with
14574     fixed size (u8, u16, u32).
14575     Additional ifndef-protection is needed by examples which do not
14576     compile when including asm/types.h
14577
14578     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
14579     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
14580
14581 commit 894113529e3a04871544dde977d6d7adee05d3bf
14582 Author: Dirk Behme <dirk.behme@googlemail.com>
14583 Date:   Sat Aug 8 09:30:22 2009 +0200
14584
14585     omap3: replace all instances of gpmc config struct by one global
14586
14587     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
14588     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
14589
14590 commit 97a099eaa48d5c762c4f73c52c3090c513b8b877
14591 Author: Dirk Behme <dirk.behme@googlemail.com>
14592 Date:   Sat Aug 8 09:30:21 2009 +0200
14593
14594     omap3: remove typedefs for configuration structs
14595
14596     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
14597     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
14598
14599 commit aa0707897c49c330b7d6b8d8362e44f60f224732
14600 Author: Roy Zang <tie-fei.zang@freescale.com>
14601 Date:   Fri Jul 31 13:34:02 2009 +0800
14602
14603     Add Intel E1000 PCIE card support
14604
14605     Based on Intel PRO/1000 Network Driver 7.3.20-k2
14606       Add Intel E1000 PCIE card support. The following cards are added:
14607       INTEL_82571EB_COPPER
14608       INTEL_82571EB_FIBER,
14609       INTEL_82571EB_SERDES
14610       INTEL_82571EB_QUAD_COPPER
14611       INTEL_82571PT_QUAD_COPPER
14612       INTEL_82571EB_QUAD_FIBER
14613       INTEL_82571EB_QUAD_COPPER_LOWPROFILE
14614       INTEL_82571EB_SERDES_DUAL
14615       INTEL_82571EB_SERDES_QUAD
14616       INTEL_82572EI_COPPER
14617       INTEL_82572EI_FIBER
14618       INTEL_82572EI_SERDES
14619       INTEL_82572EI
14620       INTEL_82573E
14621       INTEL_82573E_IAMT
14622       INTEL_82573L
14623       INTEL_82546GB_QUAD_COPPER_KSP3
14624       INTEL_80003ES2LAN_COPPER_DPT
14625       INTEL_80003ES2LAN_SERDES_DPT
14626       INTEL_80003ES2LAN_COPPER_SPT
14627       INTEL_80003ES2LAN_SERDES_SPT
14628
14629      82571EB_COPPER dual ports,
14630      82572EI single port,
14631      82572EI_COPPER single port PCIE cards
14632      and
14633      82545EM_COPPER,
14634      82541GI_LF
14635      pci cards are tested on both  P2020 board
14636      and MPC8544DS board.
14637
14638      Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
14639
14640     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14641
14642 commit 86848a74c3c8eb2f8dd179d039ee604dc45288cf
14643 Author: Mike Frysinger <vapier@gentoo.org>
14644 Date:   Wed Jul 15 21:31:28 2009 -0400
14645
14646     net: sync env ethaddr to device enetaddr in eth_init()
14647
14648     In the previous enetaddr refactoring, the assumption with commit 56b555a644
14649     was that the eth layer would handle the env -> device enetaddr syncing.
14650     This was not the case as eth_initialize() is called only once and the sync
14651     occurs there.  So make sure the eth_init() function does the env -> device
14652     sync with every network init.
14653
14654     Reported-by: Andrzej Wolski <awolski@poczta.fm>
14655     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14656     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14657
14658 commit 0ebf04c607b54a352629dcf7e76b76f1785dae54
14659 Author: Robin Getz <rgetz@blackfin.uclinux.org>
14660 Date:   Thu Jul 23 03:01:03 2009 -0400
14661
14662     minor debug cleanups in ./net
14663
14664      Minor ./net cleanups - no functional changes
14665       - change #ifdef DEBUG printf(); #endif to just debug()
14666       - changed __FUNCTION__ to __func__
14667       - got rid of extra whitespace between function and opening brace
14668       - removed unnecessary braces on if statements
14669
14670      gcc dead code elimination should make this functionally/size equivalent
14671      when DEBUG is not defined. (confirmed on Blackfin, with gcc 4.3.3).
14672
14673      Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
14674
14675     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14676
14677 commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e
14678 Author: Matthias Ludwig <mludwig@ultratronik.de>
14679 Date:   Tue May 19 09:09:31 2009 +0200
14680
14681     omap3: embedd gpmc_cs into gpmc config struct
14682
14683     Embedd chip select configuration into struct for gpmc config
14684     instead of having it completely separated as suggested by
14685     Wolfgang Denk on
14686     http://lists.denx.de/pipermail/u-boot/2009-May/052247.html
14687
14688     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
14689
14690 commit 06bffc6ea52d4b390843d295d438b2037d12e5fd
14691 Author: David Brownell <david-b@pacbell.net>
14692 Date:   Thu Jul 16 18:40:55 2009 -0700
14693
14694     rm9200 lowevel_init: don't touch reserved/readonly registers
14695
14696     For some reason the AT91rm9200 lowlevel init writes to a bunch of
14697     reserved or read-only addresses.  All the boards seem to define the
14698     value-to-be-written values as zero ... but they shouldn't actually
14699     be writing *anything* there.
14700
14701     No documented erratum justifies these accesses.  It looks like maybe
14702     some pre-release BDI-2000 setup code has been carried along by cargo
14703     cult programming since at least late 2004 (per GIT history).
14704
14705     Here's a patch disabling what seems to be bogosity.  Tested on a
14706     csb337; there were no behavioral changes.
14707
14708     Signed-off-by: David Brownell <david-b@pacbell.net>
14709
14710     on RM9200ek
14711     Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14712
14713 commit 301b7db88fbdf7d118efb79b371b2527a2c31868
14714 Author: David Hunter <hunterd42@gmail.com>
14715 Date:   Thu Jul 30 14:32:49 2009 -0700
14716
14717     pxa: Fix typo in GCDR(x)
14718
14719     Fix a typo in the GCDR(x) macro. It's a good thing no one was using it.
14720
14721     Signed-off-by: David Hunter <hunterd42@gmail.com>
14722
14723 commit 3c448e648221879ae0e030e94508b4f9f63b7ab8
14724 Author: Eric Benard <eric@eukrea.com>
14725 Date:   Sat Jul 18 23:45:15 2009 +0200
14726
14727     Add AT91SAM9260 to at91's lowlevel_init.S
14728
14729     Needed for AT91SAM9260 NOR Boot on Eukrea's CPU9260.
14730
14731     Signed-off-by: Eric Benard <eric@eukrea.com>
14732
14733 commit 56bdfa961242fc6acaeebc800640a12b28db3899
14734 Author: Dirk Eibach <eibach@gdsys.de>
14735 Date:   Thu Jul 30 09:36:33 2009 +0200
14736
14737     ppc4xx: Remove check for PPC460EX from CompactCenter
14738
14739     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
14740     Signed-off-by: Stefan Roese <sr@denx.de>
14741
14742 commit c3fa4f0c8684c862ecd3fb622fab1e17e44e82e1
14743 Author: Stefan Roese <sr@denx.de>
14744 Date:   Wed Jul 29 08:46:10 2009 +0200
14745
14746     ppc4xx: Add support for PPC460EX/460GT rev B chip to AMCC Canyonlands
14747
14748     This patch is based on a diff created by Phong Vo from AMCC.
14749
14750     Signed-off-by: Phong Vo <pvo@amcc.com>
14751     Signed-off-by: Stefan Roese <sr@denx.de>
14752
14753 commit 89bcc4875007ef6608297dc11e7a0d1fbd9900d2
14754 Author: Stefan Roese <sr@denx.de>
14755 Date:   Wed Jul 29 08:45:27 2009 +0200
14756
14757     ppc4xx: Add basic support for AMCC PPC460EX/460GT rev B chips
14758
14759     This patch is based on a diff created by Phong Vo from AMCC.
14760
14761     Signed-off-by: Phong Vo <pvo@amcc.com>
14762     Signed-off-by: Stefan Roese <sr@denx.de>
14763
14764 commit 82a7edc7ea8f5fe55fed4ff7e127469569e539c4
14765 Author: Stefan Roese <sr@denx.de>
14766 Date:   Tue Jul 28 15:12:04 2009 +0200
14767
14768     ppc4xx: Canyonlands-NAND-boot: Support 2 Crucial 512MByte SODIMM's
14769
14770     Some Canyonlands boards are equipped with different SODIMM's. This is no
14771     problem with the "normal" NOR booting Canyonlands U-Boot, since it
14772     automatically detects the SODIMM's via SPD data and correctly configures
14773     them. But the NAND booting version is different. Here we only have 4k
14774     of image size to completely setup the hardware, including DDR2 setup.
14775     So we need to use a fixed DDR2 setup here. This doesn't work for different
14776     SODIMM's right now.
14777
14778     Currently only this Crucial SODIMM is support:
14779     CT6464AC667.8FB (dual ranked)
14780
14781     Now some boards are shipped with this SODIMM:
14782     CT6464AC667.4FE (single ranked)
14783
14784     This patch now supports both SODIMM's by configuring first for the dual
14785     ranked DIMM. A quick shows, if this module is really installed. If this test
14786     fails, the DDR2 controller is re-configured for the single
14787     ranked SODIMM.
14788
14789     Tested with those SODIMM's:
14790
14791     CT6464AC667.8FB (dual ranked)
14792     CT6464AC667.4FE (single ranked)
14793
14794     Signed-off-by: Stefan Roese <sr@denx.de>
14795
14796 commit 27dd5f8e1062684f1ba685760409d9b2ab6691bf
14797 Author: Stefan Roese <sr@denx.de>
14798 Date:   Tue Jul 28 10:56:03 2009 +0200
14799
14800     ppc4xx: amcc: Move "kernel_addr_r" etc to higher locations (> 16MB)
14801
14802     This patch moves the load addresses for kernel, fdt and ramdisk to higher
14803     addresses (>= 16MB). This enables booting of bigger kernel images (e.g.
14804     lockdep enabled).
14805
14806     Signed-off-by: Stefan Roese <sr@denx.de>
14807
14808 commit 6942efc2be1b90054fa4afa5cda7023469fe08b9
14809 Author: Stefan Roese <sr@denx.de>
14810 Date:   Tue Jul 28 10:50:32 2009 +0200
14811
14812     ppc4xx: amcc: Set CONFIG_SYS_BOOTMAPSZ to 16MB for big kernels
14813
14814     This patch changes CONFIG_SYS_BOOTMAPSZ from 8MB to 16MB which is the
14815     initial TLB on 40x PPC's in the Linux kernel. With this change even bigger
14816     Linux kernels (> 8MB) can be booted.
14817
14818     This patch also sets CONFIG_SYS_BOOTM_LEN to 16MB (default 8MB) to enable
14819     decompression of bigger images.
14820
14821     Signed-off-by: Stefan Roese <sr@denx.de>
14822
14823 commit 901be89a27e11b2627c132ee87c7761bd6886091
14824 Author: Heiko Schocher <hs@denx.de>
14825 Date:   Tue Jul 28 14:53:44 2009 +0200
14826
14827     83xx, kmeter1, fix: update in the DTS the correct size for the first flash
14828
14829     When updating the "reg" in the "/localbus/flash@f0000000,0" node
14830     size was wrong updated for the first flash, because the total
14831     size was filled in, instead of the right size for it.
14832
14833     Signed-off-by: Heiko Schocher <hs@denx.de>
14834     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14835
14836 commit 4c2e3da82dc2b7f8b39b7f1d57f570e4bc5caa6d
14837 Author: Kumar Gala <kumar.gala@freescale.com>
14838 Date:   Tue Jul 28 21:49:52 2009 -0500
14839
14840     Update Freescale copyrights to remove "All Rights Reserved"
14841
14842     "All Rights Reserved" conflicts with the GPL.
14843
14844     Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
14845
14846 commit bb4291e62579dbc611e84eaaf973631e0bf129c7
14847 Author: Alessandro Rubini <rubini@unipv.it>
14848 Date:   Fri Jul 24 11:27:14 2009 +0200
14849
14850     arm nomadik: add i2c
14851
14852     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
14853     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
14854     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14855
14856 commit 60cbfbfd0fbebb4682f10ba96f622bfe17317598
14857 Author: Alessandro Rubini <rubini@unipv.it>
14858 Date:   Fri Jul 24 11:27:03 2009 +0200
14859
14860     arm nomadik: add gpio support
14861
14862     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
14863     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
14864     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14865
14866 commit 549b98306d897ae5991362d6096a36df50efe686
14867 Author: Tom Rix <Tom.Rix@windriver.com>
14868 Date:   Sun Jun 28 12:52:32 2009 -0500
14869
14870     OMAP3 Remove twl4030 defines
14871
14872     These defines have been subplanted by the equivelent defines in
14873     include/twl4030.h
14874
14875     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
14876     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14877     Acked-by: Heiko Schocher <hs@denx.de>
14878
14879 commit fccc0fcaaae5154612f8259365d26d04f204859f
14880 Author: Tom Rix <Tom.Rix@windriver.com>
14881 Date:   Sun Jun 28 12:52:31 2009 -0500
14882
14883     OMAP3 Move twl4030 mmc function
14884
14885     Because twl4030 now has its own device files, move and rename
14886     twl4030_mmc_config.
14887
14888     twl4030_mmc_config initializes the twl4030 power setting to
14889     the mmc device.  Because it is in the twl4030 power domain, move
14890     it out of drivers/mmc/omap3_mmc.c and into drivers/power/twl4030.c.
14891
14892     The function was renamed to twl4030_power_mmc_init because all
14893     the functions in this file are to have the format
14894
14895     twl4030_power_<device>_<action>
14896
14897     In this case the suffix is mmc_init so
14898     device : mmc
14899     action : init
14900
14901     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
14902     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14903     Acked-by: Heiko Schocher <hs@denx.de>
14904
14905 commit 2c15513010493435c78f83202940ac3be11de2c3
14906 Author: Tom Rix <Tom.Rix@windriver.com>
14907 Date:   Sun Jun 28 12:52:30 2009 -0500
14908
14909     OMAP3 Move twl4030 power and led functions
14910
14911     Because twl4030 now has its own device files, move exiting
14912     omap3 power_init_r to a new location.
14913
14914     power_init_r is the only function in board/omap3/common.
14915     It initializes the twl4030 power for the board and enables
14916     the led.
14917
14918     The power part of the the function is moved to twl4030_power_init in
14919     drivers/power/twl4030.c The power compilation is conditional on the
14920     existing config variable CONFIG_TWL4030_POWER.
14921
14922     The led part is moved to twl4030_led_init in the new file
14923     drivers/misc/twl4030_led.c  The led compilation is conditional on
14924     the new config variable CONFIG_TWL4030_LED
14925
14926     The directory board/omap3/common was removed because power_init_r
14927     was the only function in it.
14928
14929     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
14930     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14931     Acked-by: Heiko Schocher <hs@denx.de>
14932
14933 commit 3cb7a4805fc8fb4c09e4801e1c7d531186f20190
14934 Author: Wolfgang Denk <wd@denx.de>
14935 Date:   Tue Jul 28 22:13:52 2009 +0200
14936
14937     TQM8xx* boards: set larger SMC Rx buffer len
14938
14939     Commit 2b3f12c2 added support for configurable SMC Rx buffer length on
14940     8xx systems. Enable this feature on TQM8xx* based boards.
14941
14942     This fixes the problem that pasting text in the middle of a line
14943     (i. e. inserting in edit mode) did not work - only the first two
14944     characters got inserted, the rest was lost.
14945
14946     Signed-off-by: Wolfgang Denk <wd@denx.de>
14947
14948 commit 4b7511478b62a539e5b066d19a986b75e5d9a527
14949 Author: Wolfgang Denk <wd@denx.de>
14950 Date:   Tue Jul 28 22:07:37 2009 +0200
14951
14952     Fix ext2load return code
14953
14954     Make the ext2load command return 0 on success (instead of the file
14955     length).
14956
14957     Also fix output format (get rid of random newlines) and some coding
14958     style issues (long lines etc.).
14959
14960     Signed-off-by: Wolfgang Denk <wd@denx.de>
14961
14962 commit 56fdaadc124a8ef9ec0fd8ff578233ec3b1137be
14963 Author: Weirich, Bernhard <Bernhard.Weirich@riedel.net>
14964 Date:   Wed Jun 10 14:00:37 2009 +0200
14965
14966     ext2: fix inode size and calculations
14967
14968     Signed-off-by: unsik Kim <donari75@gmail.com>
14969     Signed-off-by: Bernhard Weirich <bernhard.weirich@riedel.net>
14970     Signed-off-by: Wolfgang Denk <wd@denx.de>
14971     Tested-by: Wolfgang Denk <wd@denx.de>
14972
14973 commit cd7826359ee71e8f6f3d68331930ab9cbe1c990e
14974 Author: Tom Rix <Tom.Rix@windriver.com>
14975 Date:   Sun Jun 28 12:52:29 2009 -0500
14976
14977     TWL4030 Add power reset button
14978
14979     The Zoom2 power reset button is on the top right side of the
14980     main board.  Press and hold for about to 8 seconds to completely
14981     reset the board.
14982
14983     Some of the beta boards have a hardware problem that prevents
14984     using this feature.  If is difficult to further characterize the
14985     boards that fail.  So disable resetting for all beta boards.
14986
14987     The Zoom1 reset button is the red circle on the top right,
14988     front of the board.  Press and hold the button for 8 seconds to
14989     completely reset the board.
14990
14991     After analyzing beagle, it was determined that other boards
14992     that use the twl4030 for power managment can also make use
14993     this function.
14994
14995     The resetting is done by the power management part of the twl4030.
14996     Since there is no existing drivers/power, add one.
14997
14998     The compilation of power/twl4030.h is controlled by the config
14999     variable CONFIG_TWL4030_POWER
15000
15001     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15002     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15003     Acked-by: Heiko Schocher <hs@denx.de>
15004
15005 commit 8966eb4c1c2d894b2a76174ba904c26c5af815b8
15006 Author: Tom Rix <Tom.Rix@windriver.com>
15007 Date:   Sun Jun 28 12:52:28 2009 -0500
15008
15009     TWL4030 Add initial support
15010
15011     The TWL4030 supplies many peripherals for OMAP3 boards. These include
15012     power management, usb and, keyboard.
15013
15014     The product description is found here:
15015
15016     http://focus.ti.com/docs/prod/folders/print/tps65950.html
15017
15018     Product reference document, tps65950.pdf, is found here:
15019
15020     http://www.ti.com/lit/gpn/tps65950
15021
15022     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15023     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15024     Acked-by: Heiko Schocher <hs@denx.de>
15025
15026 commit 7f79dfb48b7419d5caa1cf932fcff4e2fb7040af
15027 Author: Tom Rix <Tom.Rix@windriver.com>
15028 Date:   Sun Jun 28 12:52:27 2009 -0500
15029
15030     OMAP I2C Fix the sampling clock.
15031
15032     This problem is seen on Zoom1 and Zoom2 in the startup and
15033     when i2c probe is used
15034
15035     Before :
15036
15037     In:    serial
15038     Out:   serial
15039     Err:   serial
15040     timed out in wait_for_bb: I2C_STAT=1000
15041     timed out in wait_for_bb: I2C_STAT=1000
15042     timed out in wait_for_bb: I2C_STAT=1000
15043     timed out in wait_for_pin: I2C_STAT=1000
15044     I2C read: I/O error
15045     timed out in wait_for_bb: I2C_STAT=1000
15046     timed out in wait_for_bb: I2C_STAT=1000
15047     Die ID #327c00020000000004013ddd05026013
15048     Hit any key to stop autoboot:  0
15049     OMAP3 Zoom1# i2c probe
15050     Valid chip addresses:timed out in wait_for_bb: I2C_STAT=1000
15051      02 03 04 05 06 07 08 09 0A 0B 0C 0D <snip>
15052
15053     After :
15054
15055     In:    serial
15056     Out:   serial
15057     Err:   serial
15058     Die ID #327c00020000000004013ddd05026013
15059     Hit any key to stop autoboot:  0
15060     OMAP3 Zoom1# i2c probe
15061     Valid chip addresses: 48 49 4A 4B
15062
15063     The addresses are for the twl4030.
15064
15065     The prescalar that converts the function clock to the sampling
15066     clock is hardcoded to 0.  The reference manual recommends 7
15067     if the function clock is 96MHz.
15068
15069     Instead of just changing the hardcoded values, the prescalar
15070     is calculated from the value I2C_IP_CLK.
15071
15072     The i2c #defines are in kHz.  The speed passed into the
15073     i2c init routine is in Hz.  To be consistent, change the
15074     defines to be in Hz.
15075
15076     The timing calculations are based on what is done in the
15077     linux 2.6.30 kernel in drivers/i2c/buses/i2c_omap.c as
15078     apposed to what is done in TRM.
15079
15080     The major variables in the timing caculations are
15081     specified as #defines that can be overriden as required.
15082
15083     The variables and their defaults are
15084
15085     I2C_IP_CLK                          SYSTEM_CLOCK_96
15086     I2C_INTERNAL_SAMPLING_CLK           19200000
15087     I2C_FASTSPEED_SCLL_TRIM                     6
15088     I2C_FASTSPEED_SCLH_TRIM                     6
15089     I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM   I2C_FASTSPEED_SCLL_TRIM
15090     I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM   I2C_FASTSPEED_SCLH_TRIM
15091     I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM   I2C_FASTSPEED_SCLL_TRIM
15092     I2C_HIGHSPEED_PHASE_TWO_SCLH                I2C_FASTSPEED_SCLH_TRIM
15093
15094     This was runtime verified on Zoom1, Zoom2, Beagle and Overo.
15095     The 400kHz and 3.4M cases were verifed on test Zoom1,
15096     Zoom2, Beagle and Overo configurations.
15097
15098     Testing for omap2 will be done in a second step as Nishanth
15099     and Jean-Christophe commented.
15100
15101     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15102     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15103     Acked-by: Heiko Schocher <hs@denx.de>
15104
15105 commit 4ce5a72851ff2960543b125866c6132e0094e1ee
15106 Author: Heiko Schocher <hs@denx.de>
15107 Date:   Mon Jul 20 09:59:37 2009 +0200
15108
15109     arm, i2c: added support for the TWSI I2C Interface
15110
15111     Signed-off-by: Heiko Schocher <hs@denx.de>
15112
15113 commit 042d01c72e0ea95731708dd24bb8b6cf42e75c80
15114 Author: Stefan Roese <sr@denx.de>
15115 Date:   Mon Jul 27 09:13:38 2009 +0200
15116
15117     ppc4xx: Fix problem with NOR range assignment in Canyonlands ft_board_setup
15118
15119     This patch fixes the problem, that the current fdt board fixup code only
15120     set's one range, the one for NOR. By this it's overwriting the already
15121     correctly configured values done in __ft_board_setup(). Just remove this
15122     now unneeded NOR fixup and all the ranges are correctly defined.
15123
15124     Signed-off-by: Stefan Roese <sr@denx.de>
15125     Cc: Dirk Eibach <eibach@gdsys.de>
15126     Cc: Felix Radensky <felix@embedded-sol.com>
15127
15128 commit 11a1604f8d0a8d936b42f6435d004b4aa33a5d87
15129 Author: Stefan Roese <sr@denx.de>
15130 Date:   Mon Jul 27 07:42:48 2009 +0200
15131
15132     ppc4xx: Add some NAND-booting bootstrap entries to Kilauea chip_config cmd
15133
15134     This patch adds some I2C bootstrap setting for NAND booting to the Kilauea
15135     chip_config command ("533-nand" and "600-nand").
15136
15137     Additionally some incorrectly indented lines are fixed.
15138
15139     Signed-off-by: Stefan Roese <sr@denx.de>
15140
15141 commit 5b34691ff87821891375b28ec5bcf5154575a735
15142 Author: Stefan Roese <sr@denx.de>
15143 Date:   Mon Jul 27 07:42:37 2009 +0200
15144
15145     ppc4xx: Kilauea: Fix SDRAM init in NAND booting version
15146
15147     DDR2 Auto-calibration needs to be disabled on the NAND booting PPC4xx
15148     targets. Otherwise the configured fixed init values for some DDR2
15149     controller registers (e.g. RQDC) are not initialized at all resulting
15150     in a non working SDRAM.
15151
15152     Signed-off-by: Stefan Roese <sr@denx.de>
15153
15154 commit f3ed3c9b7441cde936d06a1ff7b1490ff0d600e6
15155 Author: Stefan Roese <sr@denx.de>
15156 Date:   Mon Jul 27 10:53:43 2009 +0200
15157
15158     ppc4xx: Fix Arches DDR2 initialization
15159
15160     Testing on AMCC Arches with the latest U-Boot version yielded that DDR2
15161     initialization is currently broken. U-Boot hangs upon relocation to SDRAM
15162     or crashes with random traps. This patch fixes this problem. Arches now
15163     uses a different WRDTR and CLKTR default setting than Canyonlands/Glacier.
15164
15165     Signed-off-by: Stefan Roese <sr@denx.de>
15166
15167 commit ab4c62c1ba788bf7f673a985d99a76d9c2fd7eca
15168 Author: Dirk Eibach <eibach@gdsys.de>
15169 Date:   Mon Jul 27 08:49:48 2009 +0200
15170
15171     ppc4xx: Add GDsys CompactCenter board support.
15172
15173     Board support for the Guntermann & Drunck CompactCenter and
15174     DevCon-Center.
15175     Based on the AMCC Canyonlands board support by Stefan Roese.
15176
15177     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
15178     Signed-off-by: Stefan Roese <sr@denx.de>
15179
15180 commit c2e49f706ba13213f3c8da3a33e88010214e1997
15181 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
15182 Date:   Sat Jul 25 06:19:12 2009 +0200
15183
15184     mpc83xx: Add esd VME8349 board support
15185
15186     This patch adds support for the esd VME8349 board equipped with the
15187     MPC8349. It's a VME PMC carrier board equipped with the Tundra
15188     TSI148 VME-bridge.
15189
15190     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
15191     Signed-off-by: Stefan Roese <sr@denx.de>
15192     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15193
15194 commit fe613cdd4eb2c5b257a60d8dfb7759742318c28a
15195 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
15196 Date:   Thu Jul 23 17:10:55 2009 -0400
15197
15198     sbc8349: combine HRCW flash and u-boot image flash
15199
15200     Up to this point in time, the sbc8349 board was storing the u-boot
15201     image in flash 2x.  One for the HRCW value at the beginning of
15202     flash (0xff80_0000), and once close to the end of flash (0xfff8_0000)
15203     for the actual image that got executed.
15204
15205     This moves the TEXT_BASE to be the beginning of flash, which makes
15206     the second copy of the image redundant, and frees up the flash
15207     from the end of the environment storage to the end of the flash
15208     device itself.
15209
15210     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
15211     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15212
15213 commit be9b56df02168ca97562d6b9ec791136e4cd925a
15214 Author: Kim Phillips <kim.phillips@freescale.com>
15215 Date:   Thu Jul 23 14:09:38 2009 -0500
15216
15217     mpc83xx: CONFIG_83XX_GENERIC_PCI is now synonymous with CONFIG_PCI; remove the former
15218
15219     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15220
15221 commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69
15222 Author: Wolfgang Denk <wd@denx.de>
15223 Date:   Mon Jul 27 10:37:37 2009 +0200
15224
15225     Prepare 2009.08-rc1 (again, after fixing last minute issues).
15226
15227     Update CHANGELOG
15228
15229     Signed-off-by: Wolfgang Denk <wd@denx.de>
15230
15231 commit 9689ddcca6e01f3637b4442fa8575f29ef4d7aa3
15232 Author: Wolfgang Denk <wd@denx.de>
15233 Date:   Mon Jul 27 10:06:39 2009 +0200
15234
15235     cpu/arm920t/start.S: include <common.h> to have ROUND() defined
15236
15237     Commit fcd3c87e made include/common.h usable by assembler code but
15238     failed to update cpu/arm920t/start.S
15239
15240     Signed-off-by: Wolfgang Denk <wd@denx.de>
15241
15242 commit c9ed38cb6de50fdb4aaa60b668c555002903b211
15243 Author: Wolfgang Denk <wd@denx.de>
15244 Date:   Mon Jul 27 10:01:11 2009 +0200
15245
15246     at91cap9adk: fix #ifdef/#endif pairing (2nd try)
15247
15248     Commit 7024aa14 was supposed to fix the #ifdef/#endif pairing in
15249     include/configs/at91cap9adk.h, but did not cate all problems.
15250
15251     Signed-off-by: Wolfgang Denk <wd@denx.de>
15252
15253 commit fb364bec5f29164d3ee681fcd9d187be8435db12
15254 Author: Wolfgang Denk <wd@denx.de>
15255 Date:   Mon Jul 27 09:58:14 2009 +0200
15256
15257     Fix include/common.h for boards with CONFIG_STATUS_LED
15258
15259     The reordering of include/common.h by commit fcd3c87e495f3c48 broke
15260     boards with status LED support, resulting in
15261         error: #error Status LED configuration missing
15262     errors. Undo this reordering to avoid this issue.
15263
15264     Signed-off-by: Wolfgang Denk <wd@denx.de>
15265
15266 commit 942828a0980b3cea7db698784cc7f6a3e7740b2b
15267 Author: Wolfgang Denk <wd@denx.de>
15268 Date:   Mon Jul 27 09:19:15 2009 +0200
15269
15270     ABI: fix build problems due to now needed div64 routine.
15271
15272     Signed-off-by: Wolfgang Denk <wd@denx.de>
15273
15274 commit 85d6bf0bdc8ccad2d67a9160472f6f8c6bb482fb
15275 Author: Wolfgang Denk <wd@denx.de>
15276 Date:   Mon Jul 27 08:50:59 2009 +0200
15277
15278     PMC405DE: fix out of tree building
15279
15280     Signed-off-by: Wolfgang Denk <wd@denx.de>
15281
15282 commit 10c7604d021949464b1e4ba903df95e6b2f0d2ff
15283 Author: Wolfgang Denk <wd@denx.de>
15284 Date:   Mon Jul 27 00:24:55 2009 +0200
15285
15286     Prepare 2009.08-rc1
15287
15288     Update CHANGELOG, minor coding style fix.
15289
15290     Signed-off-by: Wolfgang Denk <wd@denx.de>
15291
15292 commit fafbb2c3e4b35b60ca303ed2ad1c6cf400cd9a22
15293 Author: rhabarber1848@web.de <rhabarber1848@web.de>
15294 Date:   Fri Jul 24 08:16:30 2009 +0200
15295
15296     add WATCHDOG_RESET to allow LZMA kernel decompression on slow machines
15297
15298     Signed-off-by: rhabarber1848@web.de
15299
15300 commit 3c972849f2becbf19c13a24f090d293f37ecf616
15301 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
15302 Date:   Thu Jul 23 23:31:58 2009 +0200
15303
15304     Less verbose output when loading vxworks 6.x images
15305
15306     Loading vxWorks 5.x images resulted just into 3 or 4 lines of output.
15307     With vxWorks 6.x and the new GCC it emits about 30 lines, which is
15308     far too noisy in my opinion.
15309
15310     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
15311
15312 commit fcd3c87e495f3c48b70c919869fb1e0b93d4880b
15313 Author: Wolfgang Denk <wd@denx.de>
15314 Date:   Fri Jul 24 00:17:48 2009 +0200
15315
15316     Make include/common.h usable by assembler code
15317
15318     Commit 70ebf316 factored out the ROUND() macro into include/common.h,
15319     not realizing that the primary use of this macro on AT91 systems was
15320     in start.S where common.h was not included, and could not be included
15321     because it contains a lot of C code which the assembler doesn't
15322     understand.
15323
15324     This patch wraps such code in common.h in a "#ifndef __ASSEMBLY__"
15325     construct, and then adds an include to cpu/arm926ejs/start.S thus
15326     solving the problem.
15327
15328     Signed-off-by: Wolfgang Denk <wd@denx.de>
15329
15330 commit deec15b3064d3bb0189aede3c2921fd7ee401a0f
15331 Author: Heiko Schocher <heiko.schocher@invitel.hu>
15332 Date:   Thu Jul 23 13:27:04 2009 +0200
15333
15334     arm: add _lshrdi3.S
15335
15336     Signed-off-by: Heiko Schocher <hs@denx.de>
15337
15338 commit 52b1bf2c5cd2f8af880dab503d0039b35570665b
15339 Author: Wolfgang Denk <wd@denx.de>
15340 Date:   Thu Jul 23 13:15:59 2009 +0200
15341
15342     Make linking against libgcc configurable
15343
15344     Many (especially ARM) tool chains seem to come with broken or
15345     otherwise unusable (for the purposes of builing U-Boot) run-time
15346     support libraries `libgcc.a'. By using the "USE_PRIVATE_LIBGCC"
15347     setting we allow to use alternative libraries instead.
15348
15349     "USE_PRIVATE_LIBGCC" can either be set as an environment variable in
15350     the shell, or as a command line argument when running "make", i. e.
15351         $ make USE_PRIVATE_LIBGCC=yes
15352     or
15353         $ USE_PRIVATE_LIBGCC=yes
15354         $ export USE_PRIVATE_LIBGCC
15355         $ make
15356
15357     The value of "USE_PRIVATE_LIBGCC" is the name of the directory which
15358     contains the alternative run-time support library `libgcc.a'. The
15359     special value "yes" selects the directory $(OBJTREE)/lib_$(ARCH) .
15360
15361     Note that not all architectures provide an alternative `libgcc.a' in
15362     their lib_$(ARCH) directories - so far, only ARM does.
15363
15364     Signed-off-by: Wolfgang Denk <wd@denx.de>
15365     Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15366     Cc: Prafulla Wadaskar <prafulla@marvell.com>
15367     cc: Stefan Roese <sr@denx.de>
15368
15369 commit 479105065d965121f57b55dcfe83a940cba46ac1
15370 Author: Dirk Behme <dirk.behme@googlemail.com>
15371 Date:   Wed Jul 22 17:51:56 2009 +0200
15372
15373     Use do_div from div64.h for vsprintf
15374
15375     Use do_div from div64.h for vsprintf in case of 64bit division.
15376     For 32bit division, do_div from div64.h can't be used as it
15377     needs a 64bit parameter.
15378
15379     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15380     Acked-by: Stefan Roese <sr@denx.de>
15381     CC: Simon Kagstrom <simon.kagstrom@netinsight.net>
15382
15383 commit 48287792384a93d77d43aaaa1c06cac275bbe1bb
15384 Author: Kyungmin Park <kmpark@infradead.org>
15385 Date:   Mon Jul 20 09:47:47 2009 +0900
15386
15387     Fix compiler warnings after loff_t change
15388
15389     Now 'env_addr' type is loff_t so use correct field type.
15390
15391     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
15392
15393 commit 9c67352f727a5b5eff531c852f9cff59fcb17f7f
15394 Author: Wolfgang Denk <wd@denx.de>
15395 Date:   Sun Jul 26 23:28:02 2009 +0200
15396
15397     Revert "ppc: Unlock cache-as-ram in a consistent manner"
15398
15399     This reverts commit 982adfc610669482a32127282fe489857a92cfe3.
15400
15401     This patch causes problems on MPC83xx boards - flash recognition stops
15402     working.
15403
15404     Signed-off-by: Wolfgang Denk <wd@denx.de>
15405
15406 commit 35cf3b57eafe3ee1f693e24267e0ecfefab60251
15407 Author: Jens Scharsig <esw@bus-elektronik.de>
15408 Date:   Fri Jul 24 10:31:48 2009 +0200
15409
15410     update the EB+MCF-EV123 board support
15411
15412     This patch updates the support for EB+MCF-EV123 board and needs
15413     the [PATCH 1/2 V3] new video driver for bus vcxk framebuffers
15414
15415     * remove the board framebuffer driver
15416     * use the common bus_vcxk framebuffer driver
15417     * adds bmp support
15418     * adds splashimage support
15419     * fix serveral cosmetical errors
15420
15421     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
15422     [agust@denx.de: fixed some style issues before applying]
15423     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15424
15425 commit 04538cdb752eeea8fd23cf7ac3394439f189fb77
15426 Author: Anatolij Gustschin <agust@denx.de>
15427 Date:   Sun Jul 26 12:05:25 2009 +0200
15428
15429     video: bus_vcxk.c: fix style issues added by 50217dee
15430
15431     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15432
15433 commit 50217deeb07911d686790d34d468eb9a5245f68d
15434 Author: Jens Scharsig <esw@bus-elektronik.de>
15435 Date:   Fri Jul 24 10:09:02 2009 +0200
15436
15437     new video driver for bus vcxk framebuffers
15438
15439     This patch adds a new video driver
15440
15441     * adds common bus_vcxk framebuffer driver
15442
15443     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
15444     [agust@denx.de: fixed lots of style issues before applying]
15445     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15446
15447 commit 60e97419246d0a3615758ad6af40680aefb5f7f1
15448 Author: Alessandro Rubini <rubini@gnudd.com>
15449 Date:   Tue Jul 21 14:09:45 2009 +0200
15450
15451     lcd.h: define extern vidinfo_t for all cases
15452
15453     include/lcd.h has different vidinfo for different platforms,
15454     and several extern declaration, but one for the default case was
15455     missing. This makes them a single extern declaration for everyone.
15456
15457     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
15458
15459 commit bcf0b5248952c6b03081dc5cc4ff9e0b2299c5fa
15460 Author: Anatolij Gustschin <agust@denx.de>
15461 Date:   Sun Jul 26 11:04:59 2009 +0200
15462
15463     mimc200.c: fix too long lines added by f68378d6
15464
15465     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15466
15467 commit f68378d60a905d43155f2e89bf81999d3c93a90a
15468 Author: Mark Jackson <mpfj-list@mimc.co.uk>
15469 Date:   Tue Jul 21 11:35:22 2009 +0100
15470
15471     Add LCD support to MIMC200 board
15472
15473     This patch updates the MIMC200 files to enable the LCD.
15474
15475     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
15476
15477 commit 69f32e6c24d41fcdf347ff64e9c13b25059ace58
15478 Author: Mark Jackson <mpfj-list@mimc.co.uk>
15479 Date:   Tue Jul 21 11:18:44 2009 +0100
15480
15481     Add 16bit colour support in lcd.h
15482
15483     This patch adds support for LCD_COLOR16 in include/lcd.h.
15484
15485     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
15486
15487 commit bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3
15488 Author: Anatolij Gustschin <agust@denx.de>
15489 Date:   Sun Jul 26 10:34:58 2009 +0200
15490
15491     lib_avr32/board.c: fix too long line added by 716ece1d
15492
15493     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15494
15495 commit 716ece1de9a7d43a61d8698ac41b71b64f66f9e9
15496 Author: Mark Jackson <mpfj-list@mimc.co.uk>
15497 Date:   Tue Jul 21 11:11:37 2009 +0100
15498
15499     Add AVR32 LCD support
15500
15501     This patch adds support for the AVR32 LCD controller.  This patch is
15502     based off the latest u-boot-video.
15503
15504     A quick summary of what's going on:-
15505
15506     Enable LCDC pixel clock
15507     Enable LCDC port pins
15508     Add framebuffer pointer to global_data struct
15509     Allocate framebuffer
15510
15511     To use the new code, update your board config to include something like
15512     this:-
15513
15514     #define CONFIG_LCD                  1
15515
15516     #if defined(CONFIG_LCD)
15517     #define CONFIG_CMD_BMP
15518     #define CONFIG_ATMEL_LCD            1
15519     #define LCD_BPP                             LCD_COLOR16
15520     #define CONFIG_BMP_16BPP            1
15521     #define CONFIG_FB_ADDR                      0x10600000
15522     #define CONFIG_WHITE_ON_BLACK               1
15523     #define CONFIG_VIDEO_BMP_GZIP               1
15524     #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE              262144
15525     #define CONFIG_ATMEL_LCD_BGR555             1
15526     #define CONFIG_SYS_CONSOLE_IS_IN_ENV        1
15527     #define CONFIG_SPLASH_SCREEN                1
15528     #endif
15529
15530     The standard U-Boot BMP and Splash-screen features should just work.
15531
15532     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
15533     [agust@denx.de: fixed some style issues]
15534     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15535
15536 commit 6111722a9281c6e04a7304d502556afff6a5a1f8
15537 Author: Alessandro Rubini <rubini@gnudd.com>
15538 Date:   Sun Jul 19 17:52:27 2009 +0200
15539
15540     video: move extern declarations from C to headers
15541
15542     This moves some extern declaration from lcd.c to lcd.h, removing
15543     unneeded ifdef around a pair of them.  Additionally, since
15544     gunzip_bmp() was declared static in cmd_bmp.c but extern in lcd.c, I
15545     removed the static.  The extra "#include <lcd.h>" in cmd_bmp.c is
15546     added to ensure the header is consistent with the source.
15547
15548     This has been compile-tested on both ARM (at91 boards) and PowerPC
15549     (HH405_config, TQM823L_LCD_config, mcc200_config), to test all use
15550     combinations.
15551
15552     Signed-off-by: Alessandro Rubini <rubini@gnudd.it>
15553     [agust@denx.de: removed gunzip_bmp() fixes as commit c01171ea did it]
15554     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15555
15556 commit f51e001143c58447eb50e7aefa2b09eb4cc1410c
15557 Author: Mike Frysinger <vapier@gentoo.org>
15558 Date:   Thu Jul 23 16:26:58 2009 -0400
15559
15560     Blackfin: restore EVT1 handling in linker script
15561
15562     Sadly, the Blackfin linker script unification lost a small #ifdef logic
15563     needed on older parts.  Restore that CONFIG_BFIN_BOOTROM_USES_EVT1 logic.
15564
15565     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15566
15567 commit f33b325af666b12eafa9ab235b2cd59832d6e51c
15568 Author: Wolfgang Denk <wd@denx.de>
15569 Date:   Fri Jul 24 14:24:07 2009 +0200
15570
15571     Revert "zlib: updated to v.1.2.3"
15572
15573     This reverts commit b201171f2b4d509f3ad510b214bee70ff902e3d6.
15574
15575     The commit caused problems for example when unpacking kernel images:
15576
15577            Uncompressing Kernel Image ... Error: inflate() returned -2
15578            GUNZIP: uncompress, out-of-mem or overwrite error - must
15579            RESET board to recover
15580
15581     Conflicts:
15582
15583         include/u-boot/zlib.h
15584         lib_generic/zlib.c
15585
15586     Signed-off-by: Wolfgang Denk <wd@denx.de>
15587
15588 commit 4b1389e0ceb19e9b50b96fd3908483a6c2274fb0
15589 Author: Stefan Roese <sr@denx.de>
15590 Date:   Tue Jul 21 14:06:29 2009 +0200
15591
15592     ppc4xx: Add chip_config command to AMCC Kilauea eval board
15593
15594     This patch removes the "alterpll" command and replaces it with the now
15595     ppc4xx standard "chip_config" command to configure the I2C bootstrap
15596     EEPROM.
15597
15598     Signed-off-by: Stefan Roese <sr@denx.de>
15599
15600 commit f6af8ce0c80327cb6aaa347642026ad838335c23
15601 Author: Stefan Roese <sr@denx.de>
15602 Date:   Tue Jul 21 14:33:52 2009 +0200
15603
15604     ppc4xx: Fix EEPROM configuration on Kilauea
15605
15606     Kilauea has an AT24C02 EEPROM which has an 8 byte page. Without defining
15607     CONFIG_SYS_EEPROM_PAGE_WRITE_BITS to 3 the "eeprom" command doesn't
15608     work correctly.
15609
15610     Additionally the page write delay (CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS)
15611     is set to a more defensive value of 10ms.
15612
15613     Signed-off-by: Stefan Roese <sr@denx.de>
15614
15615 commit 99d8b23bc7e2be04fcbf49c5cec9f5ae76df290c
15616 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
15617 Date:   Wed Jul 22 13:56:21 2009 +0200
15618
15619     ppc4xx: Add 405EP based PMC405DE board
15620
15621     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
15622     Signed-off-by: Stefan Roese <sr@denx.de>
15623
15624 commit da799f66ad1d4fc36dd20cc2d7e584493fda8546
15625 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
15626 Date:   Mon Jul 20 12:15:38 2009 +0200
15627
15628     ppc4xx: Add struct for 4xx GPIO controller registers
15629
15630     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
15631     Signed-off-by: Stefan Roese <sr@denx.de>
15632
15633 commit 58ea142fb2e969f32306c8da1dabfaebd6fa141a
15634 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
15635 Date:   Wed Jul 22 17:27:56 2009 +0200
15636
15637     ppc4xx: Replace 4xx lowercase SPR references
15638
15639     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
15640     Signed-off-by: Stefan Roese <sr@denx.de>
15641
15642 commit 87c0b72908e05662b8b415e26e1042f4779629da
15643 Author: Stefan Roese <sr@denx.de>
15644 Date:   Mon Jul 20 06:57:27 2009 +0200
15645
15646     Add "chip_config" command for PPC4xx bootstrap configuration
15647
15648     This patch adds a generic command for programming I2C bootstrap
15649     eeproms on PPC4xx. An implementation for Canyonlands board is
15650     included.
15651
15652     The command name is intentionally chosen not to be PPC4xx specific.
15653     This way other CPU's/SoC's can implement a similar command under
15654     the same name, perhaps with a different syntax.
15655
15656     Usage on Canyonlands:
15657
15658     => chip_config
15659     Available configurations (I2C address 0x52):
15660     600-nor          - NOR  CPU: 600 PLB: 200 OPB: 100 EBC: 100
15661     600-nand         - NAND CPU: 600 PLB: 200 OPB: 100 EBC: 100
15662     800-nor          - NOR  CPU: 800 PLB: 200 OPB: 100 EBC: 100
15663     800-nand         - NAND CPU: 800 PLB: 200 OPB: 100 EBC: 100
15664     1000-nor         - NOR  CPU:1000 PLB: 200 OPB: 100 EBC: 100
15665     1000-nand        - NAND CPU:1000 PLB: 200 OPB: 100 EBC: 100
15666     1066-nor         - NOR  CPU:1066 PLB: 266 OPB:  88 EBC:  88 ***
15667     1066-nand        - NAND CPU:1066 PLB: 266 OPB:  88 EBC:  88
15668     => chip_config 600-nor
15669     Using configuration:
15670     600-nor          - NOR  CPU: 600 PLB: 200 OPB: 100 EBC: 100
15671     done (dump via 'i2c md 52 0.1 10')
15672     Reset the board for the changes to take effect
15673
15674     Other 4xx boards will be migrated to use this command soon
15675     as well.
15676
15677     Signed-off-by: Stefan Roese <sr@denx.de>
15678     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
15679     Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
15680
15681 commit 10c1b218556ed9871f36bc0c407f4f2f6196353b
15682 Author: Peter Tyser <ptyser@xes-inc.com>
15683 Date:   Fri Jul 17 19:01:16 2009 -0500
15684
15685     xpedite1k: Move to X-ES vendor directory
15686
15687     The XPedite1000 is an X-ES product thus it can be put in board/xes along
15688     with other X-ES boards.  Along with the move, the board was renamed to
15689     XPedite1000 from XPedite1K to fit X-ES's standard naming convention.
15690     Maintainership was also transfered to Peter Tyser.
15691
15692     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15693     Signed-off-by: Stefan Roese <sr@denx.de>
15694
15695 commit 54381b79d268e1bead5d78ed8423df31a3cb0e2c
15696 Author: Peter Tyser <ptyser@xes-inc.com>
15697 Date:   Fri Jul 17 19:01:15 2009 -0500
15698
15699     xpedite1k: Sync checkboard() with other X-ES boards
15700
15701     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15702     Signed-off-by: Stefan Roese <sr@denx.de>
15703
15704 commit 9b4ef1f5dc0daab64f46249a32e67279c4d44fd2
15705 Author: Peter Tyser <ptyser@xes-inc.com>
15706 Date:   Fri Jul 17 19:01:14 2009 -0500
15707
15708     xpedite1k: Sync up board config options with other X-ES boards
15709
15710     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15711     Signed-off-by: Stefan Roese <sr@denx.de>
15712
15713 commit 4cdad5f43ae67e4ceeac69ef4af4392bd2f7381f
15714 Author: Peter Tyser <ptyser@xes-inc.com>
15715 Date:   Fri Jul 17 19:01:13 2009 -0500
15716
15717     xpedite1k: Sync organization of board config with other X-ES boards
15718
15719     This change should have no functional effect
15720
15721     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15722     Signed-off-by: Stefan Roese <sr@denx.de>
15723
15724 commit c4ae1a0257a0f5008ee2686e8aa92fba3992f279
15725 Author: Peter Tyser <ptyser@xes-inc.com>
15726 Date:   Fri Jul 17 19:01:12 2009 -0500
15727
15728     xpedite1k: Sync up commands and environment with other X-ES boards
15729
15730     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15731     Signed-off-by: Stefan Roese <sr@denx.de>
15732
15733 commit fbc7951ea84c2fe6da0f6007b672ed35bae91acb
15734 Author: Peter Tyser <ptyser@xes-inc.com>
15735 Date:   Fri Jul 17 19:01:11 2009 -0500
15736
15737     xpedite1k: Disable unused ethernet port 1
15738
15739     The XPedite1000 only has 2 available ethernet ports:
15740     ppc_4xx_eth2 (EMAC2) and ppc_4xx_eth3 (EMAC3)
15741
15742     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15743     Signed-off-by: Stefan Roese <sr@denx.de>
15744
15745 commit 767e32ad369d83f55f950e6938e68b6dba7fa65f
15746 Author: Peter Tyser <ptyser@xes-inc.com>
15747 Date:   Fri Jul 17 19:01:10 2009 -0500
15748
15749     xpedite1k: Store environment in flash
15750
15751     Previously an I2C EEPROM was used.  The EEPROM had size, reliability,
15752     and access issues which are resolved by storing the environment in
15753     flash.
15754
15755     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15756     Signed-off-by: Stefan Roese <sr@denx.de>
15757
15758 commit b88da157f9990cd2cb081e4faea4b9581b5d0e2f
15759 Author: Peter Tyser <ptyser@xes-inc.com>
15760 Date:   Fri Jul 17 19:01:09 2009 -0500
15761
15762     xpedite1k: Add support for additional GPIO pins
15763
15764     Enable GPIO pins for an I2C EEPROM write protect, a system reset pin,
15765     and a PMC #MONARCH pin.  These pins are not currently used in U-Boot,
15766     but are used in OSes and may be used in U-Boot in the future.
15767
15768     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15769     Signed-off-by: Stefan Roese <sr@denx.de>
15770
15771 commit 42735815dd9ba39efe51203868aebce04053c8de
15772 Author: Peter Tyser <ptyser@xes-inc.com>
15773 Date:   Fri Jul 17 19:01:08 2009 -0500
15774
15775     xpedite1k: Add support for optional flashes
15776
15777     The XPedite1000 can be built with 4 total flashes:
15778     - 512KB AMD socketed
15779     - 16MB Intel soldered
15780     - 2 x 32MB AMD MirrorBit flashes
15781
15782     Add support for the optional 2 32MB CFI-compliant AMD flashes
15783
15784     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15785     Signed-off-by: Stefan Roese <sr@denx.de>
15786
15787 commit e02990764c7415c84668823a0fc8c5b4dd8d8cf0
15788 Author: Peter Tyser <ptyser@xes-inc.com>
15789 Date:   Fri Jul 17 19:01:07 2009 -0500
15790
15791     xpedite1k: Cleanup coding style
15792
15793     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15794     Signed-off-by: Stefan Roese <sr@denx.de>
15795
15796 commit 086ff34a3a7e5e595630d658c1c13778399452d1
15797 Author: Peter Tyser <ptyser@xes-inc.com>
15798 Date:   Fri Jul 17 19:01:06 2009 -0500
15799
15800     xpedite1k: Remove support for reading MACs from EEPROM
15801
15802     By default, the XPedite1000 comes installed with xMon, a proprietary
15803     bootloader.  xMon stores its MAC address in an onboard EEPROM.  Rather
15804     than requiring a non-standard location in the EEPROM to be reserved for
15805     MAC addresses, store the MAC addresses in U-Boot's standard environment.
15806     A U-Boot application or OS application can be used to migrate xMon MAC
15807     addresses to U-Boot's environment if necessary.
15808
15809     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15810     Signed-off-by: Stefan Roese <sr@denx.de>
15811
15812 commit 108d6d0099372f9f6532c3198fbaacabc121c9b3
15813 Author: Peter Tyser <ptyser@xes-inc.com>
15814 Date:   Fri Jul 17 19:01:05 2009 -0500
15815
15816     xpedite1k: Remove support for fixed SDRAM configuration
15817
15818     All XPedite1000's have SPD EEPROMs present and no fixed configuration
15819     parameters are currently defined or used
15820
15821     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15822     Signed-off-by: Stefan Roese <sr@denx.de>
15823
15824 commit c86d00a2ed923002f1ab0bfb0a925522628302e9
15825 Author: Peter Tyser <ptyser@xes-inc.com>
15826 Date:   Fri Jul 17 19:01:04 2009 -0500
15827
15828     xpedite1k: Remove CONFIG_SYS_DRAM_TEST support
15829
15830     POST or command line tests provide similar functionality
15831
15832     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15833     Signed-off-by: Stefan Roese <sr@denx.de>
15834
15835 commit 11ad309c183b176d8866944026a63c0f1c626f56
15836 Author: Peter Tyser <ptyser@xes-inc.com>
15837 Date:   Fri Jul 17 19:01:03 2009 -0500
15838
15839     xpedite1k: Use standard CFI flash driver
15840
15841     Using the CFI flash driver will allow write access to the 16MB Intel
15842     StrataFlash present on the XPedite1000.  The 512KB socketed (non
15843     CFI-compliant flash) will no longer be writable.
15844
15845     The mapping of the 16MB Strata flash was moved to 0xff000000 and the
15846     512KB AMD socketed flash was moved to 0xfe000000.
15847
15848     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15849     Signed-off-by: Stefan Roese <sr@denx.de>
15850
15851 commit d4d2e79bb433fc7ec18c68cc49cc6b7433d1320c
15852 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15853 Date:   Thu Jul 16 22:13:57 2009 +0200
15854
15855     ppc4xx: Cleanup PLU405 board code
15856
15857     Some Coding style cleanup (braces, whitespaces, long lines)
15858
15859     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
15860     Signed-off-by: Stefan Roese <sr@denx.de>
15861
15862 commit b209a114829dc8a7a0e39a9335b6e4aebf9742cb
15863 Author: Dirk Eibach <eibach@gdsys.de>
15864 Date:   Fri Jul 17 14:16:40 2009 +0200
15865
15866     ppc4xx: Add DL-Vision 405EP board support
15867
15868     Board support for the Guntermann & Drunck DL-Vision.
15869
15870     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
15871     Signed-off-by: Stefan Roese <sr@denx.de>
15872
15873 commit 9b1b8c8a1bf52e9b65e1958e5205838576066cbc
15874 Author: Dirk Eibach <eibach@gdsys.de>
15875 Date:   Fri Jul 10 14:47:32 2009 +0200
15876
15877     ppc4xx: Fix missing freqOPB for 405EP
15878
15879     In cpu/ppc4xx/speed.c initialization of sysInfo->freqOPB for 405EP was
15880     left out for no obvious reason.
15881
15882     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
15883     Signed-off-by: Stefan Roese <sr@denx.de>
15884
15885 commit 0a371ca08908c9b2a58171223a79bffea1f7c6f5
15886 Author: Stefan Roese <sr@denx.de>
15887 Date:   Tue Jul 14 15:53:08 2009 +0200
15888
15889     ppc4xx: Fix TLB reset problem with recent 44x images
15890
15891     Patch d873133f [ppc4xx: Add Sequoia RAM-booting target] broke "normal"
15892     booting on some 44x platforms. This breakage is only noticed in some
15893     cases while powercycling. As it seems, the code in question in start.S
15894     didn't invalidate TLB #0. This makes sense since this TLB is used for
15895     the bootrom mapping. With the patch mentioned above even TLB #0 got
15896     invalidated resulting in an error later on.
15897
15898     This patch now fixes this issue by only invalidating TLB #0 in the RAM-
15899     booting case.
15900
15901     Tested succesfully on Sequoia and Canyonlands.
15902
15903     Signed-off-by: Stefan Roese <sr@denx.de>
15904     Cc: Dirk Eibach <Eibach@gdsys.de>
15905
15906 commit 44259bb9e696d22bf1773181111855a29f00cf33
15907 Author: Prafulla Wadaskar <prafulla@marvell.com>
15908 Date:   Fri Jul 17 19:56:30 2009 +0530
15909
15910     usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root
15911
15912     This change is cheked in Linux source and fix found to be in sync.
15913     This patch is tested for USB host interface on Kirkwood based
15914     Sheevaplug platform (ARM little endian board)
15915
15916     Risk: the impact of this patch is not validated on big endian board.
15917     This need to be checked...
15918
15919     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
15920     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15921
15922 commit 28958b8bea4c66629c5a22fd3c8b0d49df90383d
15923 Author: Wolfgang Denk <wd@denx.de>
15924 Date:   Thu Jul 23 22:23:23 2009 +0200
15925
15926     Coding Style cleanup; update CHANGELOG.
15927
15928     Signed-off-by: Wolfgang Denk <wd@denx.de>
15929
15930 commit 2632c008e2c2cd61fefb622ed671ea3e6bd2e2a6
15931 Author: Mike Frysinger <vapier@gentoo.org>
15932 Date:   Tue Jul 21 22:59:36 2009 -0400
15933
15934     autoconf.mk: include before config.mk for top level files
15935
15936     By including autoconf.mk before config.mk, all top level files can use any
15937     config options it sets up (like <arch>_config.mk) or the Makefile itself
15938     without being forced to use lazy evaluation.
15939
15940 commit c01171eaecc963d2c1f56a0984a0cbcdd8a3ab3c
15941 Author: Mark Jackson <mpfj-list@mimc.co.uk>
15942 Date:   Tue Jul 21 11:30:53 2009 +0100
15943
15944     Remove static declaration from gunzip_bmp()
15945
15946     This patch removes the static declaration from gunzip_bmp()
15947
15948     Without it, the gunzip_bmp() function is not visible to
15949     common/lcd.c and fails to compile with an error.
15950
15951     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
15952
15953 commit 2d4a43e230a3c8bfd03b9beaa0eb2a95e779c03b
15954 Author: Peter Tyser <ptyser@gmail.com>
15955 Date:   Mon Jul 20 21:51:38 2009 -0500
15956
15957     cmd_tsi148: General cleanup
15958
15959     - Fix command help message
15960     - Disable DEBUG by default
15961     - Fix whitespace issues
15962     - Fix lines > 80 characters
15963
15964     Signed-off-by: Peter Tyser <ptyser@gmail.com>
15965     Acked-by: Stefan Roese <sr@denx.de>
15966
15967 commit 9aef73888509d10193615ee5cd9cf439ca44e937
15968 Author: Mike Frysinger <vapier@gentoo.org>
15969 Date:   Sun Jul 19 15:17:03 2009 -0400
15970
15971     unify HOST_CFLAGS and HOSTCFLAGS
15972
15973     The top build system sets up HOSTCFLAGS a bit and exports it, but other
15974     places use HOST_CFLAGS instead.  Unify the two as HOSTCFLAGS so that the
15975     values stay in sync.
15976
15977     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15978
15979 commit 2e9393f500065f940e5e4ac7fe375e4c0b77b936
15980 Author: Wolfgang Denk <wd@denx.de>
15981 Date:   Thu Jul 23 21:16:59 2009 +0200
15982
15983     Update CHANGELOG
15984
15985     Signed-off-by: Wolfgang Denk <wd@denx.de>
15986
15987 commit e3b39f84e974df70065fa248f0f63993b1708c9d
15988 Author: André Schwarz <andre.schwarz@matrix-vision.de>
15989 Date:   Fri Jul 17 14:50:24 2009 +0200
15990
15991     update config for mvBC-P (MPC5200)
15992
15993     This patch adds I2C support for mvBC-P and defines flash layout
15994     matching the shipped product.
15995
15996     Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
15997
15998 commit cb6d0b72c2c4f13c0075a7ae92e11682ec94a311
15999 Author: Kumar Gala <galak@kernel.crashing.org>
16000 Date:   Mon Jul 13 09:24:00 2009 -0500
16001
16002     ahci: Fix gcc 4.4 compiler warning
16003
16004     ahci.c: In function 'ata_scsiop_read_capacity10':
16005     ahci.c:616: warning: dereferencing type-punned pointer will break strict-aliasing rules
16006
16007     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16008
16009 commit 51d91e1a253c97713c7f3e5c0b910a4db4979283
16010 Author: Kumar Gala <galak@kernel.crashing.org>
16011 Date:   Mon Jul 13 09:23:59 2009 -0500
16012
16013     drivers/bios_emulator: Fix gcc 4.4 compiler warning
16014
16015     biosemu.c: In function 'BE_setVGA':
16016     biosemu.c:147: warning: dereferencing type-punned pointer will break strict-aliasing rules
16017
16018     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16019
16020 commit f97ec30bb3c5a4a456159eb2b75b3bc68772bf2a
16021 Author: Detlev Zundel <dzu@denx.de>
16022 Date:   Mon Jul 13 16:01:19 2009 +0200
16023
16024     Re-add support for image type 'Standalone Program'
16025
16026     Support for this type was lost during the bootm refactoring.
16027
16028     Signed-off-by: Detlev Zundel <dzu@denx.de>
16029
16030 commit ca95c9df0280f40e8e4befadbaae21fa67d92331
16031 Author: Detlev Zundel <dzu@denx.de>
16032 Date:   Mon Jul 13 16:01:18 2009 +0200
16033
16034     Add error checking for unsupported OS types.
16035
16036     Signed-off-by: Detlev Zundel <dzu@denx.de>
16037
16038 commit 982adfc610669482a32127282fe489857a92cfe3
16039 Author: Peter Tyser <ptyser@xes-inc.com>
16040 Date:   Fri Jul 10 18:46:10 2009 -0500
16041
16042     ppc: Unlock cache-as-ram in a consistent manner
16043
16044     Previously, non-e500 architectures only unlocked their data cache which
16045     was used as early RAM when booting to Linux using the "bootm" command.
16046     This change causes all PPC boards with CONFIG_SYS_INIT_RAM_LOCK defined
16047     to unlock their data cache during U-Boot's initialization.  This
16048     improves U-Boot performance and provides a common cache state when
16049     booting to different OSes.
16050
16051     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16052
16053 commit b201171f2b4d509f3ad510b214bee70ff902e3d6
16054 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
16055 Date:   Thu Jul 23 04:54:45 2009 -0400
16056
16057     zlib: updated to v.1.2.3
16058
16059     This patch updates zlib to the latest stable version.
16060
16061     Only relevant zlib parts were ported to u-boot tree, as was done for
16062     the previously used version of zlib (0.95). New zlib gives faster
16063     inflate performance and other improvements, see www.zlib.net
16064
16065     Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
16066     Reviewed-by: Angelo Castello <angelo.castello@st.com>
16067
16068     Edited commit message
16069
16070     Signed-off-by: Wolfgang Denk <wd@denx.de>
16071
16072 commit 97cfe86163505ea18e7ff7b71e78df5bb03dad57
16073 Author: Robin Getz <rgetz@blackfin.uclinux.org>
16074 Date:   Tue Jul 21 12:15:28 2009 -0400
16075
16076     Save server's MAC address in environment
16077
16078     Linux's netconsole works much better when you can pass it the MAC address of
16079     the server. (otherwise it just uses broadcast, which everyone else on my
16080     network complains about :)
16081
16082     This sets the env var "serveraddr" (to match ethaddr), so that you can pass
16083     it to linux with whatever bootargs you want to....
16084
16085     addnetconsole=set bootargs $(bootargs) netconsole=@$(ipaddr)/eth0,@$(serverip)/$(serveraddr)
16086
16087     Signed-of-by: Robin Getz <rgetz@blackfin.uclinux.org>
16088
16089     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16090
16091 commit 0b23fb368d08c9669fac647971ff249c3f9fee8f
16092 Author: Ilya Yanok <yanok@emcraft.com>
16093 Date:   Tue Jul 21 19:32:21 2009 +0400
16094
16095     fec_mxc: driver for FEC ethernet controller on i.MX27
16096
16097     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
16098     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16099
16100 commit 0544c63681d2ea3607faf374e9c56f101e365b42
16101 Author: Alessio Centazzo <centazzo@gmail.com>
16102 Date:   Sat Jul 11 11:56:06 2009 -0700
16103
16104     ppc4xx: Fixed compilation warning in 4xx_enet.c
16105
16106     This patch fixes a compilation warning for some Ethernet PHY-less
16107     PPC4xx platforms (440SPE based ones) and a potential compilation
16108     error for 440SP platforms (use of undefined 'ethgroup' variable).
16109     In the original code and in case of 440SPE platforms, 'ethgroup'
16110     is initialized to -1 and never modified.  Later in the function,
16111     within an #ifdef statement, an 'if statement' executes code only
16112     if 'ethgroup' is set to 4, therefore it is harmless to avoid
16113     executing the 'if statement' by removing the CONFIG_440SPE from
16114     the affected #ifdefs.  In case of 440SP platforms  with on-board
16115     Ethernet PHY, 'ethgroup' is undefined but used (there are not such
16116     platforms in the repository yet). All other architectures are not
16117     affected by this change.
16118
16119     Signed-off-by: Alessio Centazzo acpatin@yahoo.com
16120     Acked-by: Stefan Roese <sr@denx.de>
16121     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16122
16123 commit 09133f8580f0106429ba3600f1855bd3577ae58b
16124 Author: Michael Zaidman <michael.zaidman@gmail.com>
16125 Date:   Tue Jul 14 23:37:12 2009 +0300
16126
16127     DHCP regression on 2009-06
16128
16129     Fixed the DHCP/BOOTP/RARP regression introduced in u-boot-2009.06
16130     by initializing our IP addr to 0 in order to accept any IP addr
16131     assigned to us by the DHCP/BOOTP/RARP server.
16132
16133     Ack-by: Robin Getz <rgetz@blackfin.uclinux.org>
16134     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
16135     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16136
16137 commit 443ce4ac9d1138ae5ae6863b2d40a96fd6edf523
16138 Author: Prafulla Wadaskar <prafulla@marvell.com>
16139 Date:   Thu Jul 16 20:58:02 2009 +0530
16140
16141     net: phy: bugfixes: mv88E61xx multichip addressing support
16142
16143     With these fixes, this driver works properly for multi chip
16144     addressging mode
16145
16146     Bugfixes:
16147     1. Build error fixed for function mv88e61xx_busychk_multic-fixed
16148     2. PHY dev address error detection- fixed
16149     3. wrong busy bit was refered in function mv88e61xx_busychk -fixed
16150     4. invalid data read ptr was refered for RD_PHY in case of
16151         multichip addressing mode -fixed
16152
16153     The Multichip Address mode is tested with RD6281A board having
16154     MV88E6165 switch on it
16155
16156     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
16157     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16158
16159 commit 16025ea45539219f2a7c750c6f0ae983ea5c2737
16160 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
16161 Date:   Wed Jul 8 13:05:11 2009 +0200
16162
16163     arm: Kirkwood: Check the error summary bit for error detection
16164
16165     The Marvell documentation for the 88f6281 states that the error coding
16166     is only valid if the error summary and last frame bits in the transmit
16167     descriptor status field are set. This patch adds checks for these for
16168     transmit (I would get transmit errors on bootp with the current check,
16169     which I believe are spurious).
16170
16171     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
16172     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16173
16174 commit 7b05f5e027b81cd3a9a41c6c6d3fe09c72fa93f6
16175 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
16176 Date:   Wed Jul 8 13:03:18 2009 +0200
16177
16178     arm: Kirkwood: Fix compiler optimization bug for kwgbe_send
16179
16180     kwgbe_send/recv both have loops waiting for the hardware to set  a bit.
16181     GCC 4.3.3 cleverly optimizes the send case to ... a while(1); loop. This
16182     patch uses readl to force a read from device memory. Other volatile
16183     accesses have also been replaced with readl/writel where appropriate
16184     (as per suggestions on the U-boot mailing list).
16185
16186     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
16187     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16188
16189 commit 3f6b18ffd94621625de961bc566022b0266790f5
16190 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16191 Date:   Thu Jul 2 13:21:22 2009 -0400
16192
16193     MIIPHYBB: Return 0xFFFF if the PHY is not asserting TA.
16194
16195     This patch sets the returned value to 0xFFFF if the PHY does not exist
16196     and does not assert Transfer Acknowledge. A NULL check for the value
16197     pointer is also added for buffer overflow protection.
16198
16199     Without this patch 'mii info' will  show 'phantom' devices because the
16200     value will be not be initialized and return with some random value.
16201
16202     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16203     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16204
16205 commit 736fead8fdbf8a8407048bebc373cd551d01ec98
16206 Author: Ben Warren <biggerbadderben@gmail.com>
16207 Date:   Mon Jul 20 22:01:11 2009 -0700
16208
16209     Convert SMC911X Ethernet driver to CONFIG_NET_MULTI API
16210
16211     All in-tree boards that use this controller have CONFIG_NET_MULTI added
16212     Also:
16213      - changed CONFIG_DRIVER_SMC911X* to CONFIG_SMC911X*
16214      - cleaned up line lengths
16215      - modified all boards that override weak function in this driver
16216      - added
16217
16218     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16219     Tested-by: Mike Frysinger <vapier@gentoo.org>
16220
16221 commit 3bd0a877b74b9c005ae7cb892480ccedfa308c20
16222 Author: Ben Warren <biggerbadderben@gmail.com>
16223 Date:   Fri Jul 17 00:50:15 2009 -0700
16224
16225     Add warning about upcoming removal of old Ethernet API
16226
16227     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16228
16229 commit b7fe25d2a8d1cede401d09e1f9c84f8fe47bdbb1
16230 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
16231 Date:   Thu Jul 2 16:15:13 2009 +0530
16232
16233     P2020RDB Added support of Vitesse PHYs VSC8641(RGMII) and VSC8221(SGMII)
16234
16235     These PHYs are on P2020RDB platform.
16236
16237     Also revamped Freescale copyright message in drivers/net/tsec.c.
16238
16239     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
16240     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16241
16242 commit 1a32bf41881b5dbe3119cb77a33572b4d462cabf
16243 Author: Robin Getz <rgetz@blackfin.uclinux.org>
16244 Date:   Mon Jul 20 14:53:54 2009 -0400
16245
16246     Add DNS support
16247
16248     On 04 Oct 2008 Pieter posted a dns implementation for U-Boot.
16249
16250     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg10216.html
16251     >
16252     > DNS can be enabled by setting CFG_CMD_DNS. After performing a query,
16253     > the serverip environment var is updated.
16254     >
16255     > Probably there are some cosmetic issues with the patch. Unfortunatly I
16256     > do not have the time to correct these. So if anybody else likes DNS
16257     > support in U-Boot and has the time, feel free to patch it in the main tree.
16258
16259     Here it is again - slightly modified & smaller:
16260       - update to 2009-06 (Pieter's patch was for U-Boot 1.2.0)
16261       - README.dns is added
16262       - syntax is changed (now takes a third option, the env var to store
16263         the result in)
16264       - add a random port() function in net.c
16265       - sort Makefile in ./net/Makefile
16266       - dns just returns unless a env var is given
16267       - run through checkpatch, and clean up style issues
16268       - remove packet from stack
16269       - cleaned up some comments
16270       - failure returns much faster (if server responds, don't wait for
16271         timeout)
16272       - use built in functions (memcpy) rather than byte copy.
16273
16274     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
16275     Signed-off-by: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
16276     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16277
16278 commit 88ad3fd91c83a4343b25385fd78fd8e29ebb723f
16279 Author: Kim Phillips <kim.phillips@freescale.com>
16280 Date:   Fri Jul 17 12:17:00 2009 -0500
16281
16282     net: tsec - fix dereferencing type-punned pointer will break strict-aliasing rules warning
16283
16284     fix this gcc 4.4 warning:
16285
16286     tsec.c: In function 'tsec_init':
16287     tsec.c:200: warning: dereferencing type-punned pointer will break strict-aliasing rules
16288
16289     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16290     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16291
16292 commit d9bec9f42ab34383737c8a94429aa02fe76d7946
16293 Author: Mike Frysinger <vapier@gentoo.org>
16294 Date:   Sat Jul 18 21:04:08 2009 -0400
16295
16296     net: rename NetRxPkt to NetRxPacket
16297
16298     The net code is mostly consistent in using 'Packet' rather than 'Pkt', so
16299     rename the minor detractor to follow suite.
16300
16301     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16302     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16303
16304 commit 88a4c2e77cd5674db745d0c2ebbad68c9baf760c
16305 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16306 Date:   Thu Jun 25 16:33:04 2009 +0900
16307
16308     sh: sh_eth: Remove garbage from printf
16309
16310     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16311     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16312     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16313
16314 commit 2ea20efa47da9d98ff38223ff51dea5439ad8708
16315 Author: Andreas Pretzsch <apr@cn-eng.de>
16316 Date:   Thu Jul 9 21:50:05 2009 +0200
16317
16318     smc911x: add support for LAN9221
16319
16320     Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>
16321     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16322
16323 commit 7168eba729b9e6d730db7cd1028767f7b1a6128b
16324 Author: David Brownell <david-b@pacbell.net>
16325 Date:   Tue Jun 9 11:14:24 2009 -0700
16326
16327     rm9200 ethernet driver: board-specific quirk (csb337)
16328
16329     CSB337 boards originally shipped with MicroMonitor, not U-Boot;
16330     and with a version using a different convention for recording
16331     Ethernet addresses than anyone else.  To avoid breaking Linux
16332     when it uses U-Boot, have it use the same convention on that
16333     hardware.
16334
16335     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
16336     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16337
16338 commit 57215cd2e59fd403248df8f2f195e382900d5fc2
16339 Author: Heiko Schocher <hs@denx.de>
16340 Date:   Thu Jul 16 09:58:31 2009 +0200
16341
16342     arm, kirkwood: added kw_gpio_set_valid() in gpio.h
16343
16344     Signed-off-by: Heiko Schocher <hs@denx.de>
16345
16346 commit ec16441085f471c03a8c0909579463e31e5b947a
16347 Author: Dieter Kiermaier <dk-arm-linux@gmx.de>
16348 Date:   Mon Jun 29 14:45:08 2009 +0200
16349
16350     Kirkwood: add Marvell Kirkwood gpio driver
16351
16352     Signed-off-by: Dieter Kiermaier <dk-arm-linux@gmx.de>
16353     Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
16354     Tested-by: Heiko Schocher <hs@denx.de>
16355
16356 commit 688b6a0ff2dcbb0c7e63ef63cbbcc291f14f321f
16357 Author: Heiko Schocher <hs@denx.de>
16358 Date:   Thu Jul 16 09:59:10 2009 +0200
16359
16360     arm, kirkwood: added KW_TWSI_BASE in kirkwood.h
16361
16362     Signed-off-by: Heiko Schocher <hs@denx.de>
16363
16364 commit fbc8365ad7ab0afd4143bdbffab2fd0b24df004f
16365 Author: Prafulla Wadaskar <prafulla@marvell.com>
16366 Date:   Thu Jul 16 21:02:24 2009 +0530
16367
16368     Marvell RD6281A Board support
16369
16370     This is Marvell's 88F6281_A0 based reference design board
16371
16372     This patch is tested for-
16373     1. Boot from DRAM/NAND flash/NFS
16374     2. File transfer using tftp and loadb
16375     3. NAND flash read/write/erase
16376
16377     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
16378     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16379
16380 commit 2906e6d654fcc7f2451fde225e4e8b3f20c9555f
16381 Author: Piotr Ziecik <kosmo@semihalf.com>
16382 Date:   Fri Jul 17 16:35:19 2009 +0200
16383
16384     api: Fix broken build on ARM.
16385
16386     This patch fixes broken build introduced by commit
16387     84bf7ca522e94ec402a1264b01971b924b7e268f (api: remove un-needed
16388     ifdef CONFIG_API already handle by the Makefile).
16389
16390     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
16391
16392 commit 48677a1ef5f82adca49145a7baf11ece77f51945
16393 Author: Wolfgang Denk <wd@denx.de>
16394 Date:   Wed Jul 22 23:53:23 2009 +0200
16395
16396     Fix "ld: cannot find -lstubs" build error
16397
16398     Commit 1bc15386 moved the examples/ to examples/standalone but failed
16399     to adapt the Makefiles that need to link against libstubs.a
16400
16401     Signed-off-by: Wolfgang Denk <wd@denx.de>
16402     Cc: Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16403
16404 commit ae71121a111ddf9dd057cacbbdd0f51054be428a
16405 Author: Wolfgang Denk <wd@denx.de>
16406 Date:   Sat Jul 18 20:47:36 2009 +0200
16407
16408     at91cap9adk: fix #ifdef/#endif pairing
16409
16410     The #ifdef/#endif pairing in this file was obviously messed up.
16411
16412     Signed-off-by: Wolfgang Denk <wd@denx.de>
16413
16414 commit 6b96a20d512b04a808438553874c00cf40812c44
16415 Author: Minkyu Kang <mk7.kang@samsung.com>
16416 Date:   Mon Jul 20 11:40:01 2009 +0900
16417
16418     ARM Cortex A8: Move OMAP3 specific reset handler
16419
16420     Because of the reset_cpu is soc specific, should be move to soc
16421
16422     Cc: Dirk Behme <dirk.behme@googlemail.com>
16423     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
16424
16425 commit 048e7efe91f66094f868281c12e488ce2bae8976
16426 Author: Kumar Gala <galak@kernel.crashing.org>
16427 Date:   Wed Jul 22 10:12:39 2009 -0500
16428
16429     85xx/86xx: Replace in8/out8 with in_8/out_8 on FSL boards
16430
16431     The pixis code used in8/out8 all over the place.  Replace it with
16432     in_8/out_8 macros.
16433
16434     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16435
16436 commit 0a6d0c6320b77bd6572393a93e6b8ccdf39c7100
16437 Author: Peter Tyser <ptyser@xes-inc.com>
16438 Date:   Tue Jul 21 13:51:08 2009 -0500
16439
16440     xpedite5370: Enable NAND command support
16441
16442     Use the MPC8572's eLBC to access 1 GB (or greater) onboard NAND flash
16443     via the 'nand' command.
16444
16445     Previously, the XPedite5370's NAND chip selects were properly
16446     configured, but NAND support was not enabled.
16447
16448     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16449     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16450
16451 commit 39121c0896a6760bd436d88c17892f49a97902d0
16452 Author: Peter Tyser <ptyser@xes-inc.com>
16453 Date:   Tue Jul 21 13:51:07 2009 -0500
16454
16455     xes: Increase CONFIG_SYS_BOOTM_LEN to 16MB
16456
16457     Increasing CONFIG_SYS_BOOTM_LEN from 8 MB to 16 MB is necessary to
16458     support uncompressing images larger than 8 MB when using the bootm
16459     command.
16460
16461     Note that recent Linux kernels for the 85xx and 86xx map greater than
16462     16MB of memory on bootup, but we use 16MB to maintain compatibility with
16463     older Linux kernels for now.
16464
16465     Signed-off-by: Nate Case <ncase@xes-inc.com>
16466     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16467     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16468
16469 commit 58f31b602dfd52eb7836ab82caa587514e046f02
16470 Author: Peter Tyser <ptyser@xes-inc.com>
16471 Date:   Sun Jul 19 19:17:41 2009 -0500
16472
16473     xpedite5370: Fix I2C GPIO initialization typo
16474
16475     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16476     Acked-by: Heiko Schocher<hs@denx.de>
16477     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16478
16479 commit 5ff821006c6e7647d183ea95817044943bb22e7e
16480 Author: Peter Tyser <ptyser@xes-inc.com>
16481 Date:   Sun Jul 19 19:17:40 2009 -0500
16482
16483     xpedite5200,5370: Use buffered NOR flash writes
16484
16485     Buffered writes are possible on the XPedite5200 and XPedite5370 and greatly
16486     improve NOR flash write speeds
16487
16488     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16489     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16490
16491 commit d9c147f371800a479a507a816b2fe572c97da197
16492 Author: Peter Tyser <ptyser@xes-inc.com>
16493 Date:   Fri Jul 17 10:14:48 2009 -0500
16494
16495     85xx, 86xx: Add common board_add_ram_info()
16496
16497     Previously, 85xx and 86xx boards would display DRAM information on
16498     bootup such as:
16499
16500     ...
16501     I2C:   ready
16502     DRAM:
16503     Memory controller interleaving enabled: Bank interleaving!
16504      2 GB
16505     FLASH: 256 MB
16506     ...
16507
16508     This patch moves the printing of the DRAM controller configuration to a
16509     common board_add_ram_info() function which prints out DDR type, width,
16510     CAS latency, and ECC mode.  It also makes the DDR interleaving
16511     information print out in a more sane manner:
16512
16513     ...
16514     I2C:   ready
16515     DRAM:   2 GB (DDR2, 64-bit, CL=4, ECC on)
16516            DDR Controller Interleaving Mode: bank
16517     FLASH: 256 MB
16518     ...
16519
16520     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16521     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16522
16523 commit 12a440ae6d09445140f1a0c2023dba76a9f1a617
16524 Author: Peter Tyser <ptyser@xes-inc.com>
16525 Date:   Fri Jul 17 10:14:47 2009 -0500
16526
16527     tqm85xx: Remove board_add_ram_info()
16528
16529     This is in preparation for adding one common 8xxx board_add_ram_info()
16530     function for all 8xxx boards
16531
16532     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16533     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16534
16535 commit ed2c9488bbe389b7b25cada1e42bdae5d0976327
16536 Author: Peter Tyser <ptyser@xes-inc.com>
16537 Date:   Fri Jul 17 10:14:46 2009 -0500
16538
16539     xes: Remove 8xxx board_add_ram_info() function
16540
16541     This is in preparation for adding one common 8xxx board_add_ram_info()
16542     fuction for all 8xxx boards
16543
16544     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16545     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16546
16547 commit e7ee23ec1788d8cf269a4cf6b9cd3722cbc7d592
16548 Author: Peter Tyser <ptyser@xes-inc.com>
16549 Date:   Fri Jul 17 10:14:45 2009 -0500
16550
16551     86xx: Rename ccsr_ddr's sdram_mode_1, sdram_cfg_1 fields
16552
16553     Rename sdram_mode_1 to sdram_mode and sdram_cfg_1 to sdram_cfg to match
16554     the 86xx user's manual and other Freescale architectures
16555
16556     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16557     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16558
16559 commit f6155c6fbb1d85f517b7c160570f0995ef14c43f
16560 Author: Roy Zang <tie-fei.zang@freescale.com>
16561 Date:   Thu Jul 9 10:05:48 2009 +0800
16562
16563     85xx: Add pci/pcie E1000 ethernet support for MPC8544DS and MPC8536 boards
16564
16565     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
16566     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16567
16568 commit 6bb5b412291177e6edd42f9a80e5c5afe57a6a0f
16569 Author: Kumar Gala <galak@kernel.crashing.org>
16570 Date:   Tue Jul 14 22:42:01 2009 -0500
16571
16572     85xx: Report which "bank" of NOR flash we are booting from on FSL boards
16573
16574     The p2020DS, MPC8536DS, MPC8572DS, MPC8544DS boards are capable of
16575     swizzling the upper address bits of the NOR flash we boot out of which
16576     creates the concept of "virtual" banks.  This is useful in that we can
16577     flash a test of image of u-boot and reset to one of the virtual banks
16578     while still maintaining a working image in "bank 0".
16579
16580     The PIXIS FPGA exposes registers on LBC which we can use to determine
16581     which "bank" we are booting out of (as well as setting which bank to
16582     boot out of).
16583
16584     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16585
16586 commit 9af9c6bdc16da53772c56b1a79c2c91701fe94e6
16587 Author: Kumar Gala <galak@kernel.crashing.org>
16588 Date:   Wed Jul 15 13:45:00 2009 -0500
16589
16590     86xx: Report which "bank" of NOR flash we are booting from on MPC8641HPCN
16591
16592     The MPC8641HPCN board is capable of swizzling the upper address bit of
16593     the NOR flash we boot out of which creates the concept of "virtual"
16594     banks.  This is useful in that we can flash a test of image of u-boot
16595     and reset to one of the virtual banks while still maintaining a
16596     working image in "bank 0".
16597
16598     The PIXIS FPGA exposes registers on LBC which we can use to determine
16599     which "bank" we are booting out of (as well as setting which bank to
16600     boot out of).
16601
16602     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16603
16604 commit caf72ff329759b4da71352ab098537c7698c0e9f
16605 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
16606 Date:   Tue Jul 21 10:45:49 2009 +0200
16607
16608     Refresh LZMA-lib to v4.65
16609
16610     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
16611
16612 commit 70ebf31633f372a24505e47846b2628e8435ea37
16613 Author: Wolfgang Denk <wd@denx.de>
16614 Date:   Fri Jul 17 23:35:29 2009 +0200
16615
16616     AT91: factor out ROUND() macro
16617
16618     A large number of boards (all AT91 based) duplicated the ROUND()
16619     macro in their board specific config files. Add the definition to
16620     include/common.h and clean up the board config files.
16621
16622     Signed-off-by: Wolfgang Denk <wd@denx.de>
16623
16624 commit 89188a62333c0841a7166783d2ebdd39d7044eb2
16625 Author: Kumar Gala <galak@kernel.crashing.org>
16626 Date:   Wed Jul 15 08:54:50 2009 -0500
16627
16628     85xx: Bump up the BOOTMAP to 16M on FSL 85xx boards
16629
16630     We have always mapped at least 16M in the kernel and we have seen cases
16631     with new kernel features that a kernel image needs more than 8M of
16632     memory.
16633
16634     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16635
16636 commit d4abc757c26c531293f5bbc4262ade44a317eec9
16637 Author: Peter Tyser <ptyser@xes-inc.com>
16638 Date:   Mon Jul 20 19:02:21 2009 -0500
16639
16640     Move api_examples to examples/api
16641
16642     Also add a rule to remove demo.bin which was previously leftover
16643     after a "make clean"
16644
16645     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16646
16647 commit af1d7d984a23a0faa1f436ebfeb55c876b1a99e1
16648 Author: Heiko Schocher <hs@denx.de>
16649 Date:   Tue Jul 21 06:37:28 2009 +0200
16650
16651     83xx, kmeter: fix compile error
16652
16653     CONFIG_SYS_MALLOC_LEN is defined in the board config, and
16654     the keymile-common.h, which collects common options used
16655     by all keymile-boards. This results in a compile error
16656     when compiling the kmeter1 board. So remove this define
16657     in the board config file.
16658
16659     Signed-off-by: Heiko Schocher <hs@denx.de>
16660
16661 commit 39df00d9aecfb465b9eec9af593f9b763fb5209a
16662 Author: Heiko Schocher <hs@denx.de>
16663 Date:   Thu Jul 9 12:04:26 2009 +0200
16664
16665     i2c, mpc83xx: add CONFIG_SYS_I2C_INIT_BOARD for fsl_i2c
16666
16667     This patch adds the possibility to call a board specific
16668     i2c bus reset routine for the fsl_i2c bus driver, and adds
16669     this option for the keymile kmeter1 board.
16670
16671     The deblock sequence for this board is implemented and
16672     tested in the following way:
16673
16674     CR = 0x20 (release SDA and SCL pin)
16675     CR = 0xa0 (start read)
16676     dummy read
16677     dummy read
16678     if 2. dummy read == 0x00
16679         3. dummy read
16680
16681     CR = 0x80 (SDA and SCL now 1 SR = 0x86)
16682     CR = 0x00 (Modul reset SR=0x81)
16683     CR = 0x80 (SDA and SCL = 1, SR = 0x81)
16684
16685     Signed-off-by: Heiko Schocher <hs@denx.de>
16686
16687 commit 1bc1538613d66cef3cbce680fc8d7c3561a0fbd0
16688 Author: Peter Tyser <ptyser@xes-inc.com>
16689 Date:   Fri Jul 10 11:03:19 2009 -0500
16690
16691     Move examples/ to examples/standalone
16692
16693     The current files in examples are all standalone application examples,
16694     so put them in their own subdirectory for organizational purposes
16695
16696     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16697
16698 commit b220c64d86f7c705a183302c3b50076d7e5d876c
16699 Author: Peter Tyser <ptyser@xes-inc.com>
16700 Date:   Fri Jul 10 11:03:15 2009 -0500
16701
16702     Move architecture specific config.mk files into subdirs
16703
16704     This cleans up U-Boot's toplevel directory a bit and makes the
16705     architecture 'config.mk' file naming and location similar to board
16706     and cpu 'config.mk' files
16707
16708     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16709
16710 commit 082becd0d546399637fa94fdf9f1730a0f7bf348
16711 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
16712 Date:   Fri Jul 10 18:25:34 2009 +0800
16713
16714     Add "tags" to .gitignore file.
16715
16716     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
16717     Signed-off-by: Wolfgang Denk <wd@denx.de>
16718
16719 commit dc71b248ef0d5e12b19f33c6efb873e31df91fa9
16720 Author: Heiko Schocher <hs@denx.de>
16721 Date:   Thu Jul 9 12:04:18 2009 +0200
16722
16723     powerpc: updates for the keymile boards
16724
16725     - CONFIG_SYS_MAX_I2C_BUS changed to 1
16726       We use only one I2C hardwarecontroller on this boards, so
16727       change the CONFIG_SYS_MAX_I2C_BUS to 1.
16728     - common: dont print errormsg if second IVM Block lacks.
16729     - 82xx, mgcoge: fix double mtdpart entry in environment
16730     - 82xx, mgcoge: activate on second Flash the second bank.
16731     - common: CONFIG_ENV_SIZE 0x4000 for all keymile boards
16732     - common: Change malloc size to 1MByte for all Keymile boards
16733         We need a bigger malloc area for the environment support (128k)
16734         on some Keymile boards (kmeter1) and the upcoming UBI support.
16735         Change it to 1MB for all Keymile boards to be on the save side.
16736         Also define CONFIG_SYS_64BIT_VSPRINTF which is needed for
16737         UBI/UBIFS support.
16738     - Add UBI support to all Keymile boards
16739     - change manner of writing "/localbus/ranges" node
16740         instead of writting the complete "/localbus/ranges" node
16741         before booting Linux, only update the ranges entries
16742         which gets dynamical detected (size of flashes).
16743         This is needed, because keymile adds in the DTS
16744         "/localbus/ranges" node entries, which u-boot must
16745         not overwrite/delete.
16746     - kmeter, mgcoge: define 2 seperate regions needed for the Intel P30 chips
16747         The Intel P30 chip has 2 non-identical chips on
16748         one die, so we need to define 2 seperate regions
16749         that are scanned by physmap_of independantly.
16750     - kmeter1: Add MTD concat support to Keymile boards
16751     - 82xx, mgcoge: add "unlock=yes" to default environment
16752     - added CONFIG_MTD_DEVICE to get in sync with mainline code
16753
16754     Signed-off-by: Heiko Schocher <hs@denx.de>
16755     Signed-off-by: Stefan Roese <sr@denx.de>
16756
16757 commit f14d81050a9e0fa57aedb1bc746c60a07c1ad67f
16758 Author: galak <galak@ducky.am.freescale.net>
16759 Date:   Tue Jul 7 15:53:21 2009 -0500
16760
16761     fsl_sata: Fix compiler warnings shown by gcc-4.4
16762
16763     Update fsl_sata to use common structures instead of casting
16764     back and forth between the fsl specific ones and the common ones
16765     (which are identical).
16766
16767     fsl_sata.c: In function 'scan_sata':
16768     fsl_sata.c:550: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
16769     fsl_sata.c:549: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
16770     fsl_sata.c:548: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
16771     fsl_sata.c:545: note: initialized from here
16772     fsl_sata.c:592: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
16773     fsl_sata.c:590: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
16774     fsl_sata.c:588: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
16775     fsl_sata.c:586: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
16776     fsl_sata.c:579: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
16777     ...
16778
16779     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16780
16781 commit 20938e54a207472a090f04f20f30c9e32b14137e
16782 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
16783 Date:   Tue Jul 7 15:58:51 2009 +0200
16784
16785     Add unaligned.h for arm
16786
16787     This patch adds unaligned.h for ARM (needed to build with LZO
16788     compression). The file is taken from the linux kernel, but includes
16789     u-boot headers instead.
16790
16791     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
16792     Acked-by: Stefan Roese <sr@denx.de>
16793
16794 commit 433ea8abd6adfae3138dd4ce238237a037e1e537
16795 Author: Peter Tyser <ptyser@xes-inc.com>
16796 Date:   Sun Jul 19 19:17:42 2009 -0500
16797
16798     Remove last remanants of unused CONFIG_I2C_CMD_TREE
16799
16800     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16801
16802 commit f6ca3b70949790ab5438d6c9a592216cc3616110
16803 Author: Andrzej Wolski <awolski@poczta.fm>
16804 Date:   Fri Jul 17 22:26:54 2009 +0200
16805
16806     ubi: help message correction
16807
16808     Fix incorrect information about size units and correct typo.
16809
16810     Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
16811     Signed-off-by: Stefan Roese <sr@denx.de>
16812
16813 commit 22f2017c31bc682e9b15612a5c2580ab5b84418e
16814 Author: Peter Tyser <ptyser@xes-inc.com>
16815 Date:   Sun Jul 19 19:17:42 2009 -0500
16816
16817     Remove last remanants of unused CONFIG_I2C_CMD_TREE
16818
16819     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16820
16821 commit f99a292aa6083057f5db8283d2ce4a2be22b8856
16822 Author: Andrzej Wolski <awolski@poczta.fm>
16823 Date:   Fri Jul 17 22:26:54 2009 +0200
16824
16825     ubi: help message correction
16826
16827     Fix incorrect information about size units and correct typo.
16828
16829     Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
16830     Signed-off-by: Stefan Roese <sr@denx.de>
16831
16832 commit b86b85e2611d57d834795a92453431a1a340c3c9
16833 Author: Ilya Yanok <yanok@emcraft.com>
16834 Date:   Mon Jun 29 17:53:16 2009 +0400
16835
16836     mmc: set bus width to 1 and clock to minimum early during initialization
16837
16838     We need to switch back to 1-bit before initialization or SD 2.0 cards
16839     will fail to send SCR if we've switched to 4-bit already.
16840
16841     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
16842
16843 commit cff80f2cd12bf9767509b5334ecfc90cd7de5502
16844 Author: Shinya Kuribayashi <skuribay@pobox.com>
16845 Date:   Sat Jun 20 19:14:33 2009 +0900
16846
16847     config.mk: Remove unused HPATH
16848
16849     This variable is not unused anywhere.
16850
16851     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
16852
16853 commit a781de12700e2cb3d3011fc83b47f7dd8cc3c154
16854 Author: Grzegorz Bernacki <gjb@semihalf.com>
16855 Date:   Wed Jun 17 16:20:14 2009 +0200
16856
16857     digsy mtc: Enable command line history.
16858
16859     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
16860
16861 commit 37566090766d61beef70c62986b90749920255d8
16862 Author: Mike Frysinger <vapier@gentoo.org>
16863 Date:   Thu Jul 2 19:23:25 2009 -0400
16864
16865     compiler.h: unify system ifdef cruft here
16866
16867     Shove a lot of the HOSTCC and related #ifdef checking crap into the new
16868     compiler.h header so that we can keep all other headers nice and clean.
16869
16870     Also introduce custom uswap functions so we don't have to rely on the non
16871     standard implementations that a host may (or may not in the case of OS X)
16872     provide.  This allows mkimage to finally build cleanly on an OS X system.
16873
16874     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16875
16876 commit 2a2ed845c085eb093b69fa6382fcf7534bb1f4b0
16877 Author: Kim Phillips <kim.phillips@freescale.com>
16878 Date:   Mon Jun 15 11:50:40 2009 -0500
16879
16880     common: fix 'dummy' is used uninitialized in this function warning
16881
16882     fix this gcc 4.4 warning:
16883
16884     xyzModem.c: In function 'xyzModem_stream_open':
16885     xyzModem.c:564: warning: 'dummy' is used uninitialized in this function
16886
16887     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16888
16889 commit 1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460
16890 Author: Mike Frysinger <vapier@gentoo.org>
16891 Date:   Sun Jun 14 23:33:14 2009 -0400
16892
16893     push CROSS_COMPILE out to $(ARCH)_config.mk
16894
16895     Each arch should handle setting a proper default CROSS_COMPILE value in
16896     their own config.mk file rather than having to maintain a large ugly list
16897     in the Makefile.  By using conditional assignment, we don't have to worry
16898     about the variable already being set (env/cmdline/etc...).
16899
16900     The common config.mk file takes care of exporting CROSS_COMPILE already,
16901     and while a few variables (toolchain ones) utilize CROSS_COMPILE before
16902     including the arch config.mk, they do so with deferred assignment.
16903
16904     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16905
16906 commit 60a3f404acbf8238a3138fe1f80a6bac75da4582
16907 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16908 Date:   Sat Jun 13 12:55:37 2009 +0200
16909
16910     malloc.h: protect it against multiple include
16911
16912     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16913
16914 commit 7640f41988a456a0b1f05263d2e2dc5cd7d93984
16915 Author: Wolfgang Denk <wd@denx.de>
16916 Date:   Sun Jul 19 19:37:24 2009 +0200
16917
16918     Fix boards broken after removal of legacy NAND and DoC support
16919
16920     Commit 2419169f removed support for legacy NAND and disk on chip but
16921     missed to update the code for a few boards. This patch fixes the
16922     resulting build issues.
16923
16924     Signed-off-by: Wolfgang Denk <wd@denx.de>
16925
16926 commit 1a4664b53aaf23687b52d64b94be06a9aa260b86
16927 Author: Wolfgang Denk <wd@denx.de>
16928 Date:   Sun Jul 19 19:32:37 2009 +0200
16929
16930     cmd_flash.c: fix fix compile error for boards with DataFlash
16931
16932     Commit 5669ed45 ("cmd_flash.c: fix warning: unused variable
16933     'addr_first'/'addr_last'") changed the #ifdef logic areound the
16934     declaration of these variables and missed a combination of settings
16935     of HAS_DATAFLASH with SYS_NO_FLASH; this patch fixes this.
16936
16937     Also spotted by Alessandro Rubini <rubini@gnudd.com>
16938
16939     Signed-off-by: Wolfgang Denk <wd@denx.de>
16940
16941 commit 341245a28830d3261c41b09d958eeea7bb93587a
16942 Author: Wolfgang Denk <wd@denx.de>
16943 Date:   Sun Jul 19 12:05:15 2009 +0200
16944
16945     pcm030: fix out-of-tree building
16946
16947     Commit 0a87dd90 that was supposed to fix out-of-tree building for the
16948     pcm030 board was unfortunately incomplete.
16949
16950     Signed-off-by: Wolfgang Denk <wd@denx.de>
16951
16952 commit 8bf29b59fce8cc381114929082202d800e313ad5
16953 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
16954 Date:   Tue Jul 7 13:58:51 2009 +0200
16955
16956     Add unaligned.h for arm
16957
16958     This patch adds unaligned.h for ARM (needed to build with LZO
16959     compression). The file is taken from the linux kernel, but includes
16960     u-boot headers instead.
16961
16962     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
16963     Acked-by: Stefan Roese <sr@denx.de>
16964
16965 commit e405afab1dda66c9df3733f6b779d72fc36a0162
16966 Author: Kazuaki Ichinohe <kazuichi@fsi.co.jp>
16967 Date:   Fri Jun 12 18:10:12 2009 +0900
16968
16969     Canyonlands SATA harddisk driver
16970
16971     This patch adds a SATA harddisk driver for the canyonlands.
16972     This patch is kernel driver's porting.
16973     This patch corresponded to not cmd_scsi but cmd_sata.
16974     This patch divided an unused member with ifndef __U_BOOT__ in the structure.
16975
16976     [environment variable, boot script]
16977     setenv bootargs root=/dev/sda7 rw
16978     setenv bootargs ${bootargs} console=ttyS0,115200
16979     ext2load sata 0:2 0x400000 /canyonlands/uImage
16980     ext2load sata 0:2 0x800000 /canyonlands/canyonlands.dtb
16981     fdt addr 0x800000 0x4000
16982     bootm 0x400000 - 0x800000
16983
16984     If you drive SATA-2 disk on Canyonlands, you must change parts from
16985     PI2PCIE212 to PI2PCIE2212 on U25. We confirmed to boot by using
16986     following disks:
16987
16988     1.Vendor: Fujitsu    Type: MHW2040BS
16989     2.Vendor: Fujitsu    Type: MHW2060BK
16990     3.Vendor: HAGIWARA SYS-COM:HFD25S-032GT
16991     4.Vendor: WesternDigital Type: WD3200BJKT (CONFIG_LBA48 required)
16992     5.Vendor: WesternDigital Type: WD3200BEVT (CONFIG_LBA48 required)
16993     6.Vendor: Hitachi    Type: HTS543232L9A300 (CONFIG_LBA48 required)
16994     7.Vendor: Seagate    Type: ST31000333AS (CONFIG_LBA48 required)
16995     8.Vendor: Transcend  Type: TS32GSSD25S-M
16996     9.Vendor: MTRON              Type: MSD-SATA1525-016
16997
16998     Signed-off-by: Kazuaki Ichinohe <kazuichi at fsi.co.jp>
16999
17000 commit 52a0e2dee90c17e39634de814b16b96061cfb472
17001 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
17002 Date:   Wed Jun 10 19:09:40 2009 +0200
17003
17004     Add support for the Tundra TSI148 VME-bridge
17005
17006     From: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
17007
17008     This patch adds support for the Tundra TSI148 VME-bridge. It's used on
17009     the upcoming esd VME8349 board.
17010
17011     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
17012     Signed-off-by: Stefan Roese <sr@denx.de>
17013
17014 commit 8d1fea2c4041e665c96944e3f6fcffbde55db34b
17015 Author: Mike Frysinger <vapier@gentoo.org>
17016 Date:   Thu Jul 16 19:05:30 2009 -0400
17017
17018     Blackfin: bf537-{minotaur,srv1}: do not hardcode CONFIG_ETHADDR
17019
17020     MAC addresses should not be hardcoded in boards to avoid random link level
17021     conflicts.
17022
17023     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17024
17025 commit baf357050353aee30c04f3f4b868426cb54468ca
17026 Author: Mike Frysinger <vapier@gentoo.org>
17027 Date:   Fri Jul 10 10:42:06 2009 -0400
17028
17029     Blackfin: bf533-stamp: back down SCLK a bit
17030
17031     While the 1.0 and 1.2 spin of the bf533-stamp boards can handle the higher
17032     SCLK speeds just fine, the 1.1 spin cannot due to the bugs introduced with
17033     the shortened SDRAM traces.  So lower the SCLK speed down to a value that
17034     all three can handle.
17035
17036     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17037
17038 commit 490fe7349102012c48730f6fc14ef36c8d155068
17039 Author: Mike Frysinger <vapier@gentoo.org>
17040 Date:   Thu Jul 9 20:56:56 2009 -0400
17041
17042     Blackfin: split cpu COBJS into multilines
17043
17044     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17045
17046 commit 909878fd3fda056d19b8b51a5cc51cb1c0b563d1
17047 Author: Mike Frysinger <vapier@gentoo.org>
17048 Date:   Thu Jul 9 01:15:05 2009 -0400
17049
17050     Blackfin: add os log functions
17051
17052     Part of the mini Blackfin ABI with operating systems is that they can use
17053     0x4f0-0x4f8 to pass log buffers to/from bootloaders.  So add support to
17054     U-Boot for reading the log buffer.
17055
17056     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17057
17058 commit 9993e196da707a0a1cd4584f1fcef12382c1c144
17059 Author: Kim Phillips <kim.phillips@freescale.com>
17060 Date:   Sat Jul 18 18:42:13 2009 -0500
17061
17062     mpc83xx: convert all remaining boards over to 83XX_GENERIC_PCI
17063
17064     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17065
17066 commit d39041fcadb1231430201d298c31f6be03d654f7
17067 Author: Wolfgang Denk <wd@denx.de>
17068 Date:   Sun Jul 19 01:15:52 2009 +0200
17069
17070     PATI board: fix compiler warnings
17071
17072     Fix these:
17073     pati.c: In function 'checkboard':
17074     pati.c:358: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness
17075     ../common/flash.c: In function 'write_word':
17076     ../common/flash.c:824: warning: dereferencing type-punned pointer will break strict-aliasing rules
17077     cmd_pati.c: In function 'do_pati':
17078     cmd_pati.c:279: warning: 'value' may be used uninitialized in this function
17079
17080     Signed-off-by: Wolfgang Denk <wd@denx.de>
17081
17082 commit 28c345042eafc550a34b9f52431bd4a22af6ac25
17083 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17084 Date:   Sat May 16 12:14:56 2009 +0200
17085
17086     mpl: printing current stdio devices cleanup
17087
17088     Currently the mpl boards duplicate the code to print the current
17089     devices from common/console.c; use stdio_print_current_devices()
17090     instead
17091
17092     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17093
17094     Edited commit message.
17095
17096     Signed-off-by: Wolfgang Denk <wd@denx.de>
17097
17098 commit 7e3be7cf3bb344f717b6ec3d47a081269ea67ead
17099 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17100 Date:   Sat May 16 12:14:55 2009 +0200
17101
17102     console: unify printing current devices
17103
17104     Create stdio_print_current_devices() for this purpose
17105
17106     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17107
17108 commit 5669ed4557edf2714203aa8625c9fcd5a753b338
17109 Author: Wolfgang Denk <wd@denx.de>
17110 Date:   Sat Jul 18 23:18:14 2009 +0200
17111
17112     cmd_flash.c: fix warning: unused variable 'addr_first'/'addr_last'
17113
17114     Signed-off-by: Wolfgang Denk <wd@denx.de>
17115
17116 commit 6bb6e6c75ec4ef496f00f7f530e549d3e073c5de
17117 Author: Tom Rix <Tom.Rix@windriver.com>
17118 Date:   Tue Jun 30 15:04:13 2009 -0500
17119
17120     OMAP3 Fix compiler warning for v7_flush_dcache_all
17121
17122     On build of omap3 targets in MAKEALL, the *.ERR files have
17123
17124     cpu.c: In function 'cleanup_before_linux':
17125     cpu.c:64: warning: implicit declaration of function 'v7_flush_dcache_all'
17126     cpu.c:64: warning: implicit declaration of function 'get_device_type
17127
17128     The functions v7_flush_dcache_all and get_device_type are declared
17129     in include/asm-arm/arch-omap3/sys_proto.h, so use this file to
17130     declare the functions.
17131
17132     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
17133
17134 commit dba107b967332fc8a35867f4d58038626c968800
17135 Author: Wolfgang Denk <wd@denx.de>
17136 Date:   Sat Jul 18 22:09:38 2009 +0200
17137
17138     ARM: make split_by_variant.sh output more useful
17139
17140     The board/armltd/integrator/split_by_variant.sh script used to print
17141     "Configuring for integrator*p board..." no matter which board name
17142     was being compiled. This made it difficult to match MAKEALL output to
17143     board names. This patch fixes this.
17144
17145     Signed-off-by: Wolfgang Denk <wd@denx.de>
17146
17147 commit 2eb99ca8029b44c988d5f6312f97e68d3b9cb2bd
17148 Author: Wolfgang Denk <wd@denx.de>
17149 Date:   Sat Jul 18 21:52:24 2009 +0200
17150
17151     NAND: Part 2: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
17152
17153     Commit 8d2effea added a warning for configurations that use NAND
17154     without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
17155     failed to fix the affected boards.
17156
17157     This patch covers the non-PPC boards that were missed in the previous
17158     patch (commit 170c1972).
17159
17160     Signed-off-by: Wolfgang Denk <wd@denx.de>
17161
17162 commit 7024aa14df2981b4e65c6189909da9aadb1c22da
17163 Author: Wolfgang Denk <wd@denx.de>
17164 Date:   Sat Jul 18 20:46:38 2009 +0200
17165
17166     at91cap9adk: fix #ifdef/#endif pairing
17167
17168     The #ifdef/#endif pairing in this file was obviously messed up.
17169
17170     Signed-off-by: Wolfgang Denk <wd@denx.de>
17171
17172 commit 4abc5bffea244589fa1097e4c899a63efc609c8e
17173 Author: Prafulla Wadaskar <prafulla@marvell.com>
17174 Date:   Thu Jul 16 20:58:01 2009 +0530
17175
17176     Marvell MV88F6281GTW_GE Board support
17177
17178     This is Marvell's 88F6281_A0 based custom board developed
17179     for wireless access point product
17180
17181     This patch is tested for-
17182     1. Boot from DRAM/SPI flash/NFS
17183     2. File transfer using tftp and loadb
17184     3. SPI flash read/write/erase
17185     4. Booting Linux kernel and RFS from SPI flash
17186     5. Boot from USB supported
17187
17188     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
17189     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
17190
17191 commit 55dd4ba5413b14e8ee24058c89ac5c05376c331c
17192 Author: Prafulla Wadaskar <prafulla@marvell.com>
17193 Date:   Thu Jul 16 20:58:00 2009 +0530
17194
17195     Marvell Sheevaplug Board support
17196
17197     Reference:
17198     http://plugcomputer.org/
17199     http://openplug.org/plugwiki/index.php/Das_U-boot_plug_support
17200
17201     This patch is tested for-
17202     1. Boot from DRAM/NAND flash
17203     2. File transfer using tftp
17204     3. NAND flash read/write/erase
17205     4. Linux kernel and RFS Boot from NAND
17206     5. Enabled USB PHY init for kernel need
17207     6. Boot from USB supported
17208
17209     Note: to boot Kirkwood kernel with USB support,
17210         you should add "usb start" in the boot sequence
17211
17212     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
17213
17214 commit 0a87dd90a75d034301496285026fbd8106c7c6d5
17215 Author: Wolfgang Denk <wd@denx.de>
17216 Date:   Sat Jul 18 18:00:25 2009 +0200
17217
17218     pcm030: fix out-of-tree building
17219
17220     Commit c9969947, which added support for the pcm030 board
17221     (aka phyCORE-MPC5200B-tiny), broke out-of-tree building.
17222
17223     Signed-off-by: Wolfgang Denk <wd@denx.de>
17224
17225 commit 9ff59601c71e800b9d0dfde22fa70d12c71c12b4
17226 Author: Wolfgang Denk <wd@denx.de>
17227 Date:   Sat Jul 18 16:36:11 2009 +0200
17228
17229     MPC837XERDB: fix warning: "CONFIG_SYS_MONITOR_LEN" redefined
17230
17231     Signed-off-by: Wolfgang Denk <wd@denx.de>
17232
17233 commit 2b5243fc24a724e83409c0b70caa1a3180e997ae
17234 Author: Wolfgang Denk <wd@denx.de>
17235 Date:   Sat Jul 18 16:13:18 2009 +0200
17236
17237     8xxx: fix warning: implicit declaration of function 'uec_standard_init'
17238
17239     Commit 8e55258f created function uec_standard_init() to initialize
17240     all UEC interfaces for 83xx and 85xx but failed to provide a
17241     prototype for it.
17242
17243     Signed-off-by: Wolfgang Denk <wd@denx.de>
17244
17245 commit 5b54df2674fdad5e7d316484c67efc68e79f3f0d
17246 Author: Wolfgang Denk <wd@denx.de>
17247 Date:   Sat Jul 18 15:46:02 2009 +0200
17248
17249     MIP405T: fix compile problem
17250
17251     The "stdio/device: rework function naming convention" patch
17252     (commit 52cb4d4f) broke the MIP405T board; this patch fixes it.
17253
17254     Signed-off-by: Wolfgang Denk <wd@denx.de>
17255
17256 commit 170c19725ecd3a0e2e517dfd49979ca8822edec0
17257 Author: Wolfgang Denk <wd@denx.de>
17258 Date:   Sat Jul 18 15:32:10 2009 +0200
17259
17260     NAND: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
17261
17262     Commit 8d2effea added a warning for configurations that use NAND
17263     without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
17264     failed to fix the affected boards.
17265
17266     Signed-off-by: Wolfgang Denk <wd@denx.de>
17267
17268 commit 6e897a661fb9968ce354165a12cce82e4b889e04
17269 Author: Wolfgang Denk <wd@denx.de>
17270 Date:   Sat Jul 18 15:05:44 2009 +0200
17271
17272     CPCI750: fix compile problem
17273
17274     Commit bc0d3296 removed ppc_error_no.h from Marvell boards
17275     but forgot to update board/esd/cpci750/mv_eth.h
17276
17277     Signed-off-by: Wolfgang Denk <wd@denx.de>
17278
17279 commit 6aee3048348f1b19ab89156da98bfa4f7babf24b
17280 Author: Alessandro Rubini <rubini-list@gnudd.com>
17281 Date:   Fri Jul 17 14:42:11 2009 +0200
17282
17283     cmd_i2c: bugfix: add missing brace
17284
17285     The sub-command parser missed a brace, so "return 0;" is always
17286     taken and no error message is diplayed if you say "i2c scan"
17287     instead of "i2c probe", for example.
17288
17289     Proper brace is added. Also, a misleading and unneeded else
17290     is removed.
17291
17292     Signed-off-by: Alessandro Rubini <rubini@gnudd.com.it>
17293
17294 commit 52cb4d4fb3487313f5a72ea740f527a4aefaa365
17295 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17296 Date:   Sat May 16 12:14:54 2009 +0200
17297
17298     stdio/device: rework function naming convention
17299
17300     So far the console API uses the following naming convention:
17301
17302         ======Extract======
17303         typedef struct device_t;
17304
17305         int     device_register (device_t * dev);
17306         int     devices_init (void);
17307         int     device_deregister(char *devname);
17308         struct list_head* device_get_list(void);
17309         device_t* device_get_by_name(char* name);
17310         device_t* device_clone(device_t *dev);
17311         =======
17312
17313     which is too generic and confusing.
17314
17315     Instead of using device_XX and device_t we change this
17316     into stdio_XX and stdio_dev
17317
17318     This will also allow to add later a generic device mechanism in order
17319     to have support for multiple devices and driver instances.
17320
17321     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17322
17323     Edited commit message.
17324
17325     Signed-off-by: Wolfgang Denk <wd@denx.de>
17326
17327 commit f732a7598fa36d48241df20b1a1f4cdbf09f75ee
17328 Author: Peter Tyser <ptyser@xes-inc.com>
17329 Date:   Wed Jul 15 00:01:08 2009 -0500
17330
17331     ppc: Fix compile error for boards with CONFIG_DDR_ECC
17332
17333     A bug was introduced by commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
17334     which affected non-MPC83xx/85xx/86xx ppc boards which had CONFIG_DDR_ECC
17335     defined and resulted in errors such as:
17336
17337     Configuring for canyonlands board...
17338     fsl_dma.c:50:2: error: #error "Freescale DMA engine not supported on your
17339     processor"
17340     make[1]: *** No rule to make target `.depend', needed by `libdma.a'.  Stop.
17341
17342     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17343
17344 commit 18e067de9b6ed087fa60496e64887f0b7458dbaa
17345 Author: Prafulla Wadaskar <prafulla@marvell.com>
17346 Date:   Thu Jul 16 20:57:59 2009 +0530
17347
17348     include/config_cmd_default.h cleanup
17349
17350     arranged configurations in alphabetical order
17351     CONFIG_CMD_FLASH moved under ifndef CONFIG_SYS_NO_FLASH
17352
17353     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
17354
17355 commit 569460ebf14b87bd8fdb2352bde95d35ee96e13b
17356 Author: Mike Frysinger <vapier@gentoo.org>
17357 Date:   Sun Jun 14 21:35:22 2009 -0400
17358
17359     sata: namespace curr_device variable
17360
17361     The curr_device variable really should be namespaced with a "sata_" prefix
17362     since it is only used by the sata code.  It also avoids random conflicts
17363     with other pieces of code (like cmd_mmc):
17364     common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
17365         multiple definition of `curr_device'
17366     common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
17367
17368     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17369
17370 commit 02e22c2de1ce2312f2636fa473a60c8d8f18d8aa
17371 Author: Mike Frysinger <vapier@gentoo.org>
17372 Date:   Sun Jun 14 21:35:21 2009 -0400
17373
17374     cmd_mmc: make curr_device static
17375
17376     The curr_device variable isn't used outside of cmd_mmc, so mark it static
17377     to avoid conflicts with other pieces of code (like sata which also exports
17378     a curr_device).  Otherwise we end up with stuff like:
17379     common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
17380         multiple definition of `curr_device'
17381     common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
17382
17383     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17384
17385 commit 2d8d2adde3fce1152e4ad9f47238f07e70793c53
17386 Author: Mike Frysinger <vapier@gentoo.org>
17387 Date:   Sun Jun 14 21:35:16 2009 -0400
17388
17389     envcrc: add missing dependencies on env storage
17390
17391     When the envcrc building was made conditional, it missed a bunch of env
17392     storage types, so add all currently supported types.
17393
17394     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17395
17396 commit 2419169f5749d7af501b3b77a5336d1d535320de
17397 Author: Scott Wood <scottwood@freescale.com>
17398 Date:   Thu Jul 16 19:08:04 2009 -0500
17399
17400     Remove legacy NAND and disk on chip references from boards.
17401
17402     Signed-off-by: Scott Wood <scottwood@freescale.com>
17403
17404 commit 12e9043c7ed961b60df865f45d9a3c74d6a38199
17405 Author: Shinya Kuribayashi <skuribay@pobox.com>
17406 Date:   Sat Jun 20 19:10:14 2009 +0900
17407
17408     config.mk: Remove $(PCI_CLOCK) reference
17409
17410     The following commit introduced $(PCI_CLOCK) reference so that
17411     we could tweak `PCI_66M' definition via an environment variable.
17412
17413     > commit f046ccd15c8bc9613bfd72916b761a127d36e5c6
17414     > Author: Eran Liberty <liberty@freescale.com>
17415     > Date:   Thu Jul 28 10:08:46 2005 -0500
17416     >
17417     >     * Patch by Eran Liberty
17418     >       Add support for the Freescale MPC8349ADS board.
17419
17420     But I suggest a removal of it for the following reasons:
17421
17422     * In 2006, MPC8349ADS was merged into MPC8349EMDS port,
17423       and it seems that MPC8349EMDS port is PCI_66M free.
17424
17425     * OTOH, PCI_66M is used by MPC832XEMDS an MPC8360EMDS ports,
17426       but they don't need $(PCI_CLOCK) environment variable at all.
17427       PCI_66M is automatically configured via $(BOARD)_config names
17428       with the help of $(findstring _66_,$@).
17429
17430     * Unfortunately $(PCI_CLOCK) has been undocumented anywhere,
17431       so only a few people know the existence of it these days.
17432
17433     * Keep config.mk independent from $(BOARD) as much as possible.
17434
17435     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
17436     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17437
17438 commit 3db75d9c11d37cc1d28bebd91b19f4e548b68155
17439 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17440 Date:   Sat May 23 21:42:36 2009 +0200
17441
17442     fix: missing autoconfig.mk from general Makefile
17443
17444     At the first run of make we generate the autoconf.mk and
17445     autoconf.mk.dep if not already the case and we currently include only
17446     to .dep
17447
17448     In order to use these autogenerated values we need to include it also
17449     even if it's included in config.mk but it's done before their
17450     generation
17451
17452     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17453     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17454
17455 commit 1ca298ced07327749b54321815f76fcddb2f9479
17456 Author: Matthias Weisser <matthias.weisser@graf-syteco.de>
17457 Date:   Thu Jul 9 16:07:30 2009 +0200
17458
17459     Added support for splash screen positioning
17460
17461     This patch adds support splash image positioning by adding an
17462     additional variable "splashpos" to the environment. Please see
17463     README for details.
17464
17465     Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de>
17466     Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
17467     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17468
17469 commit 9d173e0233493113c9b1aa81bd2208d0057ab9db
17470 Author: Anatolij Gustschin <agust@denx.de>
17471 Date:   Tue Jul 7 13:11:36 2009 +0200
17472
17473     video: mb862xx: replace printf with puts
17474
17475     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17476
17477 commit cce99b2a7dd80683d61360aee56a6ece344950b2
17478 Author: Anatolij Gustschin <agust@denx.de>
17479 Date:   Tue Jul 7 13:27:07 2009 +0200
17480
17481     video: mb862xx: use macros instead of magic numbers
17482
17483     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17484
17485 commit e86528671ece6d5c1162656a37fc68a8e0bf67f8
17486 Author: Anatolij Gustschin <agust@denx.de>
17487 Date:   Tue Jul 7 13:24:08 2009 +0200
17488
17489     video: mb862xx: fix coding style and remove dead code
17490
17491     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17492
17493 commit 292ed489dba8cc97b458579003a8001cd4703cd8
17494 Author: Michal Simek <monstr@monstr.eu>
17495 Date:   Tue Jun 30 12:03:50 2009 +0200
17496
17497     microblaze: Remove ignored return type for __arch__swab16 function
17498
17499     This change remove compilation warnings.
17500
17501     Signed-off-by: Michal Simek <monstr@monstr.eu>
17502
17503 commit e2776587c0eac131954ae100fda89cc3e7ed8b57
17504 Author: Michal Simek <monstr@monstr.eu>
17505 Date:   Tue Jun 30 12:02:45 2009 +0200
17506
17507     microblaze: Removed unused variables
17508
17509     Signed-off-by: Michal Simek <monstr@monstr.eu>
17510
17511 commit be33b046b549ad88c204c209508cd7657232ffbd
17512 Author: Scott Wood <scottwood@freescale.com>
17513 Date:   Wed Apr 1 15:02:13 2009 -0500
17514
17515     Remove legacy NAND and disk on chip code.
17516
17517     Legacy NAND had been scheduled for removal.  Any boards that use this
17518     were already not building in the previous release due to an #error.
17519
17520     The disk on chip code in common/cmd_doc.c relies on legacy NAND,
17521     and it has also been removed.  There is newer disk on chip code
17522     in drivers/mtd/nand; someone with access to hardware and sufficient
17523     time and motivation can try to get that working, but for now disk
17524     on chip is not supported.
17525
17526     Signed-off-by: Scott Wood <scottwood@freescale.com>
17527
17528 commit fbdaafaee71e2c7f2c31b3582ab6d8679efee8d3
17529 Author: Stefan Roese <sr@denx.de>
17530 Date:   Thu Jun 4 16:40:36 2009 +0200
17531
17532     nand: Change NAND_MAX_OOBSIZE to 218 as needed for some 4k page devices
17533
17534     This is needed for the MPC512x NAND driver (fsl_nfc_nand.c) which already
17535     defines such a 4k plus 218 bytes ECC layout.
17536
17537     Signed-off-by: Stefan Roese <sr@denx.de>
17538     Cc: Scott Wood <scottwood@freescale.com>
17539     Signed-off-by: Scott Wood <scottwood@freescale.com>
17540
17541 commit f2f376ab956c17d4a0c42a993133ca25cdc87278
17542 Author: Stefan Roese <sr@denx.de>
17543 Date:   Thu Jul 16 15:13:04 2009 +0200
17544
17545     nand: ndfc: Remove unnecessary #ifdef's
17546
17547     Now that the 4xx NAND driver ndfc is moved to the common NAND driver
17548     directory we don't need this #ifdef's anymore.
17549
17550     Signed-off-by: Stefan Roese <sr@denx.de>
17551     Cc: Scott Wood <scottwood@freescale.com>
17552     Signed-off-by: Scott Wood <scottwood@freescale.com>
17553
17554 commit 12582ac771b0bf3852817c3bfa4be326522a0665
17555 Author: Stefan Roese <sr@denx.de>
17556 Date:   Thu Jul 16 15:12:48 2009 +0200
17557
17558     nand/ppc4xx: Move PPC4xx NAND driver to common NAND driver directory
17559
17560     Signed-off-by: Stefan Roese <sr@denx.de>
17561     Cc: Scott Wood <scottwood@freescale.com>
17562     Signed-off-by: Scott Wood <scottwood@freescale.com>
17563
17564 commit 3ebf70db5452d3d47c316ddef09f40e76553bcba
17565 Author: Valeriy Glushkov <gvv@lstec.com>
17566 Date:   Tue Jul 14 13:51:10 2009 +0300
17567
17568     nand: fixed failed reads on corrected ECC errors in nand_util.c
17569
17570     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
17571     Signed-off-by: Paulraj, Sandeep <s-paulraj@ti.com>
17572     Signed-off-by: Scott Wood <scottwood@freescale.com>
17573
17574 commit ed727d394c5ab139033719772dc95dc25cfa14f7
17575 Author: David Brownell <david-b@pacbell.net>
17576 Date:   Mon Jul 13 16:29:04 2009 -0700
17577
17578     Typo fix: use CONFIG_SOC_DM644X, not CONFIG_SOC_DM646.
17579
17580     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17581     Signed-off-by: Scott Wood <scottwood@freescale.com>
17582
17583 commit 937076f84c5064f0a79105fce352ac7cf7b33643
17584 Author: Kyungmin Park <kmpark@infradead.org>
17585 Date:   Sat Jul 11 16:49:55 2009 +0900
17586
17587     MTD: OneNAND: Increase the environment size to 4KiB
17588
17589     Also use mtd operation instead of onenand functions
17590
17591     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
17592     Signed-off-by: Scott Wood <scottwood@freescale.com>
17593
17594 commit bfadb17f69c256196620c32164775f063a59c34f
17595 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17596 Date:   Wed Jun 10 00:25:38 2009 +0400
17597
17598     mpc83xx: MPC837xEMDS: Use hwconfig instead of pci_external_arbiter variable
17599
17600     Since we have simple hwconfig interface now, we don't need
17601     pci_external_arbiter variable any longer.
17602
17603     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17604     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17605
17606 commit b8b71ffbc35fde6905e65ffdbf4e4b87efc26b7e
17607 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17608 Date:   Wed Jun 10 00:25:36 2009 +0400
17609
17610     mpc83xx: MPC8315ERDB: Use hwconfig for board type selection
17611
17612     This patch simply converts the board to the hwconfig infrastructure.
17613
17614     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17615     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17616
17617 commit c78c678354c8321737aa07e86831ff14176f4ed5
17618 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17619 Date:   Wed Jun 10 00:25:31 2009 +0400
17620
17621     mpc83xx: MPC837XEMDS: Fixup eSDHC nodes in device tree
17622
17623     fdt_fixup_esdhc() will either disable or enable eSDHC nodes, and
17624     also will fixup clock-frequency property.
17625
17626     Plus, since DR USB and eSDHC are mutually exclusive, we should
17627     only configure the eSDHC if asked through hwconfig.
17628
17629     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17630     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17631
17632 commit c9646ed758804fa1fa6c1425369a4eee5d618b1d
17633 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17634 Date:   Wed Jun 10 00:25:30 2009 +0400
17635
17636     mpc83xx: MPC837XERDB: Add support for FSL eSDHC
17637
17638     This patch adds support for eSDHC on MPC837XERDB boards. The WP
17639     switch doesn't seem to work on RDB boards though, the WP pin is
17640     always asserted (can see the pin state when it's in GPIO mode).
17641
17642     FSL DR USB and FSL eSDHC are mutually exclusive because of pins
17643     multiplexing, so user should specify 'esdhc' or 'dr_usb' options
17644     in the hwconfig environment variable to choose between the
17645     devices.
17646
17647     p.s.
17648     Now we're very close to a monitor len limit (196 bytes left using
17649     gcc-4.2.0), so also increase the monitor len by one sector (64 KB).
17650
17651     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17652     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17653
17654 commit b33433a63fe08c9e723ea15a7c7c7143bf527c6d
17655 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17656 Date:   Wed Jun 10 00:25:29 2009 +0400
17657
17658     fsl_esdhc: Add device tree fixups
17659
17660     This patch implements fdt_fixup_esdhc() function that is used to fixup
17661     the device tree.
17662
17663     The function adds status = "disabled" propery if esdhc pins muxed away,
17664     otherwise it fixups clock-frequency for esdhc nodes.
17665
17666     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17667     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17668
17669 commit 93f9dcf9e8b8182e97aeb7965c687176cbd0b933
17670 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17671 Date:   Wed Jun 10 00:25:27 2009 +0400
17672
17673     Add simple hwconfig infrastructure
17674
17675     This patch implements simple hwconfig infrastructure: an
17676     interface for software knobs to control a hardware.
17677
17678     This is very simple implementation, i.e. it is implemented
17679     via `hwconfig' environment variable. Later we could write
17680     some "hwconfig <enable|disable|list>" commands, ncurses
17681     interface for Award BIOS-like interface, and frame-buffer
17682     interface for AMI GUI[1] BIOS-like interface with mouse
17683     support[2].
17684
17685     Current implementation details/limitations:
17686
17687     1. Doesn't support options dependencies and mutual exclusion.
17688        We can implement this by integrating apt-get[3] into the
17689        u-boot. But I didn't bother yet.
17690
17691     2. Since we don't implement hwconfig command, i.e. we're working
17692        with the environement directly, there is no way to tell that
17693        toggling a particular option will need a reboot to take
17694        an effect. So, for now it's advised to always reboot the
17695        target after modifying hwconfig variable.
17696
17697     3. We support hwconfig options with arguments. For example,
17698
17699        set hwconfig dr_usb:mode=peripheral,phy_type=ulpi
17700
17701        That means:
17702        - dr_usb - enable Dual-Role USB controller;
17703        - dr_usb:mode=peripheral - USB in Function mode;
17704        - dr_usb:phy_type=ulpi - USB should work with ULPI PHYs;
17705
17706     The purpose of this simple implementation is to define some
17707     internal API and then we can continue improving user experience
17708     by adding more mature interface, like hwconfig command with
17709     bells and whistles. Or not adding, if we feel that current
17710     interface fits its needs.
17711
17712     [1] http://en.wikipedia.org/wiki/American_Megatrends
17713     [2] Regarding ncurses and GUI with mouse support -- I'm just
17714         kidding.
17715     [3] The comment regarding apt-get is also a joke, meaning that
17716         dependency tracking could be non-trivial. For example, for
17717         enabling HW feature X we may need to disable Y, and turn Z
17718         into reduced mode (like RMII-only interface for ethernet,
17719         no MII).
17720
17721         It's quite trivial to implement simple cases though.
17722
17723     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17724     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17725
17726 commit 6c3fef28b9fff0d7f3fa4c51c3ee0ae8c2a3b043
17727 Author: Jerry Van Baren <gvb.uboot@gmail.com>
17728 Date:   Wed Jul 15 20:42:59 2009 -0400
17729
17730     Improve U-Boot Porting Guide in the README
17731
17732     Update for...
17733     * BDI2000 -> BDI3000 (BDI2000 is obsolete).
17734     * Add a line to read the doc/README.* files
17735     * Fix coding standard violations
17736
17737     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
17738
17739 commit 9578718c1b085cac73017d834001bc5cb0b2f73f
17740 Author: Kim Phillips <kim.phillips@freescale.com>
17741 Date:   Tue Jul 14 16:00:24 2009 -0500
17742
17743     mtd: cfi - if defined, use MAX_FLASH_BANKS_DETECT for static declarations
17744
17745     a.k.a cfi_mtd.c does as cfi_flash.c does.  This also prevents
17746     the TQM834x build from doing a:
17747
17748     cfi_mtd.c:36: error: variably modified 'cfi_mtd_info' at file scope
17749     cfi_mtd.c:37: error: variably modified 'cfi_mtd_names' at file scope
17750
17751     using gcc 4.4.
17752
17753     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17754     Signed-off-by: Stefan Roese <sr@denx.de>
17755
17756 commit 4a9932a4364b548773bc131bf85e24a2ec15f2b0
17757 Author: Kim Phillips <kim.phillips@freescale.com>
17758 Date:   Tue Jul 7 18:04:21 2009 -0500
17759
17760     mpc83xx: increase MONITOR_LEN to offset growing pains
17761
17762     Saving the environment leads to overwriting u-boot itself,
17763     bricking boards.  Increase u-boot's image size so the environment
17764     base address doesn't end up overlapping u-boot text.
17765
17766     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17767
17768 commit c31e13260bcd048a94412a47b004386ea6112acf
17769 Author: Valeriy Glushkov <gvv@lstec.com>
17770 Date:   Tue Jun 30 15:48:41 2009 +0300
17771
17772     usb: mpx8349itx: added support of loading images from USB storage (MPH/DR)
17773
17774     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
17775     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17776
17777 commit d89e1c36891de793a20a929282acc0fc7b98feac
17778 Author: Valeriy Glushkov <gvv@lstec.com>
17779 Date:   Tue Jun 30 15:48:40 2009 +0300
17780
17781     usb: mpc834x: added support of the MPH USB controller in addition to the DR one
17782
17783     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
17784     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17785
17786 commit d9ac3d5a17ecef0beb70073018925e011b11684e
17787 Author: Kim Phillips <kim.phillips@freescale.com>
17788 Date:   Mon Jun 15 11:51:47 2009 -0500
17789
17790     mpc83xx: set 64BIT_VSPRINTF for boards using nand_util
17791
17792     When enabling NAND support for a board, one must also define
17793     CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
17794     for correct output.
17795
17796     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17797     Cc: Dave Liu <daveliu@freescale.com>
17798     Cc: Ron Madrid <ron_madrid@sbcglobal.net>
17799     Cc: Anton Vorontsov <avorontsov@ru.mvista.com>
17800
17801 commit 052c08916532d1d9c2f69eb9229709c7b2fc1f02
17802 Author: TsiChung Liew <tsicliew@gmail.com>
17803 Date:   Wed Jul 8 07:41:24 2009 +0000
17804
17805     ColdFire: Update bootargs
17806
17807     Add a bootargs for M53017EVB and update bootargs
17808     for M54451EVB
17809
17810     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
17811
17812 commit 6e8d58d36691520f8da74cd948661d28d5a5dc66
17813 Author: TsiChung Liew <tsicliew@gmail.com>
17814 Date:   Tue Jun 30 14:30:19 2009 +0000
17815
17816     Command for accessing serial flash update
17817
17818     Change strtoul number base of argv 3 from 0 to 16
17819
17820     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
17821
17822 commit ee0a8462466dd284968536eb57c6eef4be0d6aad
17823 Author: TsiChung Liew <tsicliew@gmail.com>
17824 Date:   Tue Jun 30 14:18:29 2009 +0000
17825
17826     ColdFire: Add DSPI support for MCF5227x and MCF5445x
17827
17828     Remove individual CPU specific DSPI driver.
17829     Add required feature for the common DSPI driver in cpu_init and
17830     in platform configuration file.
17831
17832     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
17833
17834 commit dec61c7851baa72151ef1d3657e7bb3b68907d48
17835 Author: TsiChung Liew <tsicliew@gmail.com>
17836 Date:   Tue Jun 30 14:09:47 2009 +0000
17837
17838     Coldfire: Consolidate DSPI driver
17839
17840     Unify both MCF5227x and MCF5445x DSPI driver in CPU to
17841     driver/spi folder for common use.
17842
17843     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
17844
17845 commit 11d88b26a68bd4bf98b1c962fde6257a50978231
17846 Author: TsiChung Liew <tsicliew@gmail.com>
17847 Date:   Fri Jun 12 13:03:34 2009 +0000
17848
17849     ColdFire: Remove compiler warning messages
17850
17851     Remove unused variables and printf type mismatch in
17852     lib_m68k/board.c
17853
17854     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
17855
17856 commit 4567c7bff2503fb1a7c738ff9b9f0bd00d274d9a
17857 Author: TsiChung Liew <tsicliew@gmail.com>
17858 Date:   Fri Jun 12 11:31:31 2009 +0000
17859
17860     ColdFire: Fix M53017EVB flash size
17861
17862     Increase the flash size from 8MB to 16MB
17863
17864     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
17865
17866 commit bf9a521529e484b15e8fdb583a607cf7945d2f6b
17867 Author: TsiChung Liew <tsicliew@gmail.com>
17868 Date:   Fri Jun 12 11:29:00 2009 +0000
17869
17870     ColdFire: Add M5208EVB and MCF520x CPU support
17871
17872     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
17873
17874 commit 709b384b6493d9726dce20663ebe31bf7cab2925
17875 Author: TsiChung Liew <tsicliew@gmail.com>
17876 Date:   Thu Jun 11 15:39:57 2009 +0000
17877
17878     ColdFire: Update for M54451EVB
17879
17880     Update serial boot DRAM's Internal RAM, vector table and DRAM in
17881     start.S, serial flash's read status command over SPI and NOR
17882     flash.
17883
17884     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
17885
17886 commit bbf6bbffcaf694c03504c661e58fbd1aefe5bf64
17887 Author: TsiChung Liew <tsicliew@gmail.com>
17888 Date:   Thu Jun 11 12:50:05 2009 +0000
17889
17890     ColdFire: Update configuration file to use flash buffer write
17891
17892     Update M52277EVB, M53017EVB and M54455EVB platform configuration
17893     file to use flash buffer write
17894
17895     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
17896
17897 commit 7d4450a9773673052fcd7fdf0a4a88c089126ac1
17898 Author: Wolfgang Denk <wd@denx.de>
17899 Date:   Sun Jun 14 20:58:53 2009 +0200
17900
17901     mpc5121ads: add JFFS2 and MTDPARTS support; adjust flash map
17902
17903     Signed-off-by: Wolfgang Denk <wd@denx.de>
17904
17905 commit 1f1f82f3de1660f398bf42bfd709b9859582ce5e
17906 Author: Wolfgang Denk <wd@denx.de>
17907 Date:   Sun Jun 14 20:58:52 2009 +0200
17908
17909     aria: add JFFS2 and MTDPARTS support; adjust flash map
17910
17911     Signed-off-by: Wolfgang Denk <wd@denx.de>
17912
17913 commit a6d6d46a4fef876455e11b45ed699c0fb3bd1ca1
17914 Author: Wolfgang Denk <wd@denx.de>
17915 Date:   Sun Jun 14 20:58:51 2009 +0200
17916
17917     aria: enable NAND flash support
17918
17919     Signed-off-by: Wolfgang Denk <wd@denx.de>
17920
17921 commit 13946925e850db5351982acb691d51716fc754e2
17922 Author: Wolfgang Denk <wd@denx.de>
17923 Date:   Sun Jun 14 20:58:50 2009 +0200
17924
17925     MPC512x: fix typo in comment listing the NAND driver name
17926
17927     Signed-off-by: Wolfgang Denk <wd@denx.de>
17928     Cc: Stefan Roese <sr@denx.de>
17929     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
17930
17931 commit 2ca6f74d09653f8041b52cafd0d650fdc2a56c51
17932 Author: Wolfgang Denk <wd@denx.de>
17933 Date:   Sun Jun 14 20:58:49 2009 +0200
17934
17935     mecp5123: cleanup - remove dead code
17936
17937     Remove dead code that was obviously a left-over from copy & paste.
17938
17939     Signed-off-by: Wolfgang Denk <wd@denx.de>
17940     Cc: Stefan Roese <sr@denx.de>
17941     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
17942
17943 commit 25671c8672f2d7b39555416a6b7a6b7b39b810bf
17944 Author: Wolfgang Denk <wd@denx.de>
17945 Date:   Sun Jun 14 20:58:48 2009 +0200
17946
17947     aria: adjust memory controller initialization
17948
17949     Needed for Rev. 2 silicon at 400 MHz
17950
17951     Signed-off-by: Wolfgang Denk <wd@denx.de>
17952
17953 commit 7629f1c06b6dea36bbc7bf70820b824e9b6d2227
17954 Author: Wolfgang Denk <wd@denx.de>
17955 Date:   Sun Jun 14 20:58:47 2009 +0200
17956
17957     MPC512x: factor out common code
17958
17959     Now that we have 3 boards for the MPC512x it turns out that they all
17960     use the very same fixed_sdram() code.
17961
17962     This patch factors out this common code into cpu/mpc512x/fixed_sdram.c
17963     and adds a new header file, include/asm-ppc/mpc512x.h, with some
17964     macros, inline functions and prototype definitions specific to MPC512x
17965     systems.
17966
17967     Signed-off-by: Wolfgang Denk <wd@denx.de>
17968     Cc: Stefan Roese <sr@denx.de>
17969     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
17970
17971 commit 0549353a6ba5aa03420c0962b9072e9cf1fa49d9
17972 Author: Wolfgang Denk <wd@denx.de>
17973 Date:   Sun Jun 14 20:58:46 2009 +0200
17974
17975     mecp5123: fix build error
17976
17977     The mecp5123 board did not compile because the MSCAN Clock Control
17978     Registers were missing; these got added, but as an array instead
17979     of 4 individual registers. Adapt the code so it builds.
17980
17981     Signed-off-by: Wolfgang Denk <wd@denx.de>
17982     Cc: Stefan Roese <sr@denx.de>
17983     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
17984
17985 commit a9905db5d29a56aedd7db5bcb56b0385873aa6a3
17986 Author: Wolfgang Denk <wd@denx.de>
17987 Date:   Sun Jun 14 20:58:45 2009 +0200
17988
17989     MPC512x: Add MSCAN1...4 Clock Control Registers
17990
17991     Signed-off-by: Wolfgang Denk <wd@denx.de>
17992     Cc: Stefan Roese <sr@denx.de>
17993     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
17994
17995 commit f5489c4200b37c9a1d6dbde116f5adc0539610de
17996 Author: Wolfgang Denk <wd@denx.de>
17997 Date:   Sun Jun 14 20:58:44 2009 +0200
17998
17999     MPC512x: enabling NAND support requires CONFIG_SYS_64BIT_VSPRINTF
18000
18001     When enabling NAND support for a board, one must also define
18002     CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
18003     for correct output.
18004
18005     Signed-off-by: Wolfgang Denk <wd@denx.de>
18006     Cc: Stefan Roese <sr@denx.de>
18007     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
18008
18009 commit b4db4a7638ef90cf0aacf7b954d9bf3043dda780
18010 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
18011 Date:   Fri Jul 10 18:03:57 2009 +0800
18012
18013     issue write command to base for JEDEC flash
18014
18015     For JEDEC flash, we should issue word programming command relative to
18016     base address rather than sector base address. Original source makes
18017     SST Flash fails to program sectors which are not on the 0x10000 boundaries.
18018
18019     e.g.
18020     SST39LF040 uses addr1=0x5555 and addr2=0x2AAA, however, each sector
18021     is 0x1000 bytes.
18022
18023     Thus, if we issue command to "sector base (0x41000) + offset(0x5555)",
18024     it sends to 0x46555 and the chip fails to recognize that address.
18025
18026     This patch is tested with SST39LF040.
18027
18028     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
18029     Signed-off-by: Stefan Roese <sr@denx.de>
18030
18031 commit 986922714ffd21ad39f48522d285fffc7aed56b1
18032 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18033 Date:   Sat May 2 11:53:50 2009 +0200
18034
18035     versatile: update config and merge to cfi flash driver
18036
18037     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18038     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
18039     Cc: Catalin Marinas <catalin.marinas@arm.com>
18040
18041 commit d6e8ed832b25d5db4fdd3fb91e73028e494dcd6e
18042 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18043 Date:   Sat May 2 11:53:49 2009 +0200
18044
18045     versatile: specify the board type on the prompt
18046
18047     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18048     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
18049     Cc: Catalin Marinas <catalin.marinas@arm.com>
18050
18051 commit 5ccc2d99d61c81805348b0cd9f79731b271f7daf
18052 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
18053 Date:   Thu Jun 25 17:04:15 2009 +0200
18054
18055     at91: Introduction of at91sam9g10 SOC.
18056
18057     AT91sam9g10 is an ARM 926ej-s SOC. It is an evolution of the at91sam9261 with a
18058     faster clock speed: 266/133MHz.
18059
18060     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
18061
18062 commit 22ee647380c42f44528f99b7c1b423725e542102
18063 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
18064 Date:   Thu Jul 9 10:16:29 2009 +0200
18065
18066     at91: Introduction of at91sam9g45 SOC.
18067
18068     AT91sam9g45 series is an ARM 926ej-s SOC family clocked at 400/133MHz.
18069     It embeds USB high speed host and device, LCD, DDR2 RAM, and a full set of
18070     peripherals.
18071
18072     The first board that embeds at91sam9g45 chip is the AT91SAM9G45-EKES.
18073     On the board you can find 2 USART, USB high speed,
18074     a 480*272 LG lcd, ethernet, gpio/joystick/buttons.
18075
18076     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
18077
18078 commit c33c5990cec7ced9ef1ef148debbca34adafa12b
18079 Author: Daniel Mack <daniel@caiaq.de>
18080 Date:   Tue Jun 23 17:30:05 2009 +0200
18081
18082     pxa: fix CKEN_B register bits
18083
18084     The current defition for CKEN_B register bits is nonsense. Adding 32 to
18085     the shifted value is equal to '| (1 << 5)', and this bit is marked
18086     'reserved' in the PXA docs.
18087
18088     Signed-off-by: Daniel Mack <daniel@caiaq.de>
18089
18090 commit bd876be46f28b5fc2896537f6d01353f332789f7
18091 Author: Daniel Mack <daniel@caiaq.de>
18092 Date:   Tue Jun 23 17:30:04 2009 +0200
18093
18094     pxa: add clock for system bus 2 arbiter
18095
18096     This clock is needed for systems using the USB2 device unit or the 2d
18097     graphics accelerator.
18098
18099     Signed-off-by: Daniel Mack <daniel@caiaq.de>
18100
18101 commit b016000a95514c08cab50e1cba00b019c0801bc4
18102 Author: Grazvydas Ignotas <notasas@gmail.com>
18103 Date:   Wed Jul 8 00:30:01 2009 +0300
18104
18105     OMAP3 pandora: Fix CKE1 MUX setting to allow self-refresh
18106
18107     Pandora is using both SDRC CSes. The MUX setting is needed
18108     for the second CS clock signal to allow the 2 RAM parts to
18109     be put in self-refresh correctly.
18110
18111     Based on similar patch for beagle and overo by
18112     Jean Pihet and Steve Sakoman.
18113
18114 commit 8672c288703f3c51c829851c8fe6608c7869faaa
18115 Author: Grazvydas Ignotas <notasas@gmail.com>
18116 Date:   Wed Jul 8 00:30:00 2009 +0300
18117
18118     OMAP3 pandora: setup pulls for various GPIOs
18119
18120     Set pullups or pulldowns for GPIOs which need them.
18121     Disable them for others, which have external pulls.
18122     Also make disabled pull setting consistent (some pins had
18123     type set to "up" even if pull type selection was disabled).
18124
18125 commit 5ff78122f229946862a3f67a2f50a329e8e1bcf5
18126 Author: Grazvydas Ignotas <notasas@gmail.com>
18127 Date:   Wed Jul 8 00:29:59 2009 +0300
18128
18129     OMAP3 pandora: setup pin mux for pins used on rev3 boards
18130
18131     Setup pin mux for GPIO pins connected on rev3 or later
18132     boards. Also change NUB2 IRQ pin. This should not affect
18133     older boards because they don't have any nubs (analog
18134     controllers) attached to them.
18135
18136 commit 67c97c346b27c586a7263564f7afff6d1f8d8d0a
18137 Author: Grazvydas Ignotas <notasas@gmail.com>
18138 Date:   Wed Jul 8 00:29:58 2009 +0300
18139
18140     OMAP3 pandora: pin mux cleanup
18141
18142     Remove configuration of not unused pins, effectively
18143     leaving them in safe mode.
18144
18145 commit b996165f5a1623a055c03b22d64d6d5da81835d0
18146 Author: Prafulla Wadaskar <prafulla@marvell.com>
18147 Date:   Mon Jul 6 15:50:47 2009 +0530
18148
18149     arm: Kirkwood: bugfix: UART1 bar correction
18150
18151     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
18152
18153 commit 50243e3e7a96a96c5418ce6c90b7252d26fdd5b0
18154 Author: Kumar Gala <galak@kernel.crashing.org>
18155 Date:   Tue Jul 7 15:48:58 2009 -0500
18156
18157     usb: Fix compiler warning with gcc4.4
18158
18159     ehci-hcd.c: In function 'ehci_submit_root':
18160     ehci-hcd.c:719: warning: value computed is not used
18161     ehci-hcd.c:748: warning: value computed is not used
18162
18163     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18164     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18165
18166 commit 04366d070a1a3f7affddf15aaaea87bcf44cdbb0
18167 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18168 Date:   Wed Jul 8 11:42:19 2009 +0900
18169
18170     sh: Update pci config for Renesas r7780mp board
18171
18172     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18173
18174 commit 74d9c16a681aa24bb4125191fe39dc7c75cde56a
18175 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18176 Date:   Thu Jun 25 16:31:26 2009 +0900
18177
18178     sh: Add support ESPT-GIGA borad
18179
18180     ESPT-Giga is SH7763-based reference board.
18181     Board support is relatively sparse, presently supporting serial,
18182     gigabit ethernet, USB host, and MTD.
18183
18184     More information (in Japanese) available at:
18185     http://www.cente.jp/product/cente_hard/ESPT-Giga.html
18186
18187     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18188     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18189
18190 commit dae4e0148a1146a5610025ae4b445e841410b659
18191 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18192 Date:   Fri Jul 3 16:06:37 2009 +0200
18193
18194     Add ESD PCI vendor ID
18195
18196     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18197
18198 commit 876b3cef537aab2cba8c19505db2876f6057f818
18199 Author: Peter Tyser <ptyser@xes-inc.com>
18200 Date:   Mon Jun 22 18:01:41 2009 -0500
18201
18202     api_examples/Makefile: General cleanup
18203
18204     * Remove symlinking of files located outside api_examples/
18205
18206     * Auto generate dependencies for files located outside api_examples/
18207
18208     * Update names of variables to be similar to those in tools/Makefile
18209
18210     * Fix out of tree build error
18211       Dependencies are calculated for all files in the SRCS variable.
18212       Previously, the SRCS variable contained files which were symlinked
18213       into the api_examples/ directory.  These symlinked files did not exist
18214       when dependencies were calculated when building out of tree.  This
18215       resulted in errors such as:
18216         make[1]: *** No rule to make target `/work/wd/tmp-ppc/api_examples/.depend', needed by `_depend'.  Stop.
18217         make[1]: Leaving directory `/home/wd/git/u-boot/work/api_examples'
18218         make: *** [depend] Error 2
18219
18220       Since symlinked source files are no longer used, this bug no longer
18221       exists.
18222
18223     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18224     Acked-by: Rafal Jaworowski <raj@semihalf.com>
18225
18226 commit 522f6f02adb93194e337016fe2e4e53c58d5d5ea
18227 Author: Peter Tyser <ptyser@xes-inc.com>
18228 Date:   Mon Jun 22 18:01:40 2009 -0500
18229
18230     api_examples/Makefile: Get rid of unnecessary intermediate LIB target
18231
18232     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18233     Acked-by: Rafal Jaworowski <raj@semihalf.com>
18234
18235 commit 117d0ab5e6f3b3dd48fc346df4919555a78afd39
18236 Author: Peter Tyser <ptyser@xes-inc.com>
18237 Date:   Mon Jun 22 18:01:39 2009 -0500
18238
18239     api_examples/Makefile: Combine ELF and BIN targets
18240
18241     Combining the two rules cleans up the Makefile a bit
18242
18243     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18244     Acked-by: Rafal Jaworowski <raj@semihalf.com>
18245
18246 commit 644cb38108b8dc22e0ef3cf5f404fe310d1995f8
18247 Author: Peter Tyser <ptyser@xes-inc.com>
18248 Date:   Mon Jun 22 18:01:38 2009 -0500
18249
18250     api_examples/Makefile: Split up variable declarations
18251
18252     This cleans up the Makefile a bit and simplifies future changes
18253
18254     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18255     Acked-by: Rafal Jaworowski <raj@semihalf.com>
18256
18257 commit 890d242facc4079ed21e979ced2e8c6d6974f6d3
18258 Author: Timur Tabi <timur@freescale.com>
18259 Date:   Fri Jun 19 14:10:52 2009 -0500
18260
18261     remove _IO_BASE and KSEG1ADDR from board configuration files
18262
18263     The KSEG1ADDR macro used to be necessary for the RTL8139 Ethernet
18264     driver, but the code that used that macro was removed over a year
18265     ago, so board configuration files no longer need to define it.
18266
18267     The _IO_BASE macro is also automatically defined to 0 if it isn't
18268     already set, so there's no need to define that macro either in the
18269     board configuration files.
18270
18271     Signed-off-by: Timur Tabi <timur@freescale.com>
18272     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18273     Acked-by: Andy Fleming <afleming@freescale.com>
18274     Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
18275     Acked-by: Kim Phillips <kim.phillips@freescale.com>
18276
18277 commit c9969947a4687de90e2bb58e76842b491aa0e0b9
18278 Author: Jon Smirl <jonsmirl@gmail.com>
18279 Date:   Sun Jun 14 18:21:28 2009 -0400
18280
18281     board support patch for phyCORE-MPC5200B-tiny
18282
18283     Add support for the Phytec phyCORE-MPC5200B-tiny.
18284     Code originally from Pengutronix.de.
18285     Created CONFIG_SYS_ATA_CS_ON_TIMER01 define for when IDE CS is on
18286     Timer 0/1
18287
18288     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
18289     Acked-by: Grant Likely <grant.likely@secretlab.ca>
18290
18291 commit 7bd49ad12cc36a4de6995ddabbc65ffa1aa1933d
18292 Author: Mike Frysinger <vapier@gentoo.org>
18293 Date:   Mon Jun 15 13:37:20 2009 -0400
18294
18295     kallsyms: fix escaping of NUL char in strings
18296
18297     The current kallsyms code is using \\0 to escape the backslash in the awk
18298     code, but the shell too needs escaping.  This way we make sure gcc is
18299     passed the \0.  Then gcc itself will consume this as an octal, so we have
18300     to use 000 so gcc will create the final NUL.
18301
18302     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18303
18304 commit ed540f07b8ad86909704e9806c1762462cb4995a
18305 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
18306 Date:   Fri Jun 26 10:18:49 2009 -0400
18307
18308     Blackfin: cm-bf561: add example settings for EXT-BF5xx-USB-ETH2 add-on
18309
18310     The cm-bf561 module can easily hook up to the EXT-BF5xx-USB-ETH2 extender
18311     board, so add a simple example of how to do that in the board config.
18312
18313     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
18314     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18315
18316 commit f8bf54b4081c3c3d518830df0017a23ec672a841
18317 Author: Mike Frysinger <vapier@gentoo.org>
18318 Date:   Thu Jun 25 19:40:28 2009 -0400
18319
18320     Blackfin: blackstamp: update spi flash settings
18321
18322     The latest blackstamp boards can only run the SPI flash at 15MHz before
18323     they start to crap out, so lower the max speeds accordingly.  The new SPI
18324     flash also has different sector requirements, so update the environment
18325     sizes as well.
18326
18327     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18328
18329 commit 286070ddc8339666c09bd7912e960b850a8a0318
18330 Author: Mike Frysinger <vapier@gentoo.org>
18331 Date:   Mon Oct 6 03:31:52 2008 -0400
18332
18333     Blackfin: add cache_dump commands
18334
18335     A few debug-type commands used to dump the raw icache/dcache data.  Useful
18336     when trying to track down cache-related bugs.
18337
18338     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18339
18340 commit 632e9b671efb0a6c900499f7a49fe5b63292b5fc
18341 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18342 Date:   Wed Jul 8 15:31:57 2009 +0200
18343
18344     ppc4xx: Set default PCI device ID for 405EP boards
18345
18346     Current code only sets the PCI vendor id to 0x1014 and
18347     leaved device id to 0x0000.
18348
18349     Ths patch ....
18350     a) uses the correct PCI_VENDOR_ID_IBM macro for this
18351     b) sets the default device ID as stated in the UM to 0x0156
18352        by using PCI_DEVICE_ID_IBM_405GP for this.
18353
18354     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18355     Signed-off-by: Stefan Roese <sr@denx.de>
18356
18357 commit 123f102ec093fba6967066acdf9beb637df2e2d1
18358 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18359 Date:   Wed Jul 8 13:43:55 2009 +0200
18360
18361     ppc4xx: Move 405EP pci code from cpu_init_f() to __pci_pre_init()
18362
18363     This patch moves some basic PCI initialisation from the 4xx cpu_init_f()
18364     to cpu/ppc4xx/4xx_pci.c.
18365
18366     The original cpu_init_f() function enabled the 405EP's internal arbiter
18367     in all situations. Also the HCE bit in cpc0_pci is always set.
18368     The first is not really wanted for PCI adapter designs and the latter
18369     is a general bug for PCI adapter U-Boots. Because it enables
18370     PCI configuration by the system CPU even when the PCI configuration has
18371     not been setup by the 405EP. The one and only correct place is
18372     in pci_405gp_init() (see "Set HCE bit" comment).
18373
18374     So for compatibility reasons the arbiter is still enabled in any case,
18375     but from weak pci_pre_init() so that it can be replaced by board specific
18376     code.
18377
18378     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18379     Signed-off-by: Stefan Roese <sr@denx.de>
18380
18381 commit c71103f9dc66dfcce8ad6df942364043bf27ade8
18382 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18383 Date:   Wed Jul 8 13:43:23 2009 +0200
18384
18385     ppc4xx: Make is_pci_host() available for all 440 and 405 CPUs
18386
18387     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18388     Signed-off-by: Stefan Roese <sr@denx.de>
18389
18390 commit 1d8937a469bfeb55ca1f6d89a4e7cd2dfee3cf17
18391 Author: Prafulla Wadaskar <prafulla@marvell.com>
18392 Date:   Mon Jun 29 20:56:43 2009 +0530
18393
18394     usb: add Marvell Kirkwood ehci host controller driver
18395
18396     This driver is tested on Sheevaplug platform
18397
18398     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
18399     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18400
18401 commit db7b43e4681f6f93c336132708157a8a0cca1f8b
18402 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
18403 Date:   Wed Jun 24 10:08:40 2009 +0530
18404
18405     mpc83xx: USB: fix: access of ehci struct elements
18406
18407     It fixes the access to the 'ehci' struct elements for mpc83xx which
18408     should have been taken care of in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
18409     Sorry about that.
18410
18411     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
18412     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18413
18414 commit 08066152735417fc55a5c9de2cec0714c529e4f3
18415 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
18416 Date:   Fri Jun 19 17:56:00 2009 +0530
18417
18418     mpc8xxx: USB: fix: access of ehci struct elements
18419
18420     This patch fixes the access to the 'ehci' struct elements which should
18421     have been taken care off in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
18422     Sorry about that.
18423
18424     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
18425     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18426
18427 commit c3a012ce65818beb274195cd47f31ed80d0fbaa5
18428 Author: Bryan Wu <bryan.wu@analog.com>
18429 Date:   Tue Jun 16 05:26:27 2009 -0400
18430
18431     usb: musb: add timeout via CONFIG_MUSB_TIMEOUT
18432
18433     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
18434     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18435     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18436
18437 commit 7984967a9405672db1581402d2c2cfae268d1a67
18438 Author: Mike Frysinger <vapier@gentoo.org>
18439 Date:   Tue Jun 16 05:26:25 2009 -0400
18440
18441     usb: musb: drop old musb read/write prototypes
18442
18443     These functions are no longer defined, so remove their prototypes.
18444
18445     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18446     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18447
18448 commit 4e04f16020115ab5ccf53158e100de58bcaf29bd
18449 Author: Kim Phillips <kim.phillips@freescale.com>
18450 Date:   Mon Jun 15 11:50:07 2009 -0500
18451
18452     usb: fix CONFIG_SYS_MPC83xx_USB_ADDR not defined error
18453
18454     fix a stray CONFIG_MPC83XX that escaped commit
18455     0f898604945af4543c1525fc33b6bae621a3b805.
18456
18457     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18458     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18459
18460 commit bc0d3296f1780b50e6b9630aee5eb368f2afb6cb
18461 Author: Michal Simek <monstr@monstr.eu>
18462 Date:   Tue Jun 30 23:47:30 2009 +1000
18463
18464     asm-generic: Consolidate errno.h to asm-generic/errno.h
18465
18466     This patch use blackfin errno.h implementation which
18467     correspond Linux kernel one.
18468
18469     MIPS implemetation is different that's why I keep it.
18470
18471     I removed ppc_error_no.h from Marvell boards which
18472     was the same too.
18473
18474     I have got ack from ppc40x, blackfin, arm, coldfire and avr custodians.
18475
18476     Acked-by: Stefan Roese <sr@denx.de>
18477     Signed-off-by: Michal Simek <monstr@monstr.eu>
18478
18479 commit 2896b5851f0430bf16529376a4193630e966c788
18480 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
18481 Date:   Tue Jul 7 16:01:02 2009 +0200
18482
18483     Command improvements for ubifs
18484
18485     Check that an argument is passed to ubifsmount and that addresses and
18486     sizes are actually numbers for ubifsload. Also improve the instructions
18487     a bit.
18488
18489     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
18490     Signed-off-by: Stefan Roese <sr@denx.de>
18491
18492 commit 25c8f4005979ab2d190713ba341d96a5fa905cdb
18493 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
18494 Date:   Tue Jul 7 16:59:46 2009 +0200
18495
18496     Handle VID header offset in ubi part command
18497
18498     The VID header offset is sometimes needed to initialize the UBI
18499     partition. This patch adds it (optionally) to the command line
18500     for the ubi part command.
18501
18502     (Lines have been properly wrapped since last version)
18503
18504     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
18505     Acked-by: Stefan Roese <sr@denx.de>
18506     Signed-off-by: Stefan Roese <sr@denx.de>
18507
18508 commit 3672cd5c3b53d219d33345eebad4e25ad5bf6d52
18509 Author: Wolfgang Denk <wd@denx.de>
18510 Date:   Thu Jul 9 09:56:16 2009 +0200
18511
18512     MAINTAINERS: fix sorting, remove duplicates.
18513
18514     Signed-off-by: Wolfgang Denk <wd@denx.de>
18515
18516 commit efbf14e9a2394a154b12643d4a011994b5096b5a
18517 Author: Heiko Schocher <heiko.schocher@invitel.hu>
18518 Date:   Wed Dec 10 08:27:01 2008 +0100
18519
18520     all platforms: make show_boot_progress() work again
18521
18522     Signed-off-by: Heiko Schocher <hs@denx.de>
18523
18524 commit 205a0988d8fd778c60746c34c2f17dbd2b7cd0d2
18525 Author: Prafulla Wadaskar <prafulla@marvell.com>
18526 Date:   Mon Jun 29 15:25:18 2009 +0530
18527
18528     nand: Add Marvell Kirkwood NAND driver
18529
18530     This patch adds a NAND driver for the Marvell Kirkwood SoC's
18531
18532     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
18533     Acked-by: Scott Wood <scottwood@freescale.com>
18534
18535 commit 0580e48f53f972783e56fcedadb9ce6e5b0b6f32
18536 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18537 Date:   Mon Jul 6 16:27:33 2009 +0200
18538
18539     ppc4xx: Make pll_write global
18540
18541     This patch makes pll_write on PPC405EP boards
18542     global and callable from C code.
18543
18544     pll_write can be used to dynamically modify the PLB:PCI divider
18545     as it is required for 33/66 MHz pci adapters based on the 405EP.
18546
18547     board_early_init_f() is a good place to do that (check M66EN signal
18548     and call pll_write() when it is required).
18549
18550     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18551     Signed-off-by: Stefan Roese <sr@denx.de>
18552
18553 commit 20b3c4b528606d51799aed5e4c71783720cd2b72
18554 Author: Stefan Roese <sr@denx.de>
18555 Date:   Mon Jul 6 11:44:33 2009 +0200
18556
18557     ppc4xx: Remove compilation warning "pci_async_enabled defined but not used"
18558
18559     Signed-off-by: Stefan Roese <sr@denx.de>
18560
18561 commit d0a1364f91c80d29daff6b27a7904a50cdc00b35
18562 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18563 Date:   Fri Jul 3 16:06:06 2009 +0200
18564
18565     ppc4xx: Implement is_pci_host() for 405 CPUs
18566
18567     This patch implements the is_pci_host() function in a similiar way
18568     as it is used on 440 targets.
18569
18570     The former path with CONFIG_PCI_HOST == PCI_HOST_AUTO does not
18571     build on 405EP targets because checking the PCI arbiter is different.
18572     So putting the fixed code into a separate function makes the code
18573     more readable.
18574
18575     Also using is_pci_host() on 405 brings 405 and 440 PCI code
18576     a little bit closer.
18577
18578     In preparation for an upcoming 405EP based PMC module I made this
18579     function weak so that it can be overwritten from board specific code.
18580
18581     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18582     Signed-off-by: Stefan Roese <sr@denx.de>
18583
18584 commit 04ddae915f295dee301f15c32100533a48e3b433
18585 Author: Alessio Centazzo <centazzo@gmail.com>
18586 Date:   Wed Jul 1 22:20:51 2009 -0700
18587
18588     ppc4xx: Fixed PPC4xx debug compilation error in uic.c
18589
18590     This patch fixes a debug compilation error for PPC4xx platforms, all
18591     other architectures are not affected by this change.  The 'handler'
18592     pointer was undefined.  The fix is exercised and has effect only if
18593     DEBUG is defined.
18594
18595     Signed-off-by: Alessio Centazzo acpatin@yahoo.com
18596     Signed-off-by: Stefan Roese <sr@denx.de>
18597
18598 commit 48e2b535a0dd3a7b77b674130934a24f9de6f48d
18599 Author: Felix Radensky <felix@embedded-sol.com>
18600 Date:   Wed Jul 1 11:37:46 2009 +0300
18601
18602     4xx: Fix compilation warnings and MQ registers dump in SPD DDR2 code
18603
18604     This patch fixes printf format string compilation warnings in several
18605     debug statements. It also fixes the dump of DDR controller MQ registers
18606     found on some 44x and 46x platforms. The current register dump code
18607     uses incorrect DCRs to access these registers.
18608
18609     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
18610     Signed-off-by: Stefan Roese <sr@denx.de>
18611
18612 commit 26d37f0061ad05e5c383c910f00e6006f3c89a3a
18613 Author: Felix Radensky <felix@embedded-sol.com>
18614 Date:   Mon Jun 22 15:30:42 2009 +0300
18615
18616     ppc4xx: Fix FDT EBC mappings on Canyonlands
18617
18618     This patch fixes 2 problems with FDT EBC mappings on Canyonlands.
18619     First, NAND EBC mapping was missing, making Linux NAND driver
18620     unusable on this board. Second, NOR remapping code assumed that
18621     NOR is always on CS0, however when booting from NAND NOR is on CS3.
18622
18623     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
18624     Signed-off-by: Stefan Roese <sr@denx.de>
18625
18626 commit baa9f9ba4345ed6dc5c403871c32e6295316ea52
18627 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18628 Date:   Tue Jun 16 22:29:15 2009 +0900
18629
18630     sh: Revised the build with newest compiler
18631
18632     The check of data became severe from newest gcc.
18633     This patch checked in gcc-4.2 and 4.3 .
18634
18635     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18636
18637 commit be45c632568ba76343c1453b3951ad793f482fd5
18638 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18639 Date:   Thu Jun 4 12:06:48 2009 +0200
18640
18641     sh3/sh4: rename config option TMU_CLK_DIVIDER to CONFIG_SYS_TMU_CLK_DIV
18642
18643     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18644     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18645     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18646
18647 commit 8dd29c87ba370072a8464b8cc19e0a1e6e0497b4
18648 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18649 Date:   Thu Jun 4 12:06:47 2009 +0200
18650
18651     sh3/sh4: fix CONFIG_SYS_HZ to 1000
18652
18653     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18654     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18655     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18656
18657 commit add380f51f34ed1e2678c2abac8d53c91d652f26
18658 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18659 Date:   Thu Jun 4 12:06:46 2009 +0200
18660
18661     sh: introduce clock framework
18662
18663     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18664     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18665     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18666
18667 commit 3931a375de2c381d9ff5ec2767b2da9f62a41aef
18668 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18669 Date:   Thu Jun 4 12:06:45 2009 +0200
18670
18671     sh: unify linker script
18672
18673     all sh boards use the same cpu linker script so move it to cpu/$(CPU)
18674
18675     that could be overwrite in following order
18676     SOC
18677     BOARD
18678     via the corresponding config.mk
18679
18680     tested on r2dplus
18681
18682     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18683     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18684     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18685
18686 commit 236aad875817771eb1f25ed32784b3cd7760b2e6
18687 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18688 Date:   Thu Jun 4 12:06:44 2009 +0200
18689
18690     sh: make the linker scripts more generic
18691
18692     currently we need to sync the linker script enty and TEXT_BASE manualy
18693     and the reloc_dst is based on it
18694
18695     instead provide it now from the ldflags
18696
18697     tested on r2dplus
18698
18699     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18700     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18701     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18702
18703 commit ce29817212792113cd2d67a9767049a2e262c406
18704 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18705 Date:   Thu Jun 4 12:06:43 2009 +0200
18706
18707     sh7785lcr: fix out of tree build
18708
18709     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18710     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18711     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18712
18713 commit 2e8a6f551cba550e9220dca4d8504066203b1f74
18714 Author: HeungJun Kim <riverful.kim@gmail.com>
18715 Date:   Tue Jun 30 14:42:22 2009 +0900
18716
18717     env_onenand: change env_address type from unsigned long to loff_t
18718
18719     If use the onenand boot, the env_relocate_spec() calls mtd->read(),
18720     and the type of the argument #2 of mtd->read() was changed to loff_t.
18721     But, the "env_addr" type is still unsigned long, thus this patch change
18722     the type from unsigned long to loff_t.
18723
18724     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
18725     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
18726     Signed-off-by: Scott Wood <scottwood@freescale.com>
18727
18728 commit 66372fe2ab11cdeb0e841ad9eb6ba79769db4909
18729 Author: Mingkai Hu <Mingkai.hu@freescale.com>
18730 Date:   Thu Jun 18 18:23:27 2009 +0800
18731
18732     fsl_elbc_nand: redirect the pointer of bbt pattern to RAM
18733
18734     The bbt descriptors contains the pointer to the bbt pattern which
18735     are statically initialized memory struct. When relocated to RAM,
18736     these pointers will continue point to NOR flash(or L2 SRAM, or
18737     other boot device). If the contents of NOR flash changed or L2
18738     SRAM disabled, it'll hang the system.
18739
18740     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
18741     Signed-off-by: Scott Wood <scottwood@freescale.com>
18742
18743 commit 1dac3a51875967f32641bbc0d26dc382ef02330a
18744 Author: Scott Wood <scottwood@freescale.com>
18745 Date:   Wed Jun 24 17:23:49 2009 -0500
18746
18747     nand_spl: Fix cmd_ctrl usage in nand_boot.c.
18748
18749     When adding large page NAND support to this file, I had a misunderstanding
18750     about the exact semantics of NAND_CTRL_CHANGE (which isn't documented
18751     anywhere I can find) -- it is apparently just a hint to drivers,
18752     which aren't required to preserve the old value for subsequent
18753     non-"change" invocations.
18754
18755     This change makes nand_boot.c no longer assume this.  Note that this
18756     happened to work by chance with some NAND drivers, which don't preserve
18757     the value, but treat 0 equivalently to NAND_CTRL_ALE.
18758
18759     I don't have hardware to test this, so any testing is appreciated.
18760
18761     Signed-off-by: Scott Wood <scottwood@freescale.com>
18762
18763 commit 98713d2663d5d30dde74f48f547114a2bfd9d463
18764 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
18765 Date:   Thu Jun 18 18:41:03 2009 +0100
18766
18767     Bug-fix in drivers mtd nand Makefile
18768
18769     The S3C2410 NAND driver source file is included in the makefile instead of
18770     the object file.
18771
18772     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
18773     Signed-off-by: Scott Wood <scottwood@freescale.com>
18774
18775 commit b74ab737369bbbe66c15cbe6c0d0b6a351b00c96
18776 Author: Guennadi Liakhovetski <lg@denx.de>
18777 Date:   Mon May 18 16:07:22 2009 +0200
18778
18779     nand_spl: read environment early, when booting from NAND using nand_spl
18780
18781     Currently, when booting from NAND using nand_spl, in the beginning the default
18782     environment is used until later in boot process the dynamic environment is read
18783     out. This way environment variables that must be interpreted early, like the
18784     baudrate or "silent", cannot be modified dynamically and remain at their
18785     default values. Fix this problem by reading out main and redundand (if used)
18786     copies of the environment in the nand_spl code.
18787
18788     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18789     Signed-off-by: Scott Wood <scottwood@freescale.com>
18790
18791 commit 378adfcdf4bbd77ee4cbc3276d4733e218308a21
18792 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18793 Date:   Sat May 16 14:27:40 2009 +0200
18794
18795     mtd: nand: use loff_t for offset
18796
18797     nand_util currently uses size_t which is arch dependent and not always a
18798     unsigned long.  Now use loff_t, as does the linux mtd layer.
18799
18800     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18801     Signed-off-by: Scott Wood <scottwood@freescale.com>
18802
18803 commit 8360b66bac9567701027a0087274d0c9b2fe8d6b
18804 Author: Wolfgang Denk <wd@denx.de>
18805 Date:   Sun May 24 17:34:33 2009 +0200
18806
18807     nand/onenand: Fix missing argument checking for "markbad" command
18808
18809     The "nand markbad" and "onenand markbad" commands did not check if an
18810     argument was passed; if this was forgotten, no error was raised but
18811     block 0 was marked as bad.
18812
18813     While fixing this bug, clean up the code a bit and allow to pass more
18814     than one block address, thus allowing to mark several blocks as bad
18815     in a single command invocation.
18816
18817     Signed-off-by: Wolfgang Denk <wd@denx.de>
18818     Signed-off-by: Scott Wood <scottwood@freescale.com>
18819
18820 commit cd84423a09f3a08029fe41c1db96168debd0b51f
18821 Author: Mike Frysinger <vapier@gentoo.org>
18822 Date:   Mon May 25 22:42:28 2009 -0400
18823
18824     mtd: nand: new base driver for memory mapped nand devices
18825
18826     The BF537-STAMP Blackfin board had a driver for working with NAND devices
18827     that are simply memory mapped.  Since there is nothing Blackfin specific
18828     about this, generalize the driver a bit so that everyone can leverage it.
18829
18830     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18831     Signed-off-by: Scott Wood <scottwood@freescale.com>
18832
18833 commit d27bc728cf35e7d7996fbd77154335e66615b213
18834 Author: Guennadi Liakhovetski <lg@denx.de>
18835 Date:   Mon May 18 16:06:45 2009 +0200
18836
18837     env_nand: remove unused variable.
18838
18839     Remove an unused "total" variable in multiple functions.
18840
18841     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18842     Signed-off-by: Scott Wood <scottwood@freescale.com>
18843
18844 commit 154b5484ac7dcbcd0fb5ba388d930b02f87fa302
18845 Author: David Brownell <dbrownell@users.sourceforge.net>
18846 Date:   Sun May 10 15:43:01 2009 -0700
18847
18848     davinci_nand chipselect/init cleanup
18849
18850     Update chipselect handling in davinci_nand.c so that it can
18851     handle 2 GByte chips the same way Linux does:  as one device,
18852     even though it has two halves with independent chip selects.
18853     For such chips the "nand info" command reports:
18854
18855       Device 0: 2x nand0, sector size 128 KiB
18856
18857     Switch to use the default chipselect function unless the board
18858     really needs its own.  The logic for the Sonata board moves out
18859     of the driver into board-specific code.  (Which doesn't affect
18860     current build breakage if its NAND support is enabled...)
18861
18862     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
18863     Signed-off-by: Scott Wood <scottwood@freescale.com>
18864
18865 commit 496863b2440dd7cd69a1ad2443a9badd5f8968d1
18866 Author: Sandeep Paulraj <s-paulraj@ti.com>
18867 Date:   Sat May 9 12:35:20 2009 -0400
18868
18869     NAND DaVinci: Update to ALE/CLE Mask values
18870
18871     All DaVinci SOC's use a CLE mask of 0x10 and an ALE mask of 0x8
18872     except the DM646x. This was decided by the design team driving the design.
18873     This patch updates the CLE and ALE values for DM646x.
18874     Updated patches for DM646x will be sent shortly.
18875     This applies to u-boot-nand-flash git
18876
18877     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
18878     Signed-off-by: Scott Wood <scottwood@freescale.com>
18879
18880 commit 0c1684437ef810c503df29e8d73f63191aa63862
18881 Author: Sandeep Paulraj <s-paulraj@ti.com>
18882 Date:   Wed Apr 29 09:47:09 2009 -0400
18883
18884     ARM DaVinci: Changing ALE Mask Value
18885
18886     The ALE mask used by DaVinci SOCs is wrong. The patch changes the mask value
18887     from '0xa' to '0x8'. This is the mask we use for all TI releases.
18888
18889     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
18890     Signed-off-by: Scott Wood <scottwood@freescale.com>
18891
18892 commit 6e29ed8e576a6900c5d8dcde36b423ac576894dc
18893 Author: David Brownell <dbrownell@users.sourceforge.net>
18894 Date:   Tue Apr 28 13:19:53 2009 -0700
18895
18896     davinci_nand: cleanup II (CONFIG_SYS_DAVINCI_BROKEN_ECC)
18897
18898     Remove CONFIG_SYS_DAVINCI_BROKEN_ECC option.  It's not just nasty;
18899     it's also unused by any current boards, and doesn't even match the
18900     main U-Boot distributions from TI (which use soft ECC, or 4-bit ECC
18901     on newer chips that support it).
18902
18903     DaVinci GIT kernels since 2.6.24, and mainline Linux since 2.6.30,
18904     match non-BROKEN code paths for 1-bit HW ECC.  The BROKEN code paths
18905     do seem to partially match what MontaVista/TI kernels (4.0/2.6.10,
18906     and 5.0/2.6.18) do ... but only for small pages.  Large page support
18907     is really broken (and it's unclear just what software it was trying
18908     to match!), and the ECC layout was making three more bytes available
18909     for use by filesystem (or whatever) code.
18910
18911     Since this option itself seems broken, remove it.  Add a comment
18912     about the MV/TI compat issue, and the most straightforward way to
18913     address it (should someone really need to solve it).
18914
18915     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
18916     Signed-off-by: Scott Wood <scottwood@freescale.com>
18917
18918 commit fcb774777562bb7bcdc53c608d0e6bae906ce0f6
18919 Author: David Brownell <dbrownell@users.sourceforge.net>
18920 Date:   Tue Apr 28 13:19:50 2009 -0700
18921
18922     davinci_nand: cleanup I (minor)
18923
18924     Minor cleanup for DaVinci NAND code:
18925
18926      - Use I/O addresses from nand_chip; CONFIG_SYS_NAND_BASE won't
18927        be defined when there are multiple chipselect lines in use
18928        (as with common 2 GByte chips).
18929
18930      - Cleanup handling of EMIF control registers
18931         * Only need one pointer pointing to them
18932         * Remove incorrect and unused struct supersetting them
18933
18934      - Use the standard waitfunc; we don't need a custom version
18935
18936      - Partial legacy cleanup:
18937         * Don't initialize every board like it's a DM6446 EVM
18938         * #ifdef a bit more code for BROKEN_ECC
18939
18940     Sanity checked with small page NAND on dm355 and dm6446 EVMs;
18941     and large page on dm355 EVM (packaged as two devices, not one).
18942
18943     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
18944     Signed-off-by: Scott Wood <scottwood@freescale.com>
18945
18946 commit 8e5e9b940cdede0debe528cdd7edccccbb3ebf2a
18947 Author: Wolfgang Denk <wd@denx.de>
18948 Date:   Tue Jul 7 22:35:02 2009 +0200
18949
18950     Coding style cleanup; update CHANGELOG
18951
18952     Signed-off-by: Wolfgang Denk <wd@denx.de>
18953
18954 commit d318d0c44d8e91e937c4dad0c5b1d2f6bb9d9fd8
18955 Author: Stefan Roese <sr@denx.de>
18956 Date:   Mon Jun 29 13:30:50 2009 +0200
18957
18958     UBI: Fix build problem noticed on Apollon (arm/testing repo)
18959
18960     This patch fixes a build problem noticed on Apollon by using
18961     mtd_dev_by_eb() instead of "/" as done in the Linux UBI version.
18962     So this brings the U-Boot UBI version more in sync with the Linux
18963     version again.
18964
18965     Signed-off-by: Stefan Roese <sr@denx.de>
18966
18967 commit 2efee52b09657e9353655b9dae9e1d1a67a2abe4
18968 Author: Prafulla Wadaskar <prafulla@marvell.com>
18969 Date:   Mon Jul 6 20:29:15 2009 +0530
18970
18971     sf: Macronix additional chips supported
18972
18973     new chips supported:-
18974     MX25L1605D, MX25L3205D, MX25L6405D, MX25L12855E
18975     out of which MX25L6405D and MX25L12855E tested on Kirkwood platforms
18976
18977     Modified the Macronix flash support to use 2 bytes of device id instead of 1
18978     This was required to support MX25L12855E
18979
18980     Signed-off-by: Piyush Shah <spiyush@marvell.com>
18981     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
18982     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18983
18984 commit dd54126715b89ed0c43322aa78b0dad306f043b6
18985 Author: Mike Frysinger <vapier@gentoo.org>
18986 Date:   Fri Jun 19 03:27:28 2009 -0400
18987
18988     sf: sst: add sst25vf###b ids
18989
18990     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18991
18992 commit 7d907f0ea993b179a197d8db2a36f122bc673c2d
18993 Author: Mike Frysinger <vapier@gentoo.org>
18994 Date:   Fri Jun 19 03:20:06 2009 -0400
18995
18996     sf: sst: fix sector size
18997
18998     Looks like when I was encoding the sector sizes, I forgot to divide by 8
18999     (due to the stupid marketing driven process that declares all sizes in
19000     useless megabits and not megabytes).
19001
19002     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19003
19004 commit ceb70b466e75ceb1a621b6163f7e31116bfc8094
19005 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19006 Date:   Sun Jul 5 01:06:06 2009 +0200
19007
19008     nhk8815: fix MAKEALL
19009
19010     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19011
19012 commit d08e5ca301b69ab77ecdd34e2b06aee30d6057d1
19013 Author: Magnus Lilja <lilja.magnus@gmail.com>
19014 Date:   Sat Jul 4 10:31:24 2009 +0200
19015
19016     MX31: Add NAND SPL boot support to i.MX31 PDK board.
19017
19018     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19019
19020 commit 78eabb90b793fafe875a7469526d1715fa56cbb4
19021 Author: Prafulla Wadaskar <prafulla@marvell.com>
19022 Date:   Mon Jun 29 20:55:54 2009 +0530
19023
19024     arm: Kirkwood: arch specific updated for ehci-Kirkwood driver support
19025
19026     This patch abstracts Kirkwood arch specific changes to support ehci-kirkwood driver
19027
19028     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19029
19030 commit 095a460b49022e64df76134300643606e3acb4e9
19031 Author: Alessandro Rubini <rubini@unipv.it>
19032 Date:   Mon Jun 29 10:52:37 2009 +0200
19033
19034     arm nomadik: use 1000 as HZ value and rewrite timer code
19035
19036     This sets CONFIG_SYS_HZ to 1000 as required, and completely rewrites
19037     timer code, which is now both correct and much smaller.  Unused
19038     functions like udelay_masked() have been removed as no driver uses
19039     them, even the ones that are not currently active for this board.
19040     mtu.h is copied literally from the kernel sources.
19041
19042     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
19043     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
19044     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19045
19046 commit f7aa59b29a451cc502078a9e4ba32345a4250c05
19047 Author: Alessandro Rubini <rubini@unipv.it>
19048 Date:   Mon Jun 22 09:18:57 2009 +0200
19049
19050     arm nomadik: allow Nand and OneNand to coexists
19051
19052     The evaluation kit has both Nand and OneNand, both drivers are there
19053     and the two configurations only select a different default for the
19054     jffs partition. This adds the OneNand driver and cleans up storage.
19055
19056     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
19057     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
19058
19059 commit fd14c41a861cd38ee2fe3abd61d59b57b4eb23c9
19060 Author: Alessandro Rubini <rubini@unipv.it>
19061 Date:   Mon Jun 22 09:18:47 2009 +0200
19062
19063     arm nomadik: cleanup reset
19064
19065     There is only one public release of the Nomadik chip, so the ifdef
19066     in reset code as well as a define in the config file are not needed
19067
19068     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
19069     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
19070
19071 commit ee1363f2da3996bafdecdd8f4e48862ebff3f271
19072 Author: Alessandro Rubini <rubini@unipv.it>
19073 Date:   Mon Jun 22 09:18:37 2009 +0200
19074
19075     arm nomadik: rename board to nhk8815
19076
19077     This is an error in my side in the initial submission: nobody
19078     calls it ""nmdk8815", it's "nomadik hardware kit", nhk8815, instead.
19079
19080     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
19081     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
19082
19083 commit 040f8f63e922bbfb8ba0958bf637f11a917f5c38
19084 Author: Stefano Babic <sbabic@denx.de>
19085 Date:   Wed Jul 1 20:40:41 2009 +0200
19086
19087     xscale: add support for the polaris board
19088
19089     The Polaris board is based on the TrizepsIV module of
19090     Keith & Koep (http://www.keith-koep.com).
19091
19092     Signed-off-by: Stefano Babic <sbabic@denx.de>
19093
19094 commit 88bd97501314683b87f3f1edcf55b347c041b722
19095 Author: Stefano Babic <sbabic@denx.de>
19096 Date:   Wed Jul 1 04:33:56 2009 +0200
19097
19098     xscale: fix USB initialization for Trizepsiv module
19099
19100     Due to change in the usb_board_init() prototype, the USB for
19101     the TrizepsIV was not correctly initialized.
19102     Removed dummy print from usb_board_stop().
19103
19104     Signed-off-by: Stefano Babic <sbabic@denx.de>
19105
19106 commit 0b785ddd60120cfb74d18e58c56054238219f6db
19107 Author: Prafulla Wadaskar <prafulla@marvell.com>
19108 Date:   Wed Jul 1 20:34:51 2009 +0200
19109
19110     net: merge bugfix: Marvell Kirkwood gigabit ethernet driver
19111
19112     This patch looks okay on u-boot-net.git/next branch
19113     but when it was merged to u-boot.git/master the last line is missing
19114
19115     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19116     Acked-by: Ben Warren <biggerbadderben@gmail.com>
19117
19118 commit 33b1d3f43a16fbb79004075ce89ae4e618b288a2
19119 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
19120 Date:   Tue Jun 30 21:03:37 2009 +0200
19121
19122     at91: Add esd gmbh MEESC board support
19123
19124     This patch adds support for esd gmbh MEESC board.
19125     The MEESC is based on an Atmel AT91SAM9263 SoC.
19126
19127     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
19128
19129 commit 21761540b43c7086c75ee9afb412da1e5ddde2e9
19130 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19131 Date:   Tue Jun 30 21:03:35 2009 +0200
19132
19133     ARM: Update mach-types
19134
19135     update against linux v2.6.30
19136
19137     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19138
19139 commit 45627fce18139a74e0755124d27376b520db156c
19140 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
19141 Date:   Tue Jun 30 23:03:33 2009 +0200
19142
19143     at91: Add CAN init function
19144
19145     To enable CAN init, CONFIG_CAN has to be defined in the board config file
19146     and at91_can_hw_init() has to be called in the board specific code.
19147
19148     CAN is available on AT91SAM9263 and AT91CAP9 SoC.
19149
19150     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
19151
19152 commit 2e23008e5dbde7fe4c4758bee5a393e1db796cdf
19153 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
19154 Date:   Tue Jun 30 23:03:31 2009 +0200
19155
19156     arm: Kirkwood: Correct header define
19157
19158     Correct define typo (. -> ,)
19159
19160     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
19161
19162 commit 8449f287f5c53d59db13c3c512e6bd1750b692d1
19163 Author: Magnus Lilja <lilja.magnus@gmail.com>
19164 Date:   Wed Jul 1 01:07:55 2009 +0200
19165
19166     MX31: Add basic support for Freescale i.MX31 PDK board.
19167
19168     Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board).
19169
19170     This patch assumes that some other program performs the actual
19171     NAND boot.
19172
19173     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19174     Acked-by: Fabio Estevam <fabioestevam@yahoo.com>
19175     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19176
19177 commit 8d460a573e2a2ac4834636903865a0428ad0e629
19178 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19179 Date:   Tue Jun 23 00:12:01 2009 +0200
19180
19181     S3C24x0: extract interrupts from timer
19182
19183     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19184
19185 commit c8badbe500a752f42049e51042767ee62ea714e0
19186 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19187 Date:   Sun Jun 28 14:14:21 2009 +0200
19188
19189     dm355/pm9261: add missing CONFIG_NET_MULTI
19190
19191     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19192
19193 commit 798bf9a9ade1cfbe85a16d180cad720927d8e10a
19194 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19195 Date:   Tue Jun 23 00:12:01 2009 +0200
19196
19197     arm920t/interrupts: Move conditional compilation to Makefile
19198
19199     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19200
19201 commit 06e758e75c79ce8761866bf8165c443584a20893
19202 Author: Kim, Heung Jun <riverful@gmail.com>
19203 Date:   Sat Jun 20 11:02:17 2009 +0200
19204
19205     move L2 cache enable/disable function to cache.c in the omap3 SoC directory
19206
19207     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
19208     CC: Dirk Behme <dirk.behme@googlemail.com>
19209     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19210
19211 commit d583ef5147066d3609de21f3beebbab99a19bad4
19212 Author: Thomas Lange <thomas@corelatus.se>
19213 Date:   Sat Jun 20 11:02:17 2009 +0200
19214
19215     ARM DaVinci: EMIF settings
19216
19217     NAND module should not modify EMIF registers unrelated to CS2
19218     that is used for NAND, i.e. do not modify EWAIT config register
19219     or registers for other Chip Selects.
19220
19221     Without this patch, EMIF configurations made in board_init()
19222     will be invalidated.
19223
19224     Signed-off-by: Thomas Lange <thomas@corelatus.se>
19225
19226 commit 2600b8571a26c10c1c43401d7af38e2333cc5381
19227 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19228 Date:   Sat Jun 20 11:02:17 2009 +0200
19229
19230     versatile: config coding style cleanup
19231
19232     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19233     Cc: Peter Pearse <peter.pearse@arm.com>
19234
19235 commit 4efb77d41f9c5d93f0f92dda60e742023fa03c72
19236 Author: Prafulla Wadaskar <prafulla@marvell.com>
19237 Date:   Sat Jun 20 11:01:53 2009 +0200
19238
19239     arm: Kirkwood: Basic SOCs support
19240
19241     Kirkwood family controllers are highly integrated SOCs
19242     based on Feroceon-88FR131/Sheeva-88SV131/arm926ejs cpu core.
19243
19244     SOC versions supported:-
19245     1) 88F6281-A0       define CONFIG_KW88F6281_A0
19246     2) 88F6192-A0       define CONFIG_KW88F6192_A0
19247
19248     Other supported features:-
19249     1) get_random_hex() fucntion
19250     2) PCI Express port initialization
19251     3) NS16550 driver support
19252
19253     Contributors:
19254     Yotam Admon <yotam@marvell.com>
19255     Michael Blostein <michaelbl@marvell.com
19256
19257     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
19258     Acked-by: Stefan Rose <sr@denx.de>
19259     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19260
19261 commit 5c3d5817e5e68b828c165c501c215e793dc63aac
19262 Author: Prafulla Wadaskar <prafulla@marvell.com>
19263 Date:   Sat Jun 20 11:01:52 2009 +0200
19264
19265     arm: generic cache.h for ARM architectures
19266
19267     This patch is required for Kirkwood SoC support
19268     may be used by other ARM architectures
19269
19270     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19271
19272 commit 9c8c706c92e53433a871a563946c38075d76504d
19273 Author: Matthias Ludwig <mludwig@ultratronik.de>
19274 Date:   Sat Jun 20 11:01:50 2009 +0200
19275
19276     OMAP3EVM: fix typo. replace CS6 by CS5, no functionality change
19277
19278     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
19279
19280 commit 0aafde1dc76d6d65d6be10bf499ec86d9ffee8b9
19281 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
19282 Date:   Wed Jun 24 08:32:09 2009 +0200
19283
19284     at91sam9260/9263: add back up for the rst(reset controller).
19285
19286     On the boards at91sam9260ek, at91sam9263ek and afed9260, the rstc register was
19287     set to 0 after being set to 500 ms for the PHY reset.
19288     Do backup the old reset length and restore it after the MACB initialisation.
19289
19290     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
19291     Signed-off-by: Stelian Pop <stelian@popies.net>
19292
19293 commit afb0b1315c048ce2b1f35f0183b8b118ad0c14e1
19294 Author: Kumar Gala <galak@kernel.crashing.org>
19295 Date:   Fri Jul 3 12:45:44 2009 -0500
19296
19297     fsl: Fix compiler warnings from gcc-4.4 in sys_eeprom code
19298
19299     sys_eeprom.c: In function 'do_mac':
19300     sys_eeprom.c:323: warning: dereferencing type-punned pointer will break strict-aliasing rules
19301     sys_eeprom.c: In function 'mac_read_from_eeprom':
19302     sys_eeprom.c:395: warning: dereferencing type-punned pointer will break strict-aliasing rules
19303
19304     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19305
19306 commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
19307 Author: Peter Tyser <ptyser@xes-inc.com>
19308 Date:   Tue Jun 30 17:15:51 2009 -0500
19309
19310     83xx: Add support for fsl_dma driver
19311
19312     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19313     Reviewed-by: Ira W. Snyder <iws@ovro.caltech.edu>
19314     Tested-by: Ira W. Snyder <iws@ovro.caltech.edu>
19315     Acked-by: Kim Phillips <kim.phillips@freescale.com>
19316     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19317
19318 commit 9adda5459ca62120c0c50b82b766fe1cf6925bbf
19319 Author: Peter Tyser <ptyser@xes-inc.com>
19320 Date:   Tue Jun 30 17:15:50 2009 -0500
19321
19322     83xx: Replace CONFIG_ECC_INIT_VIA_DDRC references
19323
19324     Update 83xx architecture's CONFIG_ECC_INIT_VIA_DDRC references to
19325     CONFIG_ECC_INIT_VIA_DDRCONTROLLER, which other Freescale architectures
19326     use
19327
19328     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19329     Acked-by: Kim Phillips <kim.phillips@freescale.com>
19330     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19331
19332 commit 039594a4301dadceb267db5e8b9c8c78b1bb86b5
19333 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
19334 Date:   Thu Jul 2 16:15:01 2009 +0530
19335
19336     8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors
19337
19338     Defining the next two configs allows to switch the serial port from the
19339     console using the setenv stdin and stdout
19340       1. #define CONFIG_SERIAL_MULTI 1 /* Enable both serial ports */
19341       2. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* determine from environment */
19342
19343     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
19344     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
19345     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19346
19347 commit 546b1032907df70f2dd0f98f3ad09885a88411e5
19348 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
19349 Date:   Thu Jul 2 16:14:40 2009 +0530
19350
19351     85xx: Adds GPIO registers to MPC85xx Memory Map.
19352
19353     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
19354     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19355
19356 commit 5da6f806b400372b8a0664f3282c9e83a402eb66
19357 Author: Peter Tyser <ptyser@xes-inc.com>
19358 Date:   Tue Jun 30 17:26:01 2009 -0500
19359
19360     86xx: XPedite5170 board support
19361
19362     Initial support for Extreme Engineering Solutions XPedite5170 -
19363     a MPC8640-based 3U VPX single board computer with a PMC/XMC
19364     site.
19365
19366     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19367     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19368
19369 commit e66f38da8434425aca8df08d06d9ef41b3478d3b
19370 Author: Timur Tabi <timur@freescale.com>
19371 Date:   Wed Jul 1 16:51:59 2009 -0500
19372
19373     fsl_ddr: Fix DDR3 calculation of rank density with 8GB or more
19374
19375     The calculate for rank density in compute_ranksize() for DDR3 used all
19376     integers for the expression, so the result was also a 32-bit integer, even
19377     though the 'bsize' variable is a u64.  Fix the expression to calculate a
19378     true 64-bit value.
19379
19380     Signed-off-by: Timur Tabi <timur@freescale.com>
19381     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19382
19383 commit 6af015b86b86d94de7ca1b23a3890bc93a50c2ab
19384 Author: Peter Tyser <ptyser@xes-inc.com>
19385 Date:   Tue Jun 30 17:15:49 2009 -0500
19386
19387     fsl_dma: Make DMA transactions snoopable
19388
19389     Make DMA transactions snoopable so that CPUs can keep caches up-to-date.
19390     This allows dma transactions to be used for operations such as memory
19391     copies without any additional cache control operations.
19392
19393     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19394     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19395
19396 commit 0d595f76bc9c7c8dff5bd31dffed87a840a03c56
19397 Author: Peter Tyser <ptyser@xes-inc.com>
19398 Date:   Tue Jun 30 17:15:48 2009 -0500
19399
19400     fsl_dma: Break out common memory initialization function
19401
19402     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19403     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19404
19405 commit 79f4333ceb059049b3ee560167d6cbaec493695f
19406 Author: Peter Tyser <ptyser@xes-inc.com>
19407 Date:   Tue Jun 30 17:15:47 2009 -0500
19408
19409     8xxx: Move dma_init() call to common code
19410
19411     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19412     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19413
19414 commit 191c7118592cd182f2dc7f46b4f72d9bed0e2c76
19415 Author: Peter Tyser <ptyser@xes-inc.com>
19416 Date:   Tue Jun 30 17:15:46 2009 -0500
19417
19418     fsl_dma: Move dma function prototypes to common header file
19419
19420     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19421     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19422
19423 commit 7892f619d40f4196e41e7114c5dfee9fad0f572f
19424 Author: Peter Tyser <ptyser@xes-inc.com>
19425 Date:   Tue Jun 30 17:15:45 2009 -0500
19426
19427     8xxx: Rename dma_xfer() to dmacpy()
19428
19429     Also update dmacpy()'s argument order to match memcpy's and use
19430     phys_addr_t/phy_size_t for address/size arguments
19431
19432     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19433     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19434
19435 commit 484919cf3351212ebf748b9b13ece1ddaf7e7d1c
19436 Author: Peter Tyser <ptyser@xes-inc.com>
19437 Date:   Tue Jun 30 17:15:44 2009 -0500
19438
19439     fsl_dma: Fix Channel Start bug in dma_check()
19440
19441     The Channel Start (CS) bit in the Mode Register (MR) should actually be
19442     cleared as the comment in the code suggests.  Previously, CS was being
19443     set, not cleared.
19444
19445     Assuming normal operation of the DMA engine, this change shouldn't have
19446     any real affect.
19447
19448     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19449     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19450
19451 commit 51402ac12be9a0025f16db51fbde7c050a54e5fe
19452 Author: Peter Tyser <ptyser@xes-inc.com>
19453 Date:   Tue Jun 30 17:15:43 2009 -0500
19454
19455     fsl_dma: Add support for arbitrarily large transfers
19456
19457     Support DMA transfers larger than the DMA controller's limit of
19458     (2 ^ 26 - 1) bytes
19459
19460     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19461     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19462
19463 commit a730393a362741c318b21771b8d7b2647e546c3e
19464 Author: Peter Tyser <ptyser@xes-inc.com>
19465 Date:   Tue Jun 30 17:15:42 2009 -0500
19466
19467     fsl_dma: Use proper I/O access functions
19468
19469     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19470     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19471
19472 commit 9c06071a6077ba95e9d43226156e39567d5d064a
19473 Author: Peter Tyser <ptyser@xes-inc.com>
19474 Date:   Tue Jun 30 17:15:41 2009 -0500
19475
19476     fsl_dma: Add bitfield definitions for common registers
19477
19478     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19479     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19480
19481 commit 017f11f68ef543e866be033bcb7b8058a8a380d8
19482 Author: Peter Tyser <ptyser@xes-inc.com>
19483 Date:   Tue Jun 30 17:15:40 2009 -0500
19484
19485     8xxx: Break out DMA code to a common file
19486
19487     DMA support is now enabled via the CONFIG_FSL_DMA define instead of the
19488     previous CONFIG_DDR_ECC
19489
19490     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19491     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19492
19493 commit 6bbced671719518d0e28ff422623cd7ce396cbda
19494 Author: Mark Jackson <mpfj-list@mimc.co.uk>
19495 Date:   Mon Jun 29 15:59:10 2009 +0100
19496
19497     Atmel LCD driver GUARDTIME fix
19498
19499     This patch allows the guard time parameter to be set in
19500     the Atmel LCDC driver.
19501
19502     By default, the previous value of 1 is used, unless the
19503     setting is defined elsewhere.
19504
19505     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
19506
19507 commit 29c35182462feea09f322e51913759a53359a3e0
19508 Author: Roy Zang <tie-fei.zang@freescale.com>
19509 Date:   Tue Jun 30 13:56:23 2009 +0800
19510
19511     85xx: Add pci e1000 Ethernet support for P2020 board
19512
19513     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
19514     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19515
19516 commit 156984a3611c28093919d3e3c042f722b5548253
19517 Author: Kumar Gala <galak@kernel.crashing.org>
19518 Date:   Thu Jun 18 08:39:42 2009 -0500
19519
19520     8xxx: Fix PCI bus address setup for 36-bit configs
19521
19522     We want the outbound PCI memory map to end at the 4G boundary so we
19523     can maximize the amount of space available for inbound mappings if
19524     we have large amounts of memory.
19525
19526     This matches the device tree setup in the kernel for the 36-bit physical
19527     configs for the platforms that have one (MPC8641 HPCN & MPC8572 DS).
19528
19529     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19530
19531 commit 480f61790565d77432b70b4016b73f2ae27d530f
19532 Author: Kumar Gala <galak@kernel.crashing.org>
19533 Date:   Thu Jun 18 08:23:01 2009 -0500
19534
19535     86xx: Add CPU_TYPE_ENTRY support
19536
19537     Unify with 83xx and 85xx and use CPU_TYPE_ENTRY.  We are going to use
19538     this to convey the # of cores and DDR width in the near future so its
19539     good to keep in sync.
19540
19541     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19542
19543 commit 98ab14e858bf60306d0aa3f0df5a7a5f88264aff
19544 Author: Peter Meerwald <pmeerw@pmeerw.net>
19545 Date:   Mon Jun 29 15:48:33 2009 -0400
19546
19547     Blackfin: TWI/I2C: fix pure writes
19548
19549     If doing a pure write with register address and data (not a read/write
19550     combo transfer), we don't set the initial transfer length properly which
19551     ends up causing only the register address to be transferred.
19552
19553     While we're here, fix the i2c_write() parameter description of the buffer.
19554
19555     Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
19556     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19557
19558 commit 5710de45808eb8f1cc34b51dc3e67e2422113249
19559 Author: Prafulla Wadaskar <prafulla@marvell.com>
19560 Date:   Sat May 30 01:13:33 2009 +0530
19561
19562     spi: Add Marvell Kirkwood SPI driver
19563
19564     This patch adds a SPI driver for the Marvell Kirkwood SoC's.
19565
19566     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19567
19568 commit 6bde171a4c4116cee179167cb65335a28f99932d
19569 Author: Minkyu Kang <mk7.kang@samsung.com>
19570 Date:   Thu Jun 25 19:21:33 2009 +0900
19571
19572     s3c64xx: move the reset_cpu function
19573
19574     Because of the reset_cpu is soc specific, should be move to soc
19575     And read reset value from SYS_ID register instead of hard code
19576     this patch also supports s3c6410
19577
19578     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
19579
19580 commit 576afd4faeba1519bcb8c0083c3e4d45e5643a48
19581 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19582 Date:   Sun May 17 00:58:37 2009 +0200
19583
19584     integrator: merge integratorap and integratorcp
19585
19586     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19587     Acked-by: Peter Pearse <peter.pearse@arm.com>
19588
19589 commit 46937b27427688a56bf7f5944a92d962dc43c3fa
19590 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19591 Date:   Sun May 17 00:58:36 2009 +0200
19592
19593     integratorap/cp: use cfi driver
19594
19595     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19596     Acked-by: Peter Pearse <peter.pearse@arm.com>
19597
19598 commit de7a01abd8aeb167946f391327e1e0d1e01f90c9
19599 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19600 Date:   Sun May 17 00:58:36 2009 +0200
19601
19602     integratorap/cp/versatile: remove non used functions
19603
19604     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19605     Acked-by: Peter Pearse <peter.pearse@arm.com>
19606
19607 commit f54851a6e3844b7e01581b5a9681f294118b7529
19608 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19609 Date:   Sun May 17 00:58:36 2009 +0200
19610
19611     integratorcp: split timer support
19612
19613     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19614     Acked-by: Peter Pearse <peter.pearse@arm.com>
19615
19616 commit 2bcef0723ea11c4e9bfbcfff2a93ec2da520b5f1
19617 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19618 Date:   Sun May 17 00:58:36 2009 +0200
19619
19620     integratorap: split timer support
19621
19622     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19623     Acked-by: Peter Pearse <peter.pearse@arm.com>
19624
19625 commit 86baa085c52a7f3377a88074679c5aca9b9e4d38
19626 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19627 Date:   Sun May 17 00:58:36 2009 +0200
19628
19629     integratorap: split pci support
19630
19631     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19632     Acked-by: Peter Pearse <peter.pearse@arm.com>
19633
19634 commit 379e9fc0a319b8f6ae16d763590bf023f3afb87c
19635 Author: Ilya Yanok <yanok@emcraft.com>
19636 Date:   Mon Jun 8 04:12:50 2009 +0400
19637
19638     arm: add support for CONFIG_GENERIC_MMC
19639
19640     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19641
19642 commit 47d19da4d3f9ac4787abe9dee32406478424be52
19643 Author: Ilya Yanok <yanok@emcraft.com>
19644 Date:   Mon Jun 8 04:12:46 2009 +0400
19645
19646     serial_mx31: allow it to work with mx27 too and rename to serial_mxc
19647
19648     UART hardware on i.MX27 is the same as on the i.MX31 so we just
19649     need to provide the driver with correct address of the registers.
19650
19651     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19652
19653 commit 1dc4da749dbde27ec862f5b65703e8e4541fbba3
19654 Author: Ilya Yanok <yanok@emcraft.com>
19655 Date:   Mon Jun 8 04:12:45 2009 +0400
19656
19657     mx27: basic cpu support
19658
19659     This patch adds generic code to support Freescale's i.MX27 SoCs.
19660
19661     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19662
19663 commit dd2f6965a6c71f6f711ec98827880152e022c236
19664 Author: Magnus Lilja <lilja.magnus@gmail.com>
19665 Date:   Sat Jun 13 20:50:03 2009 +0200
19666
19667     i.MX31: Create a common device file.
19668
19669     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19670
19671 commit 958f7da7887fea4a2091ae60944d62c1708c2c55
19672 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19673 Date:   Sat Jun 13 20:50:02 2009 +0200
19674
19675     ARM: Add macros.h to be used in assembler file.
19676
19677     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19678
19679 commit 40c642bc19b9fa2906e3172487a522fee456340b
19680 Author: Magnus Lilja <lilja.magnus@gmail.com>
19681 Date:   Sat Jun 13 20:50:01 2009 +0200
19682
19683     MX31: Add NAND SPL for i.MX31.
19684
19685     This patch adds the NAND SPL framework needed to boot i.MX31 boards
19686     from NAND.
19687
19688     It has been tested on a i.MX31 PDK board with large page NAND. Small
19689     page NANDs should work as well, but this has not been tested.
19690
19691     Note: The i.MX31 NFC uses a non-standard layout for large page NANDs,
19692     whether this is compatible with a particular setup depends on how
19693     the NAND device is programmed by the flash programmer (e.g. JTAG
19694     debugger).
19695
19696     The patch is based on the work by Maxim Artamonov.
19697
19698     Signed-off-by: Maxim Artamonov <scn1874@yandex.ru>
19699     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19700
19701 commit df81238b3e27a791da996a9208402ac8f40b9862
19702 Author: Magnus Lilja <lilja.magnus@gmail.com>
19703 Date:   Sat Jun 13 20:50:00 2009 +0200
19704
19705     ARM1136: Introduce CONFIG_PRELOADER macro.
19706
19707     Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's
19708     in start.S. In preparation for adding support for NAND SPL
19709     the macro CONFIG_PRELOADER is introducted and replaces the
19710     CONFIG_ONENAND_IPL in start.S.
19711
19712     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19713
19714 commit 8096c51fd4e611ed666dbe77767e81af5d94fc7b
19715 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19716 Date:   Sat Jun 13 12:50:04 2009 +0200
19717
19718     at91: unify nor boot support
19719
19720     the lowlevel init sequence is the same so unify it
19721
19722     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19723
19724 commit 1b3b7c640d04df2ba9a9d947117d112a75fee7f4
19725 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19726 Date:   Sat Jun 13 12:48:36 2009 +0200
19727
19728     at91sam9263ek: add nor flash support
19729
19730     this will allow you to store use it for the env and to boot directly U-Boot from
19731
19732     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19733
19734 commit 329492329700812c6df275aa0fda09d609cd0fd4
19735 Author: Ilko Iliev <iliev@ronetix.at>
19736 Date:   Fri Jun 12 21:20:39 2009 +0200
19737
19738     at91: add support for the PM9261 board of Ronetix GmbH
19739
19740     The PM9261 board is based on the AT91SAM9261-EK board.
19741
19742     Here is the page on Ronetix website:
19743     http://www.ronetix.at/starter_kit_9261.html
19744
19745     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
19746     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19747
19748 commit 01550a2b650fbabc03334f9eadcc6083601a2414
19749 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19750 Date:   Fri Jun 12 21:20:38 2009 +0200
19751
19752     pm9263: use macro instead of hardcode value for the lowlevel_init
19753
19754     optimize a few the RAM init
19755
19756     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
19757     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19758
19759 commit 7a11c7f9747240dc770954d320569596c0fbcb50
19760 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19761 Date:   Fri Jun 12 21:20:37 2009 +0200
19762
19763     pm9263: lowlevel init update
19764
19765     move PSRAM init to pm9263.c
19766     this will allow us after to make the nor lowlevel_init generic
19767
19768     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19769
19770 commit 3e88337b225bf796f6df21d0a7f591530e9d4ce0
19771 Author: Mike Frysinger <vapier@gentoo.org>
19772 Date:   Mon Jun 15 00:25:19 2009 -0400
19773
19774     Blackfin: move ALL += u-boot.ldr to blackfin_config.mk
19775
19776     The way the ALL variable is used allows for config.mk's to add more
19777     targets themselves without having to clutter up the top level Makefile.
19778
19779     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19780
19781 commit afac8b07172d7e4a65f86ce1ec4c783a6165ba1f
19782 Author: Mike Frysinger <vapier@gentoo.org>
19783 Date:   Sun Jun 14 22:29:35 2009 -0400
19784
19785     Blackfin: fix SPI flash speed define name
19786
19787     The SPI flash define is named CONFIG_SF_DEFAULT_SPEED, not
19788     CONFIG_SF_DEFAULT_HZ, so fix the typos in the Blackfin boards.
19789
19790     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19791
19792 commit 9ae55ccf601de7a5b75eb418f3fc3d5eca92c106
19793 Author: Mike Frysinger <vapier@gentoo.org>
19794 Date:   Sun Jun 14 22:26:31 2009 -0400
19795
19796     Blackfin: enable -O2 in lib_generic/ for ADI/Bluetechnix boards
19797
19798     Building the compression code in lib_generic/ with -O2 rather than -Os
19799     gives a nice speed boost without too much code size increase.
19800
19801     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19802
19803 commit fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4
19804 Author: Mike Frysinger <vapier@gentoo.org>
19805 Date:   Sun Jun 14 21:23:27 2009 -0400
19806
19807     Blackfin: bf548-ezkit: bump up monitor size
19808
19809     The latest version of U-Boot got a bit fatter in the BSS section which
19810     caused overflows in the RAM region, so increase the monitor size.
19811
19812     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19813
19814 commit bc43a8d8994c2f0be29e09b13b15da7f79e2c081
19815 Author: Vivi Li <vivi.li@analog.com>
19816 Date:   Fri Jun 12 10:53:22 2009 +0000
19817
19818     Blackfin: bf533-stamp/bf537-stamp: fix env settings for SPI flash
19819
19820     The SPI flash layer is much stricter about sector usage than the eeprom
19821     layer we used to use, so update the env settings to better match the
19822     sector alignment of the flashes we use.
19823
19824     Signed-off-by: Vivi Li <vivi.li@analog.com>
19825     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19826
19827 commit 63cb0f4eb2d3cf15e7a1add19d1289f4ae75816c
19828 Author: Vivi Li <vivi.li@analog.com>
19829 Date:   Fri Jun 12 10:33:23 2009 +0000
19830
19831     Blackfin: bump up default JTAG console timeout
19832
19833     The debug tools that interface with the other side of the JTAG console
19834     got much slower when generalizing things, so bump up the default timeout
19835     value on the U-Boot side to cope.  Hopefully at some point we can improve
19836     the debug tools to speed things back up.
19837
19838     Signed-off-by: Vivi Li <vivi.li@analog.com>
19839     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19840
19841 commit c11ff779f4e0e0c7edc322e84dd229ad28709595
19842 Author: Mike Frysinger <vapier@gentoo.org>
19843 Date:   Mon Jun 1 19:08:33 2009 -0400
19844
19845     Blackfin: add jtagconsole helper script
19846
19847     This script is similar to the netconsole script, but instead works with
19848     the JTAG console device driver that exists on Blackfin parts.
19849
19850     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19851
19852 commit 60f61e6d7655400bb785a2ef637581679941f6d1
19853 Author: Remy Bohmer <linux@bohmer.net>
19854 Date:   Sat May 2 21:49:18 2009 +0200
19855
19856     Convert DM9000 driver for CONFIG_NET_MULTI
19857
19858     All drivers need to be converted to CONFIG_NET_MULTI.
19859     This patch converts the dm9000 driver.
19860
19861     Signed-off-by: Thomas Smits <ts.smits@gmail.com>
19862     Signed-off-by: Remy Bohmer <linux@bohmer.net>
19863     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19864
19865 commit 9131589ada4dda0718604d0a425ca46e52775f6e
19866 Author: Prafulla Wadaskar <prafulla@marvell.com>
19867 Date:   Sun Jun 14 22:33:46 2009 +0530
19868
19869     net: Add Marvell Kirkwood gigabit ethernet driver
19870
19871     This patch adds a egiga driver for the Marvell Kirkwood SoC's.
19872
19873     Contributors:
19874     Yotam Admon <yotam@marvell.com>
19875     Michael Blostein <michaelbl@marvell.com
19876
19877     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
19878     Acked-by: Stefan Rose <sr@denx.de>
19879     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19880     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19881
19882 commit 7835f4b94927ecb5affd99aad62592108db606ad
19883 Author: s-paulraj@ti.com <s-paulraj@ti.com>
19884 Date:   Tue May 12 11:45:34 2009 -0400
19885
19886     DaVinci Network Driver Updates
19887
19888     Different flavours of DaVinci SOC's have differences in their EMAC IP
19889     This patch does the following
19890     1) Updates base addresses for DM365
19891     2) Updates MDIO frequencies for DM365 and DM646x
19892     3) Update EMAC wrapper registers for DM365 and DM646x
19893
19894     Patch applies to u-boot-net git. the EMAC driver itself
19895     will be updated shortly to add support for DM365 and DM646x
19896
19897     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
19898     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19899
19900 commit 44578bea14e49035331a8f0e000e935e0d830ff4
19901 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
19902 Date:   Tue May 26 08:29:29 2009 -0400
19903
19904     Subject: [PATCH] [repost] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
19905
19906      From 584b5fbd4abfc43f920cc1c329633e03816e28be Mon Sep 17 00:00:00 2001
19907     From: Richard Retanubun <RichardRetanubun@RuggedCom.com>
19908     Date: Wed, 20 May 2009 18:26:01 -0400
19909     Subject: [PATCH] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
19910
19911     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
19912     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19913
19914 commit c9a2aab1512fb2d132670fff9c27656d2eb949cd
19915 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
19916 Date:   Thu Jun 4 09:39:48 2009 +0200
19917
19918     A VLAN tagged DHCP request/discover is 4 bytes short
19919
19920     The problem is that BOOTP_SIZE uses ETHER_HDR_SIZE which is 14 bytes.
19921     If sending a VLAN tagged frame (when env variable vlan is set) this
19922     should be VLAN_ETHER_HDR_SIZE=18 which is what NetSetEther returns.
19923
19924     Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
19925     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19926
19927 commit 6e0d2fc7fe0dcfa2f51ab8931d706940ee364193
19928 Author: Ben Warren <biggerbadderben@gmail.com>
19929 Date:   Tue Apr 28 16:39:19 2009 -0700
19930
19931     Remove support for non-CONFIG_NET_MULTI on PPC4xx EMAC
19932
19933     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19934
19935 commit 8453587ef9137daf98b7c9cf4f3b865f4039cea0
19936 Author: Ben Warren <biggerbadderben@gmail.com>
19937 Date:   Tue May 26 00:34:07 2009 -0700
19938
19939     Switched davinci_emac Ethernet driver to use newer API
19940
19941     Added CONFIG_NET_MULTI to all Davinci boards
19942     Removed all calls to Davinci network driver from board code
19943     Added cpu_eth_init() to cpu/arm926ejs/cpu.c
19944
19945     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19946
19947 commit 8cc13c13f1d154c8fa8fff56cea357ed38af76bf
19948 Author: Ben Warren <biggerbadderben@gmail.com>
19949 Date:   Mon Apr 27 23:19:10 2009 -0700
19950
19951     Initial cleanup of Davinci Ethernet driver
19952
19953      Removed pointless #ifdefs
19954      Moved functions around in file in preparation for switch to newer API
19955
19956     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19957
19958 commit 09cdd1b9b01450e91786d26ff3c866dc9c8d8d6b
19959 Author: Ben Warren <biggerbadderben@gmail.com>
19960 Date:   Tue May 26 00:17:59 2009 -0700
19961
19962     Moved Davinci Ethernet driver to drivers/net
19963
19964     This driver has been renamed davinci_emac.c
19965
19966     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19967
19968 commit 6f51deb7f298413cfcb0a36d24c97ef7dd69d48f
19969 Author: Prafulla Wadaskar <prafulla@marvell.com>
19970 Date:   Tue May 19 01:40:16 2009 +0530
19971
19972     Marvell MV88E61XX Switch Driver support
19973
19974     Chips supported:-
19975     1. 88E6161 6 port gbe swtich with 5 integrated PHYs
19976     2. 88E6165 6 port gbe swtich with 5 integrated PHYs
19977     2. 88E6132 3 port gbe swtich with 2 integrated PHYs
19978     Platform specific configuration supported for:-
19979     default or router port vlan configuration
19980     led_init configuration
19981     mdip/n polarity reversal configuration
19982
19983     Note: This driver is supported and tested against
19984     kirkwood egiga interface
19985
19986     Contributors:
19987     Yotam Admon <yotam@marvell.com>
19988     Michael Blostein <michaelbl@marvell.com
19989
19990     Reviewed by: Ronen Shitrit <rshitrit@marvell.com>
19991     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19992     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19993
19994 commit 091dc9f6adaf572b067ae91af92c4e7db33d7903
19995 Author: Zach LeRoy <zleroy@xes-inc.com>
19996 Date:   Fri May 22 10:26:33 2009 -0500
19997
19998     tsec: Add support for BCM5482S PHY
19999
20000     Signed-off-by: Zach LeRoy <zleroy@xes-inc.com>
20001     Acked-by: Kumar Gala <galak@kernel.crashing.org>
20002     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20003
20004 commit 9ff67e5e4c719556d57f136a6453f8e4798d85c0
20005 Author: Mike Frysinger <vapier@gentoo.org>
20006 Date:   Sun Jun 14 06:29:07 2009 -0400
20007
20008     Blackfin: unify u-boot linker scripts
20009
20010     All the Blackfin linker scripts were duplicated across the board dirs with
20011     no difference save from the semi-often used ENV_IS_EMBEDDED option.  So
20012     unify all of them in the lib_blackfin/ dir and for the few boards that
20013     need to embedded the environment directly, add a LDS_BOARD_TEXT define for
20014     them to customize via their board config file.  This is much simpler than
20015     forcing them to duplicate the rest of the linker script.
20016
20017     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20018
20019 commit f52efcae98cbb8a39f1d0535df8d9646a776af9e
20020 Author: Mike Frysinger <vapier@gentoo.org>
20021 Date:   Fri May 29 17:02:37 2009 -0400
20022
20023     Blackfin: bf518f-ezbrd: enable SST SPI flash driver
20024
20025     The BF51xF parts have an internal SST SPI flash, so make sure the driver is
20026     enabled by default so we can access it.
20027
20028     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20029
20030 commit f348ab85f741dc98b2d202c04b5f430eace94925
20031 Author: Mike Frysinger <vapier@gentoo.org>
20032 Date:   Fri Apr 24 17:22:40 2009 -0400
20033
20034     Blackfin: convert specific pre/post config headers to common method
20035
20036     The Blackfin port was using asm/blackfin-config-{pre,post}.h to setup
20037     common Blackfin board defines.  The common method now is to use config.h,
20038     so convert blackfin-config-post.h to that.  Rename the still Blackfin
20039     specific blackfin-config-pre.h to config-pre.h so the naming conventions
20040     at least line up.
20041
20042     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20043
20044 commit 7c7503ee6cd03c0f3b16e98d33d5aa23b30d65b1
20045 Author: Mike Frysinger <vapier@gentoo.org>
20046 Date:   Fri Apr 24 17:11:47 2009 -0400
20047
20048     Blackfin: enable LZMA for all ADI boards
20049
20050     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20051
20052 commit 0e63dc0679451d48f8b727c543ce48b488f7a33f
20053 Author: Mike Frysinger <vapier@gentoo.org>
20054 Date:   Mon Apr 13 05:52:45 2009 -0400
20055
20056     Blackfin: make default ADI env more flexible
20057
20058     Allow boards to easily override the root= and default bootcmd, allow
20059     people to tweak the file used in default bootcmds at runtime via one env
20060     var, and add a stock nandboot command.
20061
20062     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20063
20064 commit 0f52b560f19623ec651f9b9b40405d138ec251d3
20065 Author: Hoan Hoang <hnhoan@i-syst.com>
20066 Date:   Sun Jan 18 22:44:17 2009 -0500
20067
20068     Blackfin: ibf-dsp561: new board port
20069
20070     Signed-off-by: Hoan Hoang <hnhoan@i-syst.com>
20071     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20072
20073 commit 3088189a15d219c48fd7e71623ca4daa08b80b59
20074 Author: Mike Frysinger <vapier@gentoo.org>
20075 Date:   Sun Oct 12 23:28:33 2008 -0400
20076
20077     Blackfin: blackstamp: new board port
20078
20079     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20080
20081 commit 59ac9729700db1d4446c1a6db3ffe38398b7abb2
20082 Author: Mike Frysinger <vapier@gentoo.org>
20083 Date:   Sun Oct 12 23:22:25 2008 -0400
20084
20085     Blackfin: bf537-srv1: new board port
20086
20087     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20088
20089 commit d7fdc1410b5fa5ef623b35a283733b6bcee3753b
20090 Author: Mike Frysinger <vapier@gentoo.org>
20091 Date:   Sun Oct 12 23:16:52 2008 -0400
20092
20093     Blackfin: bf537-minotaur: new board port
20094
20095     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20096
20097 commit cb4b5e874f3c9b882a6f4394bbebbbd91fd01bbf
20098 Author: Mike Frysinger <vapier@gentoo.org>
20099 Date:   Sun Oct 12 23:08:03 2008 -0400
20100
20101     Blackfin: bf537-pnav: new board port
20102
20103     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20104
20105 commit 59e4be945b6469e31eee721e0bcdccf4940d75ac
20106 Author: Mike Frysinger <vapier@gentoo.org>
20107 Date:   Sun Oct 12 21:55:45 2008 -0400
20108
20109     Blackfin: cm-bf527: new board port
20110
20111     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20112
20113 commit 8b219cf07c186cc9d97354cf4b14f24a53d193c5
20114 Author: Mike Frysinger <vapier@gentoo.org>
20115 Date:   Sun Oct 12 21:54:07 2008 -0400
20116
20117     Blackfin: cm-bf548: new board port
20118
20119     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20120
20121 commit 9417d9a21384279308abe5b4dd8dfd418742484c
20122 Author: Mike Frysinger <vapier@gentoo.org>
20123 Date:   Sun Oct 12 21:49:28 2008 -0400
20124
20125     Blackfin: tcm-bf537: new board port
20126
20127     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20128
20129 commit e548321af00e869af7194896576beb9b68457ff7
20130 Author: Mike Frysinger <vapier@gentoo.org>
20131 Date:   Sun Oct 12 21:45:05 2008 -0400
20132
20133     Blackfin: cm-bf561: new board port
20134
20135     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20136
20137 commit 8a9bab08a6fe93e5f3bf57b90438f1d2a67fad3c
20138 Author: Mike Frysinger <vapier@gentoo.org>
20139 Date:   Sun Oct 12 21:41:06 2008 -0400
20140
20141     Blackfin: cm-bf537e: new board port
20142
20143     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20144
20145 commit e82d8a1f028bedb12c4ab88a35a935010d92898c
20146 Author: Mike Frysinger <vapier@gentoo.org>
20147 Date:   Sun Oct 12 21:36:22 2008 -0400
20148
20149     Blackfin: cm-bf533: new board port
20150
20151     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20152
20153 commit dd14af7640f7d48d8e9768eeeb09592e6f94ed38
20154 Author: Mike Frysinger <vapier@gentoo.org>
20155 Date:   Thu Nov 27 16:50:32 2008 -0500
20156
20157     Blackfin: new spibootldr command
20158
20159     Newer Blackfin parts can an on-chip ROM that can boot LDRs over SPI flashes,
20160     so add a new 'spibootldr' command to take advantage of it.
20161
20162     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20163
20164 commit 67c2829b646bb5b859088b36fbc89e971b9c1960
20165 Author: Mike Frysinger <vapier@gentoo.org>
20166 Date:   Mon Oct 6 04:42:33 2008 -0400
20167
20168     Blackfin: support embedding the environment into loader files (LDRs)
20169
20170     For the most part, the Blackfin processor boots files in the LDR format
20171     rather than binary/ELF files.  So we want to export the environment as a
20172     raw blob to the LDR utility so it can embed it at the right location.
20173
20174     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20175
20176 commit 31f30c9eb60d9ab0bd702e31f66345f99b34bdc6
20177 Author: Mike Frysinger <vapier@gentoo.org>
20178 Date:   Sun Jun 14 11:03:48 2009 -0400
20179
20180     add %.c->%.i and %.c->%.s rules
20181
20182     The Linux kernel has some helper rules which allow you to quickly produce
20183     some of the intermediary files from C source.  Specifically, you can
20184     create .i files which is the preprocessed output and you can create .s
20185     files which is the assembler output.  This is useful when you are trying
20186     to track down header/macro expansion errors or inline assembly errors.
20187
20188     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20189     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20190
20191 commit 6d1ce387874c1060f27656f70151a52c511cd0e3
20192 Author: Mike Frysinger <vapier@gentoo.org>
20193 Date:   Sat May 30 01:02:03 2009 -0400
20194
20195     make sure toplevel $(SUBDIRS) is always declared
20196
20197     The $(SUBDIRS) variable is only declared when U-Boot has been configured,
20198     but it gets used all the time.  In the non-configured case, it is used to
20199     generate a helpful error message, but it needs to be set properly for that
20200     to occur.
20201
20202     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20203
20204 commit 1260233982f7dfbdfd1adee12daa95a0c0e84a43
20205 Author: Grzegorz Bernacki <gjb@semihalf.com>
20206 Date:   Fri Jun 12 11:33:55 2009 +0200
20207
20208     digsy mtc: Add description to GPIO initial configuration.
20209
20210     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
20211
20212 commit 12304871bc7839145f2b4238923e9023616d7399
20213 Author: Grzegorz Bernacki <gjb@semihalf.com>
20214 Date:   Fri Jun 12 11:33:54 2009 +0200
20215
20216     digsy MTC: Add 'mtc' command.
20217
20218     New command allows to:
20219          o check FW version
20220          o set LED status
20221          o set digital output status
20222          o get digital input status
20223
20224     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
20225
20226 commit f1f66edfc76f4a9f5b9f63972d90309784a8cae5
20227 Author: Grzegorz Bernacki <gjb@semihalf.com>
20228 Date:   Fri Jun 12 11:33:53 2009 +0200
20229
20230     digsy MTC: Add SPI support.
20231
20232     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
20233
20234 commit 6325b7780dad8be26ba6fc25ef88ba338c50205b
20235 Author: Grzegorz Bernacki <gjb@semihalf.com>
20236 Date:   Fri Jun 12 11:33:52 2009 +0200
20237
20238     mpc52xx: Add SPI driver.
20239
20240     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
20241
20242 commit 5ec5529b82f314ca2cf9c262cdfc985d5fc468a0
20243 Author: Mike Frysinger <vapier@gentoo.org>
20244 Date:   Sun Jun 14 09:33:00 2009 -0400
20245
20246     allow boards to customize compiler options on a per-file/dir basis
20247
20248     With our Blackfin boards, we like to build the compression routines with
20249     -O2 as our tests show a pretty good size/speed tradeoff.  For the rest of
20250     U-Boot though, we want to stick with the default -Os as that is mostly
20251     control code.  So in our case, we would add a line like so to the board
20252     specific config.mk file:
20253         CFLAGS_lib_generic += -O2
20254
20255     Now all files under lib_generic/ will have -O2 appended to their build.
20256
20257     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20258     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20259
20260 commit 6b1f78ae6ad037382ad430b07064105c88f7ac02
20261 Author: Wolfgang Denk <wd@denx.de>
20262 Date:   Sun Jun 14 21:30:39 2009 +0200
20263
20264     Prepare v2009.06
20265
20266     Update CHANGELOG, fix minor coding stylke issue. Update Makefile.
20267
20268     Signed-off-by: Wolfgang Denk <wd@denx.de>
20269
20270 commit c3147c1762f8caf99649051116a2411bdf887c10
20271 Author: Wolfgang Denk <wd@denx.de>
20272 Date:   Sun Jun 14 20:31:36 2009 +0200
20273
20274     Revert "SMC911x driver fixed for NFS boot"
20275
20276     This reverts commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43,
20277     which causes compile warnings ("large integer implicitly truncated
20278     to unsigned type") on all systems that use this driver. The warning
20279     results from passing long constants (TX_CFG, RX_CFG) into
20280     smc911x_set_mac_csr() which is declared to accept "unsigned
20281     character" arguments only.
20282
20283     Being close to a release, with nobody available to actually test the
20284     code or the suggested fixes, it seems better to revert the patch.
20285
20286 commit 388517e4b745b00256c2fa201ce7bccb67b4f245
20287 Author: Peter Tyser <ptyser@xes-inc.com>
20288 Date:   Fri May 22 10:26:37 2009 -0500
20289
20290     xes: Update Freescale clock code to work with 86xx processors
20291
20292     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20293     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20294
20295 commit 25623937bb81cae788d767e6c59a11c96fc82866
20296 Author: Peter Tyser <ptyser@xes-inc.com>
20297 Date:   Fri May 22 10:26:36 2009 -0500
20298
20299     xes: Update Freescale DDR code to work with 86xx processors
20300
20301     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20302     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20303
20304 commit bef3013908bbc68f24084174a3ca86cc2a3eb986
20305 Author: Peter Tyser <ptyser@xes-inc.com>
20306 Date:   Fri May 22 10:26:35 2009 -0500
20307
20308     xes: Update Freescale PCI code to work with 86xx processors
20309
20310     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20311     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20312
20313 commit 6442b71b522face775c1c31bd43121db3b4bf7d6
20314 Author: Peter Tyser <ptyser@xes-inc.com>
20315 Date:   Fri May 22 10:26:32 2009 -0500
20316
20317     85xx: Add PORBMSR and PORDEVSR shift defines
20318
20319     Add defines similar to those already used for the the 86xx architecture.
20320     This will ease sharing of PCI code between the 85xx and 86xx
20321     architectures.
20322
20323     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20324     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20325
20326 commit 2f21ce4d546d31289ac49a680f78bcc9a792c6ec
20327 Author: Peter Tyser <ptyser@xes-inc.com>
20328 Date:   Thu May 21 12:10:00 2009 -0500
20329
20330     fsl/85xx, 86xx: Sync up DMA code
20331
20332     The following changes were made to sync up the DMA code between the 85xx
20333     and 86xx architectures which will make it easier to break out common
20334     8xxx DMA code:
20335
20336     85xx:
20337     - Don't set STRANSINT and SPCIORDER fields in SATR register.  These bits
20338       only have an affect when the SBPATMU bit is set.
20339     - Write 0xffffffff instead of 0xfffffff to clear errors in the DMA
20340       status register.  We may as well clear all 32 bits of the register...
20341
20342     86xx:
20343     - Add CONFIG_SYS_MPC86xx_DMA_ADDR define to address DMA registers
20344     - Add clearing of errors in the DMA status register when initializing
20345       the controller
20346     - Clear the channel start bit in the DMA mode register after a transfer
20347
20348     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20349     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20350
20351 commit b1f12650d332eadac1306a772cab6096abee6ddd
20352 Author: Peter Tyser <ptyser@xes-inc.com>
20353 Date:   Thu May 21 12:09:59 2009 -0500
20354
20355     fsl: Create common fsl_dma.h for 85xx and 86xx cpus
20356
20357     Break out DMA structures for the Freescale MPC85xx and MPC86xx cpus to
20358     reduce a large amount of code duplication
20359
20360     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20361     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20362
20363 commit 3bd8e532b5de20647aeaff94a1cbf33fb8b897b9
20364 Author: Haiying Wang <Haiying.Wang@freescale.com>
20365 Date:   Wed May 20 12:30:41 2009 -0400
20366
20367     85xx: Add UEC6 and UEC8 at SGMII mode for MPC8569MDS
20368
20369     On MPC8569MDS board, UCC6 and UCC8 can be configured to work at SGMII mode via
20370     UEM on PB board. Since MPC8569 supports up to 4 Gigabit Ethernet ports, we
20371     disable UEC6 and UEC8 by default.
20372
20373     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20374     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20375
20376 commit e8efef7c1b457442583a8b9d38d8a5b667661616
20377 Author: Haiying Wang <Haiying.Wang@freescale.com>
20378 Date:   Thu Jun 4 16:12:42 2009 -0400
20379
20380     drivers/qe: add sgmii support in for UEC driver
20381
20382     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20383     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20384
20385 commit 8e55258f144764de8902e9f078a7ad4c6c022c2f
20386 Author: Haiying Wang <Haiying.Wang@freescale.com>
20387 Date:   Thu Jun 4 16:12:41 2009 -0400
20388
20389     qe: Pass in uec_info struct through uec_initialize
20390
20391     The uec driver contains code to hard code configuration information for the uec
20392     ethernet controllers. This patch creates an array of uec_info structures, which
20393     are then parsed by the corresponding driver instance to determine configuration.
20394     It also creates function uec_standard_init() to initialize all UEC interfaces
20395     for 83xx and 85xx.
20396
20397     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20398     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20399
20400 commit 9a6110897fc9282ade598bbba70ad72b940436e3
20401 Author: Haiying Wang <Haiying.Wang@freescale.com>
20402 Date:   Thu Jun 4 16:12:40 2009 -0400
20403
20404     fsl: Update the number of ethxaddr in reading system eeprom
20405
20406     We support up to 8 mac addresses in system eeprom, so we define the macro
20407     MAX_NUM_PORTS to limit the mac_count to 8, and update the number of ethxaddr
20408     according to mac_count.
20409
20410     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20411     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20412
20413 commit f82107f637f167a77803c0933f9b24741a91c711
20414 Author: Haiying Wang <Haiying.Wang@freescale.com>
20415 Date:   Wed May 20 12:30:37 2009 -0400
20416
20417     85xx: Add RMII support for MPC8569MDS
20418
20419     This patch supports UCC working at RMII mode on PIB board, fixup fdt blob to
20420     support rmii in kernel. It also changes the name of enable_mpc8569mds_qe_mdio to
20421     enalbe_mpc8569mds_qe_uec which is  more accurate.
20422
20423     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20424     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20425
20426 commit 750098d33bc362ac4263863e92da158cf011063f
20427 Author: Haiying Wang <Haiying.Wang@freescale.com>
20428 Date:   Wed May 20 12:30:36 2009 -0400
20429
20430     85xx: Add UEC3 and UEC4 support for MPC8569MDS
20431
20432     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20433     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20434
20435 commit 4e7b25e4fe777f525e426cbd58c3a3976c564f2e
20436 Author: Haiying Wang <Haiying.Wang@freescale.com>
20437 Date:   Wed May 20 12:30:35 2009 -0400
20438
20439     drivers/qe: Add more SNUM number for QE
20440
20441     Some QE chips like 8569 need more SNUM numbers for supporting 4 UECs in RGMII-
20442     1000 mode.
20443
20444     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20445     Acked-by: Timur Tabi <timur@freescale.com>
20446     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20447
20448 commit 7211fbfa18f3061858696150ee6e9e093d9eceae
20449 Author: Haiying Wang <Haiying.Wang@freescale.com>
20450 Date:   Thu May 21 15:34:14 2009 -0400
20451
20452     drivers/qe: Change QE RISC ALLOCATION to support 4 RISCs
20453
20454     Also define the QE_RISC_ALLOCATION_RISCs to MACROs instead of using enum, and
20455     define MAX_QE_RISC for QE based silicons.
20456
20457     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20458     Acked-by: Timur Tabi <timur@freescale.com>
20459     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20460
20461 commit b3d7f20f43a0f8d11c65e2f92153b5512b11580c
20462 Author: Haiying Wang <Haiying.Wang@freescale.com>
20463 Date:   Wed May 20 12:30:29 2009 -0400
20464
20465     85xx: Add QE clk support
20466
20467     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20468     Acked-by: Timur Tabi <Timur@freescale.com>
20469     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20470
20471 commit 71b358cc26792889bbac35054d8e89d59b3fabc4
20472 Author: Kumar Gala <galak@kernel.crashing.org>
20473 Date:   Wed May 20 01:11:33 2009 -0500
20474
20475     85xx: Added MPC8535/E identifiers
20476
20477     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20478
20479 commit 22419d77976bbd0df9fcf45513f1b96bd73e50d1
20480 Author: Kumar Gala <galak@kernel.crashing.org>
20481 Date:   Thu May 21 08:36:43 2009 -0500
20482
20483     85xx: Always attempt ethernet device tree fixup
20484
20485     Its reasonable that we may have ethernet devices but dont have drivers
20486     or support enabled for them in u-boot and want the device tree fixed up.
20487     Unconditionally calling the ethernet fixup is fine since if we dont have
20488     ethernet nodes that match (or aliases) we will not attempt to do
20489     anything.
20490
20491     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20492     Acked-by: Timur Tabi <timur@freescale.com>
20493
20494 commit 52d6ad5ecfb22938441c8e3e62935fbd7b0f0920
20495 Author: Haiying Wang <Haiying.Wang@freescale.com>
20496 Date:   Thu May 21 15:32:13 2009 -0400
20497
20498     drivers/qe: Rename the camel-case identifiers in uec
20499
20500     Rename riscRx/riscTx to risc_rx/risc_tx to comply with Codingstyle.
20501
20502     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20503
20504 commit feb7838f979ec2b581df3c791b9ae3284c36bb47
20505 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
20506 Date:   Fri Apr 3 15:36:13 2009 -0500
20507
20508     85xx: Add P2020DS support
20509
20510     The patch adds support for P2020DS reference platform.
20511     DDR3 interface uses hard-coded initialization rather than SPD
20512     for now and was tested at 667Mhz. Some PIXIS register
20513     definitions and associated code sections need to be fixed.
20514     TSEC1/2/3, NOR flash, MAC/SYS ID EEPROM, PCIE1/2/3 are all
20515     tested under u-boot.
20516
20517     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
20518     Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
20519     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20520
20521 commit 229549a56d9ae413c00f64fd7c728c6879a1b54b
20522 Author: Stefan Roese <sr@denx.de>
20523 Date:   Tue Jun 9 16:57:47 2009 +0200
20524
20525     mpc512x: MPC5121ADS: Add NAND support
20526
20527     This patch adds NAND support to the MPC5121ADS board. Please
20528     note that the image size increased since NAND support didn't
20529     fit in the current image size (256k).
20530
20531     Signed-off-by: Stefan Roese <sr@denx.de>
20532     Signed-off-by: Wolfgang Denk <wd@denx.de>
20533     Cc: Wolfgang Denk <wd@denx.de>
20534
20535 commit 35f2edbb6cad043ccd5ea6e78fe9b7aa21d8395f
20536 Author: Stefan Roese <sr@denx.de>
20537 Date:   Tue Jun 9 16:57:03 2009 +0200
20538
20539     nand/mpc512x: Add MPC512x NAND support (NFC)
20540
20541     This patch adds NAND Flash Controller driver for MPC5121 revision 2.
20542     All device features, except hardware ECC and power management, are
20543     supported.
20544
20545     This NFC driver replaces the one orignally posted by John Rigby:
20546
20547     "[PATCH] Freescale NFC NAND driver"
20548
20549     It's a port of the Linux driver version posted by Piotr Ziecik a few
20550     weeks ago. Using this driver has the following advantages (from my
20551     point of view):
20552
20553     - Compatibility with the Linux NAND driver (e.g. ECC usage)
20554     - Better code quality in general
20555     - Resulting U-Boot image is a bit smaller (approx. 3k)
20556     - Better to sync with newer Linux driver versions
20557
20558     The only disadvantage I can see, is that HW-ECC is not supported right
20559     now. But this could be added later (e.g. port from Linux driver after
20560     it's supported there). Using HW-ECC on the MCP5121 NFC has a general
20561     problem because of the ECC usage in the spare area. This collides with
20562     JFFS2 for example.
20563
20564     Signed-off-by: Stefan Roese <sr@denx.de>
20565     Cc: Piotr Ziecik <kosmo@semihalf.com>
20566     Cc: Wolfgang Denk <wd@denx.de>
20567     Cc: John Rigby <jcrigby@gmail.com>
20568     Cc: Scott Wood <scottwood@freescale.com>
20569
20570 commit e53b507cee5d976953134a565c72fd32c967d7dd
20571 Author: Stefan Roese <sr@denx.de>
20572 Date:   Tue Jun 9 11:50:40 2009 +0200
20573
20574     mpc512x: Add esd gmbh mecp5123 board support
20575
20576     MECP5123 is a MPC5121E based module by esd gmbh.
20577
20578     Signed-off-by: Stefan Roese <sr@denx.de>
20579     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20580
20581 commit 6bd55cc65d0c3aa84d719518254fb3c650239ed9
20582 Author: Stefan Roese <sr@denx.de>
20583 Date:   Tue Jun 9 11:50:05 2009 +0200
20584
20585     mcp512x: Add macros for SCFR LPC divisor access
20586
20587     Thos macros will be used by the esd mecp5123 board.
20588
20589     Signed-off-by: Stefan Roese <sr@denx.de>
20590
20591 commit c60dc8527dbb2a1318c03bc18bdebcfbd0164551
20592 Author: Stefan Roese <sr@denx.de>
20593 Date:   Mon Jun 8 09:38:07 2009 +0200
20594
20595     mpc512x: Fix problem with I2C access before relocation
20596
20597     This is needed for the upcoming esd MECP5123 board port which uses
20598     I2C EEPROM for environment storage.
20599
20600     Signed-off-by: Stefan Roese <sr@denx.de>
20601     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20602     Acked-by: Heiko Schocher<hs@denx.de>
20603
20604 commit 58f10460b05e0928d986b15edd4f2e1e99403f7e
20605 Author: Stefan Roese <sr@denx.de>
20606 Date:   Thu Jun 4 13:35:39 2009 +0200
20607
20608     74xx_7xx: CPCI750: Add CPCI adapter/target support
20609
20610     The CPCI750 can be built as CPCI host or adapter/target board. This patch
20611     adds support for runtime detection of those variants.
20612
20613     Signed-off-by: Stefan Roese <sr@denx.de>
20614     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20615
20616 commit ae7a2739d7a0704437376e229bb21940952c55be
20617 Author: Stefan Roese <sr@denx.de>
20618 Date:   Fri Jun 5 05:45:41 2009 +0200
20619
20620     74xx_7xx: CPCI750: Enable access to PCI function > 0
20621
20622     The Marvell bridge 64360 supports serveral PCI functions, not only 0. This
20623     patch enables access to those functions.
20624
20625     Signed-off-by: Stefan Roese <sr@denx.de>
20626     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20627
20628 commit e5b563e9ec54c3f6d702c8fa2b711b4a6150243a
20629 Author: Stefan Roese <sr@denx.de>
20630 Date:   Thu Jun 4 13:35:37 2009 +0200
20631
20632     74xx_7xx: CPCI750: Minor coding style cleanup of cpci750.c
20633
20634     Signed-off-by: Stefan Roese <sr@denx.de>
20635     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20636
20637 commit 0e5ef07d0d91bd3d87ebea0534f538561aa974d5
20638 Author: Stefan Roese <sr@denx.de>
20639 Date:   Thu Jun 4 13:35:36 2009 +0200
20640
20641     74xx_7xx: CPCI750: Add loadpci command
20642
20643     This command is used to load/boot an OS-image which is transferred from
20644     the CPCI host to the CPCI target/adapter.
20645
20646     Signed-off-by: Stefan Roese <sr@denx.de>
20647     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20648
20649 commit 0a14d6b8f4d21ff59a9b7686a49a77069a9fcd2a
20650 Author: Stefan Roese <sr@denx.de>
20651 Date:   Thu Jun 4 13:35:35 2009 +0200
20652
20653     74xx_7xx: CPCI750: Add commandline editing/history
20654
20655     Signed-off-by: Stefan Roese <sr@denx.de>
20656     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20657
20658 commit 60cfe87bd39e6f07f2b92eb4bff82bfd105f4724
20659 Author: Stefan Roese <sr@denx.de>
20660 Date:   Thu Jun 4 16:55:34 2009 +0200
20661
20662     UBI: Add compile-time check for correct malloc area configuration
20663
20664     UBI is quite memory greedy and requires at least approx. 512k of malloc
20665     area. This patch adds a compile-time check, so that boards will not
20666     build with less memory reserved for this area (CONFIG_SYS_MALLOC_LEN).
20667
20668     Signed-off-by: Stefan Roese <sr@denx.de>
20669
20670 commit 7ce6031afc8671c8b47c6135b3678d43fcd02852
20671 Author: Prafulla Wadaskar <prafulla@marvell.com>
20672 Date:   Mon Apr 6 21:24:43 2009 +0530
20673
20674     sf: new Macronix MX25xx SPI flash driver
20675
20676     Added macronix SF driver for MTD framework
20677     MX25L12805D is supported and tested
20678     TBD: sector erase implementation, other deivces support
20679
20680     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
20681     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20682
20683 commit 2a6cc58869305f346e389eefdfa96dea5146cb0c
20684 Author: Todor I Mollov <tmollov@ucsd.edu>
20685 Date:   Sat Apr 4 07:14:44 2009 -0400
20686
20687     sf: atmel: implement power-of-two write/erase funcs
20688
20689     Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
20690     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20691     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20692
20693 commit 4bc6eb79be2a7317425575184324b94e3b43fbc2
20694 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
20695 Date:   Mon May 25 17:23:18 2009 +0530
20696
20697     mpc85xx: 8536ds: Add USB related CONFIGs
20698
20699     This patch adds CONFIGs for enabling USB in mpc8536ds and also
20700     adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
20701     Copyright.
20702
20703     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
20704     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20705
20706 commit 6823e9b01290977c4d9c90381459c01f66e12e79
20707 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
20708 Date:   Mon May 25 17:23:17 2009 +0530
20709
20710     mpc83xx: 8315erdb: Add USB related CONFIGs
20711
20712     This patch adds CONFIGs for enabling USB in mpc8315erdb and also
20713     adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
20714     Copyright.
20715
20716     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
20717     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20718
20719 commit a07bf180efc3c0de4a89a3bd49a7c7584dfb95a8
20720 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
20721 Date:   Thu May 21 17:32:48 2009 +0530
20722
20723     mpc85xx: USB: Add support
20724
20725     The following patch adds 85xx-specific USB support and also
20726     revamps Copyright in immap_85xx.h
20727
20728     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
20729     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20730
20731 commit 4ef01010aa4799c759d75e67007fdd3a38c88c8a
20732 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
20733 Date:   Mon May 25 17:23:16 2009 +0530
20734
20735     mpc83xx: USB: Reorganized its support
20736
20737     The following patch reorganizes/reworks the USB support for mpc83xx
20738     as under:-
20739
20740       * Moves the 83xx USB clock init from drivers/usb/host/ehci-fsl.c to
20741         cpu/mpx83xx/cpu_init.c
20742
20743       * Board specific usb_phy_type is read from the environment
20744
20745       * Adds USB EHCI specific structure in include/usb/ehci-fsl.h
20746
20747       * Copyrights revamped in most of the following files
20748
20749     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
20750     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20751
20752 commit ed90d2c87158e5114b6009fa95bb6417e4b27b3e
20753 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
20754 Date:   Thu May 21 17:32:27 2009 +0530
20755
20756     mpc8xxx: USB: Relocates ehci-fsl.h to include/usb
20757
20758     The following patch moves 8xxx-specifc USB #defines from
20759     drivers/usb/host/ehci-fsl.h to include/usb.
20760
20761     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
20762     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20763
20764 commit cfd39cdf9422d3d25e9b3c058865f4c1f66f34da
20765 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
20766 Date:   Thu May 21 17:32:15 2009 +0530
20767
20768     mpc8xxx: USB: Removed reenablement of its interface
20769
20770     To prepare for the 85xx USB support, which requires interface enablement
20771     only once in (specified) order, no different than instructions for
20772     enabling the interface under 83xx.  It is unknown why the original author
20773     enabled the interface twice (checked for references in errata, etc).
20774
20775     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
20776     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20777
20778 commit 2c7920afaf96d9779304202cd8a355b4f7576a83
20779 Author: Peter Tyser <ptyser@xes-inc.com>
20780 Date:   Fri May 22 17:23:25 2009 -0500
20781
20782     83xx: Replace CONFIG_MPC83[0-9]X with MPC83[0-9]x
20783
20784     Use the standard lowercase "x" capitalization that other Freescale
20785     architectures use for CPU defines to prevent confusion and errors
20786
20787     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20788     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20789
20790 commit 0f898604945af4543c1525fc33b6bae621a3b805
20791 Author: Peter Tyser <ptyser@xes-inc.com>
20792 Date:   Fri May 22 17:23:24 2009 -0500
20793
20794     83xx: Replace CONFIG_MPC83XX with CONFIG_MPC83xx
20795
20796     Use the standard lowercase "xx" capitalization that other Freescale
20797     architectures use for CPU defines to prevent confusion and errors
20798
20799     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20800     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20801
20802 commit ba4feae90ca71de1681d5808f17e73224d8f03c4
20803 Author: Stefan Roese <sr@denx.de>
20804 Date:   Tue Jun 2 16:53:16 2009 +0200
20805
20806     mpc512x: Use serial_setbrg() in serial_init() to not duplicate the code
20807
20808     This patch removes the duplicated code for baudrate generator configuration
20809     in the PSC serial_init() implementation by calling serial_setbrg() instead
20810     of duplicating the code.
20811
20812     Signed-off-by: Stefan Roese <sr@denx.de>
20813
20814 commit b8c1d6a54ff8195488b68e163de8ec31f1603496
20815 Author: Stefan Roese <sr@denx.de>
20816 Date:   Tue Jun 2 16:53:15 2009 +0200
20817
20818     mpc512x: Fix PSC divisor calculation for baudrate setting
20819
20820     The wrong input frequency was used in serial_setbrg(). This patch fixes
20821     this by using ips_clk as input frequency for the PSC baudrate generator.
20822
20823     Signed-off-by: Stefan Roese <sr@denx.de>
20824
20825 commit 52568c3654b2b257016d52167805ae132faac14e
20826 Author: Wolfgang Denk <wd@denx.de>
20827 Date:   Sat May 16 10:47:46 2009 +0200
20828
20829     MPC512x: add support for ARIA board
20830
20831     ARIA is a MPC5121E based COM Express module by Dave/DENX.
20832
20833     Signed-off-by: Wolfgang Denk <wd@denx.de>
20834     Cc: John Rigby <jcrigby@gmail.com>
20835
20836 commit 3b74e7ec58e2cc352b0a396a614065cfeb8d138f
20837 Author: Wolfgang Denk <wd@denx.de>
20838 Date:   Sat May 16 10:47:45 2009 +0200
20839
20840     MPC512x: remove include/mpc512x.h
20841
20842     Move needed definitions (register descriptions etc.) from
20843     include/mpc512x.h  into  include/asm-ppc/immap_512x.h.
20844
20845     Instead of using a #define'd register offset, use a function that
20846     provides the PATA controller's base address.
20847
20848     All the rest of include/mpc512x.h are register offset definitions
20849     which can be eliminated by proper use of C structures.
20850
20851     There are only a few register offsets remaining that are needed in
20852     cpu/mpc512x/start.S; for these we provide cpu/mpc512x/asm-offsets.h
20853     which is intended as a temporary workaround only. In a later patch
20854     this file will be removed, too, and then auto-generated from the
20855     respective C structs.
20856
20857     Signed-off-by: Wolfgang Denk <wd@denx.de>
20858     Cc: John Rigby <jcrigby@gmail.com>
20859
20860 commit a927e491b2a326c1e9c4313e3ce4042988422697
20861 Author: Wolfgang Denk <wd@denx.de>
20862 Date:   Sat May 16 10:47:44 2009 +0200
20863
20864     MPC512x FEC: get rid of duplicated struct ethernet_regs
20865
20866     Use existing struct fec512x instead.
20867
20868     Signed-off-by: Wolfgang Denk <wd@denx.de>
20869     Cc: John Rigby <jcrigby@gmail.com>
20870     Acked-by: Ben Warren <biggerbadderben@gmail.com>
20871
20872 commit 843efb1192cc8fd4f904a23dbab4e0fe3e1c5bc2
20873 Author: Wolfgang Denk <wd@denx.de>
20874 Date:   Sat May 16 10:47:43 2009 +0200
20875
20876     MPC512x: use I/O accessors instead of pointer accesses
20877
20878     This commit changes the MPC512x code to use I/O accessor calls (i.e.
20879     out_*() and in_*()) instead of using deprecated pointer accesses.
20880
20881     Signed-off-by: Wolfgang Denk <wd@denx.de>
20882     Cc: John Rigby <jcrigby@gmail.com>
20883
20884 commit 19dc7e179268be148e550c36203208c662610d76
20885 Author: Wolfgang Denk <wd@denx.de>
20886 Date:   Sat May 16 10:47:42 2009 +0200
20887
20888     MPC512x: add more hardware description to immap_512x.h
20889
20890     - add GPIO module description
20891     - add Address Latch Timing Register description
20892     - add IO Control Memory Map
20893     - add FEC Memory Map
20894
20895     Also change board/freescale/mpc5121ads/mpc5121ads.c and
20896     cpu/mpc512x/iopin.c as needed.
20897
20898     Signed-off-by: Wolfgang Denk <wd@denx.de>
20899     Cc: John Rigby <jcrigby@gmail.com>
20900
20901 commit 72601d04fdfdd4c7597afcf1f6aab654bd99366c
20902 Author: Wolfgang Denk <wd@denx.de>
20903 Date:   Sat May 16 10:47:41 2009 +0200
20904
20905     Rename ads5121 board into mpc5121ads
20906
20907     We rename the board so we use a consistent name in U-Boot and in
20908     Linux.  Also, we use this opportunity to move the board into the
20909     Freecale vendor directory.
20910
20911     Signed-off-by: Wolfgang Denk <wd@denx.de>
20912     Cc: John Rigby <jcrigby@gmail.com>
20913
20914 commit debf87415579c0f50aab9e0832976d4506babe0f
20915 Author: Wolfgang Denk <wd@denx.de>
20916 Date:   Sat May 16 10:47:40 2009 +0200
20917
20918     cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type
20919
20920     Signed-off-by: Wolfgang Denk <wd@denx.de>
20921     Cc: John Rigby <jcrigby@gmail.com>
20922
20923 commit 8b251263191ec554967dd1add6237c1ba7f7eb25
20924 Author: Wolfgang Denk <wd@denx.de>
20925 Date:   Sat May 16 10:47:39 2009 +0200
20926
20927     cpu/mpc512x/pci.c: minor coding style cleanup
20928
20929     Get rid of variable declaration in the middle of the code.
20930
20931     Signed-off-by: Wolfgang Denk <wd@denx.de>
20932     Cc: John Rigby <jcrigby@gmail.com>
20933
20934 commit de26ef99bddbce4ed225f93afcf0bee99c3b6f87
20935 Author: Wolfgang Denk <wd@denx.de>
20936 Date:   Sat May 16 10:47:38 2009 +0200
20937
20938     mpc512x: Move common files to share them by several boards
20939
20940     We will soon see several new MPC521x based boards added.  This patch
20941     moves files that are not board specific to a common directory so they
20942     can be shared by all such ports.  It also splits off common IDE code
20943     into a new file, cpu/mpc512x/ide.c .
20944
20945     Signed-off-by: Wolfgang Denk <wd@denx.de>
20946     Cc: John Rigby <jcrigby@gmail.com>
20947
20948 commit 03e069dc0a765d506f78a68319acf33d432e035b
20949 Author: Wolfgang Denk <wd@denx.de>
20950 Date:   Sat May 16 10:47:37 2009 +0200
20951
20952     mpc512x: change cpu/mpc512x/Makefile to use Kconfig style
20953
20954     Signed-off-by: Wolfgang Denk <wd@denx.de>
20955     Cc: John Rigby <jcrigby@gmail.com>
20956
20957 commit a89c33db96a1e55319a286dd4c3c05ca64ac6bfd
20958 Author: Wolfgang Denk <wd@denx.de>
20959 Date:   Sun May 24 17:06:54 2009 +0200
20960
20961     General help message cleanup
20962
20963     Many of the help messages were not really helpful; for example, many
20964     commands that take no arguments would not print a correct synopsis
20965     line, but "No additional help available." which is not exactly wrong,
20966     but not helpful either.
20967
20968     Commit ``Make "usage" messages more helpful.'' changed this
20969     partially. But it also became clear that lots of "Usage" and "Help"
20970     messages (fields "usage" and "help" in struct cmd_tbl_s respective)
20971     were actually redundant.
20972
20973     This patch cleans this up - for example:
20974
20975     Before:
20976         => help dtt
20977         dtt - Digital Thermometer and Thermostat
20978
20979         Usage:
20980         dtt         - Read temperature from digital thermometer and thermostat.
20981
20982     After:
20983         => help dtt
20984         dtt - Read temperature from Digital Thermometer and Thermostat
20985
20986         Usage:
20987         dtt
20988
20989     Signed-off-by: Wolfgang Denk <wd@denx.de>
20990
20991 commit 94796d8544d4248028141bad11c6a74b840e9d6e
20992 Author: Wolfgang Denk <wd@denx.de>
20993 Date:   Sun May 24 19:17:29 2009 +0200
20994
20995     Make "usage" messages more helpful.
20996
20997     In case of incorrect command invocations U-Boot used to print pretty
20998     useless "usage" messages, for example:
20999
21000         => nand markbad
21001         Usage:
21002         nand - NAND sub-system
21003
21004     In the result, the user would have to run the "help" command to get
21005     the (available) information about correct command usage. Change this,
21006     so that this information gets always printed.
21007
21008     Note that this changes the user interface of all commands, but
21009     hopefully to the better.
21010
21011     Signed-off-by: Wolfgang Denk <wd@denx.de>
21012
21013 commit 4c94f6c54bbc4dc5f418da01d8ec01e2adf636be
21014 Author: Mike Frysinger <vapier@gentoo.org>
21015 Date:   Sun May 24 02:26:19 2009 -0400
21016
21017     nvedit: speed up printing of environment
21018
21019     The printing code would check the same environment byte multiple times and
21020     write to the console one byte at a time.  For some devices (such as the
21021     Blackfin JTAG console which operates in 8 bytes at a time), this is pretty
21022     damned slow.  So create a small 16 byte buffer to fill up and send to puts
21023     as needed.  In the process, unify the different print functions, shrink
21024     the resulting code (source and compiled), and avoid excess env reads as
21025     those too can be somewhat expensive depending on the board.
21026
21027     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21028
21029 commit 3112030a430553768de5d30c05bedf8710784452
21030 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21031 Date:   Fri May 22 19:28:52 2009 +0200
21032
21033     config.mk: remove un-needed REMOTE_BUILD check
21034
21035     as $(obj) is empty when in tree build
21036
21037     %.s:        %.S
21038         $(CPP) $(AFLAGS) -o $@ $<
21039
21040     and
21041
21042     $(obj)%.s:  %.S
21043         $(CPP) $(AFLAGS) -o $@ $<
21044
21045     are the same
21046
21047     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21048     Acked-by: Mike Frysinger <vapier@gentoo.org>
21049
21050 commit 651351fe980b20217b014b9a888398f18d77951c
21051 Author: Tom Rix <Tom.Rix@windriver.com>
21052 Date:   Wed May 20 07:55:41 2009 -0500
21053
21054     FAT replace compare_sign with strncmp.
21055
21056     The static function compare_sign is only used to compare the fs_type string
21057     and does not do anything more than what strncmp does.
21058
21059     The addition of the trailing '\0' to fs_type, while legal, is not needed
21060     because the it is never printed out and strncmp does not depend on NULL
21061     terminated strings.
21062
21063     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21064
21065 commit ecb1dc892297d5d99876907328fed732feefeab2
21066 Author: Mike Frysinger <vapier@gentoo.org>
21067 Date:   Wed May 20 04:35:14 2009 -0400
21068
21069     Add support for Linux-like kallsysms
21070
21071     The kernel stores address<->symbol names in it so things can be decoded at
21072     runtime.  Do it in U-Boot, and we get nice symbol decoding when crashing.
21073
21074     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21075
21076 commit 36c9169aa6f79ddf604a3bca64e145654f94888b
21077 Author: Wolfgang Denk <wd@denx.de>
21078 Date:   Sun May 17 16:01:54 2009 +0200
21079
21080     cmd_mtdparts.c: allow to omit definitions for default settings
21081
21082     There is actually no good reason to enforce that all board
21083     configuations must define default settings for "mtdids" and
21084     "mtdparts".  Actually this may be difficult to handle, especially on
21085     boards where different sizes of flash chips can be fit, so there is no
21086     real "default" partition map for all boards.
21087
21088     Lift this arbitrary limitation.
21089
21090     Signed-off-by: Wolfgang Denk <wd@denx.de>
21091
21092 commit 864aa034f3a0e10ce710e8bbda171df3cab59414
21093 Author: Stefan Roese <sr@denx.de>
21094 Date:   Tue May 12 14:31:56 2009 +0200
21095
21096     cmd_mtdparts: Move to common handling of FLASH devices via MTD layer
21097
21098     This patch removes all references to the direct CFI FLASH interface
21099     (via flash_info[]). Now that all FLASH types currently handled in
21100     mtdparts are available (if selected, see below) via the MTD infrastructure.
21101     This is NOR, NAND and OneNAND right now. This can be achieved by defining
21102     the following options:
21103
21104     CONFIG_MTD_DEVICE (for all FLASH types)
21105
21106     plus
21107
21108     CONFIG_FLASH_CFI_MTD (for NOR FLASH)
21109
21110     So we need to add those defines to the board config headers currently
21111     using the mtdparts commands. This is done via another patch, so
21112     we shouldn't break mtdparts compatibility.
21113
21114     One big advantage from this solution is that the cmd_mtdparts.c is
21115     *much* cleaner now. Lot's of #ifdef's are removed and the code itself
21116     is smaller. Additionally the newly added MDT concatenation feature
21117     can new be used via the mtdparts infrastructure and therefor via
21118     UBI etc.
21119
21120     Signed-off-by: Stefan Roese <sr@denx.de>
21121     Cc: Ladislav Michl <ladis@linux-mips.org>
21122     Cc: Scott Wood <scottwood@freescale.com>
21123
21124 commit d558107c18708050f05b6639b2192efb67c905dc
21125 Author: Stefan Roese <sr@denx.de>
21126 Date:   Tue May 12 14:31:18 2009 +0200
21127
21128     mtd: Introduce CONFIG_MTD_DEVICE to select compilation of mtdcore.o
21129
21130     This new define enables mtdcore.c compilation and with this we can
21131     select the MTD device infrastructure needed for the reworked mtdparts
21132     command.
21133
21134     We now have the 2 MTD infrastructure defines, CONFIG_MTD_DEVICE and
21135     CONFIG_MTD_PARTITIONS. CONFIG_MTD_DEVICE is needed (as explained above)
21136     for the "mtdparts" command and CONFIG_MTD_PARTITIONS is needed for UBI.
21137
21138     Signed-off-by: Stefan Roese <sr@denx.de>
21139     Cc: Scott Wood <scottwood@freescale.com>
21140
21141 commit 942556a92a8c1eb1bd76584a5143f6f57dcb25ad
21142 Author: Stefan Roese <sr@denx.de>
21143 Date:   Tue May 12 14:32:58 2009 +0200
21144
21145     mtd: MTD related config header changes (mtdparts command)
21146
21147     By changing the cmd_mtdparts to only use the MTD infrastructure and
21148     not the direct interface to the CFI NOR FLASH driver we now need
21149     to add the MTD infrastructure to all boards using those mtdparts
21150     commands. This patch adds those components:
21151
21152     CONFIG_MTD_DEVICE (for all FLASH types)
21153
21154     plus
21155
21156     CONFIG_FLASH_CFI_MTD (for NOR FLASH)
21157
21158     To all board maintainers: Please test this on your platforms and
21159     report any problems/issues found. Thanks.
21160
21161     Signed-off-by: Stefan Roese <sr@denx.de>
21162     Cc: Wolfgang Denk <wd@denx.de>
21163     Cc: Ron Madrid <info@sheldoninst.com>
21164     Cc: Georg Schardt <schardt@team-ctech.de>
21165     Cc: Michal Simek <monstr@monstr.eu>
21166     Cc: Ladislav Michl <ladis@linux-mips.org>
21167     Cc: Martin Krause <martin.krause@tqs.de>
21168     Cc: Gary Jennejohn <garyj@denx.de>
21169     Cc: Ricardo Ribalda <ricardo.ribalda@uam.es>
21170
21171 commit 8d2effea23e938631126a7888008a0637e13b389
21172 Author: Stefan Roese <sr@denx.de>
21173 Date:   Mon May 11 16:03:55 2009 +0200
21174
21175     mtd: Update MTD infrastructure to support 64bit device size
21176
21177     This patch brings the U-Boot MTD infrastructure in sync with the current
21178     Linux MTD version (2.6.30-rc3). Biggest change is the 64bit device size
21179     support and a resync of the mtdpart.c file which has seen multiple fixes
21180     meanwhile.
21181
21182     Signed-off-by: Stefan Roese <sr@denx.de>
21183     Cc: Scott Wood <scottwood@freescale.com>
21184     Cc: Kyungmin Park <kmpark@infradead.org>
21185
21186 commit 0a57265533c412adf6024f4b4955141f4346b2b9
21187 Author: Stefan Roese <sr@denx.de>
21188 Date:   Tue May 12 14:29:39 2009 +0200
21189
21190     mtd: Add MTD concat support to concatenate multiple MTD NOR devices
21191
21192     This patch adds concatenation support to the U-Boot MTD infrastructure.
21193     By enabling CONFIG_MTD_CONCAT this MTD CFI wrapper will concatenate
21194     all found NOR devices into one single MTD device. This can be used by
21195     e.g by UBI to access a partition that spans over multiple NOR chips.
21196
21197     Signed-off-by: Stefan Roese <sr@denx.de>
21198
21199 commit 55e0ed6078b10b0d425b6a0677f38a015c277df6
21200 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21201 Date:   Sat Apr 25 14:57:52 2009 +0200
21202
21203     make MODEM SUPPORT generic instead of duplicate it
21204
21205     and fix comment
21206
21207     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21208
21209     Adjusted Copyright message.
21210
21211     Signed-off-by: Wolfgang Denk <wd@denx.de>
21212
21213 commit a30f519bd0cde78ba46b424314de94fdab863726
21214 Author: Tom Rix <Tom.Rix@windriver.com>
21215 Date:   Tue Jun 2 20:53:56 2009 -0500
21216
21217     ZOOM2 detect the version of the zoom2 board at runtime.
21218
21219     There are currently 3 versions of the zoom2 board.
21220     The production board, that is currently being released.
21221     The beta board, similar in form to the production board but not released.
21222     The alpha board, a set of PCBs with a very limited circulation.
21223
21224     GPIO 94 is used to determine the version of the board. If GPIO 94 is clear,
21225     the board is a production board, otherwise it is a beta board.
21226
21227     The alpha board will likely be mistaken for a beta board.  An alpha board
21228     was unavailible for testing.
21229
21230     This has been tested on the beta and production boards.
21231
21232     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21233     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21234
21235 commit 718763c4745fd3d987a5576d2a67325e9444f9d4
21236 Author: Tom Rix <Tom.Rix@windriver.com>
21237 Date:   Wed Jun 3 01:53:57 2009 -0500
21238
21239     Beagle Convert the board version detection to use the OMAP3 GPIO interface.
21240
21241     There is no new functionality in the change.
21242
21243     This change is a conversion from the using raw register access to using
21244     the OMAP3 GPIO API described in doc/README.omap3.
21245
21246     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21247     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
21248
21249 commit 7caa13fdd2d3dc957b4e0a228810a3a4a8ba499b
21250 Author: Tom Rix <Tom.Rix@windriver.com>
21251 Date:   Wed Jun 3 01:53:55 2009 -0500
21252
21253     Fix a typo in the instructions on using omap3's gpio interface.
21254
21255     Using the example for reading a gpio, shows the problem.
21256     NULL should be the gpio number.
21257
21258     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21259     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
21260
21261 commit 0c9520efd651ce13451654a35307ec87d4a13a69
21262 Author: Tom Rix <Tom.Rix@windriver.com>
21263 Date:   Fri May 29 18:57:32 2009 -0500
21264
21265     ZOOM2 Define GPIO banks used.
21266
21267     Enable the function and interface clocks for banks 2,3,5 and 6.
21268
21269     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21270     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
21271
21272 commit 708cfb74b7c6df9c37d3c48988a154be79daefeb
21273 Author: Tom Rix <Tom.Rix@windriver.com>
21274 Date:   Fri May 29 18:57:31 2009 -0500
21275
21276     OMAP3 Turn on the GPIO bank clocks
21277
21278     The function and interface clocks for each GPIO bank, except the first, must
21279     be explicitly turned on.  These are controlled by the config level defines
21280     CONFIG_OMAP3_GPIO_n where n is from 2 to 6.
21281
21282     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21283     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
21284
21285 commit 59272620c24549b5bcd03c94ba12ec302c1476a2
21286 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21287 Date:   Thu Mar 26 15:26:01 2009 -0400
21288
21289     Coldfire M5271: Activate u-boot system timer interrupt.
21290
21291     This patch assigns the u-boot system timer interrupt to
21292     interrupt level 3, priority 6. Without this patch the interrupt
21293     will be a level 0, priority 0, which disables it and cause
21294     u-boot functions that relies on the timer (e.g. sleep command)
21295     to never return.
21296
21297     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21298
21299 commit dc26965ad3acdfb18780361d77a276b2843a90af
21300 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21301 Date:   Mon Mar 23 13:35:48 2009 -0400
21302
21303     Compier warning cleanup
21304
21305     Follow up to git commit: 19b5b533ccd522abeb501d510750693c35e20456
21306
21307     Cleanup on compiler warnings on unused variables now that
21308     bd->bi_enetaddr is no longer used.
21309
21310     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21311
21312 commit 42a83765d54f042b4079e05a3438789542429981
21313 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21314 Date:   Fri Mar 20 15:30:10 2009 -0400
21315
21316     Adds WATCHDOG_RESET() function call to lib_m68k dtimer_interrupt.
21317
21318     Ported from lib_ppc/interrupts.c, this adds the ability for
21319     the coldfire system timer to auto-reset the watchdog when
21320     dtimer_interrupts is called.
21321
21322     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21323
21324 commit a24d96e40e1ca66dde6e6c158e7ecffafc5a2199
21325 Author: Prafulla Wadaskar <prafulla@marvell.com>
21326 Date:   Sun May 31 14:53:20 2009 +0200
21327
21328     arch_misc_init support for ARM architectures
21329
21330     This patch is required for Kirkwood support
21331     may be used by other ARM architectures
21332
21333     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
21334
21335 commit b2403589b4d9996394bafc73eca3623f43ac2c31
21336 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21337 Date:   Sun May 31 14:53:18 2009 +0200
21338
21339     at91: move cpu info print to cpu
21340
21341     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21342
21343 commit b32e189079fa16e1b647ac6b949fd4e0a9435343
21344 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21345 Date:   Sun May 31 12:44:46 2009 +0200
21346
21347     at91: move cpu name define to arm/arch/ cpu header
21348
21349     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21350
21351 commit 5bb59b3c906ee01adfaac9565443e5236a793079
21352 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21353 Date:   Sun May 31 12:44:45 2009 +0200
21354
21355     at91: extract reset from timer
21356
21357     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21358
21359 commit 61cf851b09cf8b67009ec11fc47c16add6b142a5
21360 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21361 Date:   Sun May 31 12:44:43 2009 +0200
21362
21363     omap24xx: rename reset file
21364
21365     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21366
21367 commit 9d4fc99dbdbfda1260aad478e83fca7cdf0e1a32
21368 Author: Dirk Behme <dirk.behme@googlemail.com>
21369 Date:   Sun May 31 12:44:42 2009 +0200
21370
21371     OMAP3: Fix CKE1 MUX setting to allow self-refresh
21372
21373     The Beagle rev Cx and Overo boards are using both SDRC CSes. The MUX
21374     setting is needed for the second CS clock signal to allow the 2 RAM
21375     parts to be put in self-refresh correctly. This also works on rev B
21376     Beagle boards with 128M of RAM.
21377
21378     From: Steve Sakoman <steve@sakoman.com>
21379     From: Jean Pihet <jpihet@mvista.com>
21380     Signed-off-by: Jean Pihet <jpihet@mvista.com>
21381     Signed-off-by: Steve Sakoman <steve@sakoman.com>
21382     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
21383
21384 commit 3962c4f9fc4482a6547f3c3d3d5e986e625abb8a
21385 Author: Dirk Behme <dirk.behme@googlemail.com>
21386 Date:   Sun May 31 12:44:41 2009 +0200
21387
21388     OMAP3: Zoom2: Enable Board and CPU info
21389
21390     With other OMAP3 boards we recently switched to CPU and Board
21391     info API. From parallel merge, this is missing for Zoom2.
21392     Enable it for Zoom2, too.
21393
21394     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
21395     Acked-by: Tom Rix <Tom.Rix@windriver.com>
21396
21397 commit 83ae698ff26b81b569ca32f7f2b008ad0da15e66
21398 Author: Tom Rix <Tom.Rix@windriver.com>
21399 Date:   Sun May 31 12:44:39 2009 +0200
21400
21401     ZOOM2 Add led support.
21402
21403     This patch controls the large LED on the top left of the zoom2.
21404
21405     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21406
21407 commit 660888b7fb8840ce169dcd2589e49ab44c46b87b
21408 Author: Tom Rix <Tom.Rix@windriver.com>
21409 Date:   Sun May 31 12:44:37 2009 +0200
21410
21411     ZOOM2 Add serial support.
21412
21413     Zoom2 serial is in general supplied by one of the 4 UARTS on the debug board.
21414     The default serial is from the USB connector on left side of the debug board.
21415     The USB connector will produce 2 of the 4 UARTS.  On your host pick the first
21416     enumeration.
21417
21418     The details of the setting of the serial gpmc setup are not available.
21419     The values were provided by another party.
21420
21421     The serial port set up is the same with Zoom1.
21422     Baud rate 115200, 8 bit data, no parity, 1 stop bit, no flow.
21423
21424     The kernel bootargs are
21425     console=ttyS3,115200n8
21426
21427     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21428
21429 commit 3ea201b016ab259a5ac8824af767569522768c47
21430 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21431 Date:   Sun May 31 12:44:27 2009 +0200
21432
21433     lh7a40x: move serial driver to drivers/serial
21434
21435     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21436
21437 commit 379be585eb2343d8814a5cee5fb3da930d846bee
21438 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21439 Date:   Sat May 16 22:48:46 2009 +0200
21440
21441     pxa: move serial driver to drivers/serial
21442
21443     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21444
21445 commit ad7e8aac6920f8b8a85b3cc2e93bca7458e99aa1
21446 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21447 Date:   Sat May 9 13:21:19 2009 +0200
21448
21449     arm: remove cpu_init
21450
21451     move s3c44b0 to arch_cpu_init and as noone use cpu_init remove it
21452
21453     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21454
21455 commit c358d9c3f16571e8f825e81b75eaf32e228cb669
21456 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21457 Date:   Sat May 9 13:21:18 2009 +0200
21458
21459     arm: unify interrupt init
21460
21461     all arm init the IRQ stack the same way
21462     so unify it in lib_arm/interrupts.c and then call arch specific interrupt init
21463
21464     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21465
21466 commit 10a451cd57cffbca875c97bbd8929059c5627ec6
21467 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21468 Date:   Fri May 8 20:24:12 2009 +0200
21469
21470     arm: unify linker script
21471
21472     all arm boards except a few use the same cpu linker script
21473     so move it to cpu/$(CPU)
21474
21475     that could be overwrite in following order
21476     SOC
21477     BOARD
21478     via the corresponding config.mk
21479
21480     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21481
21482 commit 9475c63c7855edd863c93a9bb0f4b8e240d9d212
21483 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21484 Date:   Sat May 16 10:02:05 2009 +0200
21485
21486     afeb9260: fix macb device init
21487
21488     uses PA10, PA11 for ETX2 and ETX3.
21489
21490     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21491
21492 commit 1bbae2b816d4ed38db2ebf42166a973b1ffc0df7
21493 Author: Stefan Roese <sr@denx.de>
21494 Date:   Wed May 27 10:34:32 2009 +0200
21495
21496     ppc4xx: Remove PCI async bootup message if PCI is not used
21497
21498     Signed-off-by: Stefan Roese <sr@denx.de>
21499
21500 commit a3455c00510c5abf1e91743c4a02d8393b6df18d
21501 Author: Wolfgang Denk <wd@denx.de>
21502 Date:   Fri May 15 09:19:52 2009 +0200
21503
21504     TQM834x: use buffered writes to accelerate writing to flash
21505
21506     Also enable display of 'E'mpty sectors in "flinfo" output.
21507
21508     Signed-off-by: Wolfgang Denk <wd@denx.de>
21509     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21510
21511 commit 4681e673a51c48f4c096aa3c8fae5e6217ffd58d
21512 Author: Wolfgang Denk <wd@denx.de>
21513 Date:   Thu May 14 23:18:34 2009 +0200
21514
21515     TQM834x: add FDT support
21516
21517     Signed-off-by: Wolfgang Denk <wd@denx.de>
21518     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21519
21520 commit 929b79a0b5e48303ab04aae9d0abceb0c707f111
21521 Author: Wolfgang Denk <wd@denx.de>
21522 Date:   Thu May 14 23:18:33 2009 +0200
21523
21524     TQM834x: fix environment size; add redundant env.
21525
21526     Also reserve more space for U-Boot as it will probably grow soon.
21527
21528     Signed-off-by: Wolfgang Denk <wd@denx.de>
21529     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21530
21531 commit 2ae0f35fd60c7345446835b95a4daff356e1f031
21532 Author: Thomas Lange <thomas@corelatus.se>
21533 Date:   Sun May 3 20:07:33 2009 +0200
21534
21535     ARM DaVinci: Reset with watchdog enabled
21536
21537     Once the Davinci watchdog has been enabled, the timeout
21538     value cannot be changed. If the timeout in use is long,
21539     it can take a long time for card to reset. By writing
21540     an invalid service key, we can trigger an immediate reset.
21541
21542     Signed-off-by: Thomas Lange <thomas@corelatus.se>
21543
21544 commit 6cc7ba9ed43106946aa9aa868302aa2faf1d17be
21545 Author: Wolfgang Denk <wd@denx.de>
21546 Date:   Fri May 15 10:07:43 2009 +0200
21547
21548     video: Add an option to skip video initialization
21549
21550     This patch adds an option to skip the video initialization on for all
21551     video drivers. This is needed for the CPCI750 which can be built as
21552     CPCI host and adapter/target board. And the adapter board can't
21553     access the video cards located on the CompactPCI bus.
21554
21555     Signed-off-by: Stefan Roese <sr@denx.de>
21556     Cc: Anatolij Gustschin <agust@denx.de>
21557
21558     Rebased against simplifying patch.
21559     Signed-off-by: Wolfgang Denk <wd@denx.de>
21560
21561 commit f62f64692ff7f6226ad221d5df6487ea5ef39bdd
21562 Author: Wolfgang Denk <wd@denx.de>
21563 Date:   Fri May 15 10:07:42 2009 +0200
21564
21565     drv_video_init(): simplify logic
21566
21567     Simplify nesting of drv_video_init() and use a consistent way of
21568     indicating failure / success. Before, it took me some time to realize
21569     which of the returns was due to an error condition and which of them
21570     indicated success.
21571
21572     Signed-off-by: Wolfgang Denk <wd@denx.de>
21573     Cc: Anatolij Gustschin <agust@denx.de>
21574
21575 commit 1699da6297b8c22da16cf85b3c79192f1a6d70ca
21576 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21577 Date:   Wed May 13 21:01:13 2009 +0200
21578
21579     at91: regroup IP hw init in one file per soc
21580
21581     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21582
21583 commit 28b00324becf3552134ae1e086509dc9c3d6e932
21584 Author: David Brownell <dbrownell@users.sourceforge.net>
21585 Date:   Fri May 15 23:48:37 2009 +0200
21586
21587     dm355 evm support
21588
21589     Initial U-Boot support for the DaVinci DM355 EVM.  This is a board
21590     from Spectrum Digital.  Board docs include schematic and firmware
21591     for its microcontroller:
21592
21593       http://c6000.spectrumdigital.com/evmdm355/revd/
21594
21595     Most of the DM355 chip is fully documented by TI, the most notable
21596     exception being the MPEG/JPEG coprocessor (programmable using codecs
21597     available at no cost from TI), which is omitted from its DM335 sibling:
21598
21599       http://focus.ti.com/docs/prod/folders/print/tms320dm355.html
21600
21601     This version can boot from the on-board DM9000 Ethernet chip, after
21602     being loaded (from NAND, MMC/SD, or UART).  In the near future, NAND
21603     and USB support could be added ... NAND support is being held back
21604     until the support for the 4-bit ECC hardware is ready.
21605
21606     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21607
21608 commit 136cf92dc9e84c9a1bf567f1fe741092bf765495
21609 Author: Sanjeev Premi <premi@ti.com>
21610 Date:   Fri May 15 23:48:37 2009 +0200
21611
21612     OMAP3EVM: Set default bootfile
21613
21614     The current configuration doesn't define default
21615     bootfile; leading to this warning at execution:
21616
21617     OMAP3_EVM # dhcp
21618     ...
21619     ...
21620     DHCP client bound to address 192.168.1.11
21621     *** Warning: no boot file name; using 'AC18BE16.img'
21622     TFTP from server 0.0.0.0; our IP address is 192.168.1.11;
21623     sending through gateway 192.168.1.1
21624     Filename 'AC18BE16.img'.
21625     Load address: 0x82000000
21626     Loading: *
21627     TFTP error: 'File not found' (1)
21628
21629     Signed-off-by: Sanjeev Premi <premi@ti.com>
21630
21631 commit 1a09d05abfc6d4d4f1fce9f6bd0275bd1c08d4f5
21632 Author: s-paulraj@ti.com <s-paulraj@ti.com>
21633 Date:   Fri May 15 23:48:36 2009 +0200
21634
21635     ARM DaVinci: Minor Updates to base addresses
21636
21637     Patch adds base addresses for DaVinci DM365. Updated patches for DM365
21638     will be posted soon.
21639
21640     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
21641
21642 commit de193e8e369f5f029ed3b6e2fc60341098eea766
21643 Author: Tom Rix <Tom.Rix@windriver.com>
21644 Date:   Fri May 15 23:48:36 2009 +0200
21645
21646     ZOOM2 Add support for debug board detection.
21647
21648     The logicpd web site is a good source for general information on this board.
21649     Please start looking here if the below links are broken.
21650     http://www.logicpd.com
21651
21652     This is a pdf of the product
21653     http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
21654
21655     This is a pdf of the product quick start guide.
21656     The debug board is described here.
21657     http://support.logicpd.com/downloads/1165/
21658
21659     This is a wiki showing the debug board in use
21660     https://omapzoom.org/gf/project/omapzoom/wiki/?pagename=GettingStartedWithZoomII_AKA_OMAP34XII_MDP
21661
21662     The zoom2 has an auxillary board that contains the serial, net, jtag and
21663     battery simulator.  This change supports a runtime check if the debug board is
21664     connected.
21665
21666     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21667
21668 commit 0c872ecd01d6782ae9d37b6eb721404a4a48f356
21669 Author: Tom Rix <Tom.Rix@windriver.com>
21670 Date:   Fri May 15 23:48:36 2009 +0200
21671
21672     OMAP3 Port kernel omap gpio interface.
21673
21674     Port version 2.6.27 of the linux kernel's omap gpio interface to u-boot.
21675     The orignal source is in linux/arch/arm/plat-omap/gpio.c
21676
21677     See doc/README.omap3 for instructions on use.
21678
21679     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21680
21681 commit 376aee78dd66ae0dc4ce496cbe93ecc80aaad48e
21682 Author: Tom Rix <Tom.Rix@windriver.com>
21683 Date:   Fri May 15 23:48:36 2009 +0200
21684
21685     ZOOM2 Add initial support for Zoom2
21686
21687     Zoom2 is a new board from Texas Instruments and LogicPD
21688
21689     The logicpd web site is a good source for general information on this board.
21690     Please start looking here if the below links are broken.
21691     http://www.logicpd.com
21692
21693     This is a pdf of the product
21694     http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
21695     This is the product description web page
21696     http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp
21697
21698     This patch provides a zoom2 base target by copying zoom1 and by making some
21699     obvious changes.
21700
21701     To configure, run
21702     make omap3_zoom2_config
21703
21704     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21705
21706 commit 53925acf1b5c1a1e6230cda2697640cd05bd1104
21707 Author: Sandeep Paulraj <s-paulraj@ti.com>
21708 Date:   Fri May 15 23:48:33 2009 +0200
21709
21710     ARM DaVinci:Consolidate common u-boot.lds
21711
21712     The u-boot.lds is common for all DaVinci boards. The patch removes
21713     multiple instances and moves the u-boot.lds to /cpu/arm926ejs/davinci
21714     folder. This addresses one of the comments i received while submitting
21715     patches for DM3xx
21716
21717     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
21718
21719 commit 68a531fd465f5c0b3d373e0010afed32e88d37c4
21720 Author: Tom Rix <Tom.Rix@windriver.com>
21721 Date:   Fri May 15 23:47:52 2009 +0200
21722
21723     OMAP Consolidate common u-boot.lds to cpu layer.
21724
21725     The u-boot.lds file is common for all omap boards.
21726     Move a cleaned up version to the cpu layer and add makefile logic to use it.
21727
21728     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21729
21730 commit 65a76d4f947a193e57bb8f8093c481f27e059f8f
21731 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21732 Date:   Fri May 15 23:47:14 2009 +0200
21733
21734     arm/dcc: add xscale support
21735
21736     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21737
21738 commit 66e8f9da6879fe37f3159b3997bff874842dc51d
21739 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21740 Date:   Fri May 15 23:47:14 2009 +0200
21741
21742     arm/dcc: use static support to allow to use it at anytime
21743
21744     the dcc can be used at the start of the cpu
21745
21746     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21747
21748 commit 7893aa1eb6f52c3957efc301b436f1fa11e91a00
21749 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21750 Date:   Fri May 15 23:47:13 2009 +0200
21751
21752     ARM: Update mach-types
21753
21754     update against linux v2.6.29
21755
21756     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21757
21758 commit 2907798926ee932f453ac8538e7a6c05c18428a5
21759 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21760 Date:   Fri May 15 23:47:13 2009 +0200
21761
21762     arm920/926/926: remove non needed header
21763
21764     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21765
21766 commit 269dfea017b09c5a999d3053d00505c19789c350
21767 Author: David Brownell <david-b@pacbell.net>
21768 Date:   Fri May 15 23:47:13 2009 +0200
21769
21770     davinci dm6446evm NAND update
21771
21772     This updates the optional (non-default!) NAND support for the
21773     DaVinci DM6446 EVM:
21774
21775      - include MTD partitioning, defaulting to what Linux uses
21776
21777      - use a flash-based BBT, which among other things speeds bootup
21778
21779     This matches code that's now queued for mainline Linux, and might
21780     even merge in an upcoming 2.6.30-rc; and the MTIDS are set up so
21781     that the U-Boot $mtdparts environment variable can be passed as-is
21782     on the kernel command line as a cmdlinepart override.
21783
21784     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21785
21786 commit 7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc
21787 Author: David Brownell <dbrownell@users.sourceforge.net>
21788 Date:   Fri May 15 23:47:12 2009 +0200
21789
21790     davinci: display correct clock info
21791
21792     Move the clock-rate dumping code into the cpu/.../davinci area
21793     where it should have been, enabled by CONFIG_DISPLAY_CPUINFO,
21794     updating the format and showing the DSP clock (where relevant).
21795
21796     Switch boards to use the cpuinfo() hook for this stuff.
21797
21798     Remove a few now-obsolete PLL #defines.
21799
21800     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21801
21802 commit daea928829098cae3c9ec6b801e52ba616725034
21803 Author: Tom Rix <Tom.Rix@windriver.com>
21804 Date:   Fri May 15 23:47:12 2009 +0200
21805
21806     ZOOM1 Remove more legacy NAND defines.
21807
21808     These legacy NAND defines are no longer needed by this target.
21809
21810     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21811
21812 commit 65fd21c80fcaca2bbfe3ab06ab6ac68207408078
21813 Author: Tom Rix <Tom.Rix@windriver.com>
21814 Date:   Fri May 15 23:47:12 2009 +0200
21815
21816     LED Add documentation describing the status_led and colour led API.
21817
21818     This document describes the u-boot status LED API.
21819     This allows common u-boot commands to use a board's leds to
21820     provide status for activities like booting and downloading files.
21821
21822     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21823
21824 commit 7cdf804f34378b910b4c4edd2dac7e3ca61c0825
21825 Author: Tom Rix <Tom.Rix@windriver.com>
21826 Date:   Fri May 15 23:47:12 2009 +0200
21827
21828     ARM Add blue colour LED to status_led.
21829
21830     There is exiting support for red,yellow,green but no blue.
21831     The main LED on the zoom2 is a blue LED.
21832
21833     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21834
21835 commit b54384e3ba6b5535751f317fcd3940a53eed0d3a
21836 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21837 Date:   Fri May 15 23:47:02 2009 +0200
21838
21839     arm: timer and interrupt init rework
21840
21841     actually the timer init use the interrupt_init as init callback
21842     which make the interrupt and timer implementation difficult to follow
21843
21844     so now rename it as int timer_init(void) and use interrupt_init for interrupt
21845
21846     btw also remane the corresponding file to the functionnality implemented
21847
21848     as ixp arch implement two timer - one based on interrupt - so all the timer
21849     related code is moved to timer.c
21850
21851     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21852
21853 commit 5b4bebe1d20c4f2b70d48b06aed1016785efcc25
21854 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21855 Date:   Fri May 15 23:45:22 2009 +0200
21856
21857     OMAP3: Reorganize Makefile style
21858
21859     Reformat COBJS handling.
21860
21861     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21862     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
21863
21864 commit b1966982718347f67317b3fb356439743ca68a37
21865 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21866 Date:   Fri May 15 23:45:22 2009 +0200
21867
21868     OMAP3: Remove dublicated interrupt code
21869
21870     Remove duplicated interrupt code. Original, identical code can be found
21871     in lib_arm/interrupts.c
21872
21873     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21874     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
21875
21876 commit ac7260a4190315eba4a6e526c764f6cad0bbf8c5
21877 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21878 Date:   Fri May 15 23:45:22 2009 +0200
21879
21880     at91rm9200: move reset code to reset.c
21881
21882     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21883
21884 commit 2c75c78d94574ee996db2aa9b511258519471dd6
21885 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21886 Date:   Fri May 15 23:45:22 2009 +0200
21887
21888     ixp/interrupts: Move conditional compilation to Makefile
21889
21890     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21891
21892 commit 8fc3bb4b0603516ad641e2de252a400b85fd869b
21893 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21894 Date:   Fri May 15 23:45:20 2009 +0200
21895
21896     arm: cleanup remaining CONFIG_INIT_CRITICAL
21897
21898     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21899
21900 commit c20e28f49aaf38c7dede46d8f8fe8234fe90822c
21901 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21902 Date:   Fri May 15 23:45:12 2009 +0200
21903
21904     arm946es: remove non used timer
21905
21906     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21907
21908 commit f1d944e30eb8ff89080fa03fb98d8fb5c82388d2
21909 Author: David Brownell <dbrownell@users.sourceforge.net>
21910 Date:   Fri May 15 23:44:09 2009 +0200
21911
21912     davinci: add basic dm355/dm350/dm335 support
21913
21914     Add some basic declarations for DaVinci DM355/DM350/DM335 support,
21915     keyed on CONFIG_SOC_DM355.  (DM35X isn't quite right because the
21916     DM357 is very different; while the DM355 is like a DM355 without
21917     the MPEG/JPEG coprocessor).
21918
21919     These have different peripherals than the DM6446, and some of
21920     the peripherals are at different addresses.  Notably for U-Boot,
21921     there's no EMAC, and the NAND controller address is different
21922
21923     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21924
21925 commit bd36fdc146654f9de4e2ad346126e6bd2990fb19
21926 Author: David Brownell <dbrownell@users.sourceforge.net>
21927 Date:   Fri May 15 23:44:09 2009 +0200
21928
21929     davinci: fix dm644x buglets
21930
21931     Fix two buglets in the dm644x support:  don't set two must-be-zero
21932     bits in the UART management register; and only include the I2C hooks
21933     if the I2C driver is being included.
21934
21935     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21936
21937 commit f79043681ff44bae435c06f830e51e1546db7e19
21938 Author: David Brownell <dbrownell@users.sourceforge.net>
21939 Date:   Fri May 15 23:44:08 2009 +0200
21940
21941     davinci: split out some dm644x-specific bits from psc
21942
21943     Split out DaVinci DM6446-specific bits from more generic bits:
21944
21945      - Add a CONFIG_SOC_DM644X.  All current boards use DM6446 chips;
21946        DM6443 and DM6441 chips differ in available peripherals.
21947
21948      - Move most DM644X-specific bits from psc.c to a new dm644x.c file,
21949        which is conditionally built.  It provides device-specific setup.
21950
21951     Plus minor coding style and comment updates with respect to the PSC.
21952
21953     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21954
21955 commit 48ef5729555f41f51618b6a3016ac5c53c7c75dc
21956 Author: David Brownell <dbrownell@users.sourceforge.net>
21957 Date:   Fri May 15 23:44:08 2009 +0200
21958
21959     davinci: cpu-specific build uses conditional make syntax
21960
21961     Update cpu/arm926ejs/davinci/Makefile to use COBJ-y type syntax.
21962     Add the first conditional: for EMAC driver support.  Not all
21963     chips have an EMAC; and boards might not use it, anyway.
21964
21965     This doesn't touch PHY configuration; that should eventually
21966     become conditional too.
21967
21968     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21969
21970 commit 7b7808ae6dace59287f565e9323cda7b098a5612
21971 Author: David Brownell <dbrownell@users.sourceforge.net>
21972 Date:   Fri May 15 23:44:06 2009 +0200
21973
21974     davinci: move psc support board-->cpu
21975
21976     Move DaVinci PSC support from board/* to cpu/* where it belongs.
21977     The PSC module manages clocks and resets for all DaVinci-family
21978     SoCs, and isn't at all board-specific.
21979
21980     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21981
21982 commit 84f7411cb901b8df2391cf7e967ad0737f6194aa
21983 Author: David Brownell <david-b@pacbell.net>
21984 Date:   Tue Apr 14 08:52:58 2009 -0700
21985
21986     DaVinci now respects SKIP_LOWLEVEL_INIT
21987
21988     Don't needlessly include lowlevel init code; that's only really
21989     needed with boot-from NOR (not boot-from-NAND).  The 2nd stage
21990     loader (UBL) handles that before it loads U-Boot.
21991
21992     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21993
21994 commit 641e0925e4bf7adf8e2e04e3ad81b840fd71cadd
21995 Author: David Brownell <dbrownell@users.sourceforge.net>
21996 Date:   Sun Apr 12 22:49:26 2009 -0700
21997
21998     DaVinci Ethernet cleanup
21999
22000     Chips without the EMAC controller won't need the utilities
22001     it uses to read an Ethernet address from EEPROM; so don't
22002     include them needlessly.
22003
22004     Use is_valid_ether() to validate the address from EEPROM.
22005     All-zero addresses aren't the only invalid addresses.
22006     A fully erased EEPROM returns all-ones, also invalid...
22007
22008     Switch those Ethernet utilities to use "%pM" for printing
22009     MAC addresses; and not say ROM when they mean EEPROM.
22010
22011     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
22012     Acked-by: Ben Warren <biggerbadderben@gmail.com>
22013
22014 commit c790b04d230363d03939dc008bcc80f3ba4de1ae
22015 Author: Stefan Roese <sr@denx.de>
22016 Date:   Mon May 11 15:50:12 2009 +0200
22017
22018     lib_arch/board.c: Move malloc initialization before flash_init()
22019
22020     This patch moves the malloc initialization before calling flash_init().
22021     Upcoming changes to the NOR FLASH common CFI driver with optional
22022     MTD infrastructure and MTD concatenation support will call malloc().
22023     And nothing really speaks against enabling malloc just a little earlier
22024     in the boot stage. Some architectures already enable malloc before
22025     calling flash_init() so they don't need any changes here.
22026
22027     Signed-off-by: Stefan Roese <sr@denx.de>
22028     Cc: Wolfgang Denk <wd@denx.de>
22029     Cc: Mike Frysinger <vapier@gentoo.org>
22030     Cc: Scott McNutt <smcnutt@psyent.com>
22031     Cc: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
22032     Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22033     Cc: Daniel Hellstrom <daniel@gaisler.com>
22034     Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22035     Cc: John Rigby <jcrigby@gmail.com>
22036
22037 commit d873133f2ba9bd613d5f6552c31cc70fb13f15d3
22038 Author: Stefan Roese <sr@denx.de>
22039 Date:   Mon May 11 13:46:14 2009 +0200
22040
22041     ppc4xx: Add Sequoia RAM-booting target
22042
22043     This patch adds another build target for the AMCC Sequoia PPC440EPx
22044     eval board. This RAM-booting version is targeted for boards without
22045     NOR FLASH (NAND booting) which need a possibility to initially
22046     program their NAND FLASH. Using a JTAG debugger (e.g. BDI2000/3000)
22047     configured to setup the SDRAM, this debugger can load this RAM-
22048     booting image to the target address in SDRAM (in this case 0x1000000)
22049     and start it there. Then U-Boot's standard NAND commands can be
22050     used to program the NAND FLASH (e.g. "nand write ...").
22051
22052     Here the commands to load and start this image from the BDI2000:
22053
22054     440EPX>reset halt
22055     440EPX>load 0x1000000 /tftpboot/sequoia/u-boot.bin
22056     440EPX>go 0x1000000
22057
22058     Please note that this image automatically scans for an already
22059     initialized SDRAM TLB (detected by EPN=0). This TLB will not be
22060     cleared. This TLB doesn't need to be TLB #0, this RAM-booting
22061     version will detect it and preserve it. So booting via BDI2000
22062     will work and booting with a complete different TLB init via
22063     U-Boot works as well.
22064
22065     Signed-off-by: Stefan Roese <sr@denx.de>
22066
22067 commit 837db3d87f4bfe9261629fb4a1bb433506a3056a
22068 Author: Mike Frysinger <vapier@gentoo.org>
22069 Date:   Wed May 6 08:41:45 2009 -0400
22070
22071     tools/envcrc: add --binary option to export embedded env
22072
22073     The --binary option to envcrc can be used to export the embedded env as a
22074     binary blob so that it can be manipulated/examined/whatever externally.
22075
22076     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22077
22078 commit 18cc7afd9a153a66854af862d14ba01c5496cf07
22079 Author: Ben Warren <biggerbadderben@gmail.com>
22080 Date:   Tue Apr 28 16:50:53 2009 -0700
22081
22082     Enable CONFIG_NET_MULTI on all remaining PPC4xx boards
22083
22084     All in-tree PPC4xx boards now use CONFIG_NET_MULTI
22085
22086     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22087     Signed-off-by: Stefan Roese <sr@denx.de>
22088
22089 commit 70be6c2d40076f14062b892152649f9a62832fc9
22090 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22091 Date:   Wed Apr 29 09:51:01 2009 +0200
22092
22093     4xx: Add support for DP405 hardware variants
22094
22095     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22096     Signed-off-by: Stefan Roese <sr@denx.de>
22097
22098 commit de47a34d4de1d007a8951efd072283516d580ffa
22099 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22100 Date:   Wed Apr 29 09:51:00 2009 +0200
22101
22102     4xx: Remove binary cpld bitstream from DP405 board
22103
22104     This patch removes the cpld binary bitstream that is
22105     used by esd's cpld command on DP405 boards.
22106
22107     Because u-boot with an external cpld bitstream may not
22108     take more space in flash than before the u-boot binary is
22109     shrinked a little bit. Some unused featues have been
22110     removed therefore.
22111
22112     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22113     Signed-off-by: Stefan Roese <sr@denx.de>
22114
22115 commit 700d553fd3afe804086de8f73d95153315eb0c32
22116 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22117 Date:   Wed Apr 29 09:50:59 2009 +0200
22118
22119     4xx: Remove binary cpld bitstream from VOM405 board
22120
22121     This patch removes the cpld binary bitstream that is
22122     used by esd's cpld command on VOM405 boards.
22123
22124     Because u-boot with an external cpld bitstream may not
22125     take more space in flash than before the u-boot binary is
22126     shrinked a little bit.
22127
22128     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22129     Signed-off-by: Stefan Roese <sr@denx.de>
22130
22131 commit 0bb10630364c48d9857cbf5353da609fc4dd6751
22132 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22133 Date:   Wed Apr 29 09:50:58 2009 +0200
22134
22135     4xx: Remove binary cpld bitstream from PMC405 board
22136
22137     This patch removes the cpld binary bitstream that is
22138     used by esd's cpld command on PMC405 boards.
22139
22140     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22141     Signed-off-by: Stefan Roese <sr@denx.de>
22142
22143 commit 7cc635fb35f5b94e304fa2243d56758f57f6416b
22144 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22145 Date:   Wed Apr 29 09:50:57 2009 +0200
22146
22147     4xx: Remove binary cpld bitstream from CMS700 board
22148
22149     This patch removes the cpld binary bitstream that is
22150     used by esd's cpld command on CMS700 boards.
22151
22152     Because u-boot with an external cpld bitstream may not
22153     take more space in flash than before the u-boot binary is
22154     shrinked a little bit. Some unused featues have been
22155     removed therefore.
22156
22157     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22158     Signed-off-by: Stefan Roese <sr@denx.de>
22159
22160 commit c1b2f79788deec75773b1d944d8aaf4a6d5baf9e
22161 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22162 Date:   Wed Apr 29 09:50:56 2009 +0200
22163
22164     esd/common: extend cpld command with address parameter
22165
22166     This patch adds support for an address parameter to esd's
22167     cpld command. This is in preparation to remove compiled-in
22168     binary cpld (xsvf) bitstreams.
22169
22170     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22171     Signed-off-by: Stefan Roese <sr@denx.de>
22172
22173 commit 9166b776350d16460c7330bfb0a50154ea0a1903
22174 Author: Peter Tyser <ptyser@xes-inc.com>
22175 Date:   Sat Apr 18 22:34:06 2009 -0500
22176
22177     cmd_i2c: Fix i2c help command output when CONFIG_I2C_MUX
22178
22179     When CONFIG_I2C_MUX was defined the output of 'help i2c' was not
22180     correct, eg:
22181
22182     => help i2c
22183     i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes.
22184     speed [speed] - show or set I2C bus speed
22185     i2c dev [dev] - show or set current I2C bus
22186     ...
22187
22188     It has been changed to:
22189     i2c speed [speed] - show or set I2C bus speed
22190     i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes
22191     i2c dev [dev] - show or set current I2C bus
22192     ...
22193
22194     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22195
22196 commit 0a45a6357b02e5ce5bf899a60db09def6a129fee
22197 Author: Peter Tyser <ptyser@xes-inc.com>
22198 Date:   Sat Apr 18 22:34:05 2009 -0500
22199
22200     cmd_i2c: Clean up trivial helper functions
22201
22202     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22203
22204 commit e96ad5d3aba42f8ffe99f7cc5ec1bb9f21810035
22205 Author: Peter Tyser <ptyser@xes-inc.com>
22206 Date:   Sat Apr 18 22:34:04 2009 -0500
22207
22208     cmd_i2c: Clean up i2c command argument parsing
22209
22210     argc and argv should only be modified once instead of once for
22211     every i2c sub-command
22212
22213     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22214
22215 commit 0f89c54be92773b23d66ac401ba6acb6144100c3
22216 Author: Peter Tyser <ptyser@xes-inc.com>
22217 Date:   Sat Apr 18 22:34:03 2009 -0500
22218
22219     i2c: Update references to individual i2c commands
22220
22221     The individual i2c commands imd, imm, inm, imw, icrc32, iprobe, iloop,
22222     and isdram are no longer available so all references to them have been
22223     updated to the new form of "i2c <cmd>".
22224
22225     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22226
22227 commit d48eb5131d287f52bb85b4c58c8680a2e8e3b641
22228 Author: Peter Tyser <ptyser@xes-inc.com>
22229 Date:   Sat Apr 18 22:34:02 2009 -0500
22230
22231     i2c: Remove deprecated individual i2c commands
22232
22233     The following individual I2C commands have been removed: imd, imm, inm,
22234     imw, icrc32, iprobe, iloop, isdram.
22235
22236     The functionality of the individual commands is still available via
22237     the 'i2c' command.
22238
22239     This change only has an impact on those boards which did not have
22240     CONFIG_I2C_CMD_TREE defined.
22241
22242     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22243
22244 commit 655b34a78adf60ef260981688837904208883ae9
22245 Author: Peter Tyser <ptyser@xes-inc.com>
22246 Date:   Sat Apr 18 22:34:01 2009 -0500
22247
22248     i2c: Create common default i2c_[set|get]_bus_speed() functions
22249
22250     New default, weak i2c_get_bus_speed() and i2c_set_bus_speed() functions
22251     replace a number of architecture-specific implementations.
22252
22253     Also, providing default functions will allow all boards to enable
22254     CONFIG_I2C_CMD_TREE.  This was previously not possible since the
22255     tree-form of the i2c command provides the ability to display and modify
22256     the i2c bus speed which requires i2c_[set|get]_bus_speed() to be
22257     present.
22258
22259     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22260
22261 commit 8229e9c04f7019ddd76aea05d4dca044cbc9a34a
22262 Author: Peter Tyser <ptyser@xes-inc.com>
22263 Date:   Sat Apr 18 22:34:00 2009 -0500
22264
22265     cm5200: Make function test command names more unique
22266
22267     Add "_test" to cm5200's function test command names to prevent
22268     overlap with common, global function names.  Originally, the
22269     "do_i2c" function test command interfered with
22270     common/cmd_i2c.c's "do_i2c" when CONFIG_I2C_CMD_TREE was defined.
22271
22272     The functions were also made static as they are not globally accessed.
22273
22274     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22275
22276 commit f0722ee762e8dada9d7f74ac2745e043f83aae85
22277 Author: Peter Tyser <ptyser@xes-inc.com>
22278 Date:   Fri Apr 24 15:34:09 2009 -0500
22279
22280     tsi108_i2c: Add i2c_init() stub function
22281
22282     Add the i2c_init() function so that the tsi108_i2c.c driver fits
22283     U-Boot's standard I2C API which is utilized by cmd_i2c.c
22284
22285     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22286
22287 commit 8d907e79bc9babb27396e34be54cfdc36ff62fb9
22288 Author: Peter Tyser <ptyser@xes-inc.com>
22289 Date:   Fri Apr 24 15:34:08 2009 -0500
22290
22291     mpc7448hpc2: Add CONFIG_SYS_I2C_SPEED define
22292
22293     Add standard CONFIG_SYS_I2C_SPEED define for the mpc7448hpc2 so that
22294     it can use the common 'i2c speed' command.  Note that the I2C controller
22295     utilized by the mpc7448hpc2 has a fixed speed and cannot be changed
22296     dynamically.
22297
22298     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22299
22300 commit a056b1ce9e19b4d4ab3dd01c3f897dcd832cd37f
22301 Author: Peter Tyser <ptyser@xes-inc.com>
22302 Date:   Fri Apr 24 15:34:07 2009 -0500
22303
22304     Marvell: i2c cleanup
22305
22306     The following changes were made, primarily to bring the Marvell i2c
22307     driver in line with U-Boot's current I2C API:
22308     - Made i2c_init() globally accessible
22309     - Made i2c_read() and i2c_write() return an integer
22310     - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
22311       offhand chance someone adds slave support in the future
22312
22313     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22314
22315 commit 54afc6ee10c8cd09598d814d49e601359b005e49
22316 Author: Peter Tyser <ptyser@xes-inc.com>
22317 Date:   Fri Apr 24 15:34:06 2009 -0500
22318
22319     cpci750: i2c cleanup
22320
22321     The following changes were made, primarily to bring the cpci750 i2c
22322     driver in line with U-Boot's current I2C API:
22323     - Made i2c_init() globally accessible
22324     - Made i2c_read() and i2c_write() return an integer
22325     - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
22326       offhand chance someone adds slave support in the future
22327
22328     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22329
22330 commit 9c90a2c8e87414007a016b7cd099ac1e32fd301b
22331 Author: Peter Tyser <ptyser@xes-inc.com>
22332 Date:   Fri Apr 24 15:34:05 2009 -0500
22333
22334     i2c.h: Provide a default CONFIG_SYS_I2C_SLAVE value
22335
22336     Many boards/controllers/drivers don't support an I2C slave interface,
22337     however CONFIG_SYS_I2C_SLAVE is used in common code so provide a
22338     default
22339
22340     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22341
22342 commit e7563aff174f77aa61dab1ef5d9b47bebaa43702
22343 Author: Kumar Gala <galak@kernel.crashing.org>
22344 Date:   Thu Jun 11 23:42:35 2009 -0500
22345
22346     fsl-ddr: Fix handling of >4G of memory when !CONFIG_PHYS_64BIT
22347
22348     The ddr code computes most things as 64-bit quantities and had some places
22349     in the middle that it was using phy_addr_t and phys_size_t.
22350
22351     Instead we use unsigned long long through out and only at the last stage of
22352     setting the LAWs and reporting the amount of memory to the board code do we
22353     truncate down to what we can cover via phys_size_t.
22354
22355     This has the added benefit that the DDR controller itself is always setup
22356     the same way regardless of how much memory we have.  Its only the LAW
22357     setup that limits what is visible to the system.
22358
22359     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22360
22361 commit d4b130dc80761b430dc5b410159cd158fca1a348
22362 Author: Kumar Gala <galak@kernel.crashing.org>
22363 Date:   Thu Jun 11 23:40:34 2009 -0500
22364
22365     85xx: Use print_size to report amount of memory not mapped by TLBs
22366
22367     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22368
22369 commit 6e2aebc33fa740c068fe28d40eaf0319b7c7287e
22370 Author: Haiying Wang <Haiying.Wang@freescale.com>
22371 Date:   Wed May 20 12:30:42 2009 -0400
22372
22373     85xx: Add README for MPC8569MDS
22374
22375     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22376     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22377
22378 commit b2aab386e957ba684d4f2a466bfaa91770e5058a
22379 Author: Haiying Wang <Haiying.Wang@freescale.com>
22380 Date:   Wed May 20 12:30:33 2009 -0400
22381
22382     85xx: Add UART1 support for MPC8569MDS
22383
22384     MPC8569 UART1 signals are muxed with PortF bit[9-12], we need to define
22385     those pins before using UART1.
22386
22387     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22388     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22389
22390 commit 399b53cbab0b377ac4c5c16c19c6e41b68a9c719
22391 Author: Haiying Wang <Haiying.Wang@freescale.com>
22392 Date:   Wed May 20 12:30:32 2009 -0400
22393
22394     85xx: Add PIB support at CS4/CS5 for MPC8569MDS
22395
22396     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22397     Signed-off-by: Yu Liu <Yu.Liu@freescale.com>
22398     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22399
22400 commit fb27949059f1bc84381a6216a819090f0cdbaa70
22401 Author: Haiying Wang <Haiying.Wang@freescale.com>
22402 Date:   Thu Jun 4 16:12:39 2009 -0400
22403
22404     85xx: Fix some settings for MPC8569MDS board
22405
22406     - Increase the size of malloc to 512KB because MPC8569MDS needs more memory for
22407     malloc to support up to eight Ethernet interfaces.
22408     - Move Environment address out of uboot thus the saved environment variables
22409     will not be erased after u-boot is re-programmed.
22410
22411     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22412     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22413
22414 commit c7f60fd29f2d638d080cdf1a49ad985b85f9429d
22415 Author: Haiying Wang <Haiying.Wang@freescale.com>
22416 Date:   Wed May 20 12:30:30 2009 -0400
22417
22418     85xx: Fix MURAM size for MPC8569
22419
22420     MPC8569 has 128K bytes MURAM.
22421
22422     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22423     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22424
22425 commit a53c997dd7fc858f2a27f5a47b200567b9343ae5
22426 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22427 Date:   Fri May 22 20:23:51 2009 +0200
22428
22429     at91/cpu.c: add missing Copyright & GPL header
22430
22431     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22432
22433 commit aa446a591aca46ef2b53cc6598ea8091feb45444
22434 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22435 Date:   Sun Jun 7 21:45:16 2009 +0900
22436
22437     apollon: Fix a OBJCFLAGS typo
22438
22439     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
22440
22441 commit 580611cb0932143fc2d7a735cfa9ce1ef34d6002
22442 Author: Wolfgang Denk <wd@denx.de>
22443 Date:   Wed Jun 10 00:19:28 2009 +0200
22444
22445     Prepare 2009.06-rc3
22446
22447     Update CHANGELOG
22448
22449     Signed-off-by: Wolfgang Denk <wd@denx.de>
22450
22451 commit 3a76ab5c166d5956885f803ce975e7151cc0ca0e
22452 Author: Wolfgang Denk <wd@denx.de>
22453 Date:   Wed Jun 10 00:15:11 2009 +0200
22454
22455     rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared
22456
22457     Signed-off-by: Wolfgang Denk <wd@denx.de>
22458
22459 commit 165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7
22460 Author: Daniel Mack <daniel@caiaq.de>
22461 Date:   Thu Jun 4 19:44:12 2009 +0200
22462
22463     ubifs: fix small error path mismatch
22464
22465     In do_readpage(), don't free 'dn' if its allocation failed.
22466
22467     Signed-off-by: Daniel Mack <daniel@caiaq.de>
22468
22469 commit de7cf709ebd3c01fbd094e8853dabb410c0370a1
22470 Author: Wolfgang Denk <wd@denx.de>
22471 Date:   Thu Jun 4 00:31:07 2009 +0200
22472
22473     EP88x: fix broken linker script
22474
22475     Signed-off-by: Wolfgang Denk <wd@denx.de>
22476     Tested-by: Mikhail Zaturenskiy <mzaturenskiy@shoppertrak.com>
22477
22478 commit 7a2063bd80d3b58b2dd5d5e58f4411f8d250576c
22479 Author: Wolfgang Denk <wd@denx.de>
22480 Date:   Fri May 15 00:16:02 2009 +0200
22481
22482     TQM85xx: minor config file cleanup
22483
22484     Remove "saveenv" from "update" definition: the environment is outside
22485     the U-Boot image on TQM85xx and therefor not affected by updates.
22486
22487     Also "beautify" code a bit (vertical alignment).
22488
22489     Signed-off-by: Wolfgang Denk <wd@denx.de>
22490
22491 commit c0296b1801fc9426d772fa75fe58458db605dfee
22492 Author: Wolfgang Denk <wd@denx.de>
22493 Date:   Fri May 15 00:16:01 2009 +0200
22494
22495     TQM85xx: adapt for new flash types
22496
22497     Old TQM85xx boards had 'M' type Spansion Flashes from the S29GLxxxM
22498     series while new boards have 'N' type Flashes from the S29GLxxxN
22499     series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB.
22500
22501     We now change the configuration to the new flash types for all
22502     boards; this also works on old boards - we just waste two flash
22503     sectors for the environment which could be smaller there.
22504
22505     Signed-off-by: Wolfgang Denk <wd@denx.de>
22506
22507 commit 6735104924f06340071a6914a9ee3345607fc102
22508 Author: Dave Liu <daveliu@freescale.com>
22509 Date:   Mon May 18 17:49:23 2009 +0800
22510
22511     85xx: Fix the wrong SYS_CLK_IN for 8569MDS
22512
22513     The SYS_CLK_IN of MPC8569MDS is 66.66MHz,
22514     The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor.
22515     so, change the SYS_CLK_IN from 66MHz to 66.66MHz.
22516
22517     Signed-off-by: Dave Liu <daveliu@freescale.com>
22518
22519 commit 16e7559c08b6f29db4596d795b92914c01e6a1b3
22520 Author: Dave Liu <daveliu@freescale.com>
22521 Date:   Fri May 15 10:27:44 2009 +0800
22522
22523     85xx: Fix the wrong BCSR address of 8569MDS
22524
22525     The BCSR17[7] = 1 will unlock the write protect of FLASH.
22526     The WP# pin only controls the write protect of top/bottom sector,
22527     That is why we can save env, but we can't write the first sector
22528     before the patch.
22529
22530     Signed-off-by: Dave Liu <daveliu@freescale.com>
22531
22532 commit 90d13b8ac3d515349626d7c8a3dc34ef38c43fa6
22533 Author: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
22534 Date:   Tue Jun 2 16:27:10 2009 -0500
22535
22536     85xx: bugfix for reading maximum TLB size on mpc85xx
22537
22538     The MAXSIZE field in the TLB1CFG register is 4 bits, not 8 bits.
22539     This made setup_ddr_tlbs() try to set up a TLB larger than the e500 maximum
22540     (256 MB)
22541     which made u-boot hang in board_init_f() when trying to create a new stack
22542     in RAM.
22543     I have an mpc8540 with one 1GB dimm.
22544
22545     Signed-off-by: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
22546     Signed-off-by: Andy Fleming <afleming@freescale.com>
22547     Acked-by: Kumar Gala <galak@kernel.crashing.org>
22548
22549 commit 1b5291dddf5f16c7ae10e3cb165882fa96038b26
22550 Author: Dave Liu <daveliu@freescale.com>
22551 Date:   Fri Mar 27 14:32:43 2009 +0800
22552
22553     85xx: Fix the clock adjust of mpc8569mds board
22554
22555     Currently the clk_adj is 6 (3/4 cycle), The settings will cause
22556     the DDR controller hang at the data init. Change the clk_adj
22557     from 6 to 4 (1/2 cycle), make the memory system stable.
22558
22559     Signed-off-by: Dave Liu <daveliu@freescale.com>
22560
22561 commit faa14babd7466dfade358f9cac128ae246b9bf1b
22562 Author: RONETIX - Ilko Iliev <iliev@ronetix.at>
22563 Date:   Fri Jun 5 16:54:31 2009 +0200
22564
22565     at91: fix a USB problem for AT91SAM9261
22566
22567     This patch corrects the missing PLLB initialization in usb_cpu_init()
22568     for AT91SAM9261.
22569     Because of the missing PLLB initialization, the USB support for all
22570     AT91SAM9261 based boards will work only if the PLLB is configured by a
22571     precedent bootloader.
22572
22573     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
22574     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22575     Signed-off-by: Remy Bohmer <linux@bohmer.net>
22576
22577 commit 0c24dec550ddb7d86b8bfdd8645b18479f73e6e2
22578 Author: Felix Radensky <felix@embedded-sol.com>
22579 Date:   Sun May 31 20:44:15 2009 +0300
22580
22581     ppc4xx/net: Fix MDIO clock setup
22582
22583     This patch fixes MDIO clock setup in case when OPB frequency is 100MHz.
22584     Current code assumes that the value of sysinfo.freqOPB is 100000000
22585     when OPB frequency is 100MHz. In reality it is 100000001. As a result
22586     MDIO clock is set to incorrect value, larger than 2.5MHz, thus violating
22587     the standard. This in not a problem on boards equipped with Marvell PHYs
22588     (e.g. Canyonlands), since those PHYs support MDIO clocks up to 8.3MHz,
22589     but can be a problem for other PHYs (e.g. Realtek ones).
22590
22591     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
22592     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22593
22594 commit d65e34d12514de2bbe3b8f519761d641c081bad0
22595 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22596 Date:   Wed Feb 25 14:27:29 2009 +0900
22597
22598     rtl8169: fix PCI system memory address
22599
22600     When PCI device use system memory, some PCI host controller should be
22601     set physical memory address.
22602
22603     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22604     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22605
22606 commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43
22607 Author: Manikandan Pillai <mani.pillai@ti.com>
22608 Date:   Wed Apr 8 09:14:35 2009 +0530
22609
22610     SMC911x driver fixed for NFS boot
22611
22612     eth_halt() function in the smc911x drivers used to call the
22613     smc911x_reset() function. eth_halt() used to be called after
22614     tftp transfers. This used to put the ethernet chip in reset
22615     while the linux boots up resulting in the ethernet driver
22616     not coming up. NFS boot used to fail as a result.
22617
22618     This patch calls smc911x_shutdown() instead of smc911x_reset().
22619     Some comments received has also been fixed.
22620
22621     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
22622     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22623
22624 commit e5a3bc2401a23f1890611f020f57f94824a534db
22625 Author: Remy Bohmer <linux@bohmer.net>
22626 Date:   Sun May 3 12:11:40 2009 +0200
22627
22628     Add config option for disabling DM9000-SROM support.
22629
22630     Some boards do not have SROM support for the DM9000 network adapter.
22631     Instead of listing these board names in the driver code, make this
22632     option configurable from the board config file.
22633
22634     It also removes a build warning for the at91sam9261ek board:
22635     'dm9000x.c:545: warning: 'read_srom_word' defined but not used'
22636
22637     And it repaires the trizepsiv board build which was broken around the
22638     same routines
22639
22640     Signed-off-by: Remy Bohmer <linux@bohmer.net>
22641     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22642
22643 commit 3c9b1ee17e19bd6d80344678d41a85e52b0be713
22644 Author: Kim Phillips <kim.phillips@freescale.com>
22645 Date:   Fri Jun 5 14:11:33 2009 -0500
22646
22647     mpc83xx: don't set SICRH_TSOBI1 to RMII/RTBI operation
22648
22649     In GMII mode (which operates at 3.3V) both SICRH TSEC1/2 output buffer
22650     impedance bits should be clear, i.e., SICRH[TSIOB1] = 0 and SICRH[TSIOB2] = 0.
22651     SICRH[TSIOB1] was erroneously being set high.
22652
22653     U-Boot always operated this PHY interface in GMII mode.  It is assumed this
22654     was missed in the clean up by the original board porters, and copied along
22655     to the TQM and sbc boards.
22656
22657     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22658     Acked-by: Ira Snyder <iws@ovro.caltech.edu>
22659     Reviewed-by: David Hawkins <dwh@ovro.caltech.edu>
22660     Tested-by: Paul Gortmaker <paul.gortmaker@windriver.com>
22661     CC: Dave Liu <DaveLiu@freescale.com>
22662
22663 commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7
22664 Author: Daniel Mack <daniel@caiaq.de>
22665 Date:   Wed Apr 8 13:23:37 2009 +0200
22666
22667     smc911x: write back the manually set MAC address
22668
22669     If the MAX address is given by the environment, write it back to the
22670     hardware.
22671
22672     Signed-off-by: Daniel Mack <daniel@caiaq.de>
22673     Cc: Sascha Hauer <s.hauer@pengutronix.de>
22674     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22675
22676 commit dfcd7f21607fd847236b04bb1a8d59a7c10ab99c
22677 Author: Wolfgang Denk <wd@denx.de>
22678 Date:   Fri May 15 00:16:03 2009 +0200
22679
22680     Redundant Environment: protect full sector size
22681
22682     Several boards used different ways to specify the size of the
22683     protected area when enabling flash write protection for the sectors
22684     holding the environment variables: some used CONFIG_ENV_SIZE and
22685     CONFIG_ENV_SIZE_REDUND, some used CONFIG_ENV_SECT_SIZE, and some even
22686     a mix of both for the "normal" and the "redundant" areas.
22687
22688     Normally, this makes no difference at all. However, things are
22689     different when you have to deal with boards that can come with
22690     different types of flash chips, which may have different sector
22691     sizes.
22692
22693     Here we may have to chose CONFIG_ENV_SECT_SIZE such that it fits the
22694     biggest sector size, which may include several sectors on boards using
22695     the smaller sector flash types. In such a case, using CONFIG_ENV_SIZE
22696     or CONFIG_ENV_SIZE_REDUND to enable the protection may lead to the
22697     case that only the first of these sectors get protected, while the
22698     following ones aren't.
22699
22700     This is no real problem, but it can be confusing for the user -
22701     especially on boards that use CONFIG_ENV_SECT_SIZE to protect the
22702     "normal" areas, while using CONFIG_ENV_SIZE_REDUND for the
22703     "redundant" area.
22704
22705     To avoid such inconsistencies, I changed all sucn boards that I found
22706     to consistently use CONFIG_ENV_SECT_SIZE for protection. This should
22707     not cause any functional changes to the code.
22708
22709     Signed-off-by: Wolfgang Denk <wd@denx.de>
22710     Cc: Paul Ruhland
22711     Cc: Pantelis Antoniou <panto@intracom.gr>
22712     Cc: Stefan Roese <sr@denx.de>
22713     Cc: Gary Jennejohn <garyj@denx.de>
22714     Cc: Dave Ellis <DGE@sixnetio.com>
22715     Acked-by: Stefan Roese <sr@denx.de>
22716
22717 commit b81830f6e3b3e6ed114d071eb107965e49fa9b5a
22718 Author: Ilya Yanok <yanok@emcraft.com>
22719 Date:   Thu May 14 14:03:09 2009 +0400
22720
22721     mmc: it's safe to ignore mmc_send_if_cond() return value
22722
22723     Return value of mmc_send_if_cond() can be safely ignored (as it is
22724     done in Linux). This makes older cards work with MXC MCI controller.
22725
22726     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
22727
22728 commit dba6fcf6517faa5dda7df8109febe03c9c72a6f5
22729 Author: Stefan Roese <sr@denx.de>
22730 Date:   Mon May 11 15:54:13 2009 +0200
22731
22732     cfi_mtd: Fix bug in last sector detection
22733
22734     This patch now enabled this cfi-mtd wrapper to correctly detect and
22735     erase the last sector in an NOR FLASH device.
22736
22737     Signed-off-by: Stefan Roese <sr@denx.de>
22738
22739 commit 4e3d89ba948eef801ffd46ef862cdede5b3f8320
22740 Author: Yauhen Kharuzhy <jekhor@gmail.com>
22741 Date:   Thu May 7 00:43:30 2009 +0300
22742
22743     mmc: Fix decoding of SCR & function switch data on little-endian machines
22744
22745     SCR & switch data are read from card as big-endian words and should be
22746     converted to CPU byte order.
22747
22748     Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
22749     Signed-off-by: Andy Fleming <afleming@freescale.com>
22750
22751 commit f33cb34b3971dabe3720d577b0e1b8601c09fe17
22752 Author: Yauhen Kharuzhy <jekhor@gmail.com>
22753 Date:   Thu May 7 13:08:53 2009 +0300
22754
22755     mmc: Remove return from mmc_init for non SD 2.0 compatible cards.
22756
22757     Cards which are not compatible with SD 2.0 standard, may return response
22758     for CMD8 command, but it will be invalid in terms of SD 2.0. We should
22759     accept this case as admissible, just like Linux does.
22760
22761     Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
22762     Signed-off-by: Andy Fleming <afleming@freescale.com>
22763
22764 commit 998be3dd59ed0af4bec38324047fecfa88ac45db
22765 Author: Rabin Vincent <rabin@rab.in>
22766 Date:   Sun Apr 5 13:30:56 2009 +0530
22767
22768     mmc: drop unnecessary casts
22769
22770     Now that response is a uint, we can drop all the casts.
22771
22772     Signed-off-by: Rabin Vincent <rabin@rab.in>
22773
22774 commit 0b453ffe28bb9227d86ddbe0893bd19c93f04ed7
22775 Author: Rabin Vincent <rabin@rab.in>
22776 Date:   Sun Apr 5 13:30:55 2009 +0530
22777
22778     mmc: fix response decoding on little endian
22779
22780     The mmc code defines the response as an array of chars.  However, it
22781     access the response bytes both as (i) an array of four uints (with
22782     casts) and (ii) as individual chars.  The former case is used more
22783     often, including by the driver when it assigns the response.
22784
22785     The char-wise accesses are broken on little endian systems because they
22786     assume that the bytes in the uints are in big endian byte order.
22787
22788     This patch fixes this by changing the response to be an array of four
22789     uints and replacing the char-wise accesses with equivalent uint-wise
22790     accesses.
22791
22792     Signed-off-by: Rabin Vincent <rabin@rab.in>
22793
22794 commit 9b1f942c09dd942e6de3185caa81c111b14de567
22795 Author: Rabin Vincent <rabin@rab.in>
22796 Date:   Sun Apr 5 13:30:54 2009 +0530
22797
22798     mmc: use lldiv to fix arm eabi build
22799
22800     The generic MMC core uses direct long long divisions, which do not build
22801     with ARM EABI toolchains.  Use lldiv() instead, which works everywhere.
22802
22803     Signed-off-by: Rabin Vincent <rabin@rab.in>
22804
22805 commit e85649c7e683faea1ccfddc9fa9abc62f38e4201
22806 Author: Rabin Vincent <rabin@rab.in>
22807 Date:   Sun Apr 5 13:30:53 2009 +0530
22808
22809     mmc: check find_mmc_device return value
22810
22811     find_mmc_device returns NULL if an invalid device number is specified.
22812     Check for this to avoid dereferencing NULL pointers.
22813
22814     Signed-off-by: Rabin Vincent <rabin@rab.in>
22815
22816 commit ac0865ff33870cdf2cd480165045e1bc311e9fa2
22817 Author: Rabin Vincent <rabin@rab.in>
22818 Date:   Sun Apr 5 13:30:52 2009 +0530
22819
22820     mmc: clean up help texts
22821
22822     Remove some repeated words and superfluous newlines in the mmc command
22823     help entries.
22824
22825     Signed-off-by: Rabin Vincent <rabin@rab.in>
22826
22827 commit 7d6900ebe16d679c0e03f8d1584b64057a64ce39
22828 Author: Mike Frysinger <vapier@gentoo.org>
22829 Date:   Fri May 29 17:01:48 2009 -0400
22830
22831     Blackfin: spi: fix pin handling of SPI0 SSEL4
22832
22833     CS4 on SPI0 has a dedicated PH8 pin which needs to be enabled as a
22834     peripheral in order to work.
22835
22836     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22837
22838 commit 2157359dad2533987f5eb0181ef543693fad6a33
22839 Author: Mike Frysinger <vapier@gentoo.org>
22840 Date:   Tue May 26 02:51:57 2009 -0400
22841
22842     Blackfin: fix if() logic in bootrom evt1 check
22843
22844     A missing set of parenthesis caused the silicon revision to apply only to
22845     the BF533 and not the BF531/BF532 variants.
22846
22847     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22848
22849 commit 76b5883da2cf049cd410901c04ea450e5f5c27c3
22850 Author: Stefan Roese <sr@denx.de>
22851 Date:   Sat May 16 12:04:22 2009 +0200
22852
22853     jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together
22854
22855     Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because
22856     mtdparts_init() is available in both files, cmd_mtdparts.c and
22857     cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before
22858     the jffs2/mtdparts command/file split those 2 different versions
22859     already existed. So this is nothing new. The main problem is that the
22860     variables "current_dev" and "current_partnum" are declared in both
22861     files now. This doesn't work.
22862
22863     This patch now changes the names of those variable to more specific
22864     names: "current_mtd_dev" and "current_mtd_partnum". This is because
22865     this patch also changes the declaration from static to global, so
22866     that they can be used from both files.
22867
22868     Please note that my first tests were not successful. The MTD devices
22869     selected via mtdparts are now accessed but I'm failing to see the
22870     directory listed via the "ls" command. Nothing is displayed. Perhaps
22871     I didn't generate the JFFS2 image correctly (I never used JFFS2 in
22872     U-Boot before). Not sure. Perhaps somebody else could take a look at
22873     this as well. I'll continue looking into this on Monday.
22874
22875     Signed-off-by: Stefan Roese <sr@denx.de>
22876     Cc: Wolfgang Denk <wd@denx.de>
22877     Cc: Detlev Zundel <dzu@denx.de>
22878     Cc: Ilya Yanok <yanok@emcraft.com>
22879     Cc: Renaud barbier <renaud.barbier@ge.com>
22880
22881 commit ab687907980fa28940a1a992d3f1c5d17cdbbf5d
22882 Author: Graf Yang <graf.yang@analog.com>
22883 Date:   Sun May 24 02:34:34 2009 -0400
22884
22885     Blackfin: bf518f-ezbrd: setup portmux for async flash
22886
22887     The pins for async memory where parallel flash lives are not enabled by
22888     default, so make sure we mux them as needed.
22889
22890     Signed-off-by: Graf Yang <graf.yang@analog.com>
22891     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22892
22893 commit f40f6db278f602b55820693634a7256b0b4e4b80
22894 Author: Stefan Roese <sr@denx.de>
22895 Date:   Wed May 20 10:58:03 2009 +0200
22896
22897     nand: Fix problem with ECC ordering for PPC4xx NDFC platforms
22898
22899     This patch enables Smart Media (SMC) ECC byte ordering which is used
22900     on the PPC4xx NAND FLASH controller (NDFC). Without this patch we have
22901     incompatible ECC byte ordering to the Linux kernel NDFC driver.
22902
22903     Signed-off-by: Stefan Roese <sr@denx.de>
22904     Acked-by: Scott Wood <scottwood@freescale.com>
22905
22906 commit 399aab7748bef053d59612211e1bd7a3fabfce18
22907 Author: Stefan Roese <sr@denx.de>
22908 Date:   Wed May 20 10:58:02 2009 +0200
22909
22910     ppc4xx: Fix problem with ECC ordering for PPC4xx NDFC platforms
22911
22912     This patch now uses the correct ECC byte order (Smart Media - SMC)
22913     to be used on the 4xx NAND FLASH driver. Without this patch we have
22914     incompatible ECC byte ordering to the Linux kernel NDFC driver.
22915
22916     Please note that we also have to enable CONFIG_MTD_NAND_ECC_SMC in
22917     drivers/mtd/nand/nand_ecc.c for correct operation. This is done with
22918     a seperate patch.
22919
22920     Signed-off-by: Stefan Roese <sr@denx.de>
22921     Acked-by: Scott Wood <scottwood@freescale.com>
22922
22923 commit 5d841fac8249a2b3f9a814da2140132be0a9f60d
22924 Author: Stefan Roese <sr@denx.de>
22925 Date:   Wed May 20 10:58:01 2009 +0200
22926
22927     ppc4xx: Move definition for PPC4xx NAND FLASH controller to header
22928
22929     This patch moves the definition for the PPC4xx NAND FLASH controller
22930     (NDFC) CONFIG_NAND_NDFC into include/ppc4xx.h. This is needed for the
22931     upcoming fix for the ECC byte ordering of the NDFC driver.
22932
22933     Signed-off-by: Stefan Roese <sr@denx.de>
22934     Acked-by: Scott Wood <scottwood@freescale.com>
22935
22936 commit 2df72b82bc9e17b88dc82735a067749220beb025
22937 Author: Kim Phillips <kim.phillips@freescale.com>
22938 Date:   Tue May 19 12:53:36 2009 -0500
22939
22940     common: fix inline--weak error spotted by gcc 4.4
22941
22942     cmd_ide.c:547: error: inline function 'ide_inb' cannot be declared weak
22943
22944     removing the inline attribute fixes it.
22945
22946     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22947
22948 commit 9fd9abedcc3c10cf89353265cbe05f58609d51f3
22949 Author: Kim Phillips <kim.phillips@freescale.com>
22950 Date:   Tue May 19 12:53:32 2009 -0500
22951
22952     TQM834x: remove defines causing gcc4.4 warnings
22953
22954     Configuring for TQM834x board...
22955     cpu_init.c: In function 'cpu_init_f':
22956     cpu_init.c:262: warning: array subscript is above array bounds
22957     cpu_init.c:263: warning: array subscript is above array bounds
22958     cpu_init.c:270: warning: array subscript is above array bounds
22959     ...
22960
22961     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22962
22963 commit 0850301747228a3327f2815a85284d26ade3de95
22964 Author: Andreas Huber <andreas.huber@keymile.com>
22965 Date:   Tue May 19 11:06:30 2009 +0200
22966
22967     UBI: fix return code in ubi_volume_read
22968
22969     Return -ENODEV instead of 0 when trying to read from a non existing volume.
22970
22971     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
22972     Signed-off-by: Stefan Roese <sr@denx.de>
22973
22974 commit ec01481ddc4cf302c7f6d760b776ca94819ec21e
22975 Author: Graf Yang <graf.yang@analog.com>
22976 Date:   Tue May 19 04:40:08 2009 -0400
22977
22978     Blackfin: fix timer_init()/timer_reset()
22979
22980     The timer_init() function was not using the right csync instruction, nor
22981     was it doing it right after disabling the core timer.
22982
22983     The timer_reset() function would reset the timestamp, but not the actual
22984     timer, so there was a common edge case where get_timer() return a jump of
22985     one timestamp (couple milliseconds) right after resetting.  This caused
22986     many functions to improperly timeout right away.
22987
22988     Signed-off-by: Graf Yang <graf.yang@analog.com>
22989     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22990
22991 commit c06326c73bf90e48a8e1cf8893ad31c575423f50
22992 Author: Shinya Kuribayashi <skuribay@pobox.com>
22993 Date:   Sat May 16 09:12:09 2009 +0900
22994
22995     MIPS: lib_mips/board.c: Remove unused variables
22996
22997     This fixes the following build warnings:
22998
22999     board.c: In function 'board_init_r':
23000     board.c:328: warning: unused variable 'i'
23001     board.c:326: warning: unused variable 'e'
23002
23003     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
23004
23005 commit 47f6a36cc3f3427cc8e4f1d0f3e6678be6f33769
23006 Author: Shinya Kuribayashi <skuribay@pobox.com>
23007 Date:   Sat May 16 09:12:09 2009 +0900
23008
23009     MIPS: Make all extern-ed functions in bitops.h static
23010
23011     All these functions are expected to be static inline-ed.
23012     This patch also fixes the following build warnings on MIPS targets:
23013
23014     include/asm/bitops.h: In function 'ext2_find_next_zero_bit':
23015     include/asm/bitops.h:862: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
23016     include/asm/bitops.h:885: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
23017     include/asm/bitops.h:887: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
23018
23019     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
23020
23021 commit 87423d740b91329b8d1d0b73cafd6930993b558a
23022 Author: Thomas Lange <thomas@corelatus.se>
23023 Date:   Fri Apr 24 16:22:16 2009 +0200
23024
23025     MIPS: Implement ethernet halt for au1x00
23026
23027     Implement ethernet halt() by putting MAC0 in reset.
23028     If we do not do this, we will get memory corruption
23029     when ethernet frames are received during early OS boot.
23030
23031     Signed-off-by: Thomas Lange <thomas@corelatus.se>
23032     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
23033
23034 commit a2e0ffcf2d9a22c582a93e84a4bef20fd3877f47
23035 Author: Wolfgang Denk <wd@denx.de>
23036 Date:   Fri May 15 23:29:23 2009 +0200
23037
23038     Prepare v2009.06-rc2
23039
23040     Update CHANGELOG.
23041
23042     Signed-off-by: Wolfgang Denk <wd@denx.de>
23043
23044 commit f4317ea91942f44cc1c433277927b61618e9b0a5
23045 Author: Daniel Mack <daniel@caiaq.de>
23046 Date:   Tue May 5 12:48:29 2009 +0200
23047
23048     ARM: fix PXA build by defining UP2OCR
23049
23050     U-Boot does not currently build for PXA platforms with USB support
23051     enabled:
23052
23053     usb.c:46: error: 'UP2OCR' undeclared (first use in this function)
23054
23055     Signed-off-by: Daniel Mack <daniel@caiaq.de>
23056     Cc: Markus Klotzbuecher <mk@denx.de>
23057
23058     Edited commit message.
23059     Signed-off-by: Wolfgang Denk <wd@denx.de>
23060
23061 commit e26ad0eabd10a8cda51920fbcfe4da5b4ccf0c98
23062 Author: Wolfgang Denk <wd@denx.de>
23063 Date:   Fri May 15 22:32:57 2009 +0200
23064
23065     Minor Coding Style fix; update CHANGELOG.
23066
23067     Signed-off-by: Wolfgang Denk <wd@denx.de>
23068
23069 commit af75a45d23b72a59ac5cc0427696c7f634fdc94b
23070 Author: Wolfgang Denk <wd@denx.de>
23071 Date:   Fri May 15 09:27:58 2009 +0200
23072
23073     IDE: bail out of dev_print() for unknown device types
23074
23075     Commit 574b319512 introduced a subtle bug by mixing a list of tests
23076     for "dev_desc->type" and "dev_desc->if_type" into one switch(), which
23077     then mostly did not work because "dev_desc->type" cannot take any
23078     "IF_*" type values. A later fix in commit 8ec6e332ea changed the
23079     switch() into testing "dev_desc->if_type", but at this point the
23080     initial test for unknown device types was completely lost, which
23081     resulted in output like that for IDE ports without device attached:
23082
23083       Device 1: Model:  Firm:  Ser#:
23084                 Type: # 1F #
23085                 Capacity: not available
23086
23087     This patch re-introduces the missing test for unknown device types.
23088
23089     Signed-off-by: Wolfgang Denk <wd@denx.de>
23090     Cc: Stefan Roese <sr@denx.de>
23091     Cc: Detlev Zundel <dzu@denx.de>
23092     Tested-by: Stefan Roese <sr@denx.de>
23093
23094 commit c21f62d8483fbab44cd98d93ff2e9355a330d225
23095 Author: Stefan Roese <sr@denx.de>
23096 Date:   Thu May 14 07:25:13 2009 +0200
23097
23098     74xx_7xx: Fix rounding problem in CPU frequency calculation
23099
23100     This patch fixes a problem in the CPU frequency calculation. Without it
23101     a 798MHz CPU is displayed as 368.503 MHz. And with it it's 798 MHz.
23102
23103     Signed-off-by: Stefan Roese <sr@denx.de>
23104
23105 commit 3ad8a0517b724782ab36f2b554a94de4c00c1adb
23106 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23107 Date:   Wed May 13 22:24:12 2009 +0200
23108
23109     console.h: remove unused prototype 'console_realloc'
23110
23111     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23112
23113 commit 84bf7ca522e94ec402a1264b01971b924b7e268f
23114 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23115 Date:   Wed May 13 22:16:31 2009 +0200
23116
23117     api: remove un-needed ifdef CONFIG_API already handle by the Makefile
23118
23119     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23120
23121 commit 792a09eb9d5d8c4f74b7e9f2e887316d511a4e80
23122 Author: Detlev Zundel <dzu@denx.de>
23123 Date:   Wed May 13 10:54:10 2009 +0200
23124
23125     Fix e-mail address of Gary Jennejohn.
23126
23127     Signed-off-by: Detlev Zundel <dzu@denx.de>
23128
23129 commit 5e2c08c3ac90808e9be64856916bfd6df984823c
23130 Author: Emil Medve <Emilian.Medve@Freescale.com>
23131 Date:   Tue May 12 13:48:32 2009 -0500
23132
23133     Remove inline qualifier from show_boot_progress()
23134
23135     The 'inline' is conflicting with the semantic of 'weak' attribute and with the
23136     way the show_boot_progress() function is used.
23137
23138     Also gcc 4.4 is complaining about it:
23139
23140     main.c:51: error: inline function 'show_boot_progress' cannot be declared weak
23141
23142     Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
23143
23144 commit fe6da4837308aa33d537ac3e7f36c2d66e3d9a36
23145 Author: Wolfgang Denk <wd@denx.de>
23146 Date:   Tue May 12 15:17:35 2009 +0200
23147
23148     MPC8260: fixup device tree by property instead of path
23149
23150     cpu/mpc8260/cpu.c used to use do_fixup_by_path_u32() to update the
23151     clock frequencies in the device tree, using a CPU path
23152     "/cpus/OF_CPU", with OF_CPU beind defined in the board config file.
23153
23154     However, this does not work when one board config file (here:
23155     MPC8260ADS.h) is intended to be used for several diffrent CPUs and
23156     therefor contains a generic definition like "cpu@0", as the device
23157     trees that will then be loaded will contain specific names like
23158     "PowerPC,8272@0".
23159
23160     We switch to using do_fixup_by_prop_u32() instead, so we can search
23161     for device_type="cpu", as it is done in other architectures, too.
23162
23163     Signed-off-by: Wolfgang Denk <wd@denx.de>
23164     Cc: Heiko Schocher <hs@denx.de>
23165     Acked-by: Heiko Schocher <hs@denx.de>
23166     Tested-by: Heiko Schocher <hs@denx.de>
23167
23168 commit 12a6753155716e5c3c181a8f40e8b2d3d669aefd
23169 Author: Rohit Hagargundgi <h.rohit@samsung.com>
23170 Date:   Mon Mar 9 19:45:46 2009 +0530
23171
23172     Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
23173
23174     Add CONFIG_SYS_MONITOR_LEN macro to apollon board config.
23175     CONFIG_SYS_MONITOR_LEN defines the U-Boot image size.
23176     and is used by OneNAND ipl when reading U-Boot image.
23177
23178     Signed-off-by: Rohit Hagargundgi <h.rohit at samsung.com>
23179     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
23180
23181 commit c404cc5884b0c82fd82d751dbd8e8b3f8919a23a
23182 Author: Ben Warren <biggerbadderben@gmail.com>
23183 Date:   Tue Apr 28 17:04:51 2009 -0700
23184
23185     Schedule removal of non-CONFIG_NET_MULTI net driver API
23186
23187     This will make CONFIG_NET_MULTI the only net driver configuration and
23188     we'll be able to remove this option.
23189
23190     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23191
23192 commit 60bbcf0cc6e55095dd186e59a557d584b9b56eb1
23193 Author: Detlev Zundel <dzu@denx.de>
23194 Date:   Tue May 5 16:04:06 2009 +0200
23195
23196     powerpc/inka4x0: Remove left-over ide reset code.
23197
23198     The pin which was used in preliminary versions of the board for ide
23199     reset is really connected to the rtc clock.
23200
23201     Signed-off-by: Detlev Zundel <dzu@denx.de>
23202
23203 commit f578a2da6770951239ad91ee9a1875fdc71dbe48
23204 Author: Marco Stornelli <marco.stornelli@gmail.com>
23205 Date:   Tue Apr 28 19:04:02 2009 +0200
23206
23207     Add imls utility command
23208
23209     This patch adds, under tools folder, a new command called imls. Its
23210     goal is the same of UBoot's imls but it can be used as Linux shell
23211     command. It reads from raw mtd partition and prints the list of the
23212     stored images.
23213
23214     Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
23215
23216 commit da95427ce431908714ae5e9f663ee6e2bc3bcc33
23217 Author: Heiko Schocher <hs@denx.de>
23218 Date:   Tue Apr 28 08:36:11 2009 +0200
23219
23220     netloop: updates for NetLoop
23221
23222     Fix some issues introduced from commit:
23223     2f70c49e5b9813635ad73666aa30f304c7fdeda9
23224     suggested by Mike Frysinger.
23225
23226     - added some comment for the env_id variable in common_cmd_nvedit.c
23227     - moved some variables in fn scope instead of file scope
23228     - NetInitLoop now static void
23229
23230     Signed-off-by: Heiko Schocher <hs@denx.de>
23231     Acked-by: Ben Warren <biggerbadderben@gmail.com>
23232
23233 commit 3c1d89545de11822f8b5afb5646a57757620bd95
23234 Author: Heiko Schocher <hs@denx.de>
23235 Date:   Tue Apr 28 07:48:39 2009 +0200
23236
23237     82xx, ids8247: added ids8247 board to MAKEALL script
23238
23239     Signed-off-by: Heiko Schocher <hs@denx.de>
23240
23241 commit 890a017a8a995c921d1e889d360e8d6538ceecfe
23242 Author: Detlev Zundel <dzu@denx.de>
23243 Date:   Thu May 7 13:08:55 2009 +0200
23244
23245     arm/imx31_phycore: Fix bi_arch_number
23246
23247     Signed-off-by: Detlev Zundel <dzu@denx.de>
23248     Cc: Sascha Hauer <s.hauer@pengutronix.de>
23249
23250 commit ee47bfabefeb25bdfc83f49ef3bae0f325d3e69e
23251 Author: Sascha Hauer <s.hauer@pengutronix.de>
23252 Date:   Fri May 15 10:21:33 2009 +0200
23253
23254     remove myself as phycore/litekit Maintainer
23255
23256     I never acked a patch that adds me as phycore i.MX31 maintainer nor was
23257     it me who pushed the patches, so remove myself from the maintainer list
23258     so that other people do not longer wait for my ack.
23259
23260     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
23261
23262 commit c63254ef5628efe1c77cb2fdba20753f9666f55d
23263 Author: Sergey Lapin <slapin@ossfans.org>
23264 Date:   Tue May 12 12:25:14 2009 +0400
23265
23266     AFEB9260 network fix
23267
23268     AFEB9260 uses PA10, PA11 for ETX2 and ETX3.
23269     Also, due to extarnal pull-up on IRQ line, Micrel PHY ID is 1 after reset sequence,
23270     not 0.
23271
23272     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
23273
23274 commit f8ddcd58221cab63dd25c2324dd2032487f748b1
23275 Author: Graf Yang <graf.yang@analog.com>
23276 Date:   Tue May 5 02:26:27 2009 -0400
23277
23278     Blackfin: bf518f-ezbrd: reset ethernet PHY during init
23279
23280     We don't know what state the ethernet PHY is in when starting up, so make
23281     sure we set it to a sane state.  This fixes troubles seen when Linux boots
23282     up, configures the PHY is a non-default state, and then the system reboots
23283     into U-Boot which previously expected a reset state only.
23284
23285     Signed-off-by: Graf Yang <graf.yang@analog.com>
23286     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23287
23288 commit 53310b88eaa27fb5cb83144d0b22389190ad87a1
23289 Author: Mike Frysinger <vapier@gentoo.org>
23290 Date:   Tue May 5 01:35:41 2009 -0400
23291
23292     Blackfin: bf527-ezkit: fix SPI flash env params
23293
23294     The BF527-EZKIT settings for storing the environment in SPI flash wasn't
23295     using the correct sector settings for the SPI flash part that is actually
23296     on the board.
23297
23298     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23299
23300 commit f58bf804a14324c6c9186a7a664fa23281780e8b
23301 Author: Mike Frysinger <vapier@gentoo.org>
23302 Date:   Fri Apr 24 23:54:19 2009 -0400
23303
23304     Blackfin: avoid get_sclk() with early serial debug
23305
23306     When the clock functions were changed to use cached values (and thereby
23307     avoiding expensive math functions), early serial debug broke because the
23308     baud programming is called before external memory is available.
23309
23310     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23311
23312 commit 02778f2f1b4b1a28b492367477db27c58d45ae35
23313 Author: Mike Frysinger <vapier@gentoo.org>
23314 Date:   Fri Apr 24 23:39:41 2009 -0400
23315
23316     Blackfin: fix booting with older bootroms (no EVT1)
23317
23318     When dropping jump block support, the assumption was that all bootroms
23319     supported entry point redirection via the EVT1 register.  Unfortunately,
23320     this turned out to be incorrect for the oldest Blackfin parts (BF533-0.2
23321     and older and BF561).  No one really noticed earlier because these parts
23322     usually are booted by bypassing the bootrom entirely, and older BF533
23323     parts are not supported at all (too many anomalies).
23324
23325     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23326
23327 commit af2c37378f203857d5e6c957e77a14c2da5b59d2
23328 Author: Mike Frysinger <vapier@gentoo.org>
23329 Date:   Fri Apr 24 23:22:48 2009 -0400
23330
23331     Blackfin: recurse with early serial initcode
23332
23333     Make sure we recurse through serial_putc() rather than bang on the UART
23334     transmit register directly to avoid hardware overflows when using \n.
23335
23336     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23337
23338 commit 6b8edfde22acc574b5532e9f086e6a7287a9bc78
23339 Author: Wolfgang Denk <wd@denx.de>
23340 Date:   Fri May 1 21:59:12 2009 +0200
23341
23342     Prepare v2009.06-rc1
23343
23344     Update CHANGELOG.
23345
23346     Signed-off-by: Wolfgang Denk <wd@denx.de>
23347
23348 commit 6b2beb5626a143ca5347e7d2c6005be9936c1fbb
23349 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23350 Date:   Fri May 1 15:38:06 2009 +0200
23351
23352     at91: remove lowlevel_init.S
23353
23354     lowlevel_init.S is not used any more so remove it.
23355     As consequence, we also don't have to generate u-boot.lds
23356     but can use a static version as before.
23357
23358     This also fixes the out-of-tree build problem introduced
23359     with commit f0a2c7b4 "at91: add support for the PM9263 board"
23360
23361     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23362     Signed-off-by: Wolfgang Denk <wd@denx.de>
23363
23364 commit 0ee7a310479640ef17ce2fc0f6c13cf7961d2330
23365 Author: Wolfgang Denk <wd@denx.de>
23366 Date:   Fri May 1 00:16:11 2009 +0200
23367
23368     Update CHANGELOG; minor coding style cleanup.
23369
23370     Signed-off-by: Wolfgang Denk <wd@denx.de>
23371
23372 commit d3a513c23ba4100d6983161cdc1f747dfd087bbd
23373 Author: Manikandan Pillai <mani.pillai@ti.com>
23374 Date:   Tue Apr 21 17:29:05 2009 +0200
23375
23376     OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000
23377
23378     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
23379     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
23380
23381 commit ac9140037a84629c5583066ff1a177396c47d89d
23382 Author: Dirk Behme <dirk.behme@googlemail.com>
23383 Date:   Fri Apr 17 14:27:56 2009 +0200
23384
23385     OMAP3: Beagle: Set pinmux conditionally for Rev C boards
23386
23387     The Beagle Rev C boards pull UART2 from an alternate set of balls.
23388
23389     Signed-off-by: Steve Sakoman <steve@sakoman.com>
23390     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
23391
23392 commit c1a0fd5f2864e9d381f4a3dc948942cac974e89a
23393 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23394 Date:   Mon Apr 27 18:33:33 2009 +0200
23395
23396     ubifs: BUG: Blocks commpressed with zlib
23397
23398     Blocks compressed with zlib dont have the full gzip header.
23399
23400     Without this patch, block compressed with zlib cannot be readed!
23401
23402     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23403
23404 commit 35f6a943f7d92145d607c1d55f5c2e2eae5be630
23405 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23406 Date:   Mon Apr 27 18:33:32 2009 +0200
23407
23408     lib_generic: gunzip: New function zunzip
23409
23410     Separate gunzip in
23411
23412     gunzip: Find the end of the header and call zunzip.
23413     zunzip: Inflate gunzip block without header.
23414
23415     UBI fs blocks can be compresed in lzo, zlib or no-compression. The
23416     current implementation of u-boot supported all the compressions but
23417     there was a bug in the implementation of the zlib blocks.
23418
23419     UBIFS's Zlib blocks do not have header but they were compressed using
23420     gunzip, a function used to decompress gunzip files/sectors with a
23421     header.
23422
23423     This patch adds a new function zunzip that uncompress a zlib block with
23424     no header.
23425
23426     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23427
23428 commit a1e5f93185d0d85a4b3fad3b6c743cddcd373b0c
23429 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
23430 Date:   Thu Apr 23 15:37:16 2009 +0200
23431
23432     at91: fixed plla calc when no USB support is active
23433
23434     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
23435     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23436
23437 commit 3791a1187c1401c33c9512595e6e89dbb46230c5
23438 Author: Ladislav Michl <ladis@linux-mips.org>
23439 Date:   Wed Apr 22 01:12:04 2009 +0200
23440
23441     arm925t: Fix CONFIG_SYS_HZ to 1000
23442
23443     Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of
23444     get_timer.
23445
23446     Changes since original version:
23447     * Set PTV=2 (divisor 8) for boards using 12MHz timer clock source to
23448       improve timer resolution.
23449
23450     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
23451
23452 commit 42bf4b2248146abdc592bde0009c6ea42067f437
23453 Author: Dirk Behme <dirk.behme@googlemail.com>
23454 Date:   Tue Apr 14 20:15:17 2009 +0200
23455
23456     OMAP3: Remove legacy NAND defines
23457
23458     Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora.
23459
23460     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
23461
23462 commit cba0b778dd5f1ea32959b6825c7f0a31501a99d5
23463 Author: Sanjeev Premi <premi@ti.com>
23464 Date:   Mon Apr 27 21:27:54 2009 +0530
23465
23466     OMAP3: Print correct silicon revision
23467
23468     The function display_board_info() displays incorrect
23469     silicon revision - based on the return value from
23470     function get_cpu_rev().
23471
23472     This patch fixes the problem.
23473
23474     Signed-off-by: Sanjeev Premi <premi@ti.com>
23475
23476 commit 90006e9b33bcdbf241b0295d186e3634137907a9
23477 Author: Sanjeev Premi <premi@ti.com>
23478 Date:   Mon Apr 27 21:27:44 2009 +0530
23479
23480     OMAP3: Remove unused board-types
23481
23482     The board-types defined in struct omap3_sysinfo seem to be
23483     unused. The function display_board_info() is passed
23484     board type as an argument; which is ignored.
23485
23486     This patch removes all uses of board-type, related definitions
23487     and functions.
23488
23489     Signed-off-by: Sanjeev Premi <premi@ti.com>
23490
23491 commit 6a6b62e3aa4b340c4f8fc67b1487ddb5436c684d
23492 Author: Sanjeev Premi <premi@ti.com>
23493 Date:   Mon Apr 27 21:27:27 2009 +0530
23494
23495     OMAP3: Use functions print_cpuinfo() and checkboard()
23496
23497     Use the functions print_cpuinfo() and checkboard() to
23498     display the cpu and board specific information.
23499
23500     These functions reuse content from the existing function
23501     display_board_info() - which has been removed.
23502
23503     Also, updated the existig OMAP3 configurations to
23504     define:
23505      - CONFIG_DISPLAY_CPUINFO
23506      - CONFIG_DISPLAY_BOARDINFO
23507
23508     Signed-off-by: Sanjeev Premi <premi@ti.com>
23509
23510 commit f8e2b3107ee00f2782f8ebf47e3f09cda4e2353a
23511 Author: Stefan Roese <sr@denx.de>
23512 Date:   Wed Mar 18 11:17:37 2009 +0100
23513
23514     MTD: Change cfi-mtd to accept non-uniform sector sizes
23515
23516     With this patch non-uniform NOR FLASH chips (chips with multiple erase
23517     regions) can be exported via the cfi-mtd layer and therefor used by UBI.
23518     We select the largest sector size as erasesize. The cfi driver will make
23519     sure that the smaller sectors are handled correctly.
23520
23521     Signed-off-by: Stefan Roese <sr@denx.de>
23522
23523 commit 3dcbe628d66b648e954bc8147d4faff2983206d9
23524 Author: Anatolij Gustschin <agust@denx.de>
23525 Date:   Thu Apr 23 12:35:22 2009 +0200
23526
23527     video: fix bug in cfb_console.c code
23528
23529     Fix bug in drawing long version/info strings:
23530     U-Boot version string like
23531     "U-Boot 2009.03-05647-g7c51e06 (Apr 23 2009 - 12:40:00) MPC83XX"
23532     is long and doesn't wrap around correctly while drawing
23533     beside the logo. Such long strings partially overwrite
23534     the logo. This patch is an attempt to fix it.
23535
23536     Signed-off-by: Anatolij Gustschin <agust@denx.de>
23537
23538 commit 4d9eab89b3b2c2ed432b14d355a56f274d8aac75
23539 Author: Wolfgang Denk <wd@denx.de>
23540 Date:   Tue Apr 28 08:50:31 2009 +0200
23541
23542     cmd_ext2.c: fix compile warnings
23543
23544     Get rid of these warnings:
23545
23546     cmd_ext2.c:247: warning: format '%ld' expects type 'long int', but argument 2 has type 'int'
23547     cmd_ext2.c:248: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'int'
23548
23549     Signed-off-by: Wolfgang Denk <wd@denx.de>
23550
23551 commit 28afe0160f87ff74574150d703055a965f91422a
23552 Author: Heiko Schocher <hs@denx.de>
23553 Date:   Mon Apr 27 10:48:20 2009 +0200
23554
23555     ids8247: Remove legacy NAND defines
23556
23557     because legacy NAND support is deprecated converting to current
23558     NAND interface. !This just compile, because I have no more the
23559     hardware to test it.
23560
23561     Signed-off-by: Heiko Schocher <hs@denx.de>
23562
23563 commit dbd33614404b65aa441c5620c3dbd560c4460c09
23564 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23565 Date:   Mon Apr 27 09:13:31 2009 +0200
23566
23567     ubifs: BUG realpath string must be ended with NULL
23568
23569     If the memory used to copy the link_make is "dirty" the string wont
23570     be ended with NULL, throwing out multiple memory bugs.
23571
23572     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23573     Acked-by: Stefan Roese <sr@denx.de>
23574
23575 commit 65351a8793c51f3787efbbcf3aa1df0ad543c127
23576 Author: Peter Tyser <ptyser@xes-inc.com>
23577 Date:   Fri Apr 24 15:59:56 2009 -0500
23578
23579     bmp_logo: Check return value of fread()
23580
23581     Add basic error handling to fread() function calls.  This prevents
23582     compililation warnings such as:
23583
23584     bmp_logo.c: In function â€˜main’:
23585     bmp_logo.c:71: warning: ignoring return value of â€˜fread’, declared with
23586     attribute warn_unused_result
23587     ...
23588
23589     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23590
23591 commit eea8be86d1c2b570660d1f6c553845e13164231a
23592 Author: Peter Tyser <ptyser@xes-inc.com>
23593 Date:   Fri Apr 24 15:59:46 2009 -0500
23594
23595     ncb: Check return value of write()
23596
23597     This prevents the compilation warning:
23598
23599     ncb.c: In function 'main':
23600     ncb.c:32: warning: ignoring return value of â€˜write’, declared with
23601     attribute warn_unused_result
23602
23603     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23604
23605 commit dbe29e36a4c2775b69b5a63b0ce2bac89c08e691
23606 Author: Stefan Roese <sr@denx.de>
23607 Date:   Fri Apr 24 15:59:35 2009 +0200
23608
23609     mtd: nand/onenand: Register mtd device upon device scanning
23610
23611     With this patch the NAND and OneNAND devices are registered in the MTD
23612     subsystem and can then be referenced by the mtdcore code (e.g.
23613     get_mtd_device_nm()). This is needed for the new "ubi part" command
23614     syntax without the flash type parameter (nor|nand|onenand).
23615
23616     Signed-off-by: Stefan Roese <sr@denx.de>
23617
23618 commit 10bb62d85a0850dbad1fdd34123378686373f166
23619 Author: Stefan Roese <sr@denx.de>
23620 Date:   Fri Apr 24 15:58:33 2009 +0200
23621
23622     mtd: nand: Include linux/mtd/partitions.h in nand_base.h
23623
23624     This patch removes this compilation warning when CONFIG_MTD_PARTITIONS is
23625     defined:
23626
23627     nand_base.c: In function 'nand_release':
23628     nand_base.c:2922: warning: implicit declaration of function 'del_mtd_partitions'
23629
23630     Signed-off-by: Stefan Roese <sr@denx.de>
23631
23632 commit 2d579e5060413af5a740cb396dc87e1ff31bf5a9
23633 Author: Stefan Roese <sr@denx.de>
23634 Date:   Fri Apr 24 20:24:19 2009 +0200
23635
23636     ubi: Remove flash selection parameter (nor|nand|onenand) from "ubi part"
23637
23638     This patch removes the now unnecessary flash type parameter from the
23639     "ubi part" command. Currently the user has to define the type of flash
23640     he will be using UBI on. Example:
23641
23642     => ubi part nor partition1
23643
23644     With this patch this type parameter is not needed anymore. The user can
23645     now select the partition directly without the flash type paramter.
23646     Example:
23647
23648     => ubi part partition1
23649
23650     This breaks backward compatibility right now because of the change in the
23651     command syntax. But UBI support is still quite fresh and the advantage of
23652     this new command is syntax big enough for this change. Additionally the
23653     code is much cleaner now.
23654
23655     Signed-off-by: Stefan Roese <sr@denx.de>
23656     CC: Kyungmin Park <kyungmin.park@samsung.com>
23657
23658 commit 294f10ca9ea82a15e135dcb0fc658382ab206940
23659 Author: Detlev Zundel <dzu@denx.de>
23660 Date:   Thu Apr 23 13:14:20 2009 +0200
23661
23662     mips/vcth: Use generic 16550 uart driver
23663
23664     As the common code also handles baudrate switching, which the board
23665     specific vct.c driver did not support, this is one of the rare
23666     occassions where deleting code actually adds a feature :)
23667
23668     Signed-off-by: Detlev Zundel <dzu@denx.de>
23669     Acked-by: Stefan Roese <sr@denx.de>
23670     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23671
23672 commit 0c8a84916c5dacccdc5b27b63fc463e9f3b04f07
23673 Author: Ladislav Michl <ladis@linux-mips.org>
23674 Date:   Tue Apr 21 02:26:31 2009 +0200
23675
23676     Separate mtdparts command from jffs2
23677
23678     On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
23679     > Currently the mtdparts commands are included in the jffs2 command support.
23680     > This doesn't make sense anymore since other commands (e.g. UBI) use this
23681     > infrastructure as well now. This patch separates the mtdparts commands from
23682     > the jffs2 commands making it possible to only select mtdparts when no JFFS2
23683     > support is needed.
23684
23685     One more leftover... Let nboot command know about partitions even if JFFS2
23686     support is not enabled.
23687
23688     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
23689     Acked-by: Stefan Roese <sr@denx.de>
23690
23691 commit 67c2e57c0875139dbfcd6f41c43e6ad0cb2e40c9
23692 Author: Peter Tyser <ptyser@xes-inc.com>
23693 Date:   Mon Apr 20 11:22:13 2009 -0500
23694
23695     cmd_ide: Remove unused AmigaOneG3SE code
23696
23697     The output_data_short() and input_data_short() functions for the
23698     AmigaOneG3SE are unused and result in compiler warnings.
23699
23700     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23701
23702 commit c93c102ace00764a56dbdf78bac134a23906721e
23703 Author: Peter Tyser <ptyser@xes-inc.com>
23704 Date:   Mon Apr 20 11:21:40 2009 -0500
23705
23706     AmigaOneG3SE: Fix CONFIG_CMD_CONSOLE definition
23707
23708     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23709
23710 commit 54e822f9590cc6c70411bd8cabd42236e07a2aa7
23711 Author: Peter Tyser <ptyser@xes-inc.com>
23712 Date:   Mon Apr 20 11:09:05 2009 -0500
23713
23714     Replace __asm references with __asm__
23715
23716     __asm__ follows gcc's documented syntax and is generally more common
23717     than __asm.  This change is only asthetic and should not affect
23718     functionality.
23719
23720     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23721
23722 commit f9a109b3adc5e8647535357500e2a38f0558b5c2
23723 Author: Peter Tyser <ptyser@xes-inc.com>
23724 Date:   Mon Apr 20 11:08:46 2009 -0500
23725
23726     Replace __attribute references with __attribute__
23727
23728     __attribute__ follows gcc's documented syntax and is generally more
23729     common than __attribute.  This change is only asthetic and should not
23730     affect functionality.
23731
23732     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23733
23734 commit 08f077da9298ff65cc6f85f90d2770000a1beee9
23735 Author: David Brownell <dbrownell@users.sourceforge.net>
23736 Date:   Thu Apr 16 19:55:48 2009 -0700
23737
23738     mtdpart command: align output columns
23739
23740     Make the headers in the "mtdparts" command output line up
23741     with their columns ... strike the extra TAB character.
23742
23743     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
23744
23745 commit 06f41f825c23344d889d5419bb5eaeceb3ed2a02
23746 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23747 Date:   Thu Apr 16 10:51:03 2009 +0900
23748
23749     Remove sa1100.h
23750
23751     sa1100.h is not used anywhere, then remove it.
23752
23753     $ find . -name '*.h' -empty -print
23754     ./include/sa1100.h
23755     $ git grep 'sa1100.h' .
23756     $
23757
23758     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23759     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23760
23761 commit 7d3d30b1b3fbd0a07db254ead99fa6fff4f4d992
23762 Author: Stefan Roese <sr@denx.de>
23763 Date:   Tue Apr 14 17:51:21 2009 +0200
23764
23765     UBIFS: Remove tnc_commit.c which is not used in the read-only version
23766
23767     I missed removing this file while implementing the UBIFS support. It's
23768     not referenced at all, so let's remove it. Thanks to Artem Bityutskiy
23769     for spotting.
23770
23771     Signed-off-by: Stefan Roese <sr@denx.de>
23772
23773 commit 6356daff70867822bdb23cea49f98e65421a25b8
23774 Author: Adrian Hunter <adrian.hunter@nokia.com>
23775 Date:   Tue Apr 14 17:50:38 2009 +0200
23776
23777     UBIFS: fix recovery bug
23778
23779     UBIFS did not recovery in a situation in which it could
23780     have. The relevant function assumed there could not be
23781     more nodes in an eraseblock after a corrupted node, but
23782     in fact the last (NAND) page written might contain anything.
23783     The correct approach is to check for empty space (0xFF bytes)
23784     from then on.
23785
23786     Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
23787     Signed-off-by: Stefan Roese <sr@denx.de>
23788
23789 commit 351f40caf2f7806b2cefb93e077ea619b9f684e8
23790 Author: Gao Guanhua <B22826@freescale.com>
23791 Date:   Tue Apr 14 14:37:35 2009 +0800
23792
23793     fs: Fix the wrong type of var
23794
23795     The filelen should be signed type, not unsigned type.
23796     otherwise, The condition as below never take.
23797         if (filelen < 0)
23798
23799     Signed-off-by: Gao Guanhua <B22826@freescale.com>
23800     Signed-off-by: Dave Liu <daveliu@freescale.com>
23801
23802 commit 05f474c4d0469bebc0bb05df60a39dc7fdf28e62
23803 Author: Wolfgang Denk <wd@denx.de>
23804 Date:   Tue Apr 28 00:29:34 2009 +0200
23805
23806     Update CHANGELOG
23807
23808     Signed-off-by: Wolfgang Denk <wd@denx.de>
23809
23810 commit ad74cae9ff8790727bc81ee91c6bca7d50dca446
23811 Author: David Brownell <dbrownell@users.sourceforge.net>
23812 Date:   Thu Apr 16 23:15:15 2009 -0700
23813
23814     dm9000 EEPROM reading bugfix
23815
23816     Make the U-Boot dm9000 driver read addresses from EEPROM just
23817     like Linux does ... read six bytes, instead of reading twelve
23818     bytes and then discarding every other one.
23819
23820     Using the right Ethernet address is a big win.
23821
23822     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
23823     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23824     Acked-by: Ben Warren <biggerbadderben@gmail.com>
23825
23826 commit d4c02e6f5d49880123e7f584b88f857ffd874381
23827 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
23828 Date:   Wed Feb 25 14:27:24 2009 +0900
23829
23830     rtl8169: fix cache coherency problem
23831
23832     Fix the problem that cannot access actual data when CPU data cache enabled.
23833
23834     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
23835     Tested-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
23836     Acked-by: Ben Warren <biggerbadderben@gmail.com>
23837
23838 commit a85693b3bd4431b05b7df608b6f7733c0f80c53e
23839 Author: Dirk Behme <dirk.behme@googlemail.com>
23840 Date:   Tue Apr 21 17:30:51 2009 +0200
23841
23842     OMAP3: Fix changed mmc init command
23843
23844     In recent U-Boot mmcinit changed to mmc init.
23845
23846     Signed-off-by: Steve Sakoman <steve@sakoman.com>
23847     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
23848
23849 commit 34b76a14f676bc6501c27a96564e4dfb4793f033
23850 Author: Wolfgang Denk <wd@denx.de>
23851 Date:   Sun Apr 26 20:39:26 2009 +0200
23852
23853     lib_arm/board.c: remove misleading "test-only" comment.
23854
23855     For a long time, the print_cpuinfo() declaration in lib_arm/board.c
23856     had been marked as "test-only", which is plain wrong considering
23857     current usage.  Delete this misleading comment.
23858
23859     Signed-off-by: Wolfgang Denk <wd@denx.de>
23860
23861 commit 7239c5da5e9197accb3dfe395be4502c3b9bca8e
23862 Author: David Brownell <dbrownell@users.sourceforge.net>
23863 Date:   Sun Apr 12 15:40:16 2009 -0700
23864
23865     minor DaVinci clock cleanup
23866
23867     Minor cleanup to clock-related defines for DaVinci DM6446 boards:
23868
23869      - CONFIG_SYS_CLK_FREQ is unused; remove it.
23870
23871      - CONFIG_SYS_NS16550_CLK must be the same as CONFIG_SYS_HZ_CLOCK
23872
23873     On DM6446 both of those peripheral clocks actually come from the
23874     same source, the primary oscillator.  Having them use the same
23875     symbol avoids bugs in the clone'n'modify development cycle.
23876
23877     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
23878
23879 commit ffd8c7170d55c34bbfcfd2c84093dcaff796cbf3
23880 Author: Minkyu Kang <mk7.kang@samsung.com>
23881 Date:   Mon Apr 6 19:59:29 2009 +0900
23882
23883     s3c64xx: remove unnecessary definition
23884
23885     CONFIG_S3C6400 is must defined at config header file
23886     That definition is unnecessary at this file
23887
23888     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
23889
23890 commit 14b9308d511b53042ef478936e367a67282df66a
23891 Author: Heiko Schocher <hs@denx.de>
23892 Date:   Fri Apr 24 06:50:45 2009 +0200
23893
23894     83xx: searching "muram-data" by compatible property
23895
23896     if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU
23897     in the muram-data node, the reg entry needs to be updated.
23898     This is done in fdt_fixup_muram(), but we should use
23899     the compatible "fsl,qe-muram-data" for searching the
23900     node instead of searching the muram-data node with
23901     an absolute path.
23902
23903     Signed-off-by: Heiko Schocher <hs@denx.de>
23904     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23905
23906 commit 8e15088794807944b221c11609d36789efc7f767
23907 Author: Anatolij Gustschin <agust@denx.de>
23908 Date:   Thu Apr 23 21:29:34 2009 +0200
23909
23910     mpc83xx: MPC8360ERDK: fix environment offset configuration bug
23911
23912     The size of U-Boot binary for MPC8360ERDK increased
23913     (> 2 flash sectors now), so 'saveenv' will partially
23914     overwrite U-Boot in flash and will brick the board.
23915     This patch moves environment offset to fourth flash
23916     sector and also fixes CONFIG_SYS_MONITOR_LEN.
23917
23918     Signed-off-by: Anatolij Gustschin <agust@denx.de>
23919     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23920
23921 commit 3c172c4fdbbb5858fae38478d6399be4a16be3fc
23922 Author: Michael Zaidman <michael.zaidman@gmail.com>
23923 Date:   Sat Apr 4 01:43:00 2009 +0300
23924
23925     NetLoop initialization bug
23926
23927     The patch fixes the bug of partial initialization of global network
23928     parameters.
23929
23930     Upon u-boot's start up the first ping command causes a failure of the
23931     consequent TFTP command. It happens in the recently added mechanism of
23932     the NetLoop initialization where initialization of global network
23933     parameters is separated in the NetInitLoop routine which is called per
23934     env_id change. Thus, ping request will initialize the network parameters
23935     necessary for ping operation only, afterwards the env_changed_id will be
23936     set to the env_id that will prevent all following initialization requests
23937     from other protocols.
23938     The problem is that the initialized by ping subset of network parameters
23939     is not sufficient for other protocols and particularly for TFTP which
23940     requires the NetServerIp also.
23941
23942     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
23943     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23944
23945 commit b11f664f52c2855990107c18f242223377183575
23946 Author: Timur Tabi <timur@freescale.com>
23947 Date:   Thu Apr 9 10:27:05 2009 -0500
23948
23949     net: fix ULI 526x macro usage in netdev.h
23950
23951     Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526.  CONFIG_ULI526X
23952     is used everywhere else, so that's the correct macro name.  Without this fix,
23953     Ethernet will not work on the Freescale MPC8610 HPCD.
23954
23955     Signed-off-by: Timur Tabi <timur@freescale.com>
23956     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23957
23958 commit 7ee38c044ca5041d3378d6507580ea4ec344af96
23959 Author: David Brownell <dbrownell@users.sourceforge.net>
23960 Date:   Sun Apr 12 15:38:06 2009 -0700
23961
23962     fix DaVinci NS16550_REG_SIZE regression
23963
23964     Update the DaVinci DM6446 boards to use the new convention
23965     for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed
23966     from the original 4 bytes, but these chips are little-endian.
23967
23968     (Resolves a regression added recently by the include/ns16550.h
23969     patch to "Unify structure declaration for registers".  The code
23970     previously worked just fine because the registers were accessed
23971     as host-endian words, not as bytes.)
23972
23973     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
23974
23975 commit dfc99e143fca44a492918ac6cf3f76ee9c2473a9
23976 Author: Mike Frysinger <vapier@gentoo.org>
23977 Date:   Sun Apr 12 22:29:20 2009 -0400
23978
23979     cmd_nand: drop duplicate NULL ptr check
23980
23981     The first if statement checks for NULL ptrs, so there is no need to check
23982     it again in later else cases (such as .oob).
23983
23984     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23985     CC: Scott Wood <scottwood@freescale.com>
23986
23987 commit 7732cef2eeb4e339cfcd8553fab773af73a20805
23988 Author: David Brownell <dbrownell@users.sourceforge.net>
23989 Date:   Mon Apr 13 08:03:38 2009 -0700
23990
23991     CMD_UBI != MTD_PARTITIONS
23992
23993     Fix dependency goofage:  it should certainly be possible to have the
23994     partition support without bringing in UBI commands.
23995
23996     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
23997     Acked-by: Stefan Roese <sr@denx.de>
23998
23999 commit 6ebff365eb63093ca35b687316002535c6a18820
24000 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24001 Date:   Thu Apr 16 21:30:48 2009 +0200
24002
24003     at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000
24004
24005     The timer has been rewrote with a precision at ~0,18%
24006
24007     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24008     Tested-by: Sergey Lapin <slapin@ossfans.org>
24009     Tested-by: Eric BENARD <ebenard@free.fr>
24010
24011 commit f0a2c7b4b64eacd06bb272856bcc056be8719f5a
24012 Author: Ilko Iliev <iliev@ronetix.at>
24013 Date:   Thu Apr 16 21:30:48 2009 +0200
24014
24015     at91: add support for the PM9263 board of Ronetix GmbH
24016
24017     The PM9263 board is based on the AT91SAM9263-EK board.
24018
24019     Here is the page on Ronetix website:
24020     http://www.ronetix.at/starter_kit_9263.html
24021
24022     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
24023     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24024
24025 commit dc39ae9513c32dfeb9e018dc0d22c6484514fefb
24026 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24027 Date:   Thu Apr 16 21:30:44 2009 +0200
24028
24029     at91sam9/at91cap: improve clock framework
24030
24031     calculate dynamically the clock rate and pllb setting for usb
24032
24033     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24034
24035 commit dd7c302099ef5590069bdbf292aaa8230cd59de7
24036 Author: Stefan Roese <sr@denx.de>
24037 Date:   Wed Apr 15 14:08:48 2009 +0200
24038
24039     ppc4xx: Disable POST memory test on NAND-booting Kilauea
24040
24041     Don't run the memory POST on the NAND-booting version. It will
24042     overwrite part of the U-Boot image which is already loaded from NAND
24043     to SDRAM. We were just lucky that it booted at all with this SDRAM
24044     test enabled.
24045
24046     Signed-off-by: Stefan Roese <sr@denx.de>
24047
24048 commit 9a929170be89b27bce677504da27e88600c06c49
24049 Author: Stefan Roese <sr@denx.de>
24050 Date:   Wed Apr 15 14:06:26 2009 +0200
24051
24052     ppc4xx: Disable POST memory test on NAND-booting Sequoia
24053
24054     Don't run the memory POST on the NAND-booting version. It will
24055     overwrite part of the U-Boot image which is already loaded from NAND
24056     to SDRAM. We were just lucky that it booted at all with this SDRAM
24057     test enabled.
24058
24059     Signed-off-by: Stefan Roese <sr@denx.de>
24060
24061 commit 17c1b0e89b8be7d90f605eb19af9218c6275bfb3
24062 Author: Stefan Roese <sr@denx.de>
24063 Date:   Wed Apr 15 11:32:53 2009 +0200
24064
24065     ppc4xx: Remove unused code for Sequoia NAND booting version
24066
24067     The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not
24068     used at all. This patch changes it's define to the currently used value of
24069     133333333 and removes the unnecessary code.
24070
24071     Signed-off-by: Stefan Roese <sr@denx.de>
24072
24073 commit cf9409885cbe01405bad76790e99f8adf3351f4d
24074 Author: Stefan Roese <sr@denx.de>
24075 Date:   Wed Apr 15 10:50:48 2009 +0200
24076
24077     ppc4xx: Add "booting from NAND" to 4xx NAND-booting targets
24078
24079     This additional text in the bootup log helps to see if the board is
24080     configured for NAND-booting. Especially helpful for boards that can
24081     boot from NOR and NAND (e.g. most of the AMCC eval boards).
24082
24083     Signed-off-by: Stefan Roese <sr@denx.de>
24084
24085 commit 5132106a27b8fb302677852b26ffd319b40d17e2
24086 Author: Stefan Roese <sr@denx.de>
24087 Date:   Wed Apr 8 10:36:22 2009 +0200
24088
24089     ppc4xx: Fixup chip-selects in dtb for NAND-booting Sequoia
24090
24091     Currently the NOR & NAND support in Linux only works for the "standard"
24092     Sequoia, the version booting for NOR flash. The NAND-booting version
24093     has the chip-selects swapped. Here the chip-select mappings:
24094
24095     "Standard" NOR-booting version:
24096     CS0 NOR
24097     CS3 NAND
24098
24099     NAND-booting version:
24100     CS0 NAND
24101     CS3 NOR
24102
24103     With this path the dtb gets fixed-up, so that the correct chip-select
24104     numbers are patched in the dtb enabling correct NOR & NAND support
24105     in Linux on the NAND-booting Sequoia version.
24106
24107     Signed-off-by: Stefan Roese <sr@denx.de>
24108
24109 commit aad4eca4ba8d597747199d8af723426681557dda
24110 Author: Mike Frysinger <vapier@gentoo.org>
24111 Date:   Sat Apr 4 09:10:27 2009 -0400
24112
24113     Blackfin: audit UART for all known anomalies
24114
24115     There is no code change here, just new comments, but this keeps me from
24116     having to do another audit from scratch in the future.
24117
24118     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24119
24120 commit 8ef929afa43c77c9573caa57c6e17a97a33775c0
24121 Author: Mike Frysinger <vapier@gentoo.org>
24122 Date:   Sat Apr 4 08:40:13 2009 -0400
24123
24124     Blackfin: add check for anomaly 05000362
24125
24126     DESCRIPTION:
24127     The column address width settings for banks 2 and 3 are misconnected in
24128     the SDRAM controller.  Accesses to bank 2 will result in an error if the
24129     Column Address Width for bank 3 (EB3CAW ) is not set to be the same as
24130     that of bank 2.
24131
24132     WORKAROUND:
24133     If using bank 2, make sure that banks 2 and 3 have the same column address
24134     width settings in the EBIU_SDBCTL register.  This must be the case
24135     regardless of whether or not bank 3 is enabled.
24136
24137     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24138
24139 commit c2e07449f546fb375289cdac1a608fdc20357873
24140 Author: Mike Frysinger <vapier@gentoo.org>
24141 Date:   Sat Apr 4 08:29:55 2009 -0400
24142
24143     Blackfin: add comment about anomaly 05000430 avoidance
24144
24145     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24146
24147 commit 48ab1509254a4c175e4f65c478a978928ffe09ec
24148 Author: Mike Frysinger <vapier@gentoo.org>
24149 Date:   Sat Apr 4 08:10:22 2009 -0400
24150
24151     Blackfin: add workaround for anomaly 05000242
24152
24153     DESCRIPTION:
24154     If the DF bit is set prior to a hardware reset, the PLL will continue to
24155     divide CLKIN by 2 after the hardware reset, but the DF bit itself will be
24156     cleared in the PLL_CTL register.
24157
24158     WORKAROUND:
24159     Reprogram the PLL with DF cleared if the desire is to not divide CLKIN by
24160     2 after reset.
24161
24162     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24163
24164 commit ce1fe4ba6bb9df7c57351436fa17d1af8bbe7916
24165 Author: Mike Frysinger <vapier@gentoo.org>
24166 Date:   Sat Apr 4 08:09:24 2009 -0400
24167
24168     Blackfin: add workaround for anomaly 05000171
24169
24170     DESCRIPTION:
24171     The Boot ROM is executed at power up/reset and changes the value of the
24172     SICA_IWR registers from their default reset value of 0xFFFF, but does not
24173     restore them.
24174
24175     WORKAROUND:
24176     User code should not rely on the default value of these registers.  Set
24177     the desired values explicitly.
24178
24179     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24180
24181 commit 51ee6e057f7a920e2a125cd9f985d10f625e355f
24182 Author: Mike Frysinger <vapier@gentoo.org>
24183 Date:   Sat Apr 4 08:22:36 2009 -0400
24184
24185     Blackfin: update anomaly sheets
24186
24187     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24188
24189 commit a343ba87ea0320ca0a4ecfa2c42cd9d4f18883df
24190 Author: Graf Yang <graf.yang@analog.com>
24191 Date:   Sat Apr 4 07:45:57 2009 -0400
24192
24193     Blackfin: nand: flush peripheral before polling it
24194
24195     We need to make sure the data written to the nand flash controller makes
24196     it there before we start polling its status register.  Otherwise, we may
24197     get stale data and return before the controller is actually ready.
24198
24199     Signed-off-by: Graf Yang <graf.yang@analog.com>
24200     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24201     Acked-by: Scott Wood <scottwood@freescale.com>
24202
24203 commit 3ccbfb25f48af78e7092ac75f3115e924e76c748
24204 Author: Remy Bohmer <linux@bohmer.net>
24205 Date:   Sun Apr 5 11:43:28 2009 +0200
24206
24207     Support for PXA27X UDC.
24208
24209         This Patch adds Support for PXA27X UDC.
24210         (Rebased to drivers/usb reorganisation)
24211
24212     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
24213     Signed-off-by: Remy Bohmer <linux@bohmer.net>
24214
24215 commit 2731b9a86685190d26b1883f27afda5ac8e1a313
24216 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24217 Date:   Fri Apr 3 12:46:58 2009 +0200
24218
24219     drivers/usb: regorganisation
24220
24221     move to linux usb driver organisation
24222
24223     as following
24224
24225     drivers/usb/gadget
24226     drivers/usb/host
24227     drivers/usb/musb
24228
24229     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24230     Signed-off-by: Remy Bohmer <linux@bohmer.net>
24231
24232 commit d04371a116d102e587ba7aa4c329b441cdbea3f4
24233 Author: Todor I Mollov <tmollov@ucsd.edu>
24234 Date:   Sat Apr 4 06:53:06 2009 -0400
24235
24236     Blackfin: spi: make cs deassert function deterministic
24237
24238     Blackfin SPI driver was not driving the SPI chip-select high before
24239     putting the chip-select signals into tri-state mode.  This is probably
24240     something that slipped by unnoticed in most designs.  If the signals are
24241     put directly into a tri-state mode, then the board is relying on the
24242     pull-up resistors to pull up the chip-select before the next transaction.
24243     Most of the time this is fine, except when you have two transactions that
24244     follow each other very closely, such as the flash erase and read status
24245     register commands.  In this case I was seeing a 500ns separation between
24246     the transactions.  In my setup, with a 10kOhm pull-up, it would meet
24247     timing spec about half the time and resulted in intermittent errors.  (A
24248     stronger pull up would fix this, but our design is targeted for low power
24249     consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
24250     I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
24251     chip-selects high before putting them into tri-state.  For me, this
24252     resulted in a rise time of 5ns instead of the previous rise time of about
24253     1us, and fully satisfied the timing spec of the chip.
24254
24255     Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
24256     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24257
24258 commit c6fadb9c73a6a3e0c7f20696e978304a593a8d2d
24259 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24260 Date:   Sat Dec 13 21:08:05 2008 +0100
24261
24262     integratorap: fix PCI support
24263
24264     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24265
24266 commit 1c397508c836dfcb01fb2471c71de0727051f117
24267 Author: Dirk Behme <dirk.behme@googlemail.com>
24268 Date:   Mon Mar 30 21:15:23 2009 +0200
24269
24270     OMAP3: Update Overo pin mux for new expansion board
24271
24272     A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and
24273     switches. This patch changes the pinmux configuration for those pins.
24274     They were previously set up for unused MMC3_DAT4-7.
24275
24276     Signed-off-by: Steve Sakoman <steve@sakoman.com>
24277     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
24278
24279 commit ab298231518675b3784aea88ee9b978438f99e63
24280 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24281 Date:   Sun Apr 5 13:08:03 2009 +0200
24282
24283     arm: unify reset command
24284
24285     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24286
24287 commit b3acb6cd4059dfb29a5e99095d802717f53ff784
24288 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24289 Date:   Sun Apr 5 13:06:31 2009 +0200
24290
24291     arm: clean cache management
24292
24293     unify arm cache management except for non standard cache as ARM7TDMI
24294
24295     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24296
24297 commit 677e62f43235de9a1701204d7bcea0fb3d233fa1
24298 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24299 Date:   Sun Apr 5 13:02:43 2009 +0200
24300
24301     arm: update co-processor 15 access
24302
24303     import system.h from linux
24304
24305     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24306
24307 commit 23e4af49e066a53cd3e3659b68ef90572d88de84
24308 Author: Guennadi Liakhovetski <lg@denx.de>
24309 Date:   Sun Apr 5 00:42:02 2009 +0200
24310
24311     ARM: add the imx31_phycore_eet target to MAINTAINERS
24312
24313     imx31_phycore_eet is a variant of the imx31_phycore board with a few
24314     extensions, which justifies a separate entry in the MAINTAINERS list,
24315     whereas normally all entries sharing a single configuration file and a
24316     board/ directory have only one entry in MAINTAINERS.
24317
24318     Reported-by: Wolfgang Denk <wd@denx.de>
24319     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24320
24321 commit 69c5bf29908b3a7f8e23bd9891b7ecc5b21f23e5
24322 Author: Guennadi Liakhovetski <lg@denx.de>
24323 Date:   Sun Apr 5 00:37:07 2009 +0200
24324
24325     ARM: fix out-of-tree build of imx31_phycore_eet
24326
24327     Fix out-of-tree build of the imx31_phycore_eet target.
24328
24329     Reported-by: Wolfgang Denk <wd@denx.de>
24330     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24331
24332 commit 3c853f31d6a8e4407f73a2ca2c63d383a245f237
24333 Author: Jon Smirl <jonsmirl@gmail.com>
24334 Date:   Sat Apr 4 17:44:51 2009 -0400
24335
24336     mpc5200: reduce delays in i2c
24337
24338     The previous code waited 1000us before checking i2c
24339     status. Measurement shows i2c is usually ready in
24340     under 50us. Change the polling interval to 15us,
24341     loop 6,667 times to keep the polling timeout constant
24342     at 100ms.
24343
24344 commit 36003268968949110ef145d9f2eaf8439c96d25b
24345 Author: Sanjeev Premi <premi@ti.com>
24346 Date:   Fri Apr 3 14:00:07 2009 +0530
24347
24348     OMAP: Fix compile issue
24349
24350     Fixes this compile error:
24351     board.c: In function 'do_switch_ecc':
24352     board.c:339: error: 'cmd_tbl_t' has no member named 'help'
24353     make[1]: *** [board.o] Error 1
24354     make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3'
24355     make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2
24356
24357     This is due to the fact that current command uses long
24358     help for the usage print even if the CONFIG_SYS_LONGHELP
24359     is not enabled. (Thanks Jean-Christophe for explanation).
24360
24361     Signed-off-by: Sanjeev Premi <premi@ti.com>
24362
24363 commit 342c1a5d9ab74febf3226a86216dc5aa05295d46
24364 Author: Minkyu Kang <mk7.kang@samsung.com>
24365 Date:   Fri Apr 3 09:56:16 2009 +0900
24366
24367     s3c64xx: fix the wrong gpio offset
24368
24369     This patch fix the wrong gpio offset
24370
24371     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
24372
24373 commit ab0689c316c9b2ee33f4de1c50263b64e539f12a
24374 Author: Kyungmin Park <kmpark@infradead.org>
24375 Date:   Wed Nov 26 10:18:13 2008 +0900
24376
24377     Move machine specific code to board at s3c64xx (v2)
24378
24379     Move machine specific code to smdk6400.
24380     Some board use OneNAND instead of NAND.
24381
24382     Some register MP0_CS_CFG[5:0] are controled by both h/w and s/w.
24383     So it's better to use macro instead of hard-coded value.
24384
24385     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
24386
24387 commit 767f3acd9f6e1dcb8ada926c333945382eddc7e8
24388 Author: Tom Rix <Tom.Rix@windriver.com>
24389 Date:   Wed Apr 1 22:02:19 2009 -0500
24390
24391     ZOOM1 Remove legacy NAND defines
24392
24393     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
24394
24395 commit 5891151707ee5902fe62d554c247f42865815757
24396 Author: Tom Rix <Tom.Rix@windriver.com>
24397 Date:   Wed Apr 1 22:02:20 2009 -0500
24398
24399     OMAP3 Fix multiline formatting in board init files.
24400
24401     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
24402
24403 commit c0a14aedc3440d6591b8c86d45861a0a8b46e11d
24404 Author: Wolfgang Denk <wd@denx.de>
24405 Date:   Sun Apr 5 00:27:57 2009 +0200
24406
24407     Update CHANGELOG, coding style cleanup.
24408
24409 commit f63728c804ab7413a67d70f6774cd30c3f7b40fb
24410 Author: Wolfgang Denk <wd@denx.de>
24411 Date:   Sun Apr 5 00:18:44 2009 +0200
24412
24413     One more fix for building env_embedded.o
24414
24415     In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in
24416     commit afcbce07, we also need to do the same for
24417     CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM.
24418
24419     Signed-off-by: Wolfgang Denk <wd@denx.de>
24420
24421 commit e3d1ac7bb1955d36980d267cb4cec40b0f7d30b5
24422 Author: Scott Wood <scottwood@freescale.com>
24423 Date:   Thu Apr 2 16:15:10 2009 -0500
24424
24425     common/image.c: Relocate strings in tables.
24426
24427     Without this, u-boot can crash or print garbage if the original link
24428     address no longer points to a valid string.
24429
24430     Signed-off-by: Scott Wood <scottwood@freescale.com>
24431
24432 commit 3a671fc06ae1d9e8eba76600372317c75ae0eb3e
24433 Author: Scott Wood <scottwood@freescale.com>
24434 Date:   Thu Apr 2 16:10:36 2009 -0500
24435
24436     mpc8260: Fill in brg's clock-frequency in device tree.
24437
24438     Signed-off-by: Scott Wood <scottwood@freescale.com>
24439
24440 commit c73ed274a211699739d83c2cef92853dc6716e15
24441 Author: Scott Wood <scottwood@freescale.com>
24442 Date:   Thu Apr 2 18:20:43 2009 -0500
24443
24444     MPC8260ADS: Add nfsboot/ramboot to default environment.
24445
24446     This brings it in line with other Freescale boards.
24447
24448     Signed-off-by: Scott Wood <scottwood@freescale.com>
24449
24450 commit c203ef5db0476a8c4f6dd86b2e9e9db0ea973f84
24451 Author: Andreas Huber <andreas.huber@keymile.com>
24452 Date:   Thu Apr 2 17:15:34 2009 +0200
24453
24454     UBI/cfi-mtd: Fix mtd name for multiple chips
24455
24456     On platforms with multiple NOR chips, currently only the first one
24457     can be selected using the "ubi part" command. This patch fixes this
24458     problem by using different names for the NOR "mtd devices".
24459
24460     It also changes the name of the NOR MTD device from "cfi-mtd" to
24461     "norX" (X indexing the device numer) to better match the mtdparts
24462     defaults.
24463
24464     Signed-off-by: Stefan Roese <sr@denx.de>
24465     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
24466
24467 commit 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf
24468 Author: Peter Korsgaard <jacmet@sunsite.dk>
24469 Date:   Tue Mar 31 17:52:16 2009 +0200
24470
24471     tools/setlocalversion: use git svn instead of git-svn
24472
24473     Use the new "git <subcmd>" syntax instead of the deprecated
24474     "git-<subcmd>".
24475
24476     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
24477
24478 commit 7fa96a9a54eb0d87d73888ec2565cda790ba0dff
24479 Author: Mingkai Hu <Mingkai.hu@freescale.com>
24480 Date:   Tue Mar 31 14:09:40 2009 +0800
24481
24482     eSPI: add the eSPI register support
24483
24484     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
24485
24486 commit 869f6bf4def5a053fbd1aecd8b2fc36f05196c0b
24487 Author: Minkyu Kang <mk7.kang@samsung.com>
24488 Date:   Mon Mar 30 14:55:51 2009 +0900
24489
24490     cmd_mmc: add support for device command for selecting mmc device
24491
24492     This patch improves device command for selecting mmc device
24493
24494     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
24495
24496 commit 9abc9ef8fbe079bf75a634ce64b7dcdb7b0d8bdc
24497 Author: Alan Carvalho de Assis <acassis@gmail.com>
24498 Date:   Sat Mar 28 19:50:16 2009 -0300
24499
24500     Small fix to m5282evb
24501
24502     This is just a small fix to get u-boot on m5282evb.
24503
24504     Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com>
24505
24506 commit febd7e4174e54579c9aa165c85c519fe5288f9d2
24507 Author: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
24508 Date:   Fri Mar 27 10:21:14 2009 +0100
24509
24510     UBIFS: add R/O compatibility
24511
24512     Now UBIFS is supported by u-boot. If we ever decide to change the
24513     media format, then people will have to upgrade their u-boots to
24514     mount new format images. However, very often it is possible to
24515     preserve R/O forward-compatibility, even though the write
24516     forward-compatibility is not preserved.
24517
24518     This patch introduces a new super-block field which stores the
24519     R/O compatibility version.
24520
24521     Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
24522     Acked-by: Adrian Hunter <Adrian.Hunter@nokia.com>
24523     Signed-off-by: Stefan Roese <sr@denx.de>
24524
24525 commit 852dbfdd56f68eb67d138b306a64e4de58dabb91
24526 Author: Mike Frysinger <vapier@gentoo.org>
24527 Date:   Mon Mar 23 22:27:34 2009 -0400
24528
24529     more command usage cleanup
24530
24531     Fix up a few dangling commands like in "Command usage cleanup" commit.
24532
24533     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24534
24535 commit b93b24bf76f8a8220b236df3a5f30b2204eb4edc
24536 Author: Ladislav Michl <ladis@linux-mips.org>
24537 Date:   Mon Mar 23 12:06:07 2009 +0100
24538
24539     Separate mtdparts command from jffs2
24540
24541     On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
24542     > Currently the mtdparts commands are included in the jffs2 command support.
24543     > This doesn't make sense anymore since other commands (e.g. UBI) use this
24544     > infrastructure as well now. This patch separates the mtdparts commands from
24545     > the jffs2 commands making it possible to only select mtdparts when no JFFS2
24546     > support is needed.
24547
24548     ... and to make it useful for NAND chips as well, we should also remove now
24549     unrelated CONFIG_JFFS2_NAND. Note that struct part_info etc is in
24550     jffs2/load_kernel.h which is a bit misleading filename for that purpose,
24551     but that can be fixed later (tm).
24552
24553     Signed-off-by:  Ladislav Michl <ladis@linux-mips.org>
24554
24555 commit b196ca75503ce307c535b87bf47d51f05e7530df
24556 Author: Mike Frysinger <vapier@gentoo.org>
24557 Date:   Sun Mar 22 22:18:01 2009 -0400
24558
24559     smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT()
24560
24561     Rather than sticking Blackfin-specific stuff into the eeprom example, use
24562     an indirect macro so that any board can override it with their own magic
24563     sauce in their board config file.
24564
24565     Also fix some spurious semi-colons in defines while I'm at it ...
24566
24567     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24568     CC: Ben Warren <biggerbadderben@gmail.com>
24569
24570 commit f5cf2ef2ad2a8bf321712ab460ed846120163d74
24571 Author: Sascha Hauer <s.hauer@pengutronix.de>
24572 Date:   Sat Mar 21 09:38:46 2009 -0400
24573
24574     mpc52xx phy: initialize only when needed
24575
24576     Do not initialize phy on startup, instead initialize it
24577     when we actually need it.
24578
24579     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
24580
24581 commit 03bab0091948196b9558248684c04f60943ca4b5
24582 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24583 Date:   Mon Mar 30 16:51:40 2009 +0200
24584
24585     at91sam9263ek: enable hush and auto complete support
24586
24587     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24588     Acked-by: Stelian Pop <stelian@popies.net>
24589
24590 commit 4758ebdd53571d4d183be5c2db8f0ee4ef368915
24591 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24592 Date:   Fri Mar 27 23:26:44 2009 +0100
24593
24594     at91: move dataflash spi driver to drivers/spi
24595
24596     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24597
24598 commit 2b7178afce59f71e95da657273f4132012098c1f
24599 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24600 Date:   Fri Mar 27 23:26:44 2009 +0100
24601
24602     at91: move usb driver to drivers/usb
24603
24604     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24605
24606 commit f82518d7f443ebac5f8821103a3c521c963aa6ee
24607 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24608 Date:   Fri Mar 27 23:26:43 2009 +0100
24609
24610     at91rm9200: Reset update
24611
24612     Update the rm9200 reset sequence to try executing a board-specific reset
24613     function and move specific board reset to board.
24614
24615     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24616
24617 commit 3524049cd053746298e4cfab2449882e75c146fc
24618 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24619 Date:   Fri Mar 27 23:26:43 2009 +0100
24620
24621     at91rm9200: move serial shutdown code to serial drivers
24622
24623     introduce serial_exit for this purpose. Use it only when the rm9200
24624     serial driver is active
24625
24626     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24627
24628 commit beebd851cdbc9dd070bcdfec1fd8f17e3cc91bc0
24629 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24630 Date:   Fri Mar 27 23:26:43 2009 +0100
24631
24632     at91rm9200: move serial driver to drivers/serial
24633
24634     add CONFIG_AT91RM9200_USART to activate the driver
24635
24636     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24637
24638 commit cb82a532669f6b02225ec3429ea4d49ff2b97d0a
24639 Author: Ulf Samuelsson <ulf@atmel.com>
24640 Date:   Fri Mar 27 23:26:43 2009 +0100
24641
24642     Add support for the AT91RM9200EK Board.
24643
24644     The AT91RM9200-EK Evaluation Board supports the AT91RM9200
24645     ARM9-based 32-bit RISC microcontroller and enables real-time code development
24646     and evaluation.
24647
24648     Here is the chip page on Atmel website:
24649     http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507
24650
24651     with
24652         - NOR (cfi driver)
24653         - DataFlash
24654         - USB OHCI
24655         - Net
24656         - I2C (hard)
24657
24658     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
24659     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24660
24661 commit b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a
24662 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24663 Date:   Fri Mar 27 23:26:42 2009 +0100
24664
24665     add dataflash mmc mux missing support
24666
24667     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24668
24669 commit 2a325ce3c705ab2d82760afc541c511328472df8
24670 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24671 Date:   Fri Mar 27 23:26:42 2009 +0100
24672
24673     at91rm9200dk: Move conditional compilation to Makefile
24674
24675     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24676
24677 commit 90a92a708d5180a20d600ba0fc2352ec76dc3829
24678 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24679 Date:   Fri Mar 27 23:26:42 2009 +0100
24680
24681     at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT
24682
24683     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24684
24685 commit 843a2654bce74192de2b5a43474fdc27a572ab40
24686 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24687 Date:   Fri Mar 27 23:26:42 2009 +0100
24688
24689     at91sam9: add watchdog support
24690
24691     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
24692     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24693
24694 commit a47492ac60657dd9d59c713aa049319ea6eabd52
24695 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24696 Date:   Fri Mar 27 13:14:52 2009 +0100
24697
24698     at91sam9/at91cap: spi init add hardware chip select support
24699
24700     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24701
24702 commit 66932ac3929c7a145a6ef6574a96fd7535154951
24703 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24704 Date:   Sat Apr 4 19:15:40 2009 +0200
24705
24706     netstar: fix crc32.c dependancy location
24707
24708     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24709
24710 commit 42f9ebff2f758bef524780a00c712eb63a72d99b
24711 Author: Scott Wood <scottwood@freescale.com>
24712 Date:   Fri Apr 3 15:24:40 2009 -0500
24713
24714     MPC8260ADS: Define CONFIG_HAS_ETH0.
24715
24716     This is required so that the MAC address will be updated in the device tree.
24717
24718     Signed-off-by: Scott Wood <scottwood@freescale.com>
24719
24720 commit 8701eceffdf77e2908d0b58add0dabc16edf6087
24721 Author: Scott Wood <scottwood@freescale.com>
24722 Date:   Fri Apr 3 15:26:45 2009 -0500
24723
24724     PQ2FADS: Enable PCI.
24725
24726     PCI on PQ2FADS is very similar to PCI on MPC8272ADS.
24727
24728     Signed-off-by: Scott Wood <scottwood@freescale.com>
24729
24730 commit 83863df04bd30bfe2430b0c43ca9f78596d3f0bc
24731 Author: Wolfgang Denk <wd@denx.de>
24732 Date:   Sat Apr 4 16:57:50 2009 +0200
24733
24734     Fix quoting bug introduced by commit 74de7aef
24735
24736     Signed-off-by: Wolfgang Denk <wd@denx.de>
24737
24738 commit ecf3fb223a56e3c6aa696d94d694eeaca0f44d33
24739 Author: Wolfgang Denk <wd@denx.de>
24740 Date:   Sat Apr 4 16:14:51 2009 +0200
24741
24742     Fix implicit declaration of function 'htons'
24743
24744     Include <netinet/in.h> instead of <linux/in.h> to get htons()
24745     prototpye.
24746
24747     Signed-off-by: Wolfgang Denk <wd@denx.de>
24748
24749 commit e6a6789f41f0560ce280089fbd3f1bd0f0f64306
24750 Author: Kumar Gala <galak@kernel.crashing.org>
24751 Date:   Sat Apr 4 10:21:02 2009 -0500
24752
24753     fsl_law: Fix bug in calculation of LAW sizing
24754
24755     In set_ddr_laws() when we determined how much of the size requested
24756     to be mapped was covered by the the first LAW we needed to recalculate
24757     the size based on what was actually mapped.
24758
24759     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24760
24761 commit 32049b4048ff8e59bd5ba6160d6d5206d283b2a2
24762 Author: Kumar Gala <galak@kernel.crashing.org>
24763 Date:   Thu Apr 2 13:57:05 2009 -0500
24764
24765     fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
24766
24767     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24768
24769 commit c8514622e2713d9c47919acfe23fce386782afe7
24770 Author: Kumar Gala <galak@kernel.crashing.org>
24771 Date:   Thu Apr 2 13:22:48 2009 -0500
24772
24773     fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
24774
24775     Rename the pci header for FSL HW so we can move some prototypes
24776     in there and stop doing explicit externs
24777
24778     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24779
24780 commit afcbce07e9323c0e8aeb783ba7ce6104860fd7a7
24781 Author: Wolfgang Denk <wd@denx.de>
24782 Date:   Sat Apr 4 16:10:40 2009 +0200
24783
24784     Fix building of env_embedded.o
24785
24786     Since commit a706bfc7 common/env_embedded.o and tools/envcrc were
24787     only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks
24788     building for many boards.
24789
24790     We always have to build these files when CONFIG_ENV_IS_IN_FLASH is
24791     set.
24792
24793     Signed-off-by: Wolfgang Denk <wd@denx.de>
24794
24795 commit a31e091ad70915278fb15b79d6ae53ea2d44b251
24796 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24797 Date:   Sat Apr 4 12:49:11 2009 +0200
24798
24799     rename include/zlib.h to include/u-boot/zlib.h
24800
24801     Some systems have zlib.h installed in /usr/include/. This isn't the
24802     desired file for u-boot code - we want the one in include/zlib.h.
24803     This rename will avoid the conflict.
24804
24805     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24806     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24807
24808 commit ae644c178f097874a92a6d934f364985fc7e075a
24809 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24810 Date:   Sat Apr 4 12:46:31 2009 +0200
24811
24812     tools/Makefile: fix image.c dependancy location
24813
24814     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24815     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24816
24817 commit b074a7081124d7f05fd1651a3bc0b5579fdfa473
24818 Author: Mike Frysinger <vapier@gentoo.org>
24819 Date:   Sat Apr 4 07:42:25 2009 -0400
24820
24821     tools: add ncb to gitignore
24822
24823     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24824
24825 commit 453c0d7558215cbc8636d94af172886d84e0dbba
24826 Author: Detlev Zundel <dzu@denx.de>
24827 Date:   Fri Apr 3 16:45:46 2009 +0200
24828
24829     include/ns16550.h: Unify structure declaration for registers
24830
24831     Instead of special casing the different access patterns, use common
24832     code with light macros sprinkled in to accomodate for the different
24833     layouts of the register structure.
24834
24835     Note that this also changes the types of the registers for the
24836     "positively packed (>1)" cases.  As the registers truly are unsigned
24837     chars, this is surely the Right Thing, but it is a semantic change.
24838     Note that for this case depending on the endianness on the bus, we may
24839     see a change of behaviour.
24840
24841     Signed-off-by: Detlev Zundel <dzu@denx.de>
24842
24843 commit 0a145ce6e7075aa0f4869d6f6149a5ff205d95df
24844 Author: Peter Tyser <ptyser@xes-inc.com>
24845 Date:   Fri Mar 13 18:54:52 2009 -0500
24846
24847     Delete now unused tools/Makefile.win32
24848
24849     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24850
24851 commit 2f8d396b9302eddcd8d552648e101a46b7a80acd
24852 Author: Peter Tyser <ptyser@xes-inc.com>
24853 Date:   Fri Mar 13 18:54:51 2009 -0500
24854
24855     Add support for building native win32 tools
24856
24857     Add support for compiling the host tools in the tools directory using
24858     the MinGW toolchain.  This produces executables which can be used on
24859     standard Windows computers without requiring cygwin.
24860
24861     One must specify the MinGW compiler and strip utilities as if they
24862     were the host toolchain in order to build win32 executables, eg:
24863
24864     make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
24865
24866     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24867
24868 commit e50abf662efbf4ce0e731062c8d3c8ec54763ae2
24869 Author: Peter Tyser <ptyser@xes-inc.com>
24870 Date:   Fri Mar 13 18:54:50 2009 -0500
24871
24872     tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation
24873
24874     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24875
24876 commit b0d4d7219a4806e46affc96bd1f65397194a6e72
24877 Author: Peter Tyser <ptyser@xes-inc.com>
24878 Date:   Fri Mar 13 18:54:49 2009 -0500
24879
24880     tools/Makefile: Create generic build rules
24881
24882     Create a few generic build rules to replace the current method which has
24883     1 build target for each file
24884
24885     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24886
24887 commit 273174ddbcce215c42f6c307470cd5580a3f72bf
24888 Author: Peter Tyser <ptyser@xes-inc.com>
24889 Date:   Fri Mar 13 18:54:48 2009 -0500
24890
24891     tools/Makefile: Use auto-generated object file dependencies
24892
24893     Files in the SRCS variable have their dependencies automatically
24894     generated so remove duplicate explicit dependencies
24895
24896     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24897
24898 commit fb8b33c1e6d621ea3347a75ad3a42a386b44e589
24899 Author: Peter Tyser <ptyser@xes-inc.com>
24900 Date:   Fri Mar 13 18:54:47 2009 -0500
24901
24902     tools/Makefile: Remove symlinks for remaining source files
24903
24904     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24905
24906 commit eed073315b6447eceadf7468a4c2b757442c7c6f
24907 Author: Peter Tyser <ptyser@xes-inc.com>
24908 Date:   Fri Mar 13 18:54:46 2009 -0500
24909
24910     tools/Makefile: Dynamically generate libfdt object dependencies
24911
24912     Add the libfdt files to the SRCS variable so that they have their
24913     dependencies automatically generated
24914
24915     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24916
24917 commit c0170175393b94560fa7a5da6dd31377df5f4a72
24918 Author: Peter Tyser <ptyser@xes-inc.com>
24919 Date:   Fri Mar 13 18:54:45 2009 -0500
24920
24921     tools/Makefile: Remove symlinks for fdt targets
24922
24923     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24924
24925 commit 45d6bdff68877ea214ff33cc1c89a29c76e96f51
24926 Author: Peter Tyser <ptyser@xes-inc.com>
24927 Date:   Fri Mar 13 18:54:44 2009 -0500
24928
24929     tools/Makefile: Add libfdt/ to the include search path
24930
24931     This change makes the process of symlinking libfdt_internal.h
24932     unnecessary
24933
24934     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24935
24936 commit fba0e3a0814f9bf48c32a4c8a7987c36ae96651b
24937 Author: Peter Tyser <ptyser@xes-inc.com>
24938 Date:   Fri Mar 13 18:54:43 2009 -0500
24939
24940     tools: Remove unecessary symlinking of zlib.h
24941
24942     crc32.c uses the zlib.h header in include/u-boot/zlib.h.  The symlink
24943     was previously necessary to give U-Boot's version of zlib.h precedence
24944     over the host computer's version of zlib.h.
24945
24946     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24947
24948 commit 40b8d909ace06f6f494dee08ffa64a82493e72e9
24949 Author: Peter Tyser <ptyser@xes-inc.com>
24950 Date:   Fri Mar 13 18:54:42 2009 -0500
24951
24952     tools/Makefile: Add tools/ to the include search path
24953
24954     This change makes the process of symlinking mkimage.h and fdt_host.h
24955     unnecessary
24956
24957     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24958
24959 commit 1cd300de5e19c9e8383ee2eb2b6bd3b8b9378c78
24960 Author: Peter Tyser <ptyser@xes-inc.com>
24961 Date:   Fri Mar 13 18:54:41 2009 -0500
24962
24963     tools/Makefile: Compile ncb when CONFIG_NETCONSOLE
24964
24965     Also conditionally add ncb.o to OBJ_FILES list
24966
24967     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24968
24969 commit 123c48a21ce08b4a33f36e96cc75f92324e761d7
24970 Author: Peter Tyser <ptyser@xes-inc.com>
24971 Date:   Fri Mar 13 18:54:40 2009 -0500
24972
24973     tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET
24974
24975     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24976
24977 commit 4d93a0a807b8ca0289ba5da00c646cd2d54af120
24978 Author: Peter Tyser <ptyser@xes-inc.com>
24979 Date:   Fri Mar 13 18:54:39 2009 -0500
24980
24981     tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED
24982
24983     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24984
24985 commit cd26a31a23f9a58ba52870f8ffb57d77d1baee20
24986 Author: Peter Tyser <ptyser@xes-inc.com>
24987 Date:   Fri Mar 13 18:54:38 2009 -0500
24988
24989     tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP
24990
24991     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24992
24993 commit 7cd5cbc34699ccc15d0277f48375cad928d04faf
24994 Author: Peter Tyser <ptyser@xes-inc.com>
24995 Date:   Fri Mar 13 18:54:37 2009 -0500
24996
24997     tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG
24998
24999     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25000
25001 commit eeba8617908e33f7e7db3b1588c04ca65b856793
25002 Author: Peter Tyser <ptyser@xes-inc.com>
25003 Date:   Fri Mar 13 18:54:36 2009 -0500
25004
25005     tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS
25006
25007     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25008
25009 commit 335ffe7e0e0a30e90ce409c3279016a582157d8e
25010 Author: Peter Tyser <ptyser@xes-inc.com>
25011 Date:   Fri Mar 13 18:54:35 2009 -0500
25012
25013     tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled
25014
25015     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25016
25017 commit ee3584a5970230ee96aae19505ad3226734ee4ff
25018 Author: Peter Tyser <ptyser@xes-inc.com>
25019 Date:   Fri Mar 13 18:54:34 2009 -0500
25020
25021     tools/Makefile: Split variable declarations into multiple lines
25022
25023     Split variable declarations into multiple lines and use the standard
25024     VAR-y convention.  Also move object and binary variable declarations to
25025     after config.mk has been included to allow for these lists to utilize
25026     the CONFIG_XXX variables.
25027
25028     These changes lay the groundwork for conditional compilation of files
25029     in the tools directory.
25030
25031     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25032
25033 commit 21d28e95ed874ab1ed9787f939d8a53e99d30ddb
25034 Author: Peter Tyser <ptyser@xes-inc.com>
25035 Date:   Fri Mar 13 18:54:33 2009 -0500
25036
25037     tools/Makefile: Remove inappropriate double-tabs
25038
25039     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25040
25041 commit 652f4ba076689fd0acd447561a777b1c440a4b57
25042 Author: Peter Tyser <ptyser@xes-inc.com>
25043 Date:   Fri Mar 13 18:54:32 2009 -0500
25044
25045     tools/Makefile: Remove HOSTARCH HOSTOS defines
25046
25047     The values of HOSTARCH and HOSTOS which are exported from the top-level
25048     Makefile should be used
25049
25050     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25051
25052 commit 2eeb4e95fbfafe54645fae7ec0b2594101f0573b
25053 Author: Peter Tyser <ptyser@xes-inc.com>
25054 Date:   Fri Mar 13 18:54:31 2009 -0500
25055
25056     gen_eth_addr: Use POSIX rand() and srand()
25057
25058     Replace random()/srandom() use with rand()/srand() to support
25059     compilation with the mingw toolchain.  The rand()/srand() functions are
25060     generally more common and are functionally equivalent to the original
25061     random()/srandom() calls.
25062
25063     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25064
25065 commit 24d2ae5e9debe4b75151a55251031a14477fa875
25066 Author: Peter Tyser <ptyser@xes-inc.com>
25067 Date:   Fri Mar 13 18:54:28 2009 -0500
25068
25069     elf.h: Use stdint.h to provide standard typedefs for WIN32
25070
25071     The original code provided an incomplete set of typedefs for WIN32
25072     compiles and replicated the standard typedefs that are already
25073     provided by stdint.h
25074
25075     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25076
25077 commit a706bfc7d0e2d1935c5670045288e6cd1ffdfabc
25078 Author: Peter Tyser <ptyser@xes-inc.com>
25079 Date:   Fri Mar 13 18:54:27 2009 -0500
25080
25081     common/Makefile: Conditionally compile env_embedded.o
25082
25083     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25084
25085 commit 2b48f7d5f62835f87278efb498397b6ae9e2d117
25086 Author: Peter Tyser <ptyser@xes-inc.com>
25087 Date:   Fri Mar 13 18:54:26 2009 -0500
25088
25089     Makefile: Add removal of *.exe files to clean target
25090
25091     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25092
25093 commit d0d6144e0e4a03a68311b781f3dde38dc9316b82
25094 Author: Peter Tyser <ptyser@xes-inc.com>
25095 Date:   Fri Mar 13 18:54:25 2009 -0500
25096
25097     Makefile: Make autoconf.mk a dependency of the depend target
25098
25099     The original code did not generate autoconf.mk until after some targets
25100     dependencies had already been calculated, for example the directories in
25101     the SUBDIRS variable
25102
25103     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25104
25105 commit 75eb82ec7cacb18d059d701b35677b93d2bb7596
25106 Author: unsik Kim <donari75@gmail.com>
25107 Date:   Wed Feb 25 11:31:24 2009 +0900
25108
25109     mflash: Initial mflash support
25110
25111     Mflash is fusion memory device mainly targeted consumer eletronic and
25112     mobile phone.
25113     Internally, it have nand flash and other hardware logics and supports
25114     some different operation (ATA, IO, XIP) modes.
25115
25116     IO mode is custom mode for the host that doesn't have IDE interface.
25117     (Many mobile targeted SoC doesn't have IDE bus)
25118
25119     This driver support mflash IO mode.
25120
25121     Followings are brief descriptions about IO mode.
25122
25123     1. IO mode based on ATA protocol and uses some custom command. (read
25124        confirm, write confirm)
25125     2. IO mode uses SRAM bus interface.
25126
25127     Signed-off-by: unsik Kim <donari75@gmail.com>
25128
25129 commit 200779e3e2a9aeda7030b171a8c39d7797019917
25130 Author: Detlev Zundel <dzu@denx.de>
25131 Date:   Fri Apr 3 11:53:01 2009 +0200
25132
25133     Rename common ns16550 constants with UART_ prefix to prevent conflicts
25134
25135     Fix problems introduced in commit
25136     7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware
25137     diagnosis functions for inka4x0] which redefined MSR_RI which is
25138     already used on PowerPC systems.
25139
25140     Also eliminate redundant definitions in ps2mult.h.  More cleanup will
25141     be needed for other redundant occurrences though.
25142
25143     Signed-off-by: Detlev Zundel <dzu@denx.de>
25144
25145 commit 99067b08f4a0ce20ff337a35211239f334d8f451
25146 Author: Scott Wood <scottwood@freescale.com>
25147 Date:   Wed Apr 1 15:33:24 2009 -0500
25148
25149     Noisily disable the legacy NAND subsystem.
25150
25151     Legacy NAND is marked for feature removal after April 2009 (i.e. this
25152     upcoming release).  There are still several boards that reference it
25153     (though many do so only for disk-on-chip support which has been silently
25154     disabled for a while now).  These boards will now fail to build
25155     with #error, though the code is still there if the user removes #error.
25156
25157     The plan is to remove the code outright in the next release, along with
25158     any board code that refers to it (such as board/esd/common/auto_update.c).
25159
25160     Also, remove the legacy NAND API description from README.nand.
25161
25162     Signed-off-by: Scott Wood <scottwood@freescale.com>
25163
25164 commit 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf
25165 Author: apgmoorthy <moorthy.apg@samsung.com>
25166 Date:   Fri Mar 27 14:45:23 2009 +0530
25167
25168     Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
25169
25170     Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB.
25171     However, u-boot image for apollon board is 195KB making the board
25172     unbootable with OneNAND.
25173
25174     Fix ipl to read CONFIG_SYS_MONITOR_LEN.
25175     CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size.
25176
25177     Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
25178     Signed-off-by: Gangheyamoorthy   <moorthy.apg@samsung.com>
25179     Signed-off-by: Scott Wood <scottwood@freescale.com>
25180
25181 commit 74de7aefd79690bae8cf5a5120f5962d444be089
25182 Author: Wolfgang Denk <wd@denx.de>
25183 Date:   Wed Apr 1 23:34:12 2009 +0200
25184
25185     Add "source" command; prepare removal of "autoscr" command
25186
25187     According to the doc/feature-removal-schedule.txt, the "autoscr"
25188     command will be replaced by the "source" command in approximately 6
25189     months from now.
25190
25191     This patch prepares this change and starts a 6 month transition
25192     period as follows:
25193
25194     - The new "source" command has been added, which implements exactly
25195       the same functionlaity as the old "autoscr" command before
25196     - The old "autoscr" command name is kept as an alias for compatibility
25197     - Command sequences, script files atc. have been adapted to use the
25198       new "source" command
25199     - Related environment variables ("autoscript", "autoscript_uname")
25200       have *not* been adapted yet; these will be renamed resp. removed in
25201       a separate patch when the support for the "autoscr" command get's
25202       finally dropped.
25203
25204     Signed-off-by: Wolfgang Denk <wd@denx.de>
25205
25206 commit 78237df55248034a2d7c2daea992b9dbe7ca8e96
25207 Author: Wolfgang Denk <wd@denx.de>
25208 Date:   Thu Apr 2 17:31:09 2009 +0200
25209
25210     Add "GPL cleanup" task to feature-removal-schedule.txt
25211
25212     Announce removal of all non-GPL or GPL-incompatible files
25213     after August 2009.
25214
25215     Signed-off-by: Wolfgang Denk <wd@denx.de>
25216
25217 commit d9596ffbdc79cea285010b67dd20a4618303f624
25218 Author: Mike Frysinger <vapier@gentoo.org>
25219 Date:   Thu Apr 2 12:51:28 2009 -0400
25220
25221     sf: stmicro: dont send 4 bytes when reading status register
25222
25223     I can't find anywhere in the datasheet that says the status register needs
25224     3 dummy bytes sent to it before being able to read back the first real
25225     result.  Tests on a Blackfin board show that after writing the opcode, the
25226     status register starts coming back immediately.  So only write out the
25227     read status register opcode before polling the result.
25228
25229     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25230     CC: Jason McMullan <mcmullan@netapp.com>
25231     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25232
25233 commit 1abe365ffcfc29c061e8fd8b45551be5ad1428dd
25234 Author: Mike Frysinger <vapier@gentoo.org>
25235 Date:   Thu Apr 2 08:11:31 2009 -0400
25236
25237     sf: set common timeouts in seconds, not milliseconds
25238
25239     Since timeouts are only hit when there is a problem in the system, we
25240     don't want to prematurely timeout on a functioning setup.  Thus having
25241     low timeouts (in milliseconds) doesn't gain us anything in the production
25242     case, but rather increases likely hood of causing problems where none
25243     otherwise exist.
25244
25245     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25246     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25247
25248 commit 2a6ce1115b3cbe746965cfa0058ce645b6c1ada1
25249 Author: Mike Frysinger <vapier@gentoo.org>
25250 Date:   Thu Apr 2 06:51:49 2009 -0400
25251
25252     sf: stmicro: use common page timeout define
25253
25254     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25255     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25256
25257 commit 0dcdbb172c2fdf60c5c578980308b312fd56496f
25258 Author: Mike Frysinger <vapier@gentoo.org>
25259 Date:   Sat Mar 28 06:41:09 2009 -0400
25260
25261     sf: always read 5 bytes for the idcode
25262
25263     Some SPI flash drivers like to have extended id information available
25264     (like the spansion flash), so rather than making it re-issue the ID cmd
25265     to get at the last 2 bytes, have the common code read 5 bytes rather than
25266     just 3.  This also matches the Linux behavior where it always reads 5 id
25267     bytes from all flashes.
25268
25269     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25270     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25271     CC: Mingkai Hu <Mingkai.hu@freescale.com>
25272
25273 commit 9726ba4abaa16cd6c385ad350d403f98a8eacf52
25274 Author: Mike Frysinger <vapier@gentoo.org>
25275 Date:   Fri Mar 27 16:34:21 2009 -0400
25276
25277     sf: stmicro: drop redundant id read
25278
25279     The common SPI flash code reads the idcode and passes it down to the SPI
25280     flash driver, so there is no need to read it again ourselves.
25281
25282     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25283     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25284     CC: Jason McMullan <mcmullan@netapp.com>
25285     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25286
25287 commit 1c5874374e091b4bb62917c519861f7682fe066e
25288 Author: Mike Frysinger <vapier@gentoo.org>
25289 Date:   Fri Mar 27 19:27:58 2009 -0400
25290
25291     sf: add driver for SST flashes
25292
25293     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25294     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25295
25296 commit f773a1bbdb8f3bf1ddab2874f36f043c4f8f044d
25297 Author: Mike Frysinger <vapier@gentoo.org>
25298 Date:   Mon Mar 23 23:03:58 2009 -0400
25299
25300     sf: drop DEBUG defines
25301
25302     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25303     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25304
25305 commit 6b850a9fa8a216f3692da2511cb1a6c16409b1af
25306 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25307 Date:   Sun Jan 4 07:44:07 2009 +0100
25308
25309     mtd: add some at45 spi flash support
25310
25311      - AT45DB321D
25312      - AT45DB161D
25313      - AT45DB081D
25314      - AT45DB041D
25315      - AT45DB021D
25316      - AT45DB011D
25317
25318     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25319     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25320
25321 commit 6805e4bf83e6f444f7411101228766c8a7aec5f7
25322 Author: Mingkai Hu <Mingkai.hu@freescale.com>
25323 Date:   Tue Mar 31 14:09:41 2009 +0800
25324
25325     mtd: SPI Flash: Support the Spansion Flash
25326
25327     Add MTD SPI Flash support for S25FL008A, S25FL016A,
25328     S25FL032A, S25FL064A, S25FL128P.
25329
25330     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
25331     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25332
25333 commit 40587701924aa0afc86b3840421b4cc6de42c748
25334 Author: Mike Frysinger <vapier@gentoo.org>
25335 Date:   Mon Mar 30 20:56:45 2009 -0400
25336
25337     Blackfin: force all boards to HZ of 1000
25338
25339     Since the Blackfin timer code requires HZ to be 1000, barf on any board
25340     that tries to use a different value.
25341
25342     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25343
25344 commit f4032d2eec9d71a59c6c724671e577f67a76839b
25345 Author: Mike Frysinger <vapier@gentoo.org>
25346 Date:   Fri Mar 27 21:07:45 2009 -0400
25347
25348     Blackfin: bf533-stamp: drop old spi flash driver
25349
25350     Now that the common SPI flash code supports all the flashes, we can stop
25351     using the old driver.
25352
25353     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25354
25355 commit bc72f50a659d0d1b551817e1910b9b2be1c7e496
25356 Author: Mike Frysinger <vapier@gentoo.org>
25357 Date:   Thu Mar 26 15:42:12 2009 -0400
25358
25359     Blackfin: add BF538/BF539 SPI portmux handling
25360
25361     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25362
25363 commit 46ac352f0f9406a5f9aa157ac62867fb4650dfd3
25364 Author: Mike Frysinger <vapier@gentoo.org>
25365 Date:   Mon Mar 23 22:36:10 2009 -0400
25366
25367     Blackfin: do not delay on output bytes
25368
25369     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25370
25371 commit dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382
25372 Author: Mike Frysinger <vapier@gentoo.org>
25373 Date:   Mon Mar 23 22:17:27 2009 -0400
25374
25375     Blackfin: drop newline from OTP help
25376
25377     Looks like I accidentally added a newline to the OTP help when merging and
25378     older change.
25379
25380     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25381
25382 commit d3c38d96b991d641a33f7748130dae008563cdc9
25383 Author: Mike Frysinger <vapier@gentoo.org>
25384 Date:   Sun Mar 22 23:43:31 2009 -0400
25385
25386     Blackfin: convert bfin_sdh to legacy mmc
25387
25388     The Blackfin SDH controller is still using the legacy framework, so update
25389     the driver to use the renamed functions.
25390
25391     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25392
25393 commit d248cfb2d940b742f6bfdba9b832a3df96da3101
25394 Author: Mike Frysinger <vapier@gentoo.org>
25395 Date:   Sun Feb 22 16:30:38 2009 -0500
25396
25397     Blackfin: bf537-stamp: split CF/IDE code out into dedicated cf-ide.c
25398
25399     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25400
25401 commit ad9073211ca9e62162a39851e082b8d07a662fb6
25402 Author: Mike Frysinger <vapier@gentoo.org>
25403 Date:   Fri Feb 13 17:10:58 2009 -0500
25404
25405     Blackfin: fix crash when booting from external memory
25406
25407     When testing a u-boot binary that hasn't been booted from the bootrom, we
25408     have to make sure the bootstruct structure has sane storage space.  If we
25409     don't, the initcode will crash when it tries to dereference an invalid
25410     pointer.
25411
25412     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25413
25414 commit 84a9dda324c3faa56be14449d7519b993d9397a9
25415 Author: Mike Frysinger <vapier@gentoo.org>
25416 Date:   Sun Oct 12 21:32:52 2008 -0400
25417
25418     Blackfin: bf518f-ezbrd: new board port
25419
25420     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25421
25422 commit 0c31ddf7b70f77dede42dc82ecab7753a819acaa
25423 Author: Mike Frysinger <vapier@gentoo.org>
25424 Date:   Sun Oct 12 21:30:48 2008 -0400
25425
25426     Blackfin: bf526-ezbrd: new board port
25427
25428     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25429
25430 commit 5c45f7cac2f74e2c14aa6b028cd969651cc9ac8e
25431 Author: Mike Frysinger <vapier@gentoo.org>
25432 Date:   Sun Oct 12 21:25:33 2008 -0400
25433
25434     Blackfin: bf538f-ezkit: new board port
25435
25436     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25437
25438 commit d9a5d113b93583c984711127ab8503e136ed1e4a
25439 Author: Mike Frysinger <vapier@gentoo.org>
25440 Date:   Sun Oct 12 20:59:12 2008 -0400
25441
25442     Blackfin: bf527-ezkit: new board port
25443
25444     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25445
25446 commit 76d21803ddd7dc4bcb81739ea2d3cd679e052f46
25447 Author: Mike Frysinger <vapier@gentoo.org>
25448 Date:   Sun Oct 12 05:05:42 2008 -0400
25449
25450     Blackfin: bf548-ezkit: new board port
25451
25452     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25453
25454 commit 67b89c79e72fe86b0ea0199425d880630beb95d8
25455 Author: Laurent Gregoire <laurent.gregoire@tomtom.com>
25456 Date:   Tue Mar 3 14:23:59 2009 +0100
25457
25458     libfdt: Fix C++ compile-time cast error on gnu 4.2.1
25459
25460     Allow the inclusion of libfdt.h in C++ source.
25461
25462     Signed-off-by: Laurent Gregoire <laurent.gregoire@tomtom.com>
25463     Acked-by: David Gibson <david@gibson.dropbear.id.au>
25464
25465 commit 13d93f38e86818739317b0206d597265cf9e675e
25466 Author: Emil Medve <Emilian.Medve@Freescale.com>
25467 Date:   Mon Feb 23 10:43:36 2009 -0600
25468
25469     Fix a possible overflow case detected by gcc 4.3.2
25470
25471     .../dtc/libfdt/fdt_sw.c: In function 'fdt_end_node':
25472     .../dtc/libfdt/fdt_sw.c:81: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false
25473
25474     Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
25475
25476 commit a22d9cfbb5bcfb3dc6ffd64d391b568e8a0ce383
25477 Author: David Gibson <david@gibson.dropbear.id.au>
25478 Date:   Fri Feb 6 14:03:24 2009 +1100
25479
25480     libfdt: Rework/cleanup fdt_next_tag()
25481
25482     Currently, callers of fdt_next_tag() must usually follow the call with
25483     some sort of call to fdt_offset_ptr() to verify that the blob isn't
25484     truncated in the middle of the tag data they're going to process.
25485     This is a bit silly, since fdt_next_tag() generally has to call
25486     fdt_offset_ptr() on at least some of the data following the tag for
25487     its own operation.
25488
25489     This patch alters fdt_next_tag() to always use fdt_offset_ptr() to
25490     verify the data between its starting offset and the offset it returns
25491     in nextoffset.  This simplifies fdt_get_property() which no longer has
25492     to verify itself that the property data is all present.
25493
25494     At the same time, I neaten and clarify the error handling for
25495     fdt_next_tag().  Previously, fdt_next_tag() could return -1 instead of
25496     a tag value in some circumstances - which almost none of the callers
25497     checked for.  Also, fdt_next_tag() could return FDT_END either because
25498     it encountered an FDT_END tag, or because it reached the end of the
25499     structure block - no way was provided to tell between these cases.
25500
25501     With this patch, fdt_next_tag() always returns FDT_END with a negative
25502     value in nextoffset for an error.  This means the several places which
25503     loop looking for FDT_END will still work correctly - they only need to
25504     check for errors at the end.  The errors which fdt_next_tag() can
25505     report are:
25506         - -FDT_ERR_TRUNCATED if it reached the end of the structure
25507            block instead of finding a tag.
25508
25509         - -FDT_BADSTRUCTURE if a bad tag was encountered, or if the
25510                tag data couldn't be verified with fdt_offset_ptr().
25511
25512     This patch also updates the callers of fdt_next_tag(), where
25513     appropriate, to make use of the new error reporting.
25514
25515     Finally, the prototype for the long gone _fdt_next_tag() is removed
25516     from libfdt_internal.h.
25517
25518     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25519
25520 commit 2c0b843e710aa1e2da25c2592e6dbe5d0b0ab7da
25521 Author: David Gibson <david@gibson.dropbear.id.au>
25522 Date:   Fri Feb 6 14:01:56 2009 +1100
25523
25524     libfdt: Rework fdt_next_node()
25525
25526     Currently fdt_next_node() will find the next node in the blob
25527     regardless of whether it is above, below or at the same level in the
25528     tree as the starting node - the depth parameter is updated to indicate
25529     which is the case.  When a depth parameter is supplied, this patch
25530     makes it instead terminate immediately when it finds the END_NODE tag
25531     for a node at depth 0.  In this case it returns the offset immediately
25532     past the END_NODE tag.
25533
25534     This has a couple of advantages.  First, this slightly simplifies
25535     fdt_subnode_offset(), which no longer needs to explicitly check that
25536     fdt_next_node()'s iteration hasn't left the starting node.  Second,
25537     this allows fdt_next_node() to be used to implement
25538     _fdt_node_end_offset() considerably simplifying the latter function.
25539
25540     The other users of fdt_next_node() either don't need to iterate out of
25541     the starting node, or don't pass a depth parameter at all.  Any
25542     callers that really need to iterate out of the starting node, but keep
25543     tracking depth can do so by biasing the initial depth value.
25544
25545     This is a semantic change, but I think it's very unlikely to break any
25546     existing library users.
25547
25548     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25549
25550 commit c123098035be8bae3859bbfbd06861f197c07631
25551 Author: Scott Wood <scottwood@freescale.com>
25552 Date:   Tue Mar 31 17:49:36 2009 -0500
25553
25554     mpc83xx: Set guarded bit on BAT that covers the end of the address space
25555
25556     The mpc8313erdb board currently sets DBAT6 to cover all of the final 256MiB of
25557     address space; however, not all of this space is covered by a device.  In
25558     particular, flash sits at 0xfe000000-0xfe7fffff, and nothing is mapped
25559     at the far end of the address space.
25560
25561     In zlib, there is a loop that references p[-1] if p is non-NULL.  Under
25562     some circumstances, this leads to the CPU speculatively loading from
25563     0xfffffff8 if p is NULL.  This leads to a machine check.
25564
25565     Signed-off-by: Scott Wood <scottwood@freescale.com>
25566
25567     continuation to the remaining mpc83xx boards that suffer from the same problem.
25568
25569     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25570
25571 commit c2eb8be7f760a2efe30a495bfb10857838dcf3fa
25572 Author: Kim Phillips <kim.phillips@freescale.com>
25573 Date:   Mon Mar 30 14:28:05 2009 -0500
25574
25575     rtc: remove broken rtc_read and rtc_write declarations
25576
25577     commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g.
25578     EPSON)" introduces the following build error on boards configuring e.g,
25579     the ds1374 rtc:
25580
25581     Configuring for MPC837XEMDS board...
25582     ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration
25583     /home/r1aaha/git/u-boot/include/rtc.h:64: error: previous declaration of 'rtc_read' was here
25584     ds1374.c:104: error: conflicting types for 'rtc_write'
25585     /home/r1aaha/git/u-boot/include/rtc.h:65: error: previous declaration of 'rtc_write' was here
25586
25587     this reverts the erroneous chunk.
25588
25589     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25590     Acked-by: Detlev Zundel <dzu@denx.de>
25591     CC: Detlev Zundel <dzu@denx.de>
25592     CC: Andreas Pfefferle <ap@denx.de>
25593
25594 commit fc39c2fd51e64707de4d61ed49479ebea2847e1b
25595 Author: Kumar Gala <galak@kernel.crashing.org>
25596 Date:   Tue Mar 31 17:58:13 2009 -0500
25597
25598     85xx/86xx: Ensure MP boot page is not used
25599
25600     We had a bug on 86xx in which the boot page used to bring up secondary
25601     cores was being overwritten and used for the malloc region in u-boot.
25602
25603     We need to reserve the region of memory that the boot page is going to
25604     be put at so nothing uses it.
25605
25606     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25607     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
25608
25609 commit c840d26c752141b94bbc24ac748ddd45752a955a
25610 Author: Kumar Gala <galak@kernel.crashing.org>
25611 Date:   Tue Mar 31 23:11:05 2009 -0500
25612
25613     85xx: Introduce determine_mp_bootpg() helper.
25614
25615     Match determine_mp_bootpg() that was added for 86xx.  We need this to
25616     address a bug introduced in v2009.03 with 86xx MP booting.  We have to
25617     make sure to reserve the region of memory used for the MP bootpg() so
25618     other u-boot code doesn't use it.
25619
25620     Also added a comment about how cpu_reset() is dealing w/an errata on
25621     early 85xx MP HW.
25622
25623     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25624
25625 commit 7649a590b53ee548f41428bf20780f74ce9fc099
25626 Author: Kumar Gala <galak@kernel.crashing.org>
25627 Date:   Tue Mar 31 23:02:38 2009 -0500
25628
25629     86xx: Cleanup MP support
25630
25631     * Use CONFIG_MP instead of CONFIG_NUM_CPUS to match 85xx
25632     * Introduce determine_mp_bootpg() helper.  We'll need this to address a
25633       bug introduced in v2009.03 with 86xx MP booting.  We have to make sure
25634       to reserve the region of memory used for the MP bootpg() so other
25635       u-boot code doesn't use it.
25636     * Added dummy versions of cpu_reset(), cpu_status() & cpu_release() to
25637       allow cmd_mp.c to build and work. In the future we should look at
25638       implementing all these functions. This could be common w/85xx if we
25639       use spin tables on 86xx.
25640
25641     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25642
25643 commit f6ef8b7a43ed7f68a4bb524faad5e4f75ea3e3e2
25644 Author: Becky Bruce <beckyb@kernel.crashing.org>
25645 Date:   Tue Mar 31 18:38:37 2009 -0500
25646
25647     mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves
25648
25649     We're missing the board_lmb_reserve definitions that allow
25650     cpu_mp_lmb_reserve to be called; this means that Linux
25651     is free to reallocate reserved pages.  Linux currently boots
25652     because we're getting lucky - the page we've reserved is
25653     high enough in memory that it isn't allocated by Linux
25654     while we still need it to be in existence.
25655
25656     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
25657     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25658
25659 commit 0fc4f64c59873a47d555dd66bad25797d4ecb0ed
25660 Author: Ladislav Michl <ladis@linux-mips.org>
25661 Date:   Tue Mar 31 13:43:10 2009 +0200
25662
25663     NetStar: fix NAND
25664
25665     Fix NAND support broken during new NAND code merge. Move those few lines of
25666     code to board/netstar/netstar.c
25667
25668     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
25669
25670 commit d144f94d590b5190a9963bd0f2026b2a7ce67eda
25671 Author: Jens Scharsig <esw@bus-elektronik.de>
25672 Date:   Tue Mar 31 08:18:29 2009 +0200
25673
25674     soft_i2c.c compiler/linker error
25675
25676     This patch fix the compiler/linker errors
25677
25678     common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed'
25679     common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed'
25680
25681     if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not
25682     uesd/undef (wrong define order)
25683
25684     and
25685
25686     removes additional empty lines
25687
25688     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
25689
25690 commit 765547dc5e0e8cbe6b8f4ea8a5d6ff237935c352
25691 Author: Haiying Wang <Haiying.Wang@freescale.com>
25692 Date:   Fri Mar 27 17:02:45 2009 -0400
25693
25694     MPC85xx: Add MPC8569MDS board support
25695
25696     This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD
25697     EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch.
25698
25699     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25700     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
25701     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25702
25703 commit 22b6dbc1696d927d938dd4e16f65d83c0d4fb3f4
25704 Author: Haiying Wang <Haiying.Wang@freescale.com>
25705 Date:   Fri Mar 27 17:02:44 2009 -0400
25706
25707     MPC85xx: Add MPC8569 CPU support
25708
25709     There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of
25710     LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage,
25711     then invalidate it after LBCR bit 13 is set.
25712
25713     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25714     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25715
25716 commit 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f
25717 Author: Haiying Wang <Haiying.Wang@freescale.com>
25718 Date:   Thu Mar 26 17:01:49 2009 -0400
25719
25720     MPC85xx: Load and enable QE microcode patch in IRAM
25721
25722     For the silicon which doesn't have ROM support in QE, it always needs to load
25723     a pre-built ucode binary to IRAM so that QE can work.
25724
25725     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25726     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
25727
25728 commit 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b
25729 Author: Kumar Gala <galak@kernel.crashing.org>
25730 Date:   Thu Mar 19 09:16:10 2009 -0500
25731
25732     85xx: Add support for additional e500mc features
25733
25734     * Enable backside L2
25735     * e500mc no longer has timebase enable in HID (moved to CCSR register)
25736
25737     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25738
25739 commit c360ceac0286159f94d9d1a9496fc9858c8d9bec
25740 Author: Dave Liu <daveliu@freescale.com>
25741 Date:   Sat Mar 14 12:48:30 2009 +0800
25742
25743     fsl-ddr: add the DDR3 SPD infrastructure
25744
25745     - support mirrored DIMMs, not support register DIMMs
25746     - test passed on P2020DS board with MT9JSF12872AY-1G1D1
25747     - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1
25748
25749     Signed-off-by: Dave Liu <daveliu@freescale.com>
25750     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
25751
25752 commit 6a8197836702991468cead5ead073f589e2623ad
25753 Author: Dave Liu <daveliu@freescale.com>
25754 Date:   Sat Mar 14 12:48:19 2009 +0800
25755
25756     fsl-ddr: Fix two bugs in the ddr infrastructure
25757
25758     1. wr_lat
25759        UM said the total write latency for DDR2 is equal to
25760        WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1.
25761        so, the WR_LAT = CL - 1;
25762     2. rd_to_pre
25763        we missed to add the ADD_LAT for DDR2 case.
25764
25765     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
25766     Signed-off-by: Dave Liu <daveliu@freescale.com>
25767
25768 commit 540dcf1cb86961e11aa92c47671f27762c581d8c
25769 Author: Kumar Gala <galak@kernel.crashing.org>
25770 Date:   Thu Mar 26 01:34:39 2009 -0500
25771
25772     83xx: Use common LSDMR defines from asm/fsl_lbc.h
25773
25774     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25775     Acked-by: Kim Phillips <kim.phillips@freescale.com>
25776
25777 commit b0fe93eda69721aef1fdef576164b668fad83bbd
25778 Author: Kumar Gala <galak@kernel.crashing.org>
25779 Date:   Thu Mar 26 01:34:38 2009 -0500
25780
25781     85xx: Use common LSDMR defines from asm/fsl_lbc.h
25782
25783     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25784
25785 commit 0088c298f0eeb90ec001f744e9959dea83dd563a
25786 Author: Kumar Gala <galak@kernel.crashing.org>
25787 Date:   Thu Mar 26 01:34:37 2009 -0500
25788
25789     Add LSDMR (SDRAM Mode Register) definition on localbus
25790
25791     The masks for various bit defines of LSDMR are common and thus we can
25792     define them in one place rather than replicating them in each config.h
25793
25794     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25795
25796 commit 89c00fb15859213788f0ad089934c376fb356099
25797 Author: Ladislav Michl <ladis@linux-mips.org>
25798 Date:   Mon Mar 30 18:58:41 2009 +0200
25799
25800     OMAP: use {read,write}l to access timer registers
25801
25802     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
25803
25804 commit 81472d893fa565c9d300928a40e504a689bde131
25805 Author: Ladislav Michl <ladis@linux-mips.org>
25806 Date:   Mon Mar 30 18:58:41 2009 +0200
25807
25808     OMAP: rename timer divisor
25809
25810     Divisor field is called PTV not PVT.
25811
25812     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
25813     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25814
25815 commit fe672d60b2a8c9e803596ba4533fa1776015551d
25816 Author: Ladislav Michl <ladis@linux-mips.org>
25817 Date:   Mon Mar 30 18:58:40 2009 +0200
25818
25819     OMAP: reindent timer code
25820
25821     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
25822
25823 commit b3f66b0ba09949e0796ce7fad6367f75f15ed890
25824 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25825 Date:   Mon Mar 30 18:58:40 2009 +0200
25826
25827     s3c2410: move nand driver to drivers/mtd/nand
25828
25829     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25830
25831 commit d3b635774194404bcd424f6b376419bce22076ad
25832 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25833 Date:   Mon Mar 30 18:58:40 2009 +0200
25834
25835     s3c24x0: move i2c driver to drivers/i2c
25836
25837     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25838
25839 commit 300f99f4539dd5caf7e19af5e4ea5eb259445913
25840 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25841 Date:   Mon Mar 30 18:58:39 2009 +0200
25842
25843     s3c24x0: move serial driver to drivers/serial
25844
25845     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25846
25847 commit 942ba9969b9efa25f816c238861ecb339c54ed73
25848 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25849 Date:   Mon Mar 30 18:58:39 2009 +0200
25850
25851     davinci: move i2c driver to drivers/i2c
25852
25853     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25854
25855 commit ee4f3e2765a1c65c9861c5d2cf2e6feb84b90bd8
25856 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25857 Date:   Mon Mar 30 18:58:39 2009 +0200
25858
25859     davinci: move nand driver to drivers/mtd/nand
25860
25861     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25862
25863 commit d3e55d0774a180c1837bd7ddec464015e883bd86
25864 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25865 Date:   Mon Mar 30 18:58:38 2009 +0200
25866
25867     imx: move serial driver to drivers/serial
25868
25869     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25870
25871 commit 2344bb8de2354101a8264c2123303c9d8d2aed3c
25872 Author: Detlev Zundel <dzu@denx.de>
25873 Date:   Mon Mar 30 00:31:36 2009 +0200
25874
25875     inka4x0: Use proper accessor macros for memory mapped registers.
25876
25877     Signed-off-by: Detlev Zundel <dzu@denx.de>
25878
25879 commit e979e85fd39b06436922bb4d6bb5fafcbc775182
25880 Author: Detlev Zundel <dzu@denx.de>
25881 Date:   Mon Mar 30 00:31:35 2009 +0200
25882
25883     inka4x0: Add hardware diagnosis and RTC in configuration.
25884
25885     This patch adds the board specific communication routines needed by
25886     the external 4543 RTC.
25887
25888     Signed-off-by: Detlev Zundel <dzu@denx.de>
25889     Signed-off-by: Andreas Pfefferle <ap@denx.de>
25890
25891 commit 7b5611cdd12ca0cc33f994f0d4a4454788fc3124
25892 Author: Detlev Zundel <dzu@denx.de>
25893 Date:   Mon Mar 30 00:31:34 2009 +0200
25894
25895     inka4x0: Add hardware diagnosis functions for inka4x0
25896
25897     This patch adds advanced diagnosis functions for the inka4x0 board.
25898
25899     Signed-off-by: Andreas Pfefferle <ap@denx.de>
25900     Signed-off-by: Detlev Zundel <dzu@denx.de>
25901
25902 commit 04e11cf383ff6231535fd981023bb1306b2133d4
25903 Author: Detlev Zundel <dzu@denx.de>
25904 Date:   Mon Mar 30 00:31:33 2009 +0200
25905
25906     rtc: add support for 4543 RTC (manufactured by e.g. EPSON)
25907
25908     Signed-off-by: Detlev Zundel <dzu@denx.de>
25909     Signed-off-by: Andreas Pfefferle <ap@denx.de>
25910
25911 commit 572e6179adb5447ff42ec2aa5cf3a26decf97583
25912 Author: Detlev Zundel <dzu@denx.de>
25913 Date:   Mon Mar 30 00:31:32 2009 +0200
25914
25915     drivers/twserial: Add protocol driver for "three wire serial" interface.
25916
25917     This pretty unintelligent interface is used on some RTC chips.
25918
25919     Signed-off-by: Detlev Zundel <dzu@denx.de>
25920
25921 commit a6ef3ddeafbe8007af3662cc4509b897c53ab395
25922 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25923 Date:   Sun Mar 29 23:01:42 2009 +0200
25924
25925     arm720t/clps7111: move serial driver to drivers/serial
25926
25927     add CONFIG_CLPS7111_SERIAL to activate the driver
25928
25929     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25930
25931 commit 6790c55704531eb98f76b51d50e0f73d19fa2988
25932 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25933 Date:   Sun Mar 29 23:01:42 2009 +0200
25934
25935     lpc2292: move serial driver to drivers/serial
25936
25937     add CONFIG_LPC2292_SERIAL to activate the driver
25938
25939     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25940
25941 commit 176a600d0ecdaccbac483d2ba992d0119f853119
25942 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25943 Date:   Sun Mar 29 23:01:42 2009 +0200
25944
25945     ks8695: move serial driver to drivers/serial
25946
25947     add CONFIG_KS8695_SERIAL to activate the driver
25948
25949     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25950
25951 commit 6d27bca15d445fcf07d6e7e30ced95c945c875ea
25952 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25953 Date:   Sun Mar 29 23:01:42 2009 +0200
25954
25955     s3c64xx: move usb driver to drivers/usb
25956
25957     add CONFIG_USB_S3C64XX to activate the driver
25958
25959     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25960
25961 commit ecfa8dda2f55e1fbe12dee0b5cc16e7d484674c9
25962 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25963 Date:   Sun Mar 29 23:01:41 2009 +0200
25964
25965     imx31: move serial driver to drivers/serial
25966
25967     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25968
25969 commit 9ea91c9fefb3920d735533a7798c1a44a3ed3ffc
25970 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25971 Date:   Sun Mar 29 23:01:41 2009 +0200
25972
25973     netarm: move serial driver to drivers/serial
25974
25975     add CONFIG_NETARM_SERIAL to activate the driver
25976
25977     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25978
25979 commit 412ab705888742add435dd6ffc2e8bda14962235
25980 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25981 Date:   Sun Mar 29 23:01:41 2009 +0200
25982
25983     sa1100: move serial driver to drivers/serial
25984
25985     add CONFIG_SA1100_SERIAL to activate the driver
25986
25987     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25988
25989 commit b2368754a9202225fd072e159fb78da7d2cdb623
25990 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25991 Date:   Sun Mar 29 23:01:41 2009 +0200
25992
25993     s3c44b0: extract cache from cpu.c
25994
25995     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25996
25997 commit 40fd626223eae5363719bcb9a6896f08ceeee90a
25998 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25999 Date:   Sun Mar 29 23:01:41 2009 +0200
26000
26001     s3c44b0: move serial driver to drivers/serial
26002
26003     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26004
26005 commit 5fe1377cc46199fe71c47be4b1aa81440ae96f9f
26006 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26007 Date:   Sun Mar 29 23:01:40 2009 +0200
26008
26009     s3c44b0: move rtc driver to drivers/rtc
26010
26011     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26012
26013 commit 50f601cca8985615f9e3de4c34887448ade8a64b
26014 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26015 Date:   Sun Mar 29 23:01:40 2009 +0200
26016
26017     s3c44b0: move i2c driver to drivers/i2c
26018
26019     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26020
26021 commit 281dfb0c0c531194f99e60d6285cca4e2a9fb1b6
26022 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26023 Date:   Sun Mar 29 23:01:36 2009 +0200
26024
26025     s3c4510b: move specific code to soc directory
26026
26027     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26028
26029 commit 04531f3c11c693dc54924f82c41979d960309c9d
26030 Author: Ladislav Michl <ladis@linux-mips.org>
26031 Date:   Wed Mar 25 23:43:58 2009 +0100
26032
26033     NetStar: add RTC support
26034
26035     Add RTC support.
26036
26037     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26038
26039 commit 71f7bd305d9768bcb7ddbe4b5823cbf3b3597b11
26040 Author: Ladislav Michl <ladis@linux-mips.org>
26041 Date:   Wed Mar 25 23:43:50 2009 +0100
26042
26043     NetStar: use generic flash driver
26044
26045     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26046
26047 commit 3f464b0fc009d41d2734c08e472eb6d445f73a5c
26048 Author: Ladislav Michl <ladis@linux-mips.org>
26049 Date:   Mon Mar 16 23:31:20 2009 +0100
26050
26051     NetStar: update crcit utility
26052
26053     Make crc32 function to match its prototype. Use more meaningful identifiers.
26054
26055     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26056
26057 commit 488f5d8790c451fc527fe5d2ef218f2a5e40ea17
26058 Author: Ladislav Michl <ladis@linux-mips.org>
26059 Date:   Mon Mar 23 17:46:27 2009 +0100
26060
26061     Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ
26062
26063     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26064
26065 commit 88685b5f62274167ad2ba8a58e108d89ff71955b
26066 Author: Wolfgang Denk <wd@denx.de>
26067 Date:   Sun Mar 29 00:58:16 2009 +0100
26068
26069     VCMA9: fix compile errors
26070
26071     Fix these:
26072     cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr'
26073     cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function)
26074
26075     Signed-off-by: Wolfgang Denk <wd@denx.de>
26076
26077 commit 26e42cbd786241fec370a0b92ad591f4e9cc423b
26078 Author: Wolfgang Denk <wd@denx.de>
26079 Date:   Sun Mar 29 00:54:21 2009 +0100
26080
26081     ARM: fix warning: 'print_eth' defined but not used
26082
26083     This warning got issued for all ARM systems that don't have
26084     CONFIG_CMD_NET enabled.
26085
26086     Signed-off-by: Wolfgang Denk <wd@denx.de>
26087
26088 commit fd88d91a639ce41b825c8d50dc2182050e98fe53
26089 Author: Ladislav Michl <ladis@linux-mips.org>
26090 Date:   Mon Mar 23 18:16:34 2009 +0100
26091
26092     cs8900 compile fix
26093
26094     cs8900.c: In function 'eth_init':
26095     cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type
26096     cs8900.c:165: error: invalid operands to binary <<
26097     cs8900.c:166: error: invalid operands to binary <<
26098     cs8900.c:167: error: invalid operands to binary <<
26099
26100     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26101     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26102
26103 commit d2567be915036720693f3ddd00c39b5b4d86fb8d
26104 Author: Wolfgang Denk <wd@denx.de>
26105 Date:   Sat Mar 28 20:16:16 2009 +0100
26106
26107     Fix implicit declaration of function 'eth_[gs]etenv_enetaddr'
26108
26109     ...and some other compile warnings.
26110
26111     Signed-off-by: Wolfgang Denk <wd@denx.de>
26112
26113 commit 97b05d7d524a6b4f195f07b8f90e98561a85596c
26114 Author: Wolfgang Denk <wd@denx.de>
26115 Date:   Sat Mar 28 16:17:29 2009 +0100
26116
26117     mpc8xx/ether.c: fix warning: unused variable 'bd'
26118
26119     Also minor coding style cleanup.
26120
26121     Signed-off-by: Wolfgang Denk <wd@denx.de>
26122
26123 commit 2dce551e10728f9e5655279f761f1d3cc0a8fe90
26124 Author: Detlev Zundel <dzu@denx.de>
26125 Date:   Wed Mar 25 17:27:52 2009 +0100
26126
26127     command.c: Expose the core of do_help as _do_help to the rest of u-boot.
26128
26129     Other commands implementing subcommands can reuse this code nicely.
26130
26131     Signed-off-by: Detlev Zundel <dzu@denx.de>
26132     Signed-off-by: Andreas Pfefferle <ap@denx.de>
26133
26134 commit 4e325fbfa4dea04eceb6392e00807c40d214dc6f
26135 Author: Detlev Zundel <dzu@denx.de>
26136 Date:   Tue Mar 24 18:02:33 2009 +0100
26137
26138     mpc5xxx: Add structure definition for several more register blocks.
26139
26140     Signed-off-by: Detlev Zundel <dzu@denx.de>
26141
26142 commit 739b0e594677a0676577bc95db4495a5563fc7f8
26143 Author: Detlev Zundel <dzu@denx.de>
26144 Date:   Fri Mar 27 15:03:55 2009 +0100
26145
26146     MAINTAINERS: Add entry for 'inka4x0' board.
26147
26148     Signed-off-by: Detlev Zundel <dzu@denx.de>
26149
26150 commit e55ecec45340755ef47cbbb13fb35ceed60eb115
26151 Author: Detlev Zundel <dzu@denx.de>
26152 Date:   Fri Mar 27 15:03:54 2009 +0100
26153
26154     MAINTAINERS: Keep list sorted.
26155
26156     Signed-off-by: Detlev Zundel <dzu@denx.de>
26157
26158 commit 0baeca4b09b703728f8e66b52418039fd8f8ce35
26159 Author: Mike Frysinger <vapier@gentoo.org>
26160 Date:   Thu Mar 26 11:17:41 2009 -0400
26161
26162     karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos
26163
26164     The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr".
26165
26166     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26167     CC: Ben Warren <biggerbadderben@gmail.com>
26168
26169 commit 76756e41cde0a617e781a604cc47dfaef63697cd
26170 Author: Heiko Schocher <hs@denx.de>
26171 Date:   Thu Mar 26 07:33:59 2009 +0100
26172
26173     ppc: cleanup compiler errors/warnings
26174
26175     Current u-boot top of tree builds with warnings/errors for
26176     the following boards:
26177
26178     ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823
26179     RPXClassic debris PN62
26180
26181     following patch solves this.
26182
26183     Signed-off-by: Heiko Schocher <hs@denx.de>
26184     Acked-by: Mike Frysinger <vapier@gentoo.org>
26185
26186 commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1
26187 Author: Stefan Roese <sr@denx.de>
26188 Date:   Thu Mar 26 16:14:13 2009 +0100
26189
26190     ppc4xx: Sequoia: Fix TLB reassignment in NAND booting code
26191
26192     This patch fixes a bug in the Sequoia TLB init code to reconfigure
26193     the correct TLB (boot space) after running from RAM. This bug was
26194     introduced with patch 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
26195     [ppc4xx: Make Sequoia boot vxWorks] which changed the order of the
26196     TLB in the Sequoia init.S file.
26197
26198     Signed-off-by: Stefan Roese <sr@denx.de>
26199
26200 commit e2b66fe453a3679f807b37fc5923d89214302764
26201 Author: Wolfgang Denk <wd@denx.de>
26202 Date:   Thu Mar 26 10:00:57 2009 +0100
26203
26204     ads5121: enable instruction cache
26205
26206     Enabling the instruction cache significantly accelerates U-Boot
26207     operations like CRC checking, image uncompression, etc.
26208
26209     Kudos to Andrea Scian for pointing out.
26210
26211     Signed-off-by: Wolfgang Denk <wd@denx.de>
26212
26213 commit 33e88c557b29c84c52039ba05993fa70fe62afe3
26214 Author: Jon Smirl <jonsmirl@gmail.com>
26215 Date:   Sun Mar 22 22:55:45 2009 -0400
26216
26217     mpc5200: suppress printf until console initialized
26218
26219     On boards which have the environment in eeprom, i2c_init() is called
26220     before the console and RAM are initialized.
26221     Suppress printfs until the console is initialized.
26222
26223     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
26224     Acked-by: Heiko Schocher <hs@denx.de>
26225
26226 commit 0c6926736effbb9a19047949b7e9b3e8feab7c46
26227 Author: Guennadi Liakhovetski <lg@denx.de>
26228 Date:   Wed Mar 25 11:36:50 2009 +0100
26229
26230     ARM: Add the imx31_phycore_eet board to MAKEALL
26231
26232     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26233
26234 commit 917cfc70c18b74fa8a80189bdce8395199fa8360
26235 Author: Nishanth Menon <nm@ti.com>
26236 Date:   Wed Mar 25 22:13:56 2009 +0100
26237
26238     OMAP3:Beagle: Enable mtdparts
26239
26240     http://www.denx.de/wiki/DULG/UBootCmdGroupFlash#UBootCmdFlMtdparts
26241     provides a flexible way to create and maintain u-boot mtd
26242     partitions. This allows commands such as "nand erase fs"
26243     to work and the user no longer needs to decode the absolute
26244     nand offsets. This patch enables this function for beagleboard
26245
26246     Signed-off-by: Nishanth Menon <nm@ti.com>
26247     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26248
26249 commit 4de1a5daab079ddc8ce1274144700203d692105c
26250 Author: Mike Frysinger <vapier@gentoo.org>
26251 Date:   Sun Feb 22 16:26:35 2009 -0500
26252
26253     Blackfin: bf537-stamp: split post code out into dedicated post.c
26254
26255     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26256
26257 commit 5e8f245743ed14c89e495ba2c027703db9813160
26258 Author: Mike Frysinger <vapier@gentoo.org>
26259 Date:   Sat Oct 11 22:51:56 2008 -0400
26260
26261     Blackfin: add support for S25FL128 parts
26262
26263     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26264
26265 commit bf1e028bf3eab1d702fa0627cade4460688f3913
26266 Author: Mike Frysinger <vapier@gentoo.org>
26267 Date:   Sat Oct 11 22:51:23 2008 -0400
26268
26269     Blackfin: overhaul SPI flash handling to speed things up
26270
26271     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26272
26273 commit efcc08cededa2168b96f12a22a5872340880d334
26274 Author: Mike Frysinger <vapier@gentoo.org>
26275 Date:   Sat Oct 11 22:51:05 2008 -0400
26276
26277     Blackfin: add support for SST SPI flashes
26278
26279     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26280
26281 commit 5b8cfbe63f7242ebb1008f30bbbc85a9d54b38cf
26282 Author: Mike Frysinger <vapier@gentoo.org>
26283 Date:   Sat Oct 11 22:50:10 2008 -0400
26284
26285     Blackfin: add hack for crappy m25p80
26286
26287     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26288
26289 commit 6f5fd56f0832ea5c254e2e4be84ea21fc8ecd5c5
26290 Author: Mike Frysinger <vapier@gentoo.org>
26291 Date:   Wed Jan 21 20:47:12 2009 -0500
26292
26293     Blackfin: bf537-stamp: increase monitor size
26294
26295     The new jffs2 code pushed the code size just over the limit, so increase
26296     the limit a bit more.
26297
26298     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26299
26300 commit f82caaccc87e1f76448ff42a6b930e59797e4f65
26301 Author: Mike Frysinger <vapier@gentoo.org>
26302 Date:   Mon Dec 8 16:16:11 2008 -0500
26303
26304     Blackfin: bf537-stamp: bump default SCLK up to 125MHz
26305
26306     Since all of the bf537-stamp and bf537-ezkit boards out there can handle it,
26307     increase the speed of SCLK to 125MHz rather than 100MHz.
26308
26309     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26310
26311 commit 751e54c3b77311b720b794813cce20546f288ada
26312 Author: Mike Frysinger <vapier@gentoo.org>
26313 Date:   Sat Oct 11 22:44:14 2008 -0400
26314
26315     Blackfin: bf537-stamp: rewrite MAC-in-flash handling
26316
26317     Use the common net eth functions to setup the env/global data with the MAC
26318     address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined.
26319
26320     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26321
26322 commit 88f9faffb383bbc6f23b8cc8519c5ffecfa2c8ad
26323 Author: Mike Frysinger <vapier@gentoo.org>
26324 Date:   Tue Dec 9 13:47:39 2008 -0500
26325
26326     Blackfin: add clkin_hz= to default kernel command line for ADI boards
26327
26328     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26329
26330 commit 9f64ba2412d3cede9eb1f290987e5c3a28df3232
26331 Author: Mike Frysinger <vapier@gentoo.org>
26332 Date:   Sun Oct 12 23:49:13 2008 -0400
26333
26334     Blackfin: bf533-stamp: bump up default clocks
26335
26336     Since the hardware can handle it, bump the default clocks from 80mhz SCLK
26337     and 398mhz CCLK to 100mhz SCLK and 498mhz CCLK.
26338
26339     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26340
26341 commit 23fd959eeaaa0434ac7f9c1191de66c76d97d699
26342 Author: Mike Frysinger <vapier@gentoo.org>
26343 Date:   Sat Oct 11 22:40:22 2008 -0400
26344
26345     Blackfin: bf533-stamp: rewrite startup LED notifications
26346
26347     Again, don't clobber pins that we aren't actually using, and use the common
26348     LED framework rather than our own hob-job-but-not-really-working.
26349
26350     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26351
26352 commit cf6f469e2730fc8ab3523808b828be000d6eee77
26353 Author: Mike Frysinger <vapier@gentoo.org>
26354 Date:   Sun Jun 1 09:09:48 2008 -0400
26355
26356     Blackfin: unify common ADI board settings
26357
26358     Rather than duplicate the same ADI settings in every ADI board, create a
26359     common ADI config header and have all ADI boards start using that.  This
26360     will also make merging the ~10 boards I have to forward port a lot easier.
26361
26362     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26363
26364 commit 196c74311f394c6eb08bd9ab07a35671299b9851
26365 Author: Kyungmin Park <kmpark@infradead.org>
26366 Date:   Tue Mar 3 09:05:53 2009 +0900
26367
26368     Reduce OneNAND IPL common code
26369
26370     OneNAND IPL has common codes for RAM init, load data, and jump to 2nd
26371     bootloader, but it's common code used about 300~400 bytes. So board
26372     specific codes, such as lowlevel_init, can't has enough code. It make
26373     a difficult to implement OneNAND IPL.
26374
26375     his patch make this common code as small as possible. and give
26376     lowlevel_init can have more codes.
26377
26378     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26379     Signed-off-by: Scott Wood <scottwood@freescale.com>
26380
26381 commit 16f2f5a351004129e79e79816697a367fd9e5446
26382 Author: Wolfgang Grandegger <wg@grandegger.com>
26383 Date:   Wed Feb 11 18:38:24 2009 +0100
26384
26385     Add multi-chip NAND support for the TQM8548 modules
26386
26387     This patches configures the NAND UPM-FSL driver with multi-chip
26388     support for the Micron MT29F8G08FAB NAND flash memory on the
26389     TQM8548 modules.
26390
26391     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26392     Signed-off-by: Scott Wood <scottwood@freescale.com>
26393
26394 commit 33846df28fa1f4cf96a96c18142d48d813caa892
26395 Author: Wolfgang Grandegger <wg@grandegger.com>
26396 Date:   Wed Feb 11 18:38:23 2009 +0100
26397
26398     Add wait flags to support board/chip specific delays
26399
26400     The NAND flash on the TQM8548_BE modules requires a short delay after
26401     running the UPM pattern like the MPC8360ERDK board does. The TQM8548_BE
26402     requires a further short delay after writing out a buffer. Normally the
26403     R/B pin should be checked, but it's not connected on the TQM8548_BE.
26404     The corresponding Linux FSL UPM driver uses similar delay points at the
26405     same locations. To manage these extra delays in a more general way, I
26406     introduced the "wait_flags" field allowing the board-specific driver to
26407     specify various types of extra delay.
26408
26409     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26410     Signed-off-by: Scott Wood <scottwood@freescale.com>
26411
26412 commit 06e9f7df054d26d7f49c56bf9a6844b193ad6313
26413 Author: Wolfgang Grandegger <wg@grandegger.com>
26414 Date:   Wed Feb 11 18:38:22 2009 +0100
26415
26416     Add support for TQM-specific chip select logic to FSL-UPM
26417
26418     For the NAND chips on the TQM8548 modules, a special chip-select logic is
26419     used. It uses dedicated address lines to be set via UPM machine address
26420     register (mar). This patch adds such support to the FSL-UPM driver.
26421
26422     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26423     Signed-off-by: Scott Wood <scottwood@freescale.com>
26424
26425 commit e93c1c169d49eda7babad9c781f541e2e34f0ff0
26426 Author: Wolfgang Grandegger <wg@grandegger.com>
26427 Date:   Wed Feb 11 18:38:21 2009 +0100
26428
26429     Add multi chip support to the FSL-UPM driver
26430
26431     This patch adds support for multi-chip NAND devices to the FSL-UPM
26432     driver. The "dev_ready" callback of the "struct fsl_upm_nand" is now
26433     called with the argument "chip_nr" to allow testing the proper chip
26434     select line. The NAND support of the MPC8360ERDK is updated as well.
26435     No other boards are currently using the FSL UPM driver.
26436
26437     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26438     Signed-off-by: Scott Wood <scottwood@freescale.com>
26439
26440 commit 672ed2aee91b4856f6671fc72cd34168d8f1b624
26441 Author: Wolfgang Grandegger <wg@grandegger.com>
26442 Date:   Wed Feb 11 18:38:20 2009 +0100
26443
26444     Enable multi chip support in the NAND layer
26445
26446     This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer.
26447     Multi-chips devices are displayed as shown:
26448
26449       Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB
26450
26451     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26452     Signed-off-by: Scott Wood <scottwood@freescale.com>
26453
26454 commit 74398b23f9c2ffdc137fd92910a46e3333fb93f9
26455 Author: Mike Frysinger <vapier@gentoo.org>
26456 Date:   Sat Oct 11 21:58:33 2008 -0400
26457
26458     Blackfin: put memory into self-refresh before/after programming clocks
26459
26460     When initializing the core clocks, stick external memory into self-refresh.
26461     This gains us a few cool things:
26462      - support suspend-to-RAM with Linux
26463      - reprogram clocks automatically when doing "go" on u-boot.bin in RAM
26464      - make sure settings are stable before flashing new version
26465      - finally fully unify initialize startup code path between LDR/non-LDR
26466
26467     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26468
26469 commit d347d572ab1f2d47bf257c9f7ca2e602038a136b
26470 Author: Mike Frysinger <vapier@gentoo.org>
26471 Date:   Sat Oct 11 21:56:08 2008 -0400
26472
26473     Blackfin: do not program voltage regulator on parts that do not have one
26474
26475     Some newer Blackfins (like the BF51x) do not have an on-chip voltage
26476     regulator, so do not attempt to program the memory as if it does.
26477
26478     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26479
26480 commit 0d4f24b70f7a979f58174f3eb271874950b551b6
26481 Author: Mike Frysinger <vapier@gentoo.org>
26482 Date:   Sun Jun 1 01:28:24 2008 -0400
26483
26484     Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers
26485
26486     If the board config does not specify an explicit EBIU_SDBCTL value, set it
26487     up with sane values based on other configuration options.
26488
26489     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26490
26491 commit 3986e981f565c08f10c7e526af8cb518d741c349
26492 Author: Mike Frysinger <vapier@gentoo.org>
26493 Date:   Sat Dec 6 18:06:58 2008 -0500
26494
26495     Blackfin: handle reboot anomaly 432
26496
26497     Workaround anomaly 432:
26498     The bfrom_SysControl() firmware function does not clear the SIC_IWR1
26499     register before executing the PLL programming sequence.  Therefore, any
26500     interrupt enabled in the SIC_IWR1 register prior to the call to
26501     bfrom_SysControl() can prematurely terminate the idle sequence required
26502     for the PLL to relock properly. SIC_IWR0 is properly handled.
26503
26504     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26505
26506 commit 7e1d212b6da492c6ea32c62af92e185284f41291
26507 Author: Mike Frysinger <vapier@gentoo.org>
26508 Date:   Sat Oct 18 04:04:49 2008 -0400
26509
26510     Blackfin: kill off LDR jump block
26511
26512     The Boot ROM uses EVT1 as the entry point so set that rather than having
26513     to use a tiny jump block in the default EVT1 location.
26514
26515     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26516
26517 commit a75fa148d60b1975403441e45565621bba50d2d9
26518 Author: Mike Frysinger <vapier@gentoo.org>
26519 Date:   Tue Jan 6 10:00:48 2009 -0500
26520
26521     Blackfin: simplify symbol_lookup() a bit
26522
26523     No need to skip a byte as the symbol table handles this.
26524
26525     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26526
26527 commit 59f0978a7e78d20277ddbde7caf0ea877f3cfd98
26528 Author: Mike Frysinger <vapier@gentoo.org>
26529 Date:   Sat Feb 7 05:43:21 2009 -0500
26530
26531     Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits
26532
26533     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26534
26535 commit 58130f8920151d9e8942bbdf3388f2defb47e415
26536 Author: Mike Frysinger <vapier@gentoo.org>
26537 Date:   Sat Feb 7 05:41:17 2009 -0500
26538
26539     Blackfin: drop SPORT_TX read helper macros
26540
26541     The SPORT_TX registers cannot be read (the hardware will trigger an error),
26542     so drop the read helper macros.
26543
26544     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26545
26546 commit 820b076c449688bcd4af6db5a33ae424d1a60d0e
26547 Author: Mike Frysinger <vapier@gentoo.org>
26548 Date:   Sat Feb 7 05:25:35 2009 -0500
26549
26550     Blackfin: unify duplicate CPU port definitions
26551
26552     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26553
26554 commit 744fd240d181b0b05b1436e1b655c9a62526c752
26555 Author: Mike Frysinger <vapier@gentoo.org>
26556 Date:   Fri Feb 6 00:59:50 2009 -0500
26557
26558     Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX
26559
26560     With the new CONFIG_XXX system and CONFIG_CMD_XXX handling, these defines
26561     are no longer used/needed.
26562
26563     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26564
26565 commit 45c48953e8a4038bd49c46813fcff5a207867ae4
26566 Author: Mike Frysinger <vapier@gentoo.org>
26567 Date:   Mon Oct 6 04:01:26 2008 -0400
26568
26569     Blackfin: print out Flash: before checking it
26570
26571     If there is some problem in the flash init/checking code, it's nicer to see
26572     the message "Flash:" before crashing.  This way the source of the problem
26573     is a bit more straightforward.
26574
26575     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26576
26577 commit 1c7a79a04eb916f685f7275520b5eea6968a1559
26578 Author: Mike Frysinger <vapier@gentoo.org>
26579 Date:   Thu Aug 7 15:33:09 2008 -0400
26580
26581     Blackfin: safely flush data caches when in writeback mode
26582
26583     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26584
26585 commit c06f2b13022703611bc3e512bd34f9014a46f448
26586 Author: Mike Frysinger <vapier@gentoo.org>
26587 Date:   Thu Aug 7 13:21:48 2008 -0400
26588
26589     Blackfin: update lockbox api according to latest documentation
26590
26591     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26592
26593 commit 2decc2a8d17a5397cb5956e46c8466c736e305a2
26594 Author: Mike Frysinger <vapier@gentoo.org>
26595 Date:   Sat Oct 11 21:49:06 2008 -0400
26596
26597     Blackfin: mark bfin_reset static
26598
26599     The function is only used locally, so mark it static.
26600
26601     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26602
26603 commit 974473caa732f63312687ef2bd2d22dad8e99b9a
26604 Author: Sonic Zhang <Sonic.Zhang@analog.com>
26605 Date:   Fri Mar 20 19:28:20 2009 -0400
26606
26607     Blackfin: spi: there is no PORTJ_FER MMR on BF537
26608
26609     Since the PORTJ on the BF537 is peripheral-only (no GPIO functionality),
26610     then there is no PORTJ_FER register for us to worry about.
26611
26612     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
26613     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26614
26615 commit e82b762f293debc53c5afa90f37264f6b07520f9
26616 Author: Mike Frysinger <vapier@gentoo.org>
26617 Date:   Tue Mar 17 13:58:23 2009 -0400
26618
26619     Blackfin: fix jtag console tstc
26620
26621     The jtag tstc operation was checking the hardware to see if data is
26622     available from it (which is fine for the jtag getc operation), but the
26623     higher layers need to know whether any data is available.  Since we have
26624     to read up to 4 bytes at a time from the hardware, the higher layers need
26625     to know they can consume the cached bytes as well.
26626
26627     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26628
26629 commit bc683f58b1f1d8d20546fe019483967a51a49df1
26630 Author: Mike Frysinger <vapier@gentoo.org>
26631 Date:   Sun Feb 22 16:23:41 2009 -0500
26632
26633     Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...)
26634
26635     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26636
26637 commit 8996d1608acb8f59fcb186dc7ed7d87f8fee1297
26638 Author: Mike Frysinger <vapier@gentoo.org>
26639 Date:   Sun Feb 22 16:02:27 2009 -0500
26640
26641     Blackfin: unify net-related init code
26642
26643     Unify all of the net-related init code in the common Blackfin board init
26644     code to clean up the ifdef mess a bit.
26645
26646     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26647
26648 commit c6ea30e52ea82af4858d2b6f99e0fd2ea276d657
26649 Author: Mike Frysinger <vapier@gentoo.org>
26650 Date:   Wed Feb 18 12:51:48 2009 -0500
26651
26652     Blackfin: fix SWRST/SYSCR register sizes
26653
26654     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26655
26656 commit a9d6777d39154978b9ef9c682b2627a3480b194c
26657 Author: Mike Frysinger <vapier@gentoo.org>
26658 Date:   Wed Feb 18 12:51:31 2009 -0500
26659
26660     Blackfin: update anomaly lists
26661
26662     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26663
26664 commit 4d7c32dad2e787f890ebcd51bfb723a126913c90
26665 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26666 Date:   Thu Mar 19 18:31:38 2009 +0100
26667
26668     avr32: fix cacheflush.h location introducted by d8f2aa3298610b
26669
26670     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26671     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26672
26673 commit 3a3baf3ee61e6b28af3b49ebabc9ab4f6015aa48
26674 Author: Eric Schumann <E.Schumann@phytec.de>
26675 Date:   Sat Mar 21 09:59:34 2009 -0400
26676
26677     Make flash protection work, when the environment is in EEPROM
26678
26679     On the pcm030 the environment is located in the onboard EEPROM. But we want
26680     to handle flash sector protection in a safe manner. So we must read the
26681     unlock environment variable from EEPROM instead from flash.
26682
26683     This patch is required as long the evironment is saved into the EEPROM.
26684
26685     Stefan: Additional change as suggested by Wolfgang, use bigger char array
26686     (instead of 4).
26687
26688     Signed-off-by: Eric Schumann <E.Schumann@phytec.de>
26689     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
26690     Acked-by: Wolfgang Denk <wd@denx.de>
26691     Signed-off-by: Stefan Roese <sr@denx.de>
26692
26693 commit de3ce8c59f48f99779d7d7379a5432ded12ec06c
26694 Author: Jon Smirl <jonsmirl@gmail.com>
26695 Date:   Sat Mar 21 11:17:56 2009 -0400
26696
26697     Add define for mpc5200 CDM_CLK_ENA
26698
26699     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
26700
26701 commit df486b1fa3f750b153eac7daa0b3bf1f594e5098
26702 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
26703 Date:   Sun Mar 22 14:48:16 2009 +0100
26704
26705     at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.
26706
26707     AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed.
26708
26709     The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board.
26710     It is essentially the same, with a few minor differences.
26711
26712     Here is the chip page on Atmel website:
26713     http://www.atmel.com/dyn/products/product_card.asp?part_id=4337
26714
26715     Signed-off-by: Justin Waters <justin.waters@timesys.com>
26716     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
26717     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26718
26719 commit 118d168035cc93f586da4812c89cb153eb9f4243
26720 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26721 Date:   Sun Mar 22 14:28:14 2009 +0100
26722
26723     cmc_pu2: fix implicit declaration of function 'eth_setenv_enetaddr'
26724
26725     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26726
26727 commit 176c4a982c6531f96426afaa1126cf9a5e2d5e03
26728 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26729 Date:   Sun Mar 22 14:28:13 2009 +0100
26730
26731     cmc_pu2: fix misc_init_r prototype
26732
26733     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26734
26735 commit 53158aea995221706b42c7bad9f717b31ae20414
26736 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26737 Date:   Sun Jan 11 03:32:01 2009 +0100
26738
26739     at91sam9xeek: fix soc name
26740
26741     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26742
26743 commit 74c076d6c33d6d42ab065541a38383587879e7b7
26744 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26745 Date:   Sun Mar 22 10:22:34 2009 +0100
26746
26747     at91sam9/at91cap: move nand drivers to drivers/mtd/nand
26748
26749     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26750
26751 commit 163966087d62680547f188a93c61d01c8155254e
26752 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26753 Date:   Sat Mar 21 21:08:01 2009 +0100
26754
26755     atmel/at91/boards: compile dataflash partition only when dataflash is
26756
26757     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26758
26759 commit e2c0476f958f8e0b269a1118f4ba4a5cd475aa56
26760 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26761 Date:   Sat Mar 21 21:08:00 2009 +0100
26762
26763     at91sam9/at91cap: move common macb initialisation to cpu
26764
26765     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26766
26767 commit f3f91f886bc8927fd692ac411b7423a87ffec532
26768 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26769 Date:   Sat Mar 21 21:08:00 2009 +0100
26770
26771     at91sam9/at91cap: move common usb host initialisation to cpu
26772
26773     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26774
26775 commit a484b00b86e72ac6da6ee4fce13dbc6b256672fe
26776 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26777 Date:   Sat Mar 21 21:08:00 2009 +0100
26778
26779     at91sam9/at91cap: move common led management to cpu
26780
26781     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26782
26783 commit 7ebafb7ec1a0285af8380623c009576f92583b98
26784 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26785 Date:   Sat Mar 21 21:07:59 2009 +0100
26786
26787     at91sam9/at91cap: move common spi initialisation to cpu
26788
26789     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26790
26791 commit 1332a2a0694c8e10a5bade397cf83645b2c3fd7e
26792 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26793 Date:   Sat Mar 21 21:07:59 2009 +0100
26794
26795     at91sam9/at91cap: move common serial initialisation to cpu
26796
26797     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26798
26799 commit e60beb13cf0135dc71c541021487b5ccc4d269cb
26800 Author: Wolfgang Denk <wd@denx.de>
26801 Date:   Sat Mar 21 22:04:41 2009 +0100
26802
26803     Prepare 2009.03
26804
26805     Update CHANGELOG
26806
26807     Signed-off-by: Wolfgang Denk <wd@denx.de>
26808
26809 commit 9e78dae2b276c5bf9ab92cd85173f6cb92b1b7d5
26810 Author: Vivek Kutal <vivek.kutal@azingo.com>
26811 Date:   Mon Feb 23 21:35:11 2009 +0530
26812
26813     Replaced endpoint numbers with appropriate macros in usbtty.c.
26814
26815     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
26816     Signed-off-by: Remy Bohmer <linux@bohmer.net>
26817
26818 commit faac4fd852e39cb1d7a740801b060e41aeacef1f
26819 Author: Michael Lawnick <ml.lawnick@gmx.de>
26820 Date:   Thu Mar 19 10:06:41 2009 +0100
26821
26822     UBIFS: Missing offset relocation for compressor 'none'
26823
26824     On systems where U-Boot is linked to another address than it really lays
26825     (e.g. backup image), calls via function pointers must be fixed with a
26826     '+= gd->reloc_off'.
26827     This was not done for none_compr in ubifs_compressors_init() what leads
26828     to system crash on ubifsmount command.
26829
26830     Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de>
26831     Acked-by: Stefan Roese <sr@denx.de>
26832
26833 commit ce6d0c8de031f345bde745f3b855082adf1c4e45
26834 Author: Stefan Roese <sr@denx.de>
26835 Date:   Thu Mar 19 15:35:50 2009 +0100
26836
26837     UBIFS: Add UBIFS commands
26838
26839     This patchset adds these UBIFS related commands:
26840
26841     - ubifsmount
26842       Mount an UBIFS volume
26843
26844     - ubifsls
26845       List a directory of the mounted UBIFS volume
26846
26847     - ubifsload
26848       Load a file from the mounted UBIFS volume to memory
26849
26850     Signed-off-by: Stefan Roese <sr@denx.de>
26851
26852 commit 9eefe2a2b37a838558e3d213a9f5519503d0c180
26853 Author: Stefan Roese <sr@denx.de>
26854 Date:   Thu Mar 19 15:35:05 2009 +0100
26855
26856     UBIFS: Implement read-only UBIFS support in U-Boot
26857
26858     The U-Boot UBIFS implementation is largely a direct copy from the current
26859     Linux version (2.6.29-rc6). As already done in the UBI version we have an
26860     "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock()
26861     ...). This makes it possible to use the original Linux code with very
26862     little changes. And by this we can better update to later Linux versions.
26863
26864     I removed some of the Linux features that are not used in the U-Boot
26865     version (e.g. garbage-collection, write support).
26866
26867     Signed-off-by: Stefan Roese <sr@denx.de>
26868     CC: Artem Bityutskiy <dedekind@infradead.org>
26869     CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
26870
26871 commit b1b4e89a0f3b75854c39a62cae41bad56d210adf
26872 Author: Stefan Roese <sr@denx.de>
26873 Date:   Thu Mar 19 15:34:56 2009 +0100
26874
26875     Add LZO decompressor support
26876
26877     This patch adds LZO decompression support to U-Boot. It is needed for
26878     the upcoming UBIFS support, since UBIFS uses LZO as default compressor/
26879     decompressor. Since we only support read-only in UBIFS, only the
26880     decompressor is needed.
26881
26882     All this is copied with minor changes from the current Linux kernel
26883     version (2.6.28-rc8).
26884
26885     This patch only implements this LZO decompressor support for PPC.
26886     Other platforms using UBIFS will have to add the required
26887     "include/asm/unaligned.h" as well. It should be fairly easy to copy this
26888     from the Linux source tree as I have done it for PPC in this patch.
26889
26890     Signed-off-by: Stefan Roese <sr@denx.de>
26891
26892 commit 68d7d65100e84df00bca971c114092731b441090
26893 Author: Stefan Roese <sr@denx.de>
26894 Date:   Thu Mar 19 13:30:36 2009 +0100
26895
26896     Separate mtdparts command from jffs2
26897
26898     Currently the mtdparts commands are included in the jffs2 command support.
26899     This doesn't make sense anymore since other commands (e.g. UBI) use this
26900     infrastructure as well now. This patch separates the mtdparts commands from
26901     the jffs2 commands making it possible to only select mtdparts when no JFFS2
26902     support is needed.
26903
26904     Signed-off-by: Stefan Roese <sr@denx.de>
26905     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26906
26907 commit 02a301cd5087eaffdf456e0a5cec1100c4d9a398
26908 Author: Stefan Roese <sr@denx.de>
26909 Date:   Wed Feb 25 12:11:15 2009 +0100
26910
26911     powerpc: Only use eth_getenv_enetaddr() if networking is enabled
26912
26913     Signed-off-by: Stefan Roese <sr@denx.de>
26914
26915 commit 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5
26916 Author: Grzegorz Bernacki <gjb@semihalf.com>
26917 Date:   Tue Mar 17 10:06:40 2009 +0100
26918
26919     Add support for the digsy MTC board.
26920
26921     This is the InterControl custom device based on the MPC5200B chip.
26922
26923     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
26924
26925 commit ff7dc067369e30066744f096995aef7d97574d15
26926 Author: Stefan Roese <sr@denx.de>
26927 Date:   Mon Feb 23 16:52:36 2009 +0100
26928
26929     powerpc: Fix compilation warning in board.c
26930
26931     Fix this warning:
26932
26933     board.c: In function 'board_init_r':
26934     board.c:653: warning: unused variable 'i'
26935     board.c:651: warning: unused variable 'e'
26936
26937     Signed-off-by: Stefan Roese <sr@denx.de>
26938
26939 commit 9cd690160d3ce1a7fb4ceeee6c99cedb1ac1d49c
26940 Author: Stefan Roese <sr@denx.de>
26941 Date:   Mon Feb 23 16:42:51 2009 +0100
26942
26943     ppc4xx: Don't write the MAC address into the internal SoC registers
26944
26945     Remove this code. It's not needed. The 4xx EMAC driver stores the MAC
26946     addresses into the SoC registers instead.
26947
26948     Signed-off-by: Stefan Roese <sr@denx.de>
26949
26950 commit bb57ad4be76d0e2e7f9ec56678235cc9872ff40f
26951 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26952 Date:   Fri Feb 20 10:19:19 2009 +0100
26953
26954     ppc4xx: Use correct io accessors for esd 405/440 boards
26955
26956     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
26957     macros. Also volatile pointer references are replaced by the
26958     new accessors.
26959
26960     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
26961     Signed-off-by: Stefan Roese <sr@denx.de>
26962
26963 commit 049216f045fd8e0f45bcef121c2bb1c7d3de6988
26964 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26965 Date:   Fri Feb 20 10:19:18 2009 +0100
26966
26967     ppc4xx: Use correct io accessors for esd 405 boards
26968
26969     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
26970     macros. Also volatile pointer references are replaced by the
26971     new accessors.
26972
26973     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
26974     Signed-off-by: Stefan Roese <sr@denx.de>
26975
26976 commit a59205d1519375d027f97a545ad642ab20fce6f8
26977 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26978 Date:   Fri Feb 20 10:19:17 2009 +0100
26979
26980     ppc4xx: Cleanup linker scripts of esd 4xx boards
26981
26982     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
26983     Signed-off-by: Stefan Roese <sr@denx.de>
26984
26985 commit 2f103ee284e68934a648732db5e0b6ceb4a1ed8f
26986 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26987 Date:   Fri Feb 20 10:19:16 2009 +0100
26988
26989     ppc4xx: Update TEXT_BASE for DASA_SIM boards
26990
26991     Fix building DASA_SIM boards by increasing U-Boot's size in flash.
26992
26993     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
26994     Signed-off-by: Stefan Roese <sr@denx.de>
26995
26996 commit 09db8f4de6805f1dde510c167f20e56a5405d29e
26997 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26998 Date:   Fri Feb 20 10:19:15 2009 +0100
26999
27000     ppc4xx: DU405 maintenance fix
27001
27002     -strip unused features
27003     -fix resetting phy
27004
27005     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
27006     Signed-off-by: Stefan Roese <sr@denx.de>
27007
27008 commit 75511b47ac2647be48218dbb93af05b21f404f67
27009 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27010 Date:   Fri Feb 20 10:19:14 2009 +0100
27011
27012     ppc4xx: Abort autoboot only by space key on CPCI405 boards
27013
27014     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27015     Signed-off-by: Stefan Roese <sr@denx.de>
27016
27017 commit e17ee157ca9ff0d4cc5841d06c4b70c1603df29c
27018 Author: Graeme Russ <graeme.russ@gmail.com>
27019 Date:   Tue Feb 24 21:14:56 2009 +1100
27020
27021     Add basic relocation to i386 port
27022
27023     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
27024
27025 commit 8c63d47651f77d9fb887cad433370b866eb0a193
27026 Author: Graeme Russ <graeme.russ@gmail.com>
27027 Date:   Tue Feb 24 21:14:45 2009 +1100
27028
27029     Implement SC520 timers
27030
27031     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
27032
27033 commit 6d7f610b09f813b1239eedcbfe921cfd439aea25
27034 Author: Graeme Russ <graeme.russ@gmail.com>
27035 Date:   Tue Feb 24 21:14:32 2009 +1100
27036
27037     Factor out SC520 sub-features
27038
27039     Moved sub-features of the SC520 code which is currently selectively compiled
27040     using #ifdef out of sc520.c into individual files selectively compiled via
27041     the makefile
27042
27043     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
27044
27045 commit abf0cd3dff227cfb6e82ad13be62e28e6e89d5df
27046 Author: Graeme Russ <graeme.russ@gmail.com>
27047 Date:   Tue Feb 24 21:13:40 2009 +1100
27048
27049     Rewrite i386 interrupt handling
27050
27051     Rewrite interrupt handling functionality for the i386 port. Separated
27052     functionality into separate CPU and Architecture components.
27053
27054     It appears as if the i386 interrupt handler functionality was intended
27055     to allow multiple handlers to be installed for a given interrupt.
27056     Unfortunately, this functionality was not fully implemented and also
27057     had the problem that irq_free_handler() does not allow the passing
27058     of the handler function pointer and therefore could never be used to
27059     free specific handlers that had been installed for a given IRQ.
27060
27061     There were also various issues with array bounds not being fully
27062     tested.
27063
27064     I had two objectives in mind for the new implementation:
27065
27066     1) Keep the implementation as similar as possible to existing
27067        implementations. To that end, I have used the leon2/3
27068        implementations as the reference
27069
27070     2) Seperate CPU and Architecture specific elements. All specific i386
27071        interrupt functionality is now in cpu/i386/ with the high level
27072        API and architecture specific code in lib_i386. Functionality
27073        specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has
27074        been further split out into an individual file to allow for the
27075        implementation of the PIC architecture of the SC520 CPU (supports
27076        more IRQs)
27077
27078     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
27079
27080 commit ece444b42b71eb5bce34a24ec584573b3c8c4a98
27081 Author: Graeme Russ <graeme.russ@gmail.com>
27082 Date:   Tue Feb 24 21:12:35 2009 +1100
27083
27084     Move ali512x.h
27085
27086     Moved ali512x.h from include/asm-i386/ic/ to /include
27087
27088     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
27089
27090 commit 6d83e3ac61dcdbcb7f04664309a9689fe01c5704
27091 Author: Graeme Russ <graeme.russ@gmail.com>
27092 Date:   Tue Feb 24 21:12:20 2009 +1100
27093
27094     Rename SC520 Configuration Options
27095
27096     Options are now all uniformly CONFIG_SYS_SC520_<option>
27097
27098     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
27099
27100 commit f62fb99941c625605aa16a0097b396a5c16d2c88
27101 Author: Trent Piepho <xyzzy@speakeasy.org>
27102 Date:   Wed Feb 18 15:22:05 2009 -0800
27103
27104     Fix all linker script to handle all rodata sections
27105
27106     A recent gcc added a new unaligned rodata section called '.rodata.str1.1',
27107     which needs to be added the the linker script.  Instead of just adding this
27108     one section, we use a wildcard ".rodata*" to get all rodata linker section
27109     gcc has now and might add in the future.
27110
27111     However, '*(.rodata*)' by itself will result in sub-optimal section
27112     ordering.  The sections will be sorted by object file, which causes extra
27113     padding between the unaligned rodata.str.1.1 of one object file and the
27114     aligned rodata of the next object file.  This is easy to fix by using the
27115     SORT_BY_ALIGNMENT command.
27116
27117     This patch has not be tested one most of the boards modified.  Some boards
27118     have a linker script that looks something like this:
27119
27120     *(.text)
27121     . = ALIGN(16);
27122     *(.rodata)
27123     *(.rodata.str1.4)
27124     *(.eh_frame)
27125
27126     I change this to:
27127
27128     *(.text)
27129     . = ALIGN(16);
27130     *(.eh_frame)
27131     *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
27132
27133     This means the start of rodata will no longer be 16 bytes aligned.
27134     However, the boundary between text and rodata/eh_frame is still aligned to
27135     16 bytes, which is what I think the real purpose of the ALIGN call is.
27136
27137     Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
27138
27139 commit 566b652c7cdb0e5e0529bb3d1eaffbd2bf45a032
27140 Author: Mike Frysinger <vapier@gentoo.org>
27141 Date:   Wed Feb 11 18:26:08 2009 -0500
27142
27143     remove bi_enet*addr from global data for all arches
27144
27145     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27146     CC: Ben Warren <biggerbadderben@gmail.com>
27147     CC: Daniel Hellstrom <daniel@gaisler.com>
27148     CC: Michal Simek <monstr@seznam.cz>
27149     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27150     CC: Scott McNutt <smcnutt@psyent.com>
27151     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27152
27153 commit eb85aa594c1b57a1e3be9689b65171a137a36432
27154 Author: Mike Frysinger <vapier@gentoo.org>
27155 Date:   Wed Feb 11 20:07:19 2009 -0500
27156
27157     ppc: mark global bi_enet*addr as legacy
27158
27159     The environment is the canonical storage location of the mac address, so
27160     we're killing off the global data location and moving everything to
27161     querying the env directly.
27162
27163     In the ppc case, these things are part of the legacy ABI, so keep them
27164     around but mark them as legacy so no new code will touch them.
27165
27166     Also stop calling load_sernum_ethaddr() since all boards now implement
27167     this as a stub.
27168
27169     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27170     CC: Ben Warren <biggerbadderben@gmail.com>
27171
27172 commit 9c150102bc1de375d36d97a1cc2dd0e9639b15df
27173 Author: Mike Frysinger <vapier@gentoo.org>
27174 Date:   Wed Feb 11 20:09:52 2009 -0500
27175
27176     boards: get mac address from env and move load_sernum_ethaddr() to board init
27177
27178     The environment is the canonical storage location of the mac address, so
27179     we're killing off the global data location and moving everything to
27180     querying the env directly.
27181
27182     Rather than have common ppc code call a board-specific function like
27183     load_sernum_ethaddr(), have each board call it in its own board-specific
27184     misc_init_r() function.
27185
27186     The boards that get converted here are:
27187         - kup4k/kup4x
27188         - pcs440ep
27189         - tqm8xx
27190
27191     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27192     CC: Ben Warren <biggerbadderben@gmail.com>
27193     CC: Stefan Roese <sr@denx.de>
27194
27195 commit 92b50ffef978f05858a0ff4cbe88430bc51a28a2
27196 Author: Mike Frysinger <vapier@gentoo.org>
27197 Date:   Wed Feb 11 19:55:01 2009 -0500
27198
27199     cmc_pu2: get mac address from environment
27200
27201     The environment is the canonical storage location of the mac address, so
27202     we're killing off the global data location and moving everything to
27203     querying the env directly.
27204
27205     Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to
27206     handle this board specially in common ARM code.
27207
27208     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27209     CC: Ben Warren <biggerbadderben@gmail.com>
27210
27211 commit d8d21e699d7fcfb6ab11635110266dd09b7edc62
27212 Author: Mike Frysinger <vapier@gentoo.org>
27213 Date:   Mon Feb 16 18:03:14 2009 -0500
27214
27215     boards: move board_get_enetaddr() into board-specific init
27216
27217     The environment is the canonical storage location of the mac address, so
27218     we're killing off the global data location and moving everything to
27219     querying the env directly.
27220
27221     Rather than have the common ppc code have board-specific hooks, move the
27222     board_get_enetaddr() function into the board-specific init functions.
27223
27224     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27225     CC: Ben Warren <biggerbadderben@gmail.com>
27226
27227 commit f11e6ff5b1859d9213f0d501b3309e065f487543
27228 Author: Mike Frysinger <vapier@gentoo.org>
27229 Date:   Wed Feb 11 19:39:55 2009 -0500
27230
27231     arm: get mac address from environment
27232
27233     The environment is the canonical storage location of the mac address, so
27234     we're killing off the global data location and moving everything to
27235     querying the env directly.
27236
27237     Some warts are remaining and should be killed off (by moving the func to
27238     the appropriate board init code):
27239         - davinci_eth_set_mac_addr
27240         - cs8900_get_enetaddr
27241         - smc_set_mac_addr
27242
27243     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27244     CC: Ben Warren <biggerbadderben@gmail.com>
27245
27246 commit 0107cf66f7346e8c7d6cf0fe99d2f265134afd59
27247 Author: Mike Frysinger <vapier@gentoo.org>
27248 Date:   Wed Feb 11 19:36:20 2009 -0500
27249
27250     nx823: get mac address from environment
27251
27252     The environment is the canonical storage location of the mac address, so
27253     we're killing off the global data location and moving everything to
27254     querying the env directly.
27255
27256     For the nx823, the serial number is moved out of load_sernum_ethaddr() and
27257     into misc_init_r() as is the env setup.  This lets us kill off the former
27258     function in the process.
27259
27260     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27261     CC: Ben Warren <biggerbadderben@gmail.com>
27262
27263 commit 19b5b533ccd522abeb501d510750693c35e20456
27264 Author: Mike Frysinger <vapier@gentoo.org>
27265 Date:   Wed Feb 11 18:27:18 2009 -0500
27266
27267     lib_*/board.c: do not initialize bi_enet*addr in global data
27268
27269     Since everyone is using the environment for mac address storage, there is
27270     no point in seeding the global data.
27271
27272     The arches that are converted here:
27273         i386
27274         m68k
27275         microblaze
27276         mips
27277         nios
27278         nios2
27279         sh
27280         sparc
27281
27282     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27283     CC: Ben Warren <biggerbadderben@gmail.com>
27284     CC: Daniel Hellstrom <daniel@gaisler.com>
27285     CC: Michal Simek <monstr@seznam.cz>
27286     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27287     CC: Scott McNutt <smcnutt@psyent.com>
27288     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27289
27290 commit 740e8ba7d475c49c1b76058e1bf354e376b5c4e0
27291 Author: Mike Frysinger <vapier@gentoo.org>
27292 Date:   Wed Feb 11 19:19:54 2009 -0500
27293
27294     npe: get mac address from environment
27295
27296     The environment is the canonical storage location of the mac address, so
27297     we're killing off the global data location and moving everything to
27298     querying the env directly.
27299
27300     The resulting code can also be simplified even further.
27301
27302     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27303     CC: Stefan Roese <sr@denx.de>
27304     CC: Ben Warren <biggerbadderben@gmail.com>
27305
27306 commit 6bacfa6a8e9b264d37c1262fc1f3e948d1feab81
27307 Author: Mike Frysinger <vapier@gentoo.org>
27308 Date:   Wed Feb 11 19:18:41 2009 -0500
27309
27310     cpu/: get mac address from environment
27311
27312     The environment is the canonical storage location of the mac address, so
27313     we're killing off the global data location and moving everything to
27314     querying the env directly.
27315
27316     The cpus that get converted here:
27317         at91rm9200
27318         mpc512x
27319         mpc5xxx
27320         mpc8260
27321         mpc8xx
27322         ppc4xx
27323
27324     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27325     CC: Ben Warren <biggerbadderben@gmail.com>
27326     CC: John Rigby <jrigby@freescale.com>
27327     CC: Stefan Roese <sr@denx.de>
27328
27329 commit 03f3d8d3b39cf85c0ce7ca903b436701e8aa610b
27330 Author: Mike Frysinger <vapier@gentoo.org>
27331 Date:   Wed Feb 11 19:09:54 2009 -0500
27332
27333     lan91c96/smc91111/smc911x: get mac address from environment
27334
27335     The environment is the canonical storage location of the mac address, so
27336     we're killing off the global data location and moving everything to
27337     querying the env directly.
27338
27339     Also, do not bother checking the EEPROM if the env is setup.  This
27340     simplifies the code greatly.
27341
27342     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27343     Signed-off-by: Wolfgang Dnek <wd@denx.de>
27344     CC: Ben Warren <biggerbadderben@gmail.com>
27345     CC: Rolf Offermanns <rof@sysgo.de>
27346     CC: Erik Stahlman <erik@vt.edu>
27347     CC: Daris A Nevil <dnevil@snmc.com>
27348     CC: Sascha Hauer <s.hauer@pengutronix.de>
27349
27350 commit c527ce92511cbf723c2ca77bee1cf9ecf83dac81
27351 Author: Mike Frysinger <vapier@gentoo.org>
27352 Date:   Wed Feb 11 19:14:09 2009 -0500
27353
27354     sh_eth: get mac address from environment
27355
27356     The environment is the canonical storage location of the mac address, so
27357     we're killing off the global data location and moving everything to
27358     querying the env directly.
27359
27360     The sh_eth driver can also be simplified a bit by using enetaddr member of
27361     the eth_device structure.
27362
27363     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27364     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27365     CC: Carlos Munoz <carlos@kenati.com>
27366     CC: Ben Warren <biggerbadderben@gmail.com>
27367
27368 commit 0a5238cea90665c230297a8fd77bb0b3b61ca177
27369 Author: Mike Frysinger <vapier@gentoo.org>
27370 Date:   Wed Feb 11 19:06:09 2009 -0500
27371
27372     cs8900: get mac address from environment
27373
27374     The environment is the canonical storage location of the mac address, so
27375     we're killing off the global data location and moving everything to
27376     querying the env directly.
27377
27378     The cs8900 driver also changes slightly in that the hardware is not
27379     consulted if the mac address in the env is sane.
27380
27381     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27382     CC: Marius Groeger <mgroeger@sysgo.de>
27383     CC: Ben Warren <biggerbadderben@gmail.com>
27384
27385 commit c4b8762f11d337e6a9d90c227b2871d65d372469
27386 Author: Mike Frysinger <vapier@gentoo.org>
27387 Date:   Wed Feb 11 19:04:25 2009 -0500
27388
27389     bcm570x: get mac address from environment
27390
27391     The environment is the canonical storage location of the mac address, so
27392     we're killing off the global data location and moving everything to
27393     querying the env directly.
27394
27395     Since the address is in the PLM_DEVICE_BLOCK structure already, there is
27396     no need to pass the NodeAddress as a second parameter.  So drop the second
27397     argument to the LM_SetMacAddress() function (and update the tigon3 driver
27398     accordingly).
27399
27400     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27401     CC: Ben Warren <biggerbadderben@gmail.com>
27402
27403 commit d3f871482f06f6a4eaf4a3fafde84846bad87b4f
27404 Author: Mike Frysinger <vapier@gentoo.org>
27405 Date:   Wed Feb 11 19:01:26 2009 -0500
27406
27407     drivers/net/: get mac address from environment
27408
27409     The environment is the canonical storage location of the mac address, so
27410     we're killing off the global data location and moving everything to
27411     querying the env directly.
27412
27413     The drivers that get converted here:
27414         3c589
27415         4xx_enet
27416         dc2114x
27417         dm9000x
27418         enc28j60
27419         fsl_mcdmafec
27420         ks8695eth
27421         mcffec
27422         rtl8019
27423         rtl8169
27424         s3c4510b_eth
27425         xilinx_emac
27426         xilinx_emaclite
27427
27428     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27429     CC: Ben Warren <biggerbadderben@gmail.com>
27430     CC: Rolf Offermanns <rof@sysgo.de>
27431     CC: Stefan Roese <sr@denx.de>
27432     CC: Sascha Hauer <saschahauer@web.de>
27433     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27434     CC: Greg Ungerer <greg.ungerer@opengear.com>
27435     CC: Xue Ligong <lgxue@hotmail.com>
27436     CC: Masami Komiya <mkomiya@sonare.it>
27437     CC: Curt Brune <curt@cucy.com>
27438     CC: Michal SIMEK <monstr@monstr.eu>
27439
27440 commit b6b4625d175019e387e5b0f65a17322a78f6bb90
27441 Author: Mike Frysinger <vapier@gentoo.org>
27442 Date:   Wed Feb 11 18:38:38 2009 -0500
27443
27444     boards: get mac address from environment
27445
27446     The boards that get converted here to use the environment for the mac
27447     address rather than global data:
27448         debris
27449         mgcoge
27450         mgsuvd
27451         muas3001
27452         netstal
27453         pn62
27454         sixnet
27455         vcma9
27456         xilinx (the ones that use xilinx_enet)
27457
27458     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27459     CC: Ben Warren <biggerbadderben@gmail.com>
27460     CC: Sangmoon Kim <dogoil@etinsys.com>
27461     CC: Heiko Schocher <hs@denx.de>
27462     CC: David Mueller <d.mueller@elsoft.ch>
27463     CC: Niklaus Giger <niklaus.giger@netstal.com>
27464     CC: Wolfgang Grandegger <wg@denx.de>
27465     CC: Dave Ellis <DGE@sixnetio.com>
27466     CC: Ricardo Ribalda <ricardo.ribalda@uam.es>
27467
27468 commit 06a0c4381a65ed500c816a05b9ae7b207c3b1d4b
27469 Author: Mike Frysinger <vapier@gentoo.org>
27470 Date:   Wed Feb 11 18:36:45 2009 -0500
27471
27472     AmigaOneG3SE/enet: get mac address from environment
27473
27474     Always use the MAC address that is stored in the environment first before
27475     falling back to the ROM.  This also cuts out any comparison steps: if the
27476     mac in the env is sane, the ROM is never consulted.
27477
27478     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27479     CC: Thomas Frieden <ThomasF@hyperion-entertainment.com>
27480     CC: Ben Warren <biggerbadderben@gmail.com>
27481
27482 commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5
27483 Author: Mike Frysinger <vapier@gentoo.org>
27484 Date:   Wed Feb 11 18:52:38 2009 -0500
27485
27486     nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr()
27487
27488     Since the ethernet layer handles updating of device addresses itself from
27489     the environment, there is no point in calling eth_set_enetaddr().
27490
27491     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27492     CC: Ben Warren <biggerbadderben@gmail.com>
27493
27494 commit 5013533467c1de731c2f0c9beb4b41ce3f07cbeb
27495 Author: Mike Frysinger <vapier@gentoo.org>
27496 Date:   Wed Feb 11 18:54:07 2009 -0500
27497
27498     lynxkdi: get mac address from environment
27499
27500     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27501     CC: Ben Warren <biggerbadderben@gmail.com>
27502
27503 commit 62c93d92f1b6266b2f33c5f403931b51cbd2a246
27504 Author: Mike Frysinger <vapier@gentoo.org>
27505 Date:   Wed Feb 11 18:51:43 2009 -0500
27506
27507     bootvx: get mac address from environment
27508
27509     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27510     CC: Niklaus Giger <niklaus.giger@member.fsf.org>
27511     CC: Ben Warren <biggerbadderben@gmail.com>
27512
27513 commit de2dff6ff89f98c6062f4d224fd434a3ede035d1
27514 Author: Mike Frysinger <vapier@gentoo.org>
27515 Date:   Wed Feb 11 18:50:10 2009 -0500
27516
27517     bdinfo: get mac address from environment
27518
27519     Add a new print_eth() function to automate the eth*addr env var acquisition
27520     and display.  Affects all arches.
27521
27522     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27523     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27524     CC: Scott McNutt <smcnutt@psyent.com>
27525     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27526     CC: Michal Simek <monstr@seznam.cz>
27527     CC: Daniel Hellstrom <daniel@gaisler.com>
27528     CC: Ben Warren <biggerbadderben@gmail.com>
27529
27530 commit 95823ca0773356860e622ee3304a4b7cafcbf19a
27531 Author: Mike Frysinger <vapier@gentoo.org>
27532 Date:   Wed Feb 11 18:23:48 2009 -0500
27533
27534     net: get mac address from environment and use eth util funcs
27535
27536     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27537     CC: Ben Warren <biggerbadderben@gmail.com>
27538
27539 commit 500b6c51e4c41f4562cb48344af98deb7e342731
27540 Author: Mike Frysinger <vapier@gentoo.org>
27541 Date:   Mon Oct 13 15:06:25 2008 -0400
27542
27543     Blackfin: bfin_mac: force boards to setup the MAC themselves
27544
27545     Since the on-chip MAC does not have an eeprom or similar interface, force
27546     all Blackfin boards that use this driver to setup the board data with a
27547     proper MAC.
27548
27549     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27550     CC: Ben Warren <biggerbadderben@gmail.com>
27551
27552 commit 6ff4137f2ad640e4fc8ea1b0455161ddff1f6730
27553 Author: Mike Frysinger <vapier@gentoo.org>
27554 Date:   Wed Feb 11 14:12:34 2009 -0500
27555
27556     doc/README.enetaddr: document proper MAC usage
27557
27558     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27559     CC: Ben Warren <biggerbadderben@gmail.com>
27560
27561 commit 3f6e6993e92fd0658da1746d1c84644612ee520b
27562 Author: Mike Frysinger <vapier@gentoo.org>
27563 Date:   Thu Jan 29 19:43:44 2009 -0500
27564
27565     net: new utility functions for working with enetaddr's
27566
27567     Declare new utility functions for converting between the environment
27568     variables (eth*addr) and the binary MAC address representation.  This way
27569     we can unify all the random places that already do this kind of thing.
27570
27571     The functions in question:
27572         eth_parse_enetaddr - "..." -> {...}
27573         eth_getenv_enetaddr - env -> {...}
27574         eth_setenv_enetaddr - {...} -> env
27575
27576     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27577     CC: Ben Warren <biggerbadderben@gmail.com>
27578
27579 commit b6446b67758ea1e41223f0782924bb73fd0a89d0
27580 Author: Mike Frysinger <vapier@gentoo.org>
27581 Date:   Tue Feb 17 00:00:53 2009 -0500
27582
27583     convert print_IPaddr() to %pI4
27584
27585     Now that our printf functions support the %pI4 modifier like the kernel,
27586     let's drop the inflexible print_IPaddr() function and covert over to the
27587     %pI4 modifier.
27588
27589     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27590     CC: Ben Warren <biggerbadderben@gmail.com>
27591
27592 commit 6c6166f52983dac775e3852f9d0f49d033f27108
27593 Author: Mike Frysinger <vapier@gentoo.org>
27594 Date:   Mon Feb 16 23:21:36 2009 -0500
27595
27596     vsprintf: pull updates from Linux kernel
27597
27598     This brings in support for the %p modifier which allows us to easily print
27599     out things like ip addresses, mac addresses, and pointers.
27600
27601     It also converts the rarely used 'q' length modifier to the common 'L'
27602     modifier when dealing with quad types.
27603
27604     While this new code is a bit larger (~1k .text), most of it should be made
27605     up by converting the existing ip/mac address code to use format modifiers.
27606
27607     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27608
27609 commit a43ea5cc6d612471fbc74f0a26b2bea5864aa1d6
27610 Author: Jon Smirl <jonsmirl@gmail.com>
27611 Date:   Thu Mar 19 23:04:18 2009 -0400
27612
27613     .gitignore for generated files in api_examples directory
27614
27615     Add .gitignore for generated files in api_examples directory
27616
27617     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
27618     Signed-off-by: Wolfgang Denk <wd@denx.de>
27619
27620 commit 40281a9ca21a6b6d7b996b4d4eeaa19026337231
27621 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27622 Date:   Wed Mar 18 12:27:04 2009 +0900
27623
27624     net: sh_eth: Remove sh_eth_reset() from halt function
27625
27626     sh_eth_reset is function to reset Ether IP.
27627     The MAC address is stored in IP, but it is initialized by this function.
27628     OS (e.g. Linux Kernel) can not use this device when initialized.
27629     This revises this problem.
27630
27631     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27632
27633 commit f8853d105da7d69bc92a5b4578f9b85234e558ec
27634 Author: Anatolij Gustschin <agust@denx.de>
27635 Date:   Fri Mar 20 12:45:50 2009 +0100
27636
27637     ppc4xx: Fix bug in PCI outbound map configuration for canyonlands
27638
27639     PCI outbound address map configuration doesn't match the
27640     PCI memory address range covered by appropriate TLB entry
27641     configuration for canyonlands causing machine check
27642     exceptions while accessing PCI memory regions. This patch
27643     provides a fix for this issue.
27644
27645     Kazuaki Ichinohe observed and reported this issue while
27646     testing display output with PCI ATI video card on canyonlands.
27647
27648     Signed-off-by: Anatolij Gustschin <agust@denx.de>
27649     Signed-off-by: Stefan Roese <sr@denx.de>
27650
27651 commit 7a88601a34132548c3c591ea87ab3468b51121b0
27652 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
27653 Date:   Fri Mar 6 10:09:37 2009 -0500
27654
27655     CFI: geometry reversal for STMicro M29W320DT
27656
27657     Follow up to the flash_fixup_stm to fix geometry reversal
27658     on STMicro M29W320ET flash chip. The M29W320DT has 4 erase region.
27659
27660     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
27661     Signed-off-by: Stefan Roese <sr@denx.de>
27662
27663 commit 069f4364d807d7fdea3de7385ad2f8d83c587aec
27664 Author: Mike Frysinger <vapier@gentoo.org>
27665 Date:   Wed Feb 25 17:29:40 2009 -0500
27666
27667     smc911x_eeprom: update register API
27668
27669     The smc911x driver changed the naming convention for its register funcs,
27670     so update the eeprom code accordingly.
27671
27672     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27673     CC: Ben Warren <biggerbadderben@gmail.com>
27674
27675 commit 6a397ef0e6c58caab8bf427d447714bc9b3bb9d4
27676 Author: Grzegorz Bernacki <gjb@semihalf.com>
27677 Date:   Tue Mar 17 10:06:39 2009 +0100
27678
27679     mpc52xx: Get rid of board-specific #ifdef's in cpu/mpc5xxx/ide.c
27680
27681     Total5200 and digsy MTC use I2C port 2 pins as a ATA chip select.
27682     To avoid adding board-specific ifdefs to cpu/mpc5xxx/ide.c new
27683     define CONFIG_SYS_ATA_CS_ON_I2C2 was introduced. It is used by
27684     Total5200 and will be used by digsy MTC and other boards with
27685     ATA CS on I2C pins.
27686
27687     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
27688
27689 commit 1b6275dfb173bd2edb8f208dd050d6f47ae39654
27690 Author: Heiko Schocher <hs@denx.de>
27691 Date:   Thu Mar 12 07:37:34 2009 +0100
27692
27693     8xx: add support for new keymile kmsupx4 board.
27694
27695     This patch adds support for the kmsupx4 board from Keymile,
27696     based on a Freescale MPC852T CPU
27697
27698     - serial console on SMC1
27699     - 32 MB SDRAM
27700     - 32 MB NOR Flash
27701     - Ethernet over SCC3
27702     - I2C Bitbang
27703
27704     Signed-off-by: Heiko Schocher <hs@denx.de>
27705
27706 commit d044954fe2a7e7a3dd104eb9c9d2104e38da2911
27707 Author: Heiko Schocher <hs@denx.de>
27708 Date:   Thu Mar 12 07:37:28 2009 +0100
27709
27710     8xx, mgsuvd: rename board to a more generic name
27711
27712     renaming the "mgsuvd" board port into "km8xx", because
27713     there come more similar boards from keymile.
27714     Compiling the mgsuvd board with "make mgsuvd_config"
27715     remains.
27716
27717     Signed-off-by: Heiko Schocher <hs@denx.de>
27718
27719 commit 18b2f35bde1672e074a3d5048383cb56fda745cb
27720 Author: Heiko Schocher <hs@denx.de>
27721 Date:   Thu Mar 12 07:37:23 2009 +0100
27722
27723     8xx, mgsuvd: Coding Style cleanup config file
27724
27725     Signed-off-by: Heiko Schocher <hs@denx.de>
27726
27727 commit 364123db6730d32330f818b65360d2cd27396667
27728 Author: Heiko Schocher <hs@denx.de>
27729 Date:   Thu Mar 12 07:37:18 2009 +0100
27730
27731     powerpc: common updates for keymile boards
27732
27733     - added to keymile-common.h:
27734       - bootcount support
27735       - COMMAND HISTORY
27736       - CONFIG_AUTO_COMPLETE
27737       - CONFIG_SYS_FLASH_PROTECTION
27738       - JFFS2 support
27739       - CONFIG_VERSION_VARIABLE
27740     - extracted common I2C settings for all boards
27741     - common default environment settings summarized
27742
27743     Signed-off-by: Heiko Schocher <hs@denx.de>
27744
27745 commit 506f391888b82d1b83bdd749c3cea9eb2fd64df8
27746 Author: Heiko Schocher <hs@denx.de>
27747 Date:   Thu Mar 12 07:37:15 2009 +0100
27748
27749     8xx, icache: enabling ICache not before running from RAM
27750
27751     with the new CONFIG_SYS_DELAYED_ICACHE config option, ICache
27752     is not enabled before code runs from RAM.
27753
27754     Signed-off-by: Heiko Schocher <hs@denx.de>
27755
27756 commit cabf7b9c83bd780a5805ddbb4c0ce431d5b9f9f3
27757 Author: Heiko Schocher <hs@denx.de>
27758 Date:   Thu Mar 12 07:37:11 2009 +0100
27759
27760     82xx, mgcoge: fix environment sector size
27761
27762     Size of one environment sector is 0x20000.
27763
27764     Signed-off-by: Heiko Schocher <hs@denx.de>
27765
27766 commit 27057d416c7cc9eb1860953da8836352c07f13e9
27767 Author: Ladislav Michl <ladis@linux-mips.org>
27768 Date:   Mon Mar 16 23:27:31 2009 +0100
27769
27770     NetStar: config reindentation
27771
27772     Fix indentation broken by symbol renames. "Sort" driver related definitons.
27773
27774     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
27775
27776 commit 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a
27777 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27778 Date:   Tue Mar 17 11:21:43 2009 +0000
27779
27780     ColdFire: Fix incorrect definition
27781
27782     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27783
27784 commit 9017d9325a5067b2ab0d70a2d3c907620c9ab7f8
27785 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27786 Date:   Mon Mar 2 19:16:45 2009 +0000
27787
27788     ColdFire: Fix M5329EVB and M5373EVB nand issue
27789
27790     The Nand flash was unable to read and write properly
27791     due to Nand Chip Select (nCE) setup was in reverse
27792     order. Also, increase the Nand time out value to 60.
27793
27794     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27795
27796 commit 42b68af1062f75bb4a91cf47e329a7e8100cd815
27797 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27798 Date:   Tue Jan 27 15:19:35 2009 +0000
27799
27800     ColdFire: PLATFORM_CPPFLAGS updates for new compiler
27801
27802     Update PLATFORM_CPPFLAGS to accept 4.3.x version of
27803     ColdFire compiler.
27804
27805     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27806
27807 commit d6e4baf49987fc6f75e8574c0c27301a828b3132
27808 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27809 Date:   Tue Jan 27 12:57:47 2009 +0000
27810
27811     ColdFire: Provide gzip image size V2 & V3 platforms
27812
27813     Default gzip bootm size is 8MB. Some platforms require
27814     more than 8MB
27815
27816     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27817
27818 commit c3a9e6374210679a81f611c1bcf968988bc20e41
27819 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27820 Date:   Wed Feb 18 11:49:31 2009 +0000
27821
27822     ColdFire: Fix M54451 serial boot dram setup
27823
27824     The serial boot dram extended/standard mode register was not
27825     setup and was using default DRAM setup causing the U-boot was
27826     unstable to boot up in serial mode.
27827
27828     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27829
27830 commit 32d11d58159a575f08a982cad8a5a941ffe5cc3d
27831 Author: arun c <arun.edarath@gmail.com>
27832 Date:   Thu Dec 4 15:57:15 2008 +0530
27833
27834     Coldfire: XL Bus minor fixes
27835
27836     According to coldfire manual data timeout > address time out
27837     also use correct macro to program XARB_CFG
27838
27839     Signed-off-by: Arun C <arunedarath@mistralsolutions.com>
27840
27841 commit 65d8bc94d8214812ccdf3372d3fef845cf4ec2e5
27842 Author: Scott Wood <scottwood@freescale.com>
27843 Date:   Tue Mar 17 12:06:04 2009 -0500
27844
27845     NAND: Have nboot accept .e and .i as legacy no-ops.
27846
27847     This was intended to happen before, but a trivial bug prevented it.
27848
27849     Signed-off-by: Scott Wood <scottwood@freescale.com>
27850
27851 commit 0987505540918b2464b73069af3a5b766dbd3ceb
27852 Author: Ladislav Michl <ladis@linux-mips.org>
27853 Date:   Fri Mar 13 14:38:19 2009 +0100
27854
27855     NAND: Make nboot skip bad blocks
27856
27857     nboot command currently does not skip bad blocks and gives read error when
27858     loading image stored over bad block. With patch applied, nboot works as
27859     expected:
27860
27861     Device 0 bad blocks:
27862       00780000
27863       014a0000
27864       02000000
27865       02cc0000
27866       04aa0000
27867
27868     Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000
27869        Image Name:   Linux-2.6.22-omap1
27870        Created:      2008-11-20  23:44:32 UTC
27871        Image Type:   ARM Linux Kernel Image (uncompressed)
27872        Data Size:    1052520 Bytes =  1 MB
27873        Load Address: 10008000
27874        Entry Point:  10008000
27875     Skipping bad block 0x02cc0000
27876     Automatic boot of image at addr 0x10400000 ...
27877     ...
27878
27879     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
27880     Signed-off-by: Scott Wood <scottwood@freescale.com>
27881
27882 commit 0b2f38fe3c4555dd2b81c69880403c13ad723153
27883 Author: Stefan Roese <sr@denx.de>
27884 Date:   Thu Mar 12 07:27:25 2009 +0100
27885
27886     ppc4xx: lwmon5: Only use one CS (rank) in DDR2 configuration
27887
27888     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
27889     the DDR2 configuration to only use one CS (rank). As this code is most
27890     likely copied from the original Sequoia version, this error was copied
27891     as well.
27892
27893     This patch also removes some dead code.
27894
27895     Signed-off-by: Stefan Roese <sr@denx.de>
27896
27897 commit 9199b9cc8f56aca26504b48cf702176208f46e54
27898 Author: Stefan Roese <sr@denx.de>
27899 Date:   Thu Mar 12 07:24:40 2009 +0100
27900
27901     ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration
27902
27903     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
27904     the DDR2 configuration to only use one CS (rank). As this code is most
27905     likely copied from the original Sequoia version, this error was copied
27906     as well.
27907
27908     Signed-off-by: Stefan Roese <sr@denx.de>
27909
27910 commit ee86fd15e1ccda4be41f1dba82b8c9efea9a3145
27911 Author: Mikhail Zolotaryov <lebon@lebon.org.ua>
27912 Date:   Wed Mar 11 10:54:46 2009 +0200
27913
27914     Fix AMCC Sequoia board DDR memory configuration
27915
27916     Sequoia board schematics (DES0211_11_SCH_11.pdf, page 5, unit U1D)
27917     specifies that BankSel#1 is not connected, while bootloader memory
27918     configuration is (board/amcc/sequoia/sdram.c):
27919            mtsdram(DDR0_10, 0x00000300);
27920     i.e. both Chip Selects used - not correct.
27921
27922     If we change to correct value here:
27923            mtsdram(DDR0_10, 0x00000100);
27924     memory is accessible OK also.
27925
27926     Signed-off-by: Mikhail Zolotaryov <lebon@lebon.org.ua>
27927     Signed-off-by: Stefan Roese <sr@denx.de>
27928
27929 commit b3dd629e78870ba2dc9f8032978721c0fa02a856
27930 Author: Wolfgang Denk <wd@denx.de>
27931 Date:   Sun Mar 15 22:40:09 2009 +0100
27932
27933     Prepare 2009.03-rc2
27934
27935     Update CHANEGLOG, fix minor coding style issue.
27936
27937     Signed-off-by: Wolfgang Denk <wd@denx.de>
27938
27939 commit 394d30dd1ee23b80fd5e59e17ebe0feca927ab31
27940 Author: Jerry Van Baren <gvb.uboot@gmail.com>
27941 Date:   Fri Mar 13 11:40:10 2009 -0400
27942
27943     mpc83xx: Add bank configuration to FSL spd_sdram.c
27944
27945     The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8
27946     bank SDRAMs.
27947
27948     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27949     Acked-by: Dave Liu <daveliu@freescale.com>
27950     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27951
27952 commit b581626c1e2474a3dadf69d4f0e0582eccbc4235
27953 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
27954 Date:   Fri Mar 13 08:58:14 2009 +0100
27955
27956     mpc83xx: correctly set encryption and I2C bus 0 clock
27957
27958     This patch makes sure the correct mask is applied when setting
27959     the encryption and I2C bus 0 clock in SCCR.
27960     Failing to do so may lead to ENCCM being 0 in which case I2C bus 0
27961     won't function.
27962
27963     Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
27964     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27965
27966 commit e6a6a704151c2d7e4a7b485545b48a6020ccca17
27967 Author: Dirk Behme <dirk.behme@googlemail.com>
27968 Date:   Thu Mar 12 19:30:50 2009 +0100
27969
27970     OMAP3: Add support for OMAP3 die ID
27971
27972     Read and store OMAP3 die ID in U-Boot environment.
27973
27974     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
27975
27976 commit f949bd8d089ec3059c460ac829c0d919e1d7af0e
27977 Author: Jon Smirl <jonsmirl@gmail.com>
27978 Date:   Wed Mar 11 15:08:56 2009 -0400
27979
27980     MPC5200 FEC MII speed register
27981
27982     Set a non-zero speed in the MII register so that MII commands will work.
27983
27984     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
27985
27986 commit 94a353611b93ac4cb4434a5f7e98aa0902da919e
27987 Author: Yusuke.Goda <goda.yusuke@renesas.com>
27988 Date:   Fri Mar 13 16:08:18 2009 +0900
27989
27990     sh: ap325rxa: Change the wait cycle in the area 5
27991
27992     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
27993     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27994
27995 commit 2db0e1278b9f11263e0a13326b57d4f99781f7ac
27996 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
27997 Date:   Wed Feb 25 16:04:26 2009 +0900
27998
27999     sh: Fix cannot work rtl8139 on r2dplus
28000
28001     The rtl8139 driver use pci_mem_to_phys. So it need PCI system memory
28002     registration.
28003
28004     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28005     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28006
28007 commit 64f3c0b8ba99d6651db59273e497ab5e857c8d4f
28008 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28009 Date:   Fri Feb 27 18:35:41 2009 +0900
28010
28011     sh: Add netdev header fixing of warning/build
28012
28013     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28014     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28015
28016 commit ada9318252f51c2626e9837c623f9812b0308dea
28017 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28018 Date:   Tue Mar 3 15:11:17 2009 +0900
28019
28020     sh: Add support 32-Bit Extended Address Mode to sh7785lcr
28021
28022     We can built 'make sh7785lcr_32bit_config'. And add new command "pmb"
28023     for this mode. This command changes PMB for using 512MB system memory.
28024
28025     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28026     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28027
28028 commit 06b18163b57e6b0349b0c299222d50e7b1e41e50
28029 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28030 Date:   Wed Feb 25 14:26:42 2009 +0900
28031
28032     sh: Add some register value configurable to PCI of SH7780
28033
28034     Some register value was hardcoded for System memory size 128MB and
28035     memory offset 0x08000000. This patch fixed the problem.
28036
28037     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28038     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28039
28040 commit 06e2735eb85cbea7cecb3c308d6d078b3651b22c
28041 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28042 Date:   Wed Feb 25 14:26:52 2009 +0900
28043
28044     sh: Add system memory registration to PCI for SH4
28045
28046     It is necessary for some pci device driver.
28047
28048     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28049     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28050
28051 commit b3061b40db691245a7bb9a55354b4edacbf3902d
28052 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28053 Date:   Wed Feb 25 14:26:55 2009 +0900
28054
28055     sh: Add value for PCI system memory registration of sh7785lcr
28056
28057     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28058     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28059
28060 commit 6d84ae3956a6cd7aebd86f661130752594e60124
28061 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28062 Date:   Tue Mar 3 15:11:08 2009 +0900
28063
28064     sh: Add macros for SH-4A 32-Bit Address Extended Mode
28065
28066     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28067     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28068
28069 commit 3e3eec39de8fe0ae62e6e4d4e3fa4442ee9ed6b1
28070 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28071 Date:   Tue Feb 3 13:35:05 2009 +0900
28072
28073     sh: use write{8,16,32} in ms7720se lowlevel_init
28074
28075     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28076     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28077
28078 commit 0452352df118bc9dd684a056aaaa5fb4aed1178a
28079 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
28080 Date:   Mon Mar 9 18:07:53 2009 -0500
28081
28082     tsec: report when there is no vendor specific PHY support
28083
28084     Commit af1c2b84 added a generic phy support, with an ID of zero
28085     and a 32 bit mask; meaning that it will match on any PHY ID.
28086
28087     The problem is that there is a test that checked if a matching
28088     PHY was found, and if not, it printed the non-matching ID.
28089     But since there will always be a match (on the generic PHY,
28090     worst case), this test will never trip.
28091
28092     In the case of a misconfigured PHY address, or of a PHY that
28093     isn't explicitly supported outside of the generic support,
28094     you will never see the ID of 0xffffffff, or the ID of the
28095     real (but unsupported) chip.  It will silently fall through
28096     onto the generic support.
28097
28098     This change makes that test useful again, and ensures that
28099     the selection of generic PHY support doesn't happen without
28100     some sort of notice.  It also makes it explicitly clear that
28101     the generic PHY must be last in the PHY table.
28102
28103     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
28104     Acked-by: Andy Fleming <afleming@freescale.com>
28105
28106 commit c279dfc10186ceba78d3862036f158750e86599a
28107 Author: Wolfgang Denk <wd@denx.de>
28108 Date:   Mon Mar 9 10:53:05 2009 +0100
28109
28110     SIMPC8313 board: fix out of tree building.
28111
28112     Fix typo in makefile which broke out of tree builds.
28113
28114     Also use expolicit "rm" instead of "ln -sf" which is known to be
28115     unreliable.
28116
28117     Signed-off-by: Wolfgang Denk <wd@denx.de>
28118     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28119
28120 commit 49b5aff491bd574935ecaf8545152066a25eff3d
28121 Author: ksi@koi8.net <ksi@koi8.net>
28122 Date:   Mon Feb 23 10:53:13 2009 -0800
28123
28124     Add eTSEC 1/2 IO override control (corrected)
28125
28126     This adds tsec12ioovcr to include/asm-ppc/immap_85xx.h (was reserved.)
28127
28128     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
28129
28130 commit 48c2b7bb432da84fcce05b4db6efad0be73a93dc
28131 Author: Andy Fleming <afleming@freescale.com>
28132 Date:   Fri Mar 6 19:05:52 2009 -0600
28133
28134     fsl: Remove unnecessary debug printfs
28135
28136     These were left in accidentally, and are not really useful unless the
28137     code is as broken as it was when it was being developed.
28138
28139     Signed-off-by: Andy Fleming <afleming@freescale.com>
28140
28141 commit 0ee84b88b78bce425190d8cd7adf4c30cba0c2f0
28142 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
28143 Date:   Tue Feb 24 02:37:59 2009 -0600
28144
28145     Fix mpc85xx ddr-gen3 ddr_sdram_cfg.
28146
28147     Commit e1be0d25, "32bit BUg fix for DDR2 on 8572" prevented other
28148     sdram_cfg bits (such as ecc and self_refresh_in_sleep) from being set.
28149
28150     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
28151
28152 commit a922fdb87af25c25c032424908dcf60fbf3250ea
28153 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28154 Date:   Tue Feb 24 06:13:10 2009 +0100
28155
28156     PXA: timer use do_div and simplify it
28157
28158     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28159
28160 commit 4b00d1aa82b6af9b4e628a5729a12086e44558b3
28161 Author: Wolfgang Denk <wd@denx.de>
28162 Date:   Mon Mar 9 10:51:39 2009 +0100
28163
28164     SIMPC8313 board: fix out of tree building.
28165
28166     Fix typo in makefile which broke out of tree builds.
28167
28168     Also use expolicit "rm" instead of "ln -sf" which is known to be
28169     unreliable.
28170
28171     Signed-off-by: Wolfgang Denk <wd@denx.de>
28172
28173 commit f70fd13e2fe4cf58e251271c27f9c06e141d7f9a
28174 Author: Heiko Schocher <hs@denx.de>
28175 Date:   Tue Feb 24 11:30:51 2009 +0100
28176
28177     8360, kmeter1: added bootcount feature.
28178
28179     add CONFIG_BOOTCOUNT_LIMIT feature for 8360 CPU.
28180
28181     The bootcounter uses 8 bytes from the muram,
28182     because no other memory was found on this
28183     CPU for the bootcount feature. So we must
28184     correct the muram size in DTS before booting
28185     Linux.
28186
28187     This feature is actual only implemented for
28188     MPC8360, because not all 83xx CPU have qe,
28189     and therefore no muram, which this feature
28190     uses.
28191
28192     Signed-off-by: Heiko Schocher <hs@denx.de>
28193     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28194
28195 commit 1e7ed2565031e01abc18c713030a0a9829c07684
28196 Author: Heiko Schocher <hs@denx.de>
28197 Date:   Tue Feb 24 11:30:48 2009 +0100
28198
28199     83xx, kmeter: QE_ENET10 errata for Silicon Revision 2.1
28200
28201     old code implemented the QE_ENET10 errata only for Silicon
28202     Revision 2.0. New code reads now the Silicon Revision
28203     register and sets dependend on the Silicon Revision the
28204     values as advised in the QE_ENET10 errata.
28205
28206     Signed-off-by: Heiko Schocher <hs@denx.de>
28207     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28208
28209 commit 605f78e34a3f0103693b891f2573edd352e7d495
28210 Author: Heiko Schocher <hs@denx.de>
28211 Date:   Tue Feb 24 11:30:44 2009 +0100
28212
28213     83xx, kmeter1: updates for 2009.03
28214
28215     - HRCW update
28216       HRCWH_BOOTSEQ_DISABLE not HRCWH_BOOTSEQ_NORMAL
28217       HRCWH_LALE_EARLY added
28218     - DDR-SDRAM settings modified. This solves sporadically
28219       problems with this memory.
28220     - CS1 now 128 MB window size
28221     - CS3 now 512 MB window size
28222     - PRAM activated
28223     - MTDPARTS_DEFAULT defined
28224     - CONFIG_HOSTNAME added
28225     - MONITOR_LEN now 384 KB
28226
28227     Signed-off-by: Heiko Schocher <hs@denx.de>
28228     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28229
28230 commit 118cbe3c35c898f8d020b29d6dc180307cacf147
28231 Author: Heiko Schocher <hs@denx.de>
28232 Date:   Tue Feb 24 11:30:40 2009 +0100
28233
28234     83xx, kmeter1: autodetect size of DDR II RAM
28235
28236     it is possible that some board variants have different DDR II
28237     RAM sizes. So we autodetect the size of the assembled RAM.
28238
28239     Signed-off-by: Heiko Schocher <hs@denx.de>
28240     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28241
28242 commit c1bce4fff750d734b1fa7467eb08f93902c97ca6
28243 Author: Heiko Schocher <hs@denx.de>
28244 Date:   Tue Feb 24 11:30:37 2009 +0100
28245
28246     83xx, i2c: add mux support for fsl_i2c
28247
28248     This patch adds I2C mux support for the fsl_i2c driver. This
28249     allows you to add "new" i2c busses, which are reached over
28250     i2c muxes. For more infos, please look in the README and
28251     search for CONFIG_I2C_MUX.
28252
28253     Signed-off-by: Heiko Schocher <hs@denx.de>
28254     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28255
28256 commit 19f0e93041dbfe22f8d39b98e4f7f9ea87b77803
28257 Author: Heiko Schocher <hs@denx.de>
28258 Date:   Tue Feb 24 11:30:34 2009 +0100
28259
28260     83xx, kmeter1: add I2C, dtt, eeprom support
28261
28262     This patch adds I2C support for the Keymile kmeter1 board.
28263     It uses the First I2C Controller from the CPU, for
28264     accessing 4 temperature sensors, an eeprom with IVM data
28265     and the booteeprom over a pca9547 mux.
28266
28267     Signed-off-by: Heiko Schocher <hs@denx.de>
28268     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28269
28270 commit db1d72afd77287bc8577210f3f71ab249dcf146f
28271 Author: Heiko Schocher <hs@denx.de>
28272 Date:   Tue Feb 24 11:30:30 2009 +0100
28273
28274     i2c, dtt: move dtt_init () to board_init_r ()
28275
28276     In case where a board not uses CONFIG_POST, it is not
28277     necessary to init the DTTs when running from flash.
28278
28279     Signed-off-by: Heiko Schocher <hs@denx.de>
28280     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28281
28282 commit 5b0055547f0246908b79cc300170d87380b69e18
28283 Author: Dave Liu <daveliu@freescale.com>
28284 Date:   Wed Feb 25 12:31:32 2009 +0800
28285
28286     83xx: Fix some bugs in spd sdram code
28287
28288     1. RD_TO_PRE missed to add the AL, and need min 2 clocks for
28289       tRTP according to DDR2 JEDEC spec.
28290     2. WRTORD - tWTR need min 2 clocks according to DDR2 JEDEC spec.
28291     3. add the support of DDR2-533,667,800 DIMMs
28292     4. cpo
28293     5. make the AL to min to gain better performance.
28294
28295     The Micron MT9HTF6472CHY-667D1 DIMMs test passed on
28296     MPC837xEMDS platform at 266MHz/333MHz/400MHz data rate.
28297
28298     items 1, 2 and 5:
28299     Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
28300
28301     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
28302     Signed-off-by: Dave Liu <daveliu@freescale.com>
28303     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28304
28305 commit b7be63abec45858c044f0fbd6aeef524c4663f9b
28306 Author: Valeriy Glushkov <gvv@lstec.com>
28307 Date:   Wed Feb 4 18:27:49 2009 +0200
28308
28309     MPC8349ITX: several config issues fixed
28310
28311     The previous version rebooted forever with DDR bigger than 256MB.
28312     Access the DS1339 RTC chip is on I2C1 bus.
28313     Allow DHCP.
28314
28315     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
28316     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28317
28318 commit 7e2ec1de1d2d723b59d7dd2fb85ff71b952d63af
28319 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28320 Date:   Thu Feb 19 18:20:39 2009 +0300
28321
28322     mpc83xx: MPC837XEMDS: Initialize SerDes before negating PCIE reset signal
28323
28324     The SerDes initialization should be finished before negating the reset
28325     signal according to the reference manual. This isn't an issue on real
28326     hardware, but we'd better stick to the specifications anyway.
28327
28328     Suggested-by: Liu Dave <DaveLiu@freescale.com>
28329     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28330     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28331
28332 commit 9c2d63ec0e9520948b6d598ea32e9aa4e0de847f
28333 Author: Heiko Schocher <hs@denx.de>
28334 Date:   Wed Feb 25 12:28:32 2009 +0100
28335
28336     i2c, dtt: move dtt_init () to board_init_r ()
28337
28338     it is not necessary to init the DTTs so early,
28339     so move this init to board_init_r ().
28340
28341     Signed-off-by: Heiko Schocher <hs@denx.de>
28342
28343 commit 00cc5595a7caac8066b408774383a956c2e26797
28344 Author: Anatolij Gustschin <agust@denx.de>
28345 Date:   Wed Feb 25 20:28:13 2009 +0100
28346
28347     lcd: Fix compilation warning in common/lcd.c
28348
28349     Fix following warning while compilation for mcc200 board:
28350
28351     lcd.c: In function 'lcd_display_bitmap':
28352     lcd.c:625: warning: unused variable 'cmap'
28353
28354     Signed-off-by: Anatolij Gustschin <agust@denx.de>
28355
28356 commit f5a77a09c93fe7f04c0c56f64ea436f7d318d674
28357 Author: Graeme Russ <graeme.russ@gmail.com>
28358 Date:   Tue Feb 24 21:11:24 2009 +1100
28359
28360     Moved SC520 Files (fix commit 407976185e0dda2c90e89027121a1071b9c77bfb)
28361
28362     Fixes commit 407976185e0dda2c90e89027121a1071b9c77bfb
28363
28364     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
28365
28366 commit 75ba6d693b8f6247aa4b81323a2ee2fa28222215
28367 Author: Mike Frysinger <vapier@gentoo.org>
28368 Date:   Mon Feb 23 10:29:47 2009 -0500
28369
28370     smc911x: split out useful defines/functions into local header
28371
28372     The smc911x driver has a lot of useful defines/functions which can be used
28373     by pieces of code (such as example eeprom programmers).  Rather than
28374     forcing each place to duplicate these defines/functions, split them out
28375     of the smdc911x driver into a local header.
28376
28377     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28378     Acked-by: Ben Warren <biggerbadderben@gmail.com>
28379     CC: Sascha Hauer <s.hauer@pengutronix.de>
28380     CC: Guennadi Liakhovetski <lg@denx.de>
28381     CC: Magnus Lilja <lilja.magnus@gmail.com>
28382     CC: Ben Warren <biggerbadderben@gmail.com>
28383
28384 commit a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1
28385 Author: Guennadi Liakhovetski <lg@denx.de>
28386 Date:   Tue Feb 24 10:44:02 2009 +0100
28387
28388     ARM: add an "eet" variant of the imx31_phycore board
28389
28390     The "eet" variant of the imx31_phycore board has an OLED display, using a
28391     s6e63d6 display controller on the first SPI interface, using GPIO57 as a
28392     chip-select for it. With this configuration you can display 256 colour BMP
28393     images in 16-bit RGB (RGB565) LCD mode.
28394
28395     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28396     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28397
28398 commit 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f
28399 Author: Guennadi Liakhovetski <lg@denx.de>
28400 Date:   Fri Feb 6 10:37:57 2009 +0100
28401
28402     video: add an i.MX31 framebuffer driver
28403
28404     Add a driver for the Synchronous Display Controller and the Display
28405     Interface on i.MX31, using IPU for DMA channel setup. So far only
28406     displaying of bitmaps is supported, no text output.
28407
28408     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28409     Acked-by: Anatolij Gustschin <agust@denx.de>
28410
28411 commit b245e65ee3c4cce3ccf008a21f4528239655876c
28412 Author: Guennadi Liakhovetski <lg@denx.de>
28413 Date:   Fri Feb 6 10:37:53 2009 +0100
28414
28415     LCD: support 8bpp BMPs on 16bpp displays
28416
28417     This patch also simplifies some ifdefs in lcd.c, introduces a generic
28418     vidinfo_t, which new drivers are encouraged to use and old drivers to switch
28419     over to.
28420
28421     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28422     Acked-by: Anatolij Gustschin <agust@denx.de>
28423
28424 commit a303dfb0e9a93e516ea9427b5c09543d5f74ade1
28425 Author: Mark Jackson <mpfj@mimc.co.uk>
28426 Date:   Fri Feb 6 10:37:49 2009 +0100
28427
28428     Add 16bpp BMP support
28429
28430     This patch adds 16bpp BMP support to the common lcd code.
28431
28432     Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code.
28433
28434     At the moment it's only been tested on the MIMC200 AVR32 board, but extending
28435     this to other platforms should be a simple task !!
28436
28437     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
28438     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28439     Acked-by: Anatolij Gustschin <agust@denx.de>
28440
28441 commit 689551c5ff1b394b88412f3df22144e79468d3a9
28442 Author: Guennadi Liakhovetski <lg@denx.de>
28443 Date:   Fri Feb 6 10:37:41 2009 +0100
28444
28445     A driver for the S6E63D6 SPI display controller from Samsung
28446
28447     This is a driver for the S6E63D6 SPI OLED display controller from Samsung.
28448     It only provides access to controller's registers so the client can freely
28449     configure it.
28450
28451     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28452     Acked-by: Anatolij Gustschin <agust@denx.de>
28453
28454 commit fc7a93c84f3f134484811a0d9ad751fbc1a7da6d
28455 Author: Guennadi Liakhovetski <lg@denx.de>
28456 Date:   Fri Feb 13 09:26:40 2009 +0100
28457
28458     i.MX31: support GPIO as a chip-select in the mxc_spi driver
28459
28460     Some SPI devices have special requirements on chip-select handling.
28461     With this patch we can use a GPIO as a chip-select and strictly follow
28462     the SPI_XFER_BEGIN and SPI_XFER_END flags.
28463
28464     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28465     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28466
28467 commit b30de3cccf8867566cd314e7c7033904afa5dc9d
28468 Author: Guennadi Liakhovetski <lg@denx.de>
28469 Date:   Sat Feb 7 01:18:07 2009 +0100
28470
28471     i.MX31: add a simple gpio driver
28472
28473     This is a minimal driver, so far only managing output. It will
28474     be used by the mxc_spi.c driver.
28475
28476     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28477     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28478
28479 commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f
28480 Author: Guennadi Liakhovetski <lg@denx.de>
28481 Date:   Sat Feb 7 00:09:12 2009 +0100
28482
28483     i.MX31: fix SPI driver for shorter than 32 bit
28484
28485     Fix setting the SPI Control register, 8 and 16-bit transfers
28486     and a wrong pointer in the free routine in the mxc_spi driver.
28487
28488     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28489     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28490
28491 commit 7e91558032a0c1932dd7f4f562f9c7cc55efc496
28492 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28493 Date:   Thu Feb 19 18:20:52 2009 +0300
28494
28495     mpc83xx: MPC837XERDB: Add PCIe support
28496
28497     On MPC8377E-RDB and MPC8378E-RDB boards we have PCIe and mini-PCIe
28498     slots. Let's support them.
28499
28500     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28501     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28502
28503 commit 50a4d08e8f31debbd4ea12caf1265f3643c38d5b
28504 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28505 Date:   Thu Feb 19 18:20:50 2009 +0300
28506
28507     mpc83xx: PCI: Fix hard-coded first_busno value
28508
28509     We should use pci_last_busno() in pci_init_bus(), otherwise we'll
28510     erroneously re-use PCI0's first_busno for PCI1 hoses.
28511
28512     NOTE: The patch is untested. All MPC83xx FSL boards I have have
28513     PCI1 in miniPCI form, for which I don't have any cards handy.
28514
28515     But looking in cpu/mpc85xx/pci.c:
28516     ...
28517     #ifdef CONFIG_MPC85XX_PCI2
28518             hose = &pci_hose[1];
28519
28520             hose->first_busno = pci_hose[0].last_busno + 1;
28521
28522     And considering that we do the same for MPC83xx PCI-E support,
28523     I think this patch is correct.
28524
28525     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28526     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28527
28528 commit a5878d427128c1a9226045ebe05fbadaa02eb9dd
28529 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28530 Date:   Thu Feb 19 18:20:46 2009 +0300
28531
28532     mpc83xx: PCI: Fix bus-range fdt fixups for PCI1 controllers
28533
28534     This patch fixes copy-paste issue: pci_hose[0]'s first and last
28535     busnos were used to fixup pci1's nodes.
28536
28537     We don't see this bug triggering only because Linux reenumerate
28538     buses anyway.
28539
28540     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28541     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28542
28543 commit b24a99f6666ac278ec9f9c1334518af828833d19
28544 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28545 Date:   Thu Feb 19 18:20:44 2009 +0300
28546
28547     mpc83xx: PCIe: Fix CONFIG_PCI_SCAN_SHOW reporting bogus values
28548
28549     This patch fixes an issue in config space read accessors: we should
28550     fill-in the value even if we fail (e.g. skipping devices), otherwise
28551     CONFIG_PCI_SCAN_SHOW reports bogus values during boot up.
28552
28553     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28554     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28555
28556 commit e2d72ba543c7b6924b5b5d393dcd80b2b9c3a022
28557 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28558 Date:   Thu Feb 19 18:20:42 2009 +0300
28559
28560     mpc83xx: PCIe: Don't start bus enumeration at 0
28561
28562     Currently we assign first_busno = 0 for the first PCIe hose, but this
28563     scheme won't work if we have ordinary PCI hose already registered (its
28564     first_busno value is 0 too).
28565
28566     The old code worked fine only because we have PCI disabled on
28567     MPC837XEMDS boards in stand-alone mode (see commit 00f7bbae92e3b13f2b3
28568     "mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards").
28569     But on MPC837XERDB boards we have PCI and PCIe, so the bug actually
28570     triggers.
28571
28572     So, to fix the issue, we should use pci_last_busno() + 1 for the
28573     first_busno (i.e. last available busno).
28574
28575     Reported-by: Huang Changming <Chang-Ming.Huang@freescale.com>
28576     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28577     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28578
28579 commit cc2a8c7751ddbae3116660064f446888538b93e9
28580 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28581 Date:   Thu Feb 19 18:20:41 2009 +0300
28582
28583     PCI: Add pci_last_busno() helper
28584
28585     This is just a handy routine that reports last PCI busno: we walk
28586     down all the hoses and return last hose's last_busno.
28587
28588     Will be used by PCI/PCIe initialization code.
28589
28590     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28591     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28592
28593 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
28594 Author: Becky Bruce <beckyb@kernel.crashing.org>
28595 Date:   Mon Feb 23 13:56:51 2009 -0600
28596
28597     MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
28598
28599     Currently, we get 256MB as the default, but since all the 86xx
28600     board configs define a 2G BAT mapping for RAM, raise default
28601     to 2G.
28602
28603     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
28604     Acked-by: Jon Loeliger <jdl@freescale.com>
28605
28606 commit 2331e18b9df0ab98ebf3ab44c0efea1311949aaa
28607 Author: Becky Bruce <beckyb@kernel.crashing.org>
28608 Date:   Thu Feb 12 10:43:32 2009 -0600
28609
28610     mpc8641hpcn: Indicate 36-bit addr map in boot messages
28611
28612     If 36-bit addressing is enabled, print a message on the console
28613     when we boot.
28614
28615     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
28616
28617 commit 58a518c3d8a2c7de11d414e8b903495daee7dc7e
28618 Author: Mark Jackson <mpfj-list@mimc.co.uk>
28619 Date:   Fri Feb 13 15:48:18 2009 +0000
28620
28621     Setup extra MIMC200 chip selects
28622
28623     Added code to setup the extra Flash and FRAM chip selects as used on the
28624     MIMC200 board.
28625
28626     V2 moves the init code from the common "cpu.c" file into the board specific
28627     setup file.
28628
28629     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
28630     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28631
28632 commit 80534886a72a0088eef9e781a8e0b7d04ea41f36
28633 Author: Mark Jackson <mpfj@mimc.co.uk>
28634 Date:   Mon Nov 24 12:10:56 2008 +0000
28635
28636     MIMC200: tidy GCLK init code
28637
28638     Change the MIMC200 startup code to use the built-in (rather than
28639     hard-coded) funtions for setting up gclk outputs.
28640
28641     We'll also move the code to the new, more-appropriate
28642     board_postclk_init() routine.
28643
28644     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
28645     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28646
28647 commit b423f94063bf04e92047ff85c7e53441eb3b712b
28648 Author: Olav Morken <olavmrk@gmail.com>
28649 Date:   Fri Jan 23 12:56:32 2009 +0100
28650
28651     AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES
28652
28653     The AT32UC3A0512ES chip has a bug when disabling interrupts. As a
28654     workaround, two NOPs can be inserted.
28655
28656     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
28657     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
28658     Signed-off-by: Olav Morken <olavmrk@gmail.com>
28659     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28660
28661 commit f5f652fa91aa69db8117d211af1b4fe09f2edd3b
28662 Author: Gunnar Rangoy <gunnar@rangoy.com>
28663 Date:   Fri Jan 23 12:56:29 2009 +0100
28664
28665     AVR32: Make GPIO implmentation cpu dependent
28666
28667     There are some differences in the implementation of GPIO in the
28668     at32uc chip compared to the ap700x series.
28669
28670     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
28671     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
28672     Signed-off-by: Olav Morken <olavmrk@gmail.com>
28673     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28674
28675 commit a38de083d2979db3680f0d0978c509a172c8fa00
28676 Author: Olav Morken <olavmrk@gmail.com>
28677 Date:   Fri Jan 23 12:56:28 2009 +0100
28678
28679     AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h
28680
28681     The AVR32A architecture (which AT32UC3A-series is based on) has a
28682     different memory layout than the AVR32B-architecture. This patch moves
28683     addrspace.h to an arch-dependent directory in preparation for
28684     AT32UC3A-support. It also moves some address-space manipulation
28685     functions from io.h to addrspace.h.
28686
28687     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
28688     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
28689     Signed-off-by: Olav Morken <olavmrk@gmail.com>
28690     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28691
28692 commit d8f2aa3298610b44127dbc4796d8038aa5847e0b
28693 Author: Olav Morken <olavmrk@gmail.com>
28694 Date:   Fri Jan 23 12:56:27 2009 +0100
28695
28696     AVR32: Make cacheflush cpu-dependent
28697
28698     The AT32UC3A series of processors doesn't contain any cache, and issuing
28699     cache control instructions on those will cause an exception. This commit
28700     makes cacheflush.h arch-dependent in preparation for the AT32UC3A-support.
28701
28702     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
28703     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
28704     Signed-off-by: Olav Morken <olavmrk@gmail.com>
28705     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28706
28707 commit 2f70c49e5b9813635ad73666aa30f304c7fdeda9
28708 Author: Heiko Schocher <hs@denx.de>
28709 Date:   Tue Feb 10 09:38:52 2009 +0100
28710
28711     netloop: speed up NetLoop
28712
28713     NetLoop polls every cycle with getenv some environment variables.
28714     This is horribly slow, especially when the environment is big.
28715
28716     This patch reads only the environment variables in NetLoop,
28717     when they were changed.
28718
28719     Also moved the init part of the NetLoop function in a seperate
28720     function.
28721
28722     Signed-off-by: Heiko Schocher <hs@denx.de>
28723     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28724
28725 commit ad2d16393e9f684e4a9255f42e8bfdd819b67a87
28726 Author: Mike Frysinger <vapier@gentoo.org>
28727 Date:   Mon Dec 22 02:56:07 2008 -0500
28728
28729     smc911x_eeprom: new example app for managing newer SMC parts
28730
28731     A forward port of the last version to work with the newer smc911x driver.
28732     I only have a board with a LAN9218 part on it, so that is the only one
28733     I've tested.  But there isn't anything in this that would make it terribly
28734     chip specific afaik.
28735
28736     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28737     CC: Sascha Hauer <s.hauer@pengutronix.de>
28738     CC: Guennadi Liakhovetski <lg@denx.de>
28739     CC: Magnus Lilja <lilja.magnus@gmail.com>
28740     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28741
28742 commit 736323a490b664ec0edc3ddb2c1c4a6824db45c6
28743 Author: Pieter Henning <phenning@vastech.co.za>
28744 Date:   Sun Feb 22 23:17:15 2009 -0800
28745
28746     Added Vitesse VSC8211 definitions to TSEC driver
28747
28748     Added the struct containing PHY settings for the Vitesse VSC8211 phy to
28749     the phy_info list in tsec.c
28750
28751     Signed-off-by: Pieter Henning <phenning@vastech.co.za>
28752     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28753
28754 commit 32688e572ff96715b41420e9a7f280db6c399b65
28755 Author: Wolfgang Denk <wd@denx.de>
28756 Date:   Mon Feb 23 00:22:21 2009 +0100
28757
28758     Update CHANGELOG;  Prepare 2009.03-rc1
28759
28760     Signed-off-by: Wolfgang Denk <wd@denx.de>
28761
28762 commit 80b827c2b78329c6503b271e43d9eb693d644710
28763 Author: Wolfgang Denk <wd@denx.de>
28764 Date:   Sun Feb 22 23:45:40 2009 +0100
28765
28766     ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5
28767
28768     The file was generated from building versatile_defconfig.
28769
28770     Signed-off-by: Wolfgang Denk <wd@denx.de>
28771
28772 commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00
28773 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28774 Date:   Sun Feb 22 14:24:11 2009 +0900
28775
28776     MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings
28777
28778     Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings
28779     like this:
28780
28781     skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000
28782     Configuring for dbau1x00 board...
28783     au1x00_eth.c: In function 'au1x00_send':
28784     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
28785     au1x00_eth.c: In function 'au1x00_recv':
28786     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
28787     au1x00_eth.c: In function 'au1x00_init':
28788     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
28789     au1x00_eth.c: In function 'au1x00_recv':
28790     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
28791     au1x00_eth.c: In function 'au1x00_init':
28792     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
28793     au1x00_eth.c: In function 'au1x00_send':
28794     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
28795
28796     We're passing a volatile pointer to a function which is expecting a non-
28797     volatile pointer.  That's potentially dangerous, so gcc warns about it.
28798     Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3).
28799
28800     To fix this, we add a volatile attribute to the argument in question.
28801     The virt_to_phys function in Linux kernel also does the same thing.
28802
28803     Signed-off-by: Stefan Roese <sr@denx.de>
28804     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28805
28806 commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3
28807 Author: Dirk Behme <dirk.behme@googlemail.com>
28808 Date:   Fri Feb 20 17:51:28 2009 +0100
28809
28810     OMAP3: Clean up MMC code
28811
28812     Clean up OMAP3 MMC code:
28813
28814     * Convert register access to struct & readx/writex style
28815     * Replace hardcode values by macros
28816     * Remove macro defined twice
28817
28818     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
28819
28820 commit cfcdf4a9b361d015c0debac73fbf7c511df4a934
28821 Author: Dirk Behme <dirk.behme@googlemail.com>
28822 Date:   Thu Feb 12 18:55:43 2009 +0100
28823
28824     OMAP3: Pandora: Update pin mux
28825
28826     Clock pin must have input enabled for MMC3 to work.
28827     Also enable pull-ups for cmd/data lines to be consistent
28828     with remaining MMC host pin setup.
28829
28830     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
28831
28832 commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f
28833 Author: Dirk Behme <dirk.behme@googlemail.com>
28834 Date:   Thu Feb 12 18:55:42 2009 +0100
28835
28836     OMAP3: Add OMAP3 auto detection
28837
28838     This patch adds OMAP3 cpu type auto detection based on OMAP3 register
28839     and removes hardcoded values.
28840
28841     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
28842     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
28843
28844 commit f956fd0338f4990793a10f767929ba4963665261
28845 Author: Dirk Behme <dirk.behme@googlemail.com>
28846 Date:   Thu Feb 12 18:55:41 2009 +0100
28847
28848     OMAP3: Beagle: Add board revision detection
28849
28850     With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
28851     which might need different software handling. For this, GPIO pin 171 (GPIO
28852     module 6, offset 11) can be used to check for board revision. If this pin
28853     is low, we have a rev C board. Else it must be a revision Ax or Bx board.
28854
28855     To handle board differences you can call function beagle_get_revision().
28856     E.g.:
28857
28858     if (beagle_get_revision()) {
28859
28860     /* do special revision C stuff here */
28861
28862     }
28863
28864     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
28865
28866 commit 288f3cd912918b97919d13b6f7fb13fbddf74d68
28867 Author: Dirk Behme <dirk.behme@googlemail.com>
28868 Date:   Thu Feb 12 18:55:40 2009 +0100
28869
28870     OMAP3: Overo: Clean up pin mux and GPIO configuration
28871
28872     * Make Overo GPIO114 an input for touchscreen PENDOWN
28873     * Make Overo GPIO144-147 readable
28874     * Make Overo EHCI pinmux match beagle rev c setup
28875     * Adjust pinmux for SMSC911X network chip support
28876     * Remove unnecessary GPIO setup
28877     * Fix merge error in Makefile
28878
28879     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
28880     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
28881
28882 commit 2579019b8248e5f166e60e37065766efc8a49dbc
28883 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28884 Date:   Sun Feb 22 17:08:41 2009 +0100
28885
28886     nmdk8815: fix onenand support
28887
28888     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28889
28890 commit 0176c03a2469676df5bf19cf93a1a6f582f6a120
28891 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28892 Date:   Sun Feb 22 17:56:50 2009 +0100
28893
28894     nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type
28895
28896     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28897
28898 commit 9751a456f702ba2fcdfd1bdbc0138927ef007858
28899 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28900 Date:   Sun Feb 22 17:49:43 2009 +0100
28901
28902     davinci: fix implicit declaration of function 'davinci_errata_workarounds'
28903
28904     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28905
28906 commit 4f5728987f4f9f7845688482aa2b7f2127768165
28907 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28908 Date:   Sun Feb 22 15:49:28 2009 +0100
28909
28910     arm: add uart dcc support
28911
28912     Serial driver via the EmbeddedICE macrocell's DCC channel using
28913     co-processor 14.
28914
28915     It does include a timeout to ensure that the system does not
28916     totally freeze when there is nothing connected to read.
28917
28918     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28919
28920 commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48
28921 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
28922 Date:   Fri Nov 21 14:35:56 2008 -0500
28923
28924     ARM DaVinci: Add common peripherals and modules enable functions.
28925
28926     Taken all the duplicated code for enabling common modules and apply
28927     software workarounds from the board specific code into common
28928     functions. Also added comments explaining the workarounds
28929     (from TI errata documents) and replaced some numerical bit numbers
28930     with more meaningful defines.
28931
28932     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
28933
28934 commit d3be1bcae7a8207e0a79ffd035d0e90f80378295
28935 Author: Alessandro Rubini <rubini@unipv.it>
28936 Date:   Mon Feb 9 15:53:33 2009 +0100
28937
28938     Enable Ethernet for Nomadik 8815 Evaluation Kit
28939
28940     This trivially enables Ethernet support in the debug board
28941     by setting up the proper chip select.
28942
28943     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
28944     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
28945
28946 commit 0d8c6eab2481046e9446264bfe9402bb98ddf433
28947 Author: Alessandro Rubini <rubini@unipv.it>
28948 Date:   Mon Feb 9 15:53:31 2009 +0100
28949
28950     Nand driver for Nomadik SoC
28951
28952     This driver implements the ECC algorithm described in
28953     the CPU data sheet and uses the OOB layout chosen in
28954     already-released development systems (shipped with a custom-made
28955     u-boot 1.3.1).
28956
28957     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
28958     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
28959
28960 commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d
28961 Author: Alessandro Rubini <rubini@unipv.it>
28962 Date:   Mon Feb 9 15:53:31 2009 +0100
28963
28964     Added nomadik.h header
28965
28966     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
28967     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
28968
28969 commit 60ece6d8043d1dd80f5dd32c541213716d624b19
28970 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28971 Date:   Wed Oct 29 20:05:18 2008 +0900
28972
28973     r8a66597-hcd: fix cannot use external hub
28974
28975     Fix the problem that cannot use external hub, because this driver
28976     did not control correctly a DEVADDx register.
28977
28978     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28979     Signed-off-by: Remy Bohmer <linux@bohmer.net>
28980
28981 commit e1ffaee728190e76a4596a3579d94e730143585f
28982 Author: Mike Frysinger <vapier@gentoo.org>
28983 Date:   Thu Feb 19 01:20:27 2009 -0500
28984
28985     Blackfin: disable syscontrol code for now
28986
28987     Looks like the initcode updates fell out of order during my merges.  The
28988     patch that really fixes up this code is part of power-on overhaul and so
28989     is too large for merging at this point.  Instead, we can disable the code
28990     as no currently in-tree board depends on it.  The next merge window will
28991     fix things up properly.
28992
28993     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28994
28995 commit 1b228d68f54832edd867ef98520f760f68192ab7
28996 Author: Mike Frysinger <vapier@gentoo.org>
28997 Date:   Thu Feb 19 01:19:49 2009 -0500
28998
28999     Blackfin: bf537-stamp: fix I2C board defines
29000
29001     The previous merge for cleaning up the I2C driver incorrectly reverted the
29002     CFG_xxx rename for some of the I2C defines.
29003
29004     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29005     Signed-off-by: Heiko Schocher <hs@denx.de>
29006
29007 commit 09fee8e8677a6265e89144ccc163bf00e321769e
29008 Author: Wolfgang Denk <wd@denx.de>
29009 Date:   Sun Feb 22 01:19:52 2009 +0100
29010
29011     Coding Style cleanup; update CHANGELOG
29012
29013     Signed-off-by: Wolfgang Denk <wd@denx.de>
29014
29015 commit 1dcb50afbb63a439320a985380a0af2dca079d1e
29016 Author: Wolfgang Denk <wd@denx.de>
29017 Date:   Sun Feb 22 01:17:47 2009 +0100
29018
29019     Makefile: fix cleanup
29020
29021     Commit e4943ec5 moved the ARM boards to a vendor directory but forgot
29022     to adapt the cleanup rules in the Makefile
29023
29024     Signed-off-by: Wolfgang Denk <wd@denx.de>
29025
29026 commit edff7bcc4d5540df8b416274652ff02e94c38b9e
29027 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
29028 Date:   Fri Feb 20 13:01:56 2009 -0500
29029
29030     Cleanup the comment for m68k linux boot argument passing.
29031
29032     This patch clarifies the way m68k passes linux boot argument.
29033     The one gotcha here is that the assembly instruction that
29034     the compiler uses to jump to the kernel is 'jsr' which pushes the
29035     program counter for the instruction after the jsr into the stack pointer.
29036
29037     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
29038     Signed-off-by: Wolfgang Denk <wd@denx.de>
29039
29040 commit 4d41650eec959668280a612467bd95c7b8398513
29041 Author: Peter Griffin <pgriffin@mpc-data.co.uk>
29042 Date:   Tue Feb 10 16:44:45 2009 +0000
29043
29044     sh: Fix rsk7203 in tree build
29045
29046     Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
29047
29048 commit fca0cecff73db99d99ad094cca7980472b8a11b5
29049 Author: Minkyu Kang <mk7.kang@samsung.com>
29050 Date:   Wed Feb 18 09:05:52 2009 +0900
29051
29052     bootm: Reduce the unnecessary memmove
29053
29054     Although load address and image start address are same address,
29055     bootm command always does memmove.
29056     That is unnecessary memmove and can be taken few milliseconds
29057     (about 500 msec to 1000 msec).
29058     If skip this memmove, we can reduce the boot time.
29059
29060     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
29061
29062 commit 670cbde8da83690fed1064c3358f54ae1d693ed2
29063 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
29064 Date:   Sun Feb 15 22:29:15 2009 +0100
29065
29066     fpga: Fix Spartan III FPGA booting
29067
29068     This patch does some minor fixing of the Xilinx Spartan III
29069     FPGA boot code:
29070
29071     - Fixed call order of post configuration callback and
29072       success message printing (result of copy-paste?)
29073     - remove obsolete comment
29074     - minor coding style cleanup
29075
29076     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29077
29078 commit 3818b677641038d27b2663fbd6771ad38c932f86
29079 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
29080 Date:   Sun Feb 15 22:28:36 2009 +0100
29081
29082     fpga: Fix Spartan II FPGA booting
29083
29084     This patch does some minor fixing of the Xilinx Spartan II
29085     FPGA boot code:
29086
29087     - Fixed call order of post configuration callback and
29088       success message printing (result of copy-paste?)
29089     - relocate post configuration callback only when it
29090       is implemented
29091     - remove obsolete comment
29092     - minor coding style cleanup
29093
29094     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29095
29096 commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b
29097 Author: Mike Frysinger <vapier@gentoo.org>
29098 Date:   Wed Feb 11 20:26:52 2009 -0500
29099
29100     drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...)
29101
29102     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29103
29104 commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e
29105 Author: Derek Ou <dou@siconix.com>
29106 Date:   Tue Feb 3 16:00:07 2009 -0700
29107
29108     lcd_putc bug fix for tab.
29109
29110     Signed-off-by: Derek Ou <dou@siconix.com>
29111
29112 commit 35c9e14d8096e519fe76c953a43d52a09617345c
29113 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
29114 Date:   Mon Feb 2 09:46:21 2009 +0900
29115
29116     MIPS: cpu/mips/Makefile: Add a missing START line
29117
29118     In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
29119     Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
29120     line.  This patch puts it back.
29121
29122     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
29123
29124 commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a
29125 Author: Wolfgang Denk <wd@denx.de>
29126 Date:   Sat Feb 21 21:51:21 2009 +0100
29127
29128     Enable ext2 support for TQM8xxL/M based boards
29129
29130     Signed-off-by: Wolfgang Denk <wd@denx.de>
29131
29132 commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f
29133 Author: Tom Rix <Tom.Rix@windriver.com>
29134 Date:   Fri Feb 20 03:47:50 2009 +0100
29135
29136     ARM:PXA Use new definitions in mmc.h
29137
29138     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
29139     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29140
29141 commit 682beeac34dc9ab18fab58b26973d2e29d113717
29142 Author: Andy Fleming <afleming@freescale.com>
29143 Date:   Fri Feb 20 03:47:50 2009 +0100
29144
29145     Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions
29146
29147     These names are being taken over by the new MMC framework.  Hopefuly
29148     the PXA can be easily ported, and these functions will go away entirely.
29149
29150     Signed-off-by: Andy Fleming <afleming@freescale.com>
29151     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29152
29153 commit b03d92e5584935886ff91d5aa0755dc8888b7187
29154 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29155 Date:   Fri Feb 20 03:47:50 2009 +0100
29156
29157     pxa: move mmc drivers to drivers/mmc
29158
29159     introduce new macro CONFIG_PXA_MMC to activate it
29160
29161     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29162
29163 commit 9490f465642c80c054854689a2ef1a77d65cf1f3
29164 Author: Tom Rix <Tom.Rix@windriver.com>
29165 Date:   Thu Feb 19 19:27:22 2009 -0600
29166
29167     ARM:PXA Remove redefinition of mmc_cid and mmc_csd.
29168
29169     These structures are defined in the common mmc.h
29170
29171     This was compile checked on cerf250.
29172
29173 commit 94a3312920b6f9b5da27309549fb73650718c10a
29174 Author: Micha Kalfon <smichak.uv@gmail.com>
29175 Date:   Wed Feb 11 19:50:11 2009 +0200
29176
29177     pxa: fixing get_timer to return time in miliseconds.
29178
29179     Fixing the get_timer function to return time in miliseconds instead of
29180     ticks. Also fixed PXA boards to use the conventional value of 1000 for
29181     CONFIG_SYS_HZ.
29182
29183     Signed-off-by: Micha Kalfon <smichak.uv@gmail.com>
29184
29185 commit e5e88c3614b79b54719905f66aefb51f9494bc1f
29186 Author: Tom Rix <Tom.Rix@windriver.com>
29187 Date:   Thu Feb 19 16:45:43 2009 -0600
29188
29189     ARM:OMAP3 Change mmc_init to mmc_legacy_init
29190
29191     omap3_mmc.c was changed to define mmc_legacy_init.
29192     Remove unused functions.
29193
29194     Compile tested on all arm
29195     Runtime tested on Zoom1.
29196
29197     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
29198
29199 commit 9e80bb21629988063574f88ca0d28baadff4d963
29200 Author: Heiko Schocher <hs@denx.de>
29201 Date:   Thu Feb 19 17:23:58 2009 +0100
29202
29203     82xx, mgcoge: updates for 2009.03
29204
29205     - activate CS4 for accessing the FPGA
29206     - activate Rx buf len > 1 on SMC
29207     - pram activated
29208     - MTDPARTS_DEFAULT defined
29209     - update the size of the flashes in the DTS
29210       before booting Linux
29211     - MONITOR_LEN updated to 384k
29212     - added CONFIG_HOSTNAME
29213     - added CONFIG_ENV_BUFFER_PRINT
29214     - Environment size reduced to 16k
29215
29216     Signed-off-by: Heiko Schocher <hs@denx.de>
29217
29218 commit df909554e2401f307925e1bd45d576e4176d9de9
29219 Author: Heiko Schocher <hs@denx.de>
29220 Date:   Thu Feb 19 17:24:01 2009 +0100
29221
29222     8xx, mgsuvd: updates for 2009.03
29223
29224     - activate Rx buf len > 1 on SMC
29225     - pram activated
29226     - MTDPARTS_DEFAULT defined
29227     - update the size of the flash in the DTS
29228       before booting Linux
29229     - MONITOR_LEN updated to 384k
29230     - added CONFIG_HOSTNAME
29231     - added CONFIG_ENV_BUFFER_PRINT
29232     - Environment size reduced to 16k
29233
29234     Signed-off-by: Heiko Schocher <hs@denx.de>
29235
29236 commit 3511b4e208e12be85b532866f1c660aa2e021557
29237 Author: Dirk Behme <dirk.behme@googlemail.com>
29238 Date:   Wed Feb 18 19:59:39 2009 +0100
29239
29240     MMC: Don't use new framework code if not enabled
29241
29242     Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC
29243     isn't enabled.
29244
29245     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
29246
29247 commit 32482be67775e00b4cbc49fba62347c1ecc6229c
29248 Author: Wolfgang Denk <wd@denx.de>
29249 Date:   Thu Feb 19 13:53:29 2009 +0100
29250
29251     TQM8xxL: make some room in low memory for future needs
29252
29253     THe TQM8xxL use a ahnd-optimized linker script to efficiently use the
29254     small boot sectors in the flash. This patch makes some room in the
29255     first sector to prepare for a size increase of lib_generic/vsprintf.o
29256     by a future patch.
29257
29258     Signed-off-by: Wolfgang Denk <wd@denx.de>
29259
29260 commit c157cec3c3f6dfc194532b3a3ca87f85b642962a
29261 Author: Kim Phillips <kim.phillips@freescale.com>
29262 Date:   Wed Feb 18 18:06:18 2009 -0600
29263
29264     README: remove duplicate entry
29265
29266     it's been around since the original commit (2ad6b513) that added two
29267     identical entries.
29268
29269     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29270
29271 commit 1bba30efe1717bea13026e15c7c7d906419fac69
29272 Author: Wolfgang Denk <wd@denx.de>
29273 Date:   Thu Feb 19 00:41:08 2009 +0100
29274
29275     Coding style cleanup, update CHANGELOG
29276
29277     Signed-off-by: Wolfgang Denk <wd@denx.de>
29278
29279 commit 369d0aa9674b65c83f8553b9bcf9d207dc369223
29280 Author: Kim Phillips <kim.phillips@freescale.com>
29281 Date:   Wed Feb 18 17:43:59 2009 -0600
29282
29283     sata_sil3114: fix compiler warning
29284
29285     judging from other printfs in the same file, it seems ata should be
29286     postpended with the interface number, not the address of the global
29287     port variable.  Fixes this for current u-boot-mpc83xx tree:
29288
29289     Configuring for MPC8349ITX board...
29290     sata_sil3114.c: In function 'sata_bus_softreset':
29291     sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
29292     sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
29293
29294     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29295
29296 commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd
29297 Author: Ron Madrid <ron_madrid@sbcglobal.net>
29298 Date:   Wed Feb 18 14:30:44 2009 -0800
29299
29300     Create configuration option for restricted ns16550 functions
29301
29302     This patch will create a configuration option for a minimum configuration for
29303     the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new
29304     configuration option to the SIMPC8313.h config file in order to fix the NAND
29305     bootstrap build error.  This option will exclude all functions with exception of
29306     NS16550_putc and NS16550_init.  This will be used primarily to save space and
29307     remove unused code from builds in which space is limited.
29308
29309     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
29310
29311 commit 7b0bc0219db8981613259473cf19699ac259b4fb
29312 Author: Kim Phillips <kim.phillips@freescale.com>
29313 Date:   Wed Feb 18 16:14:29 2009 -0600
29314
29315     mkconfig: include board config.h before asm/config.h
29316
29317     swapping the include order suppresses warnings for board configs
29318     that define their own CONFIG_MAX_MEM_MAPPED:
29319
29320     In file included from /home/r1aaha/git/u-boot/include/config.h:5,
29321                     from /home/r1aaha/git/u-boot/include/common.h:35,
29322                     from simpc8313.c:26:
29323     /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning:
29324     "CONFIG_MAX_MEM_MAPPED" redefined
29325     In file included from /home/r1aaha/git/u-boot/include/config.h:4,
29326                     from /home/r1aaha/git/u-boot/include/common.h:35,
29327                     from simpc8313.c:26:
29328     /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is
29329     the location of the previous definition
29330
29331     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29332
29333 commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c
29334 Author: Wolfgang Denk <wd@denx.de>
29335 Date:   Wed Feb 18 21:35:38 2009 +0100
29336
29337     Fix build errors after making flash_get_info() non-static
29338
29339     Fix for these build problems:
29340     error: static declaration of 'flash_get_info' follows non-static declaration
29341
29342     Signed-off-by: Wolfgang Denk <wd@denx.de>
29343
29344 commit b4996d6b2140e5da7f1c346f37a67b19907b307a
29345 Author: Stefan Roese <sr@denx.de>
29346 Date:   Wed Feb 18 13:18:00 2009 +0100
29347
29348     ppc4xx: PCIe: Change 16GB inbound memory to 4GB
29349
29350     This patch fixes a problem recently seen on some 4xx platforms. For
29351     example on Kilauea PCIe slot #0.
29352
29353     Signed-off-by: Stefan Roese <sr@denx.de>
29354
29355 commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5
29356 Author: Stefan Roese <sr@denx.de>
29357 Date:   Wed Feb 18 14:05:37 2009 +0100
29358
29359     ppc4xx: Some more PMC405 coding-style cleanup
29360
29361     Signed-off-by: Stefan Roese <sr@denx.de>
29362
29363 commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5
29364 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
29365 Date:   Sun Feb 15 22:27:47 2009 +0100
29366
29367     ppc4xx: Update PMC405 board support
29368
29369     This patch prepares the good old PMC405 board support for
29370     upcoming PMC405V2 patches.
29371
29372     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29373     Signed-off-by: Stefan Roese <sr@denx.de>
29374
29375 commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f
29376 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
29377 Date:   Sun Feb 15 22:26:54 2009 +0100
29378
29379     ppc4xx: Cleanup PMC405 board support
29380
29381     This patch fixes coding style for PMC405 board support.
29382     Also some unneeded features/code is removed.
29383
29384     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29385     Signed-off-by: Stefan Roese <sr@denx.de>
29386
29387 commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667
29388 Author: Ilya Yanok <yanok@emcraft.com>
29389 Date:   Thu Feb 5 04:08:20 2009 +0100
29390
29391     qong: changes to Dave/DENX Qong configuration
29392
29393     1. Changes to the default environment:
29394       - "bootcmd" defined as "run flash_self"
29395       - "saveenv" command removed from "update"
29396       - "uboot" changed to "u-boot" (also in "load")
29397       - "addmtd" variable defined (and added to all boot commands)
29398     2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command
29399     3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined
29400     4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem
29401     with truncated "bootargs" environment variable.
29402
29403     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29404
29405 commit 5f0320108870e5d62983d1d5c13a2a087dddf686
29406 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29407 Date:   Sun Feb 1 17:07:52 2009 +0100
29408
29409     common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible
29410
29411     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29412
29413 commit ec6f14994602276660f7264c6ab3b91ef1f7614d
29414 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29415 Date:   Sun Feb 1 17:07:51 2009 +0100
29416
29417     common/console: coding style cleanup
29418
29419     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29420
29421 commit daaf74f176b548dfd34a9990231f4189201d57ba
29422 Author: Mike Frysinger <vapier@gentoo.org>
29423 Date:   Thu Jan 29 20:02:23 2009 -0500
29424
29425     mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile
29426
29427     Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and
29428     into the Makefile so we avoid pointless compiling of the file.
29429
29430     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29431
29432 commit 7bd2722e890bc877a3c057d7ccddc80451c99939
29433 Author: Mike Frysinger <vapier@gentoo.org>
29434 Date:   Thu Jan 29 20:02:07 2009 -0500
29435
29436     disk: convert part_* files to COBJ-$(CONFIG_XXX) style
29437
29438     Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to
29439     avoid pointless compiles.
29440
29441     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29442
29443 commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338
29444 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
29445 Date:   Thu Jan 29 10:35:40 2009 +0200
29446
29447     include/image.h: Ease grepping of image_* functions
29448
29449     Because the functions have been defined using macros, grepping for
29450     their definitions is not possible. This patch adds the real function
29451     names in comments.
29452
29453     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
29454     Acked-by: Mike Frysinger <vapier@gentoo.org>
29455
29456 commit bdab39d358e63aa47f400a8a76b8d5f283842df3
29457 Author: Mike Frysinger <vapier@gentoo.org>
29458 Date:   Wed Jan 28 19:08:14 2009 -0500
29459
29460     rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
29461
29462     The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
29463     rather than a generic "env" command, or anything else related to the
29464     environment.  So, let's make sure the define is named accordingly.
29465
29466     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29467
29468 commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101
29469 Author: Valeriy Glushkov <gvv@lstec.com>
29470 Date:   Fri Jan 23 20:02:17 2009 +0200
29471
29472     disable imls command if no flash is defined
29473
29474     Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined
29475
29476     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
29477
29478 commit 923aa48126259c13de95131203f1d28bfa5cb889
29479 Author: Rafal Jaworowski <raj@semihalf.com>
29480 Date:   Fri Jan 23 13:27:18 2009 +0100
29481
29482     API: Improve glue mid-layer of the API demo application.
29483
29484     - Extend ub_dev_read() and ub_dev_recv() so they return the length actually
29485     read, which allows for better control and error handling (this introduces
29486     additional error code API_ESYSC returned by the glue mid-layer).
29487
29488     - Clean up definitions naming and usage.
29489
29490     - Other minor cosmetics.
29491
29492     Note these changes do not touch the API proper, so the interface between
29493     U-Boot and standalone applications remains unchanged.
29494
29495     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
29496
29497 commit 44a94e596ba0f6d0951b165403c520bf55b1c56f
29498 Author: Rafal Jaworowski <raj@semihalf.com>
29499 Date:   Fri Jan 23 13:27:17 2009 +0100
29500
29501     API: Only output test data when reading was successful.
29502
29503     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
29504
29505 commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d
29506 Author: Rafal Jaworowski <raj@semihalf.com>
29507 Date:   Fri Jan 23 13:27:16 2009 +0100
29508
29509     API: Provide syscall entry point for the ARM architecture.
29510
29511     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
29512     Acked-by: Rafal Jaworowski <raj@semihalf.com>
29513
29514 commit b84d7d8f1e1066f810866304a16a3583f88e7c98
29515 Author: Rafal Jaworowski <raj@semihalf.com>
29516 Date:   Fri Jan 23 13:27:15 2009 +0100
29517
29518     API: Use stack pointer as API signature search hint in the glue layer.
29519
29520     De-hardcode range in RAM we search for the API signature. Instead use the stack
29521     pointer as a hint to narrow down the range in which the signature could reside
29522     (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity
29523     from stack area). Adjust PowerPC code in API demo to the new scheme.
29524
29525     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
29526     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
29527
29528 commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5
29529 Author: Wolfgang Denk <wd@denx.de>
29530 Date:   Tue Feb 17 10:26:38 2009 +0100
29531
29532     TQM8260: fix locations of kernel and ramdisk images in flash
29533
29534     After introducing redundant environment the kernel images was
29535     overlapping with environment.
29536
29537     Signed-off-by: Wolfgang Denk <wd@denx.de>
29538
29539 commit 2b68b23373f96199a0cafbfd7a9f79ed62381ebb
29540 Author: Heiko Schocher <hs@denx.de>
29541 Date:   Wed Feb 11 19:26:15 2009 +0100
29542
29543     83xx: add missing TIMING_CFG1_CASLAT_* defines
29544
29545     Signed-off-by: Heiko Schocher <hs@denx.de>
29546     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29547
29548 commit c9e34fe2e86f7b6cc8260f4b24cbdc7dd81e04c5
29549 Author: Valeriy Glushkov <gvv@lstec.com>
29550 Date:   Thu Feb 5 14:35:21 2009 +0200
29551
29552     mpc8349itx: allow SATA boot from the onboard SIL1334
29553
29554     This patch allows using of SATA devices connected
29555     to the onboard PCI SIL1334 SATA controller.
29556
29557     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
29558     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29559
29560 commit e1ac387f4645499746856adc1aeaa9787da2eca6
29561 Author: Andy Fleming <afleming@freescale.com>
29562 Date:   Thu Oct 30 16:50:14 2008 -0500
29563
29564     83xx: Add eSDHC support on 8379 EMDS board
29565
29566     Signed-off-by: Andy Fleming <afleming@freescale.com>
29567
29568 commit 80522dc8369a89938369fbcee572e662373bc9a3
29569 Author: Andy Fleming <afleming@freescale.com>
29570 Date:   Thu Oct 30 16:51:33 2008 -0500
29571
29572     85xx: Add eSDHC support for 8536 DS
29573
29574     Signed-off-by: Andy Fleming <afleming@freescale.com>
29575
29576 commit 50586ef24ed5caf6ce5591df76f355009da2cd79
29577 Author: Andy Fleming <afleming@freescale.com>
29578 Date:   Thu Oct 30 16:47:16 2008 -0500
29579
29580     Add support for the Freescale eSDHC found on 8379 and 8536 SoCs
29581
29582     This uses the new MMC framework
29583
29584     Some contributions by Dave Liu <daveliu@freescale.com>
29585
29586     Signed-off-by: Andy Fleming <afleming@freescale.com>
29587
29588 commit 272cc70b211e945e4413122aa73868f6ada732a5
29589 Author: Andy Fleming <afleming@freescale.com>
29590 Date:   Thu Oct 30 16:41:01 2008 -0500
29591
29592     Add MMC Framework
29593
29594     Here's a new framework (based roughly off the linux one) for managing
29595     MMC controllers.  It handles all of the standard SD/MMC transactions,
29596     leaving the host drivers to implement only what is necessary to
29597     deal with their specific hardware.
29598
29599     This also hooks the infrastructure into the PowerPC board code
29600     (similar to how the ethernet infrastructure now hooks in)
29601
29602     Some of this code was contributed by Dave Liu <daveliu@freescale.com>
29603
29604     Signed-off-by: Andy Fleming <afleming@freescale.com>
29605
29606 commit 1de97f9856f697380cc504126ab92561ed238803
29607 Author: Andy Fleming <afleming@freescale.com>
29608 Date:   Thu Oct 30 16:31:39 2008 -0500
29609
29610     Eliminated arch-specific mmc header requirement
29611
29612     The current MMC infrastructure relies on the existence of an
29613     arch-specific header file.  This isn't necessary, and a couple
29614     drivers were forced to implement dummy files to meet this requirement.
29615     Instead, we move the stuff in those header files into a more appropriate
29616     place, and eliminate the stubs and the #include of asm/arch/mmc.h
29617
29618     Signed-off-by: Andy Fleming <afleming@freescale.com>
29619
29620 commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3
29621 Author: Andy Fleming <afleming@freescale.com>
29622 Date:   Thu Oct 30 16:21:00 2008 -0500
29623
29624     Convert mmc_init to mmc_legacy_init
29625
29626     This is to get it out of the way of incoming MMC framework
29627
29628     Signed-off-by: Andy Fleming <afleming@freescale.com>
29629
29630 commit b2e2ed0233a5ef299361abec4fbdaefb63456eff
29631 Author: Andy Fleming <afleming@freescale.com>
29632 Date:   Thu Oct 30 16:19:25 2008 -0500
29633
29634     Eliminate support for using MMC as memory
29635
29636     MMC cards are not memory, so we stop treating them that way.
29637
29638     Signed-off-by: Andy Fleming <afleming@freescale.com>
29639
29640 commit e1be0d25ecf494ae81245ca438738ba839d6329b
29641 Author: Poonam_Aggrwal-b10812 <b10812@freescale.com>
29642 Date:   Sun Jan 4 08:46:38 2009 +0530
29643
29644     32bit BUg fix for DDR2 on 8572
29645
29646     This errata fix is required for 32 bit DDR2 controller on 8572.
29647     May  also be required for P10XX20XX platforms
29648
29649     Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net>
29650
29651 commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad
29652 Author: Andy Fleming <afleming@freescale.com>
29653 Date:   Mon Feb 16 09:40:20 2009 -0600
29654
29655     TQM85xx: Fix a couple warnings in TQM8548 build
29656
29657     The ecm variable in sdram.c was being declared for all 8548, but only
29658     used by specific 8548 boards, so we make that variable require those
29659     specific boards, too
29660
29661     The nand code was using an index "i" into a table, and then re-using "i"
29662     to set addresses for each upm.  However, then it relied on the old value
29663     of i still being there to enable things.  Changed the second "i" to "j"
29664
29665     Signed-off-by: Andy Fleming <afleming@freescale.com>
29666
29667 commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8
29668 Author: Wolfgang Grandegger <wg@grandegger.com>
29669 Date:   Wed Feb 11 18:38:26 2009 +0100
29670
29671     MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
29672
29673     This patch adds the workaround for erratum DDR20 according to MPC8548
29674     Device Errata document, Rev. 1: "CKE signal may not function correctly
29675     after assertion of HRESET". Furthermore, the bug DDR19 is fixed in
29676     processor version 2.1 and the work-around must be removed.
29677
29678     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29679
29680 commit 080408fdc71706adcb883d22125637c54f6010b1
29681 Author: Wolfgang Grandegger <wg@grandegger.com>
29682 Date:   Wed Feb 11 18:38:25 2009 +0100
29683
29684     MPC85xx: TQM8548: use cache for AG and BE variants
29685
29686     This patch makes accesses to the system memory cachable by removing the
29687     caching-inhibited and guarded flags from the relevant TLB entries for
29688     the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards
29689     are configured similarly.
29690
29691     This results in a big averall performace improvement. TFTP downloads,
29692     NAND Flash accesses, kernel boots, etc. are much faster.
29693
29694     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29695
29696 commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2
29697 Author: Wolfgang Grandegger <wg@grandegger.com>
29698 Date:   Wed Feb 11 18:38:24 2009 +0100
29699
29700     MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
29701
29702     This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG
29703     module.
29704
29705     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
29706     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29707
29708 commit 88b0e88d186479349e5a2b771e82775109e10fb4
29709 Author: Wolfgang Grandegger <wg@grandegger.com>
29710 Date:   Wed Feb 11 18:38:23 2009 +0100
29711
29712     MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
29713
29714     According to new TQM8548 timing specification:
29715     Refresh Recovery: 34 -> 53 clocks
29716     CKE pulse width:  1 -> 3 cycles
29717     Window for four activities: 13 -> 14 cycles
29718
29719     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
29720     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29721
29722 commit a865bcdac89278cac4dfc07dec8299403110499d
29723 Author: Wolfgang Grandegger <wg@grandegger.com>
29724 Date:   Wed Feb 11 18:38:22 2009 +0100
29725
29726     MPC85xx: TQM8548: add support for the TQM8548_AG module
29727
29728     The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory,
29729     CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module
29730     with "$ make TQM8548_AG_config".
29731
29732     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29733
29734 commit ad7ee5d43b0db94079d56521dabca25674f28747
29735 Author: Wolfgang Grandegger <wg@grandegger.com>
29736 Date:   Wed Feb 11 18:38:21 2009 +0100
29737
29738     MPC85xx: TQM8548: add support for the TQM8548_BE module
29739
29740     The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
29741     interface. With NAND support, the image is significantly larger and
29742     TEXT_BASE is adjusted accordingly. U-Boot can be built for this
29743     module with "$ make TQM8548_BE_config".
29744
29745     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29746
29747 commit a318234878c346e673b2ef8dc4b14b338fe7fc2b
29748 Author: Wolfgang Grandegger <wg@grandegger.com>
29749 Date:   Wed Feb 11 18:38:20 2009 +0100
29750
29751     MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
29752
29753     The TQM8548_AG module does not have the standard PCI/PCI-X interface
29754     connected but just the PCI Express interface . So far it was not
29755     possible to disable it without disabling the complete PCI interface
29756     (CONFIG_PCI) including PCI Express.
29757
29758     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29759
29760 commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf
29761 Author: Wolfgang Grandegger <wg@grandegger.com>
29762 Date:   Wed Feb 11 18:38:19 2009 +0100
29763
29764     MPC85xx: TQM85xx: fix flash protection for boot loader
29765
29766     As the reset vector is located at 0xfffffffc, all flash sectors from the
29767     beginning of the U-Boot binary to 0xffffffff must be protected. On the
29768     TQM8548-AG having small sectors at the end of the flash it happened that
29769     the last two sector were not protected and an "erase all" left an
29770     un-bootable system behind:
29771
29772     Bank # 2: CFI conformant FLASH (32 x 16)  Size: 32 MB in 270 Sectors
29773       AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E
29774       Erase timeout: 8192 ms, write timeout: 1 ms
29775
29776       FFFA0000 E RO   FFFC0000   RO   FFFE0000   RO   FFFE4000   RO   FFFE8000   RO
29777       FFFEC000   RO   FFFF0000   RO   FFFF4000   RO   FFFF8000 E      FFFFC000
29778
29779     The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many
29780     board BSPs as well.
29781
29782     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29783
29784 commit a1c8a719262151f97119e76166043ee3da3f97b2
29785 Author: Peter Tyser <ptyser@xes-inc.com>
29786 Date:   Fri Feb 6 14:30:40 2009 -0600
29787
29788     86xx: Update CPU info output on bootup
29789
29790     - Update style of 86xx CPU information on boot to more closely
29791       match 85xx boards
29792     - Fix detection of 8641/8641D
29793     - Use strmhz() to display frequencies
29794     - Display L1 information
29795     - Display L2 cache size
29796     - Fixed CPU/SVR version output
29797
29798     == Before ==
29799     Freescale PowerPC
29800     CPU:
29801         Core: E600 Core 0, Version: 0.2, (0x80040202)
29802         System: Unknown, Version: 2.1, (0x80900121)
29803         Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz
29804         L2: Enabled
29805     Board: X-ES XPedite5170 3U VPX SBC
29806
29807     == After ==
29808     CPU:   8641D, Version: 2.1, (0x80900121)
29809     Core:  E600 Core 0, Version: 2.2, (0x80040202)
29810     Clock Configuration:
29811            CPU:1066.667 MHz, MPX:533.333 MHz
29812            DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz
29813     L1:    D-cache 32 KB enabled
29814            I-cache 32 KB enabled
29815     L2:    512 KB enabled
29816     Board: X-ES XPedite5170 3U VPX SBC
29817
29818     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29819
29820 commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c
29821 Author: Peter Tyser <ptyser@xes-inc.com>
29822 Date:   Thu Feb 5 11:25:24 2009 -0600
29823
29824     86xx: Update Global Utilities structure
29825
29826     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29827
29828 commit 4ef630df773e45806d701bf5d25c328778bb4cde
29829 Author: Peter Tyser <ptyser@xes-inc.com>
29830 Date:   Thu Feb 5 11:25:25 2009 -0600
29831
29832     86xx: Reset update
29833
29834     Update the 86xx reset sequence to try executing a board-specific reset
29835     function.  If the board-specific reset is not implemented or does not
29836     succeed, then assert #HRESET_REQ.  Using #HRESET_REQ is a more standard
29837     reset procedure than the previous method and allows all board
29838     peripherals to be reset if needed.
29839
29840     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29841
29842 commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab
29843 Author: Kumar Gala <galak@kernel.crashing.org>
29844 Date:   Tue Feb 10 23:53:40 2009 -0600
29845
29846     fsl-ddr: Allow system to boot if we have more than 4G of memory
29847
29848     Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report
29849     an error and hang.  Instead of doing that since DDR is mapped in the
29850     lowest priority LAWs we setup the DDR controller and the max amount
29851     of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED)
29852
29853     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29854     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
29855
29856 commit 8d949aff38cfb4388cbd73876e77bcd06d601f20
29857 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
29858 Date:   Wed Jan 21 17:17:33 2009 -0600
29859
29860     mpc85xx: Add support for the P2020
29861
29862     Added various p2020 processor specific details:
29863     * SVR for p2020, p2020E
29864     * immap updates for LAWs and DDR on p2020
29865     * LAW defines related to p2020
29866
29867     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
29868     Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
29869     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29870
29871 commit cb69e4de8702e108324e1c40363f30ef6f2e2918
29872 Author: Kumar Gala <galak@kernel.crashing.org>
29873 Date:   Tue Feb 10 17:36:15 2009 -0600
29874
29875     85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
29876
29877     Added some info that is printed out when we boot to distiquish if we
29878     built MPC8572DS_config vs MPC8572DS_36BIT_config since they have
29879     different address maps.
29880
29881     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29882
29883 commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a
29884 Author: Andy Fleming <afleming@freescale.com>
29885 Date:   Fri Dec 5 20:10:22 2008 -0600
29886
29887     Fixup SGMII PHY ids in the device tree
29888
29889     The device tree's PHY addresses need to be fixed up if we're using the
29890     SGMII Riser Card.
29891
29892     The 8572, 8536, and 8544 DS boards were modified to call this function.
29893
29894     Code idea taken from Liu Yu <yu.liu@freescale.com>
29895
29896     Signed-off-by: Andy Fleming <afleming@freescale.com>
29897
29898 commit 5dc0cf68f8f101042997d75188081d8526d705ea
29899 Author: Andy Fleming <afleming@freescale.com>
29900 Date:   Wed Feb 11 15:10:31 2009 -0600
29901
29902     Make some minor whitespace changes to eliminate line-wrapping
29903
29904     Signed-off-by: Andy Fleming <afleming@freescale.com>
29905
29906 commit 9e56986a2b74d197f51eca70fad7b836b1900c4d
29907 Author: Andy Fleming <afleming@freescale.com>
29908 Date:   Wed Feb 11 15:07:24 2009 -0600
29909
29910     Add eth_get_dev_by_index
29911
29912     This allows code to iterate through the ethernet devices
29913
29914     Signed-off-by: Andy Fleming <afleming@freescale.com>
29915
29916 commit b67305120aaf268a6140125346678166d14f1f47
29917 Author: Kumar Gala <galak@kernel.crashing.org>
29918 Date:   Mon Feb 9 22:03:04 2009 -0600
29919
29920     85xx: Fix bug in device tree setup in 36-bit physical confg
29921
29922     In the 36-bit physical config for MPC8572DS when need the start address
29923     of memory and it size to be kept in phys_*_t instead of a ulong since
29924     we support >4G of memory in the config and ulong cant represent that.
29925     Otherwise we end up seeing the memory node in the device tree reporting
29926     back we have memory starting @ 0 and of size 0.
29927
29928     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29929
29930 commit ad97dce18445ff05bf326094e691a01aa95aa8dc
29931 Author: Kumar Gala <galak@kernel.crashing.org>
29932 Date:   Mon Feb 9 22:03:05 2009 -0600
29933
29934     85xx: Fix address map for 36-bit config of MPC8572DS
29935
29936     When we introduced the 36-bit config of the MPC8572DS board we had the
29937     wrong PCI MEM bus address map.  Additionally, the change to the address
29938     map exposes a small issue in our dummy read on the ULI bus.  We need
29939     to use the new mapping functions to handle that read properly in the
29940     36-bit config.
29941
29942     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29943
29944 commit f8523cb0815b2d3d2d780b7d49ca614105555f58
29945 Author: Kumar Gala <galak@kernel.crashing.org>
29946 Date:   Fri Feb 6 09:56:35 2009 -0600
29947
29948     85xx: Fix how we map DDR memory
29949
29950     Previously we only allowed power-of-two memory sizes and didnt
29951     handle >2G of memory.  Now we will map up to CONFIG_MAX_MEM_MAPPED
29952     and should properly handle any size that we can make in the TLBs
29953     we have available to us
29954
29955     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29956
29957 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
29958 Author: Kumar Gala <galak@kernel.crashing.org>
29959 Date:   Fri Feb 6 09:56:34 2009 -0600
29960
29961     fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
29962
29963     If we only have one controller we can completely ignore how
29964     memctl_intlv_ctl is set.  Otherwise other levels of code get confused
29965     and think we have twice as much memory.
29966
29967     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29968
29969 commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8
29970 Author: Kumar Gala <galak@kernel.crashing.org>
29971 Date:   Wed Feb 4 09:35:57 2009 -0600
29972
29973     85xx: Format cpu freq printing to handle 8 cores
29974
29975     Only print 4 cpu freq per line.  This way when we have 8 cores its a
29976     bit more readable.
29977
29978     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29979
29980 commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f
29981 Author: Abraham, Thomas <t-abraham@ti.com>
29982 Date:   Tue Oct 28 16:51:31 2008 +0530
29983
29984     USB: Remove LUN number from CDB
29985
29986     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.
29987
29988     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
29989     Signed-off-by: Remy Bohmer <linux@bohmer.net>
29990
29991 commit f3c0de636252f3a18654c8f9c6370a9574a7e755
29992 Author: Atin Malaviya <atin.malaviya@gmail.com>
29993 Date:   Tue Feb 3 15:17:10 2009 -0500
29994
29995     Added usbtty_configured() check. Fixed attribute(packed) warnings.
29996
29997     V3: Fixed line-wrap problem due to user error in mail!
29998
29999     Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang
30000     when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc).
30001     Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc.
30002
30003     Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com>
30004     Signed-off-by: Remy Bohmer <linux@bohmer.net>
30005
30006 commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7
30007 Author: Guennadi Liakhovetski <lg@denx.de>
30008 Date:   Fri Feb 13 09:23:36 2009 +0100
30009
30010     i.MX31: Start the I2C clock on driver initialisation
30011
30012     i.MX31 powers on with most clocks running, so, after a power on this explicit
30013     clock start up is not required. However, as Linux boots it disables most clocks
30014     to save power. This includes the I2C clock. If we then soft reboot from Linux
30015     the I2C clock stays off. This breaks the phycore, which has its environment in
30016     I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver
30017     initialisation routine.
30018
30019     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30020     Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30021
30022 commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba
30023 Author: Mike Frysinger <vapier@gentoo.org>
30024 Date:   Wed Feb 11 20:36:14 2009 -0500
30025
30026     i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts
30027
30028     The Blackfin i2c driver has been rewritten thus the special ifdefs in the
30029     common code are no longer needed.
30030
30031     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30032
30033 commit c2d9befa0b4695b89476fb5d259742c09afe243f
30034 Author: Heiko Schocher <hs@denx.de>
30035 Date:   Thu Feb 12 08:08:54 2009 +0100
30036
30037     82xx, mgcoge: fix compile error
30038
30039     With actual u-boot compiling the mgcoge port fails, because
30040     since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
30041     necessary to define CONFIG_NET_MULTI.
30042
30043     Seems to me the mgcoge port is the only actual existing 8260
30044     port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
30045     to be fixed.
30046
30047     Signed-off-by: Heiko Schocher <hs@denx.de>
30048
30049 commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e
30050 Author: Dirk Eibach <eibach@gdsys.de>
30051 Date:   Mon Feb 9 08:18:34 2009 +0100
30052
30053     ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE
30054
30055     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
30056     Signed-off-by: Stefan Roese <sr@denx.de>
30057
30058 commit 7369f0e384e2a831be13a7773a58242c9173fa9c
30059 Author: Carolyn Smith <carolyn.smith@tektronix.com>
30060 Date:   Thu Feb 12 06:13:44 2009 +0100
30061
30062     ppc4xx: Fix initialization of the SDRAM_CODT register
30063
30064     This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2
30065     initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END
30066     and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits.
30067
30068     Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com>
30069     Signed-off-by: Stefan Roese <sr@denx.de>
30070
30071 commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31
30072 Author: Stefan Roese <sr@denx.de>
30073 Date:   Wed Feb 11 09:29:33 2009 +0100
30074
30075     ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
30076
30077     Some AMCC eval boards do have a board_eth_init() function calling
30078     pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
30079     with the new eth_init rework.
30080
30081     Signed-off-by: Stefan Roese <sr@denx.de>
30082
30083 commit c645012aefebb301e6907d148c6c8efacac049d4
30084 Author: Adam Graham <agraham@amcc.com>
30085 Date:   Mon Feb 9 13:18:12 2009 -0800
30086
30087     ppc4xx: Autocalibration can set RDCC to over aggressive value.
30088
30089     The criteria of the AMCC SDRAM Controller DDR autocalibration
30090     U-Boot code is to pick the largest passing write/read/compare
30091     window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample
30092     Cycle Select value.
30093
30094     On some Kilauea boards the DDR autocalibration algorithm can
30095     find a large passing write/read/compare window with a small
30096     SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select
30097     value "T1 Sample".
30098
30099     This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of
30100     "T1 Sample" proves to be to aggressive when later on U-Boot
30101     relocates into DDR memory and executes.
30102
30103     The memory traces on the Kilauea board are short so on some
30104     Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select
30105     value of "T1 Sample" shows up as a potentially valid value for
30106     the DDR autocalibratiion algorithm.
30107
30108     The fix is to define a weak default function which provides
30109     the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value
30110     to accept for DDR autocalibration.  The default will be the
30111     "T2 Sample" value.  A board developer who has a well defined
30112     board and chooses to be more aggressive can always provide
30113     their own board specific string function with the more
30114     aggressive "T1 Sample" value or stick with the default
30115     minimum SDRAM_RDCC.[RDSS] value of "T2".
30116
30117     Also put in a autocalibration loop fix for case where current
30118     write/read/compare passing window size is the same as a prior
30119     window size, then in this case choose the write/read/compare
30120     result that has the associated smallest RDCC T-Sample value.
30121
30122     Signed-off-by: Adam Graham <agraham@amcc.com>
30123     Signed-off-by: Stefan Roese <sr@denx.de>
30124
30125 commit 2ede879fcb67470524847bb4fc8972651bb46184
30126 Author: Stefan Roese <sr@denx.de>
30127 Date:   Wed Feb 11 09:37:12 2009 +0100
30128
30129     ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h
30130
30131     CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is
30132     included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB.
30133
30134     It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx
30135     boards right now.
30136
30137     Signed-off-by: Stefan Roese <sr@denx.de>
30138
30139 commit f15c6515fc23f83c51f3de272ca23d86b80e81b1
30140 Author: Wolfgang Denk <wd@denx.de>
30141 Date:   Thu Feb 12 00:08:39 2009 +0100
30142
30143     Coding style cleanup; update CHANGELOG
30144
30145     Signed-off-by: Wolfgang Denk <wd@denx.de>
30146
30147 commit 5fc56b907d993260b9ebdb137af66fe69635ae9e
30148 Author: Peter Tyser <ptyser@xes-inc.com>
30149 Date:   Fri Jan 30 16:36:40 2009 -0600
30150
30151     Add feature-removal-schedule.txt
30152
30153     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30154
30155 commit 255d28e1642e8fc32a6753226be1a96b481ce111
30156 Author: Heiko Schocher <hs@denx.de>
30157 Date:   Tue Feb 10 09:32:38 2009 +0100
30158
30159     8xx serial, smc: Coding-Style cleanup serial SMC driver
30160
30161     Signed-off-by: Heiko Schocher <hs@denx.de>
30162
30163 commit 2b3f12c214346508cae3f1245808c1ca54c81fdd
30164 Author: Heiko Schocher <hs@denx.de>
30165 Date:   Tue Feb 10 09:31:47 2009 +0100
30166
30167     8xx serial, smc: add configurable SMC Rx buffer len
30168
30169     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
30170     With this option it is possible to allow the receive
30171     buffer for the SMC on 8xx to be greater then 1. In case
30172     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
30173     old version.
30174
30175     When defining CONFIG_SYS_SMC_RXBUFLEN also
30176     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
30177     idle timeout for the SMC.
30178
30179     Signed-off-by: Heiko Schocher <hs@denx.de>
30180
30181 commit e915f8bb73d74178bc21d3a457959883b1afd1c0
30182 Author: Mike Frysinger <vapier@gentoo.org>
30183 Date:   Thu Feb 5 21:04:36 2009 -0500
30184
30185     common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile
30186
30187     Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into
30188     the COBJS-$(CONFIG_xxx) in the Makefile.  Also delete unused var in kgdb
30189     code in the process.
30190
30191     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30192
30193 commit ab76e9848a1f4db64d14233741d739a3b3360c93
30194 Author: Mike Frysinger <vapier@gentoo.org>
30195 Date:   Thu Feb 5 21:04:50 2009 -0500
30196
30197     bzip2: move ifdef handling to Makefile COBJS-$(...)
30198
30199     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30200
30201 commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316
30202 Author: Jerry Van Baren <gvb.uboot@gmail.com>
30203 Date:   Thu Feb 5 22:18:02 2009 -0500
30204
30205     Fix whitespace damage: double space changed to a tab
30206
30207     At some point an intentional double space at the end of the sentence
30208     got changed into a tab in the GPL header line:
30209      * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30210
30211     This patch fixes the damage.
30212
30213     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
30214
30215 commit 4f975678de995b55749d5e84590c268972a7c835
30216 Author: Heiko Schocher <hs@denx.de>
30217 Date:   Tue Feb 10 09:53:29 2009 +0100
30218
30219     cfi: make flash_get_info() non static
30220
30221     If on your board is more than one flash, you must know
30222     the size of every single flash, for example, for updating
30223     the DTS before booting Linux. So make this function
30224     flash_get_info() extern, and you can have all info
30225     about your flashes.
30226
30227     Signed-off-by: Heiko Schocher <hs@denx.de>
30228     Signed-off-by: Stefan Roese <sr@denx.de>
30229
30230 commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e
30231 Author: Ben Warren <biggerbadderben@gmail.com>
30232 Date:   Thu Feb 5 23:58:25 2009 -0800
30233
30234     net: removed board-specific CONFIGs from MPC5xxx FEC driver
30235
30236     Added new CONFIG options for the three type of MAC-PHY interconnect and
30237     applied them all relevant board config files
30238
30239     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30240
30241 commit 638ed3e296e70fab286d157b7adedaaa4a09a474
30242 Author: Mike Frysinger <vapier@gentoo.org>
30243 Date:   Thu Feb 5 21:04:47 2009 -0500
30244
30245     net/sntp.c: move ifdef into Makefile COBJS-$(...)
30246
30247     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30248     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30249
30250 commit 9e5be8214ba751436e57c3be044bf6dccb9a6687
30251 Author: Andy Fleming <afleming@freescale.com>
30252 Date:   Tue Feb 3 18:26:41 2009 -0600
30253
30254     tsec: Fix a bug in soft-resetting
30255
30256     SOFT_RESET must be asserted for at least 3 TX clocks.  Usually, that's about 30
30257     clock cycles, so it's been mostly working.  But we had no guarantee, and at
30258     slower bitrates, it's just over a microsecond (over 1000 clock cycles).  This
30259     enforces a 2 microsecond gap between assertion and deassertion.
30260
30261     Signed-off-by: Andy Fleming <afleming@freescale.com>
30262     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30263
30264 commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b
30265 Author: Simon Munton <simon@nidoran.m5data.com>
30266 Date:   Mon Feb 2 09:44:08 2009 +0000
30267
30268     Fix 100Mbs ethernet operation on sh7763 based boards
30269
30270     100Mbs ethernet does not work on sh7763 chips due to the wrong value being
30271     used in the GECMR register. Following diff fixes the problem
30272
30273     Signed-off-by: Simon Munton <simon@nidoran.m5data.com>
30274     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30275
30276 commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2
30277 Author: ksi@koi8.net <ksi@koi8.net>
30278 Date:   Fri Feb 6 16:27:55 2009 -0800
30279
30280     Fix MPC8260 with ethernet on SCC
30281
30282     This fixes MPC8260 compilation with ethernet on SCC. Probably was a
30283     typo or something...
30284
30285     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
30286     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30287
30288 commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023
30289 Author: Heiko Schocher <hs@denx.de>
30290 Date:   Fri Jan 30 12:56:15 2009 +0100
30291
30292     82xx serial, smc: Coding-Style cleanup serial SMC driver
30293
30294     Signed-off-by: Heiko Schocher <hs@denx.de>
30295
30296 commit c92fac91a06c60f874c605e3ca80dd407c1caaa7
30297 Author: Heiko Schocher <hs@denx.de>
30298 Date:   Fri Jan 30 12:55:38 2009 +0100
30299
30300     82xx serial, smc: add configurable SMC Rx buffer len
30301
30302     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
30303     With this option it is possible to allow the receive
30304     buffer for the SMC on 82xx to be greater then 1. In case
30305     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
30306     old version.
30307
30308     When defining CONFIG_SYS_SMC_RXBUFLEN also
30309     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
30310     idle timeout for the SMC.
30311
30312     Signed-off-by: Heiko Schocher <hs@denx.de>
30313
30314 commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe
30315 Author: Kumar Gala <galak@kernel.crashing.org>
30316 Date:   Fri Feb 6 08:08:06 2009 -0600
30317
30318     ppc: Fix roll over bug in flush_cache()
30319
30320     If we call flush_cache(0xfffff000, 0x1000) it would never
30321     terminate the loop since end = 0xffffffff and we'd roll over
30322     our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line)
30323
30324     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30325
30326 commit 87c9063963561d3d01064be34d0c30855a56587b
30327 Author: Kumar Gala <galak@kernel.crashing.org>
30328 Date:   Thu Feb 5 20:40:58 2009 -0600
30329
30330     ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h
30331
30332     Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent
30333     between the two current users (lib_ppc/board.c, 44x SPD DDR2).
30334
30335     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30336     Acked-by: Stefan Roese <sr@denx.de>
30337
30338 commit 47d41cc3a11a03c6d56146d056145df73f47eb50
30339 Author: Kumar Gala <galak@kernel.crashing.org>
30340 Date:   Thu Feb 5 20:40:57 2009 -0600
30341
30342     Add an architecture specific config.h for common defines
30343
30344     We have common defines that we duplicate in various ways.  Having an
30345     arch specific config.h gives us a common location for those defines.
30346
30347     Eventually we should be able to replace this when we have proper
30348     Kconfig support.
30349
30350     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30351
30352 commit 4c78d4a6c01621721b732418e1c6da684a56bbb1
30353 Author: Becky Bruce <beckyb@kernel.crashing.org>
30354 Date:   Tue Feb 3 18:10:56 2009 -0600
30355
30356     mpc8641hpcn: Change PCI MEM pci bus address
30357
30358     Now that the rest of u-boot can support it, change the PCI bus
30359     address of the PCI MEM regions from 0x80000000 to 0xc0000000,
30360     and use the same bus address for both PCI1 and PCI2.  This will
30361     maximize the amount of PCI address space left over to map RAM
30362     on systems with large amounts of memory.
30363
30364     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30365
30366 commit 1785dbeed43599eed1d8875673c96912cd770141
30367 Author: Becky Bruce <beckyb@kernel.crashing.org>
30368 Date:   Tue Feb 3 18:10:55 2009 -0600
30369
30370     drivers/block/ahci: Fix pci mapping bug
30371
30372     The code assumes that the pci bus address and the virtual
30373     address used to access a region are the same, but they might
30374     not be.  Fix this assumption.
30375
30376     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30377
30378 commit d591a80e74091e7a0658d165721e6c7de2ef0bcd
30379 Author: Becky Bruce <beckyb@kernel.crashing.org>
30380 Date:   Tue Feb 3 18:10:54 2009 -0600
30381
30382     MPC8641HPCN: Enable CONFIG_ADDR_MAP
30383
30384     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30385
30386 commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b
30387 Author: Becky Bruce <beckyb@kernel.crashing.org>
30388 Date:   Tue Feb 3 18:10:53 2009 -0600
30389
30390     mpc8641hpcn: Clean up PCI mapping concepts
30391
30392     Clean up PCI mapping concepts in the 8641 config - rename _BASE
30393     to _BUS, as it's actually a PCI bus address, separate virtual
30394     and physical addresses into _VIRT and _PHYS, and use each
30395     appopriately.
30396
30397     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30398
30399 commit c9315e6b4f244981de0b2eaaa29a7838a165b494
30400 Author: Becky Bruce <beckyb@kernel.crashing.org>
30401 Date:   Tue Feb 3 18:10:52 2009 -0600
30402
30403     mpc86xx: Add support to populate addr map based on BATs
30404
30405     If CONFIG_ADDR_MAP is enabled, update the address map
30406     whenever we write a bat.
30407
30408     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30409
30410 commit d35ae5a938679bd7e18167faf79d0fb3c6639b51
30411 Author: Becky Bruce <beckyb@kernel.crashing.org>
30412 Date:   Tue Feb 3 18:10:51 2009 -0600
30413
30414     powerpc: Move duplicated BAT defines to mmu.h
30415
30416     The BAT fields are architected; there's no need for these to be in
30417     cpu-specific files.  Drop the duplication and move these to
30418     include/asm-ppc/mmu.h.  Also, remove the BL_xxx defines that were only
30419     used by the alaska board, and switch to using the BATU_BL_xxx defines
30420     used by all the other boards.  The BL_ defines previously in use
30421     had to be shifted into the proper position for use, which was inefficient.
30422
30423     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30424
30425 commit 6e61fae4d360a1380b63e7d007b31477e366bcce
30426 Author: Becky Bruce <beckyb@kernel.crashing.org>
30427 Date:   Tue Feb 3 18:10:50 2009 -0600
30428
30429     drivers/pci: Create pci_map_bar function
30430
30431     It is no longer always true that the pci bus address can be
30432     used as the virtual address for pci accesses.  pci_map_bar()
30433     is created to return the virtual address for a pci region.
30434
30435     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30436
30437 commit 2ecca3401775b125c3b9ff65766befb23989414b
30438 Author: Becky Bruce <beckyb@kernel.crashing.org>
30439 Date:   Tue Feb 3 18:10:49 2009 -0600
30440
30441     mpc8641hpcn: Set up outbound pci windows before inbound
30442
30443     Because the inbound pci windows are mapped generously, set up
30444     the more specific outbound windows first.  This way, when we
30445     search the pci regions for something, we will hit on the more
30446     specific region.  This can actually be a problem on systems
30447     with large amounts of RAM.
30448
30449     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30450
30451 commit b81b773ead0687114dc8a800f99ea6e504447739
30452 Author: Becky Bruce <beckyb@kernel.crashing.org>
30453 Date:   Mon Feb 2 16:34:52 2009 -0600
30454
30455     mpc8641hpcn: Use physical address in flash banks defintion
30456
30457     If the VA and PA of the flash aren't the same, the banks list
30458     should be initialized to hold the physical address.  Correct this.
30459
30460     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30461
30462 commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870
30463 Author: Ilya Yanok <yanok@emcraft.com>
30464 Date:   Tue Feb 10 00:22:31 2009 +0100
30465
30466     qong: support for Dave/DENX QongEVB-LITE board
30467
30468     This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board.
30469
30470     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
30471     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30472
30473 commit 62cbc408f52fc9a5eb849e0b882c504780c9d183
30474 Author: Ilya Yanok <yanok@emcraft.com>
30475 Date:   Mon Feb 9 18:45:28 2009 +0100
30476
30477     dnet: driver for Dave DNET ethernet controller
30478
30479     Driver for Dave DNET ethernet controller (used on Dave/DENX
30480     QongEVB-LITE board).
30481
30482     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
30483     Acked-by: Ben Warren <biggerbadderben@gmail.com>
30484
30485 commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf
30486 Author: Kumar Gala <galak@kernel.crashing.org>
30487 Date:   Fri Feb 6 09:49:32 2009 -0600
30488
30489     pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching
30490
30491     When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys}
30492     we should give preference to memory regions that aren't system memory.
30493
30494     Its possible that we have over mapped system memory in the regions and
30495     we want to avoid depending on the order of the regions.
30496
30497     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30498
30499 commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612
30500 Author: Kumar Gala <galak@kernel.crashing.org>
30501 Date:   Fri Feb 6 09:49:31 2009 -0600
30502
30503     pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
30504
30505     The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and
30506     can be confusing when reading the code.
30507
30508     Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used
30509     for system memory mapping purposes.
30510
30511     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30512
30513 commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec
30514 Author: Ilya Yanok <yanok@emcraft.com>
30515 Date:   Sun Feb 8 00:59:43 2009 +0300
30516
30517     mx31: add GPIO registers definitions
30518
30519     Added definitions for i.MX31 processor GPIO registers.
30520
30521     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
30522
30523 commit 8da601280a8acbc3385784780ed35130e53812f1
30524 Author: Peter Tyser <ptyser@xes-inc.com>
30525 Date:   Wed Feb 4 13:47:22 2009 -0600
30526
30527     NAND: Add timeout for reset command
30528
30529     Without the timeout present an infinite loop can occur if the
30530     NAND device is broken or not present.
30531
30532     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30533     Signed-off-by: Scott Wood <scottwood@freescale.com>
30534
30535 commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126
30536 Author: Peter Tyser <ptyser@xes-inc.com>
30537 Date:   Wed Feb 4 13:39:40 2009 -0600
30538
30539     NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST
30540
30541     Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support
30542     for disabling the "No NAND device found!!!" warning when
30543     CONFIG_SYS_NAND_QUIET_TEST was defined.  This re-adds support
30544     for silencing the warning.
30545
30546     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30547     Signed-off-by: Scott Wood <scottwood@freescale.com>
30548
30549 commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13
30550 Author: Valeriy Glushkov <gvv@lstec.com>
30551 Date:   Mon Jan 19 16:32:59 2009 +0200
30552
30553     NAND: Fixed invalid pointers to static relocated chip names
30554
30555     Dear Wolfgang,
30556
30557     You are right, the patch was ugly.
30558     The new one seems to be better.
30559
30560     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
30561     Signed-off-by: Scott Wood <scottwood@freescale.com>
30562
30563 commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8
30564 Author: Nishanth Menon <nm@ti.com>
30565 Date:   Mon Feb 2 18:20:12 2009 -0600
30566
30567     ARM:OMAP3:Zoom1: Add nand unlock option
30568
30569     Enable NAND_UNLOCK option for unlocking nand for
30570     erase/write operations
30571
30572     Signed-off-by: Nishanth Menon <nm@ti.com>
30573
30574 commit 5a9427dc9b8438759db3f67a1e547062f76eb18d
30575 Author: derek@siconix.com <derek@siconix.com>
30576 Date:   Mon Jan 26 14:08:17 2009 -0700
30577
30578     env_nand: fix env memory release
30579
30580     This fixes a bug that tmp environment memory not being released.
30581
30582     Signed-off-by: Derek Ou <dou@siconix.com>
30583     Signed-off-by: Scott Wood <scottwood@freescale.com>
30584
30585 commit 05fd88776419df59e7f37bac063a209409dd801d
30586 Author: Guennadi Liakhovetski <lg@denx.de>
30587 Date:   Fri Feb 6 10:37:45 2009 +0100
30588
30589     ARM: remove unused variable
30590
30591     The "size" variable in start_armboot() in lib_arm/board.c is only really
30592     used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be
30593     eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.)
30594
30595     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30596
30597 commit 6989e4f546d960a407dd5425f800dff9751c8132
30598 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30599 Date:   Thu Feb 5 09:33:50 2009 -0500
30600
30601     Coldfire: M527x: Add missing GPIO register address defines
30602
30603     Add missing GPIO registers address definition for Coldfire M5271.
30604
30605     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30606
30607 commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95
30608 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30609 Date:   Fri Jan 23 14:42:58 2009 -0500
30610
30611     Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command
30612
30613     Modified mii_init to support boards with PHYs that are not set to
30614     autonegotiate, but still want to use u-boot's mii commands to probe
30615     the smi bus. Such PHYs will not set the Autonegotiate-done bit.
30616
30617     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30618
30619 commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f
30620 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30621 Date:   Fri Jan 23 11:44:30 2009 -0500
30622
30623     Coldfire: Applied baudrate formula of serial_init to serial_setbrg
30624
30625     Applied the patch for baudrate divider value truncation for
30626     serial_init to serial_setbrg as well.
30627
30628     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30629
30630 commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148
30631 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30632 Date:   Fri Jan 23 14:07:05 2009 -0500
30633
30634     Coldfire: M5271EVB: Board header update (dependencies)
30635
30636     Cleanup for M5271EVB:
30637     Added clarification on the use of CONFIG_SYS_CLOCK.
30638     Modified to use u-boot's HUSH parser.
30639     Cleanup on environment settings.
30640     Removed compiler warning by defining CONFIG_SYS_CS0_*
30641
30642     Dependencies:
30643     Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier.
30644     This depends on a patch to include/asm-m68k/m5271.h
30645     that defines the multiplier and divider ratios.
30646
30647     Removed the definition of CONFIG_SYS_FECI2C.
30648     This depends on a patch that removes the use of it in
30649     cpu/mcf52x2/cpu_init.c
30650
30651     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30652
30653 commit e0db344fabfeb4f9649846f94838f51172f6a1f6
30654 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30655 Date:   Thu Jan 29 14:36:06 2009 -0500
30656
30657     Coldfire: M5271: Allow board header file to specify clock multiplier
30658
30659     M5271 dynamic clock multiplier. It is currently fixed at 100MHz.
30660
30661     Allow the board header file to set their own multiplier and divider.
30662     Added the #define for the multiplier and divider to the cpu header file.
30663
30664     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30665
30666 commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3
30667 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30668 Date:   Fri Jan 23 10:47:13 2009 -0500
30669
30670     Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C
30671
30672     Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB).
30673     Use read-modify-write to activate the FEC pins without disabling I2C.
30674
30675     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30676
30677 commit ee73cc59ab904976af3c33b454fc84f78618b2d1
30678 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30679 Date:   Fri Jan 23 09:45:34 2009 -0500
30680
30681     Coldfire: cmd_bdinfo cleanup
30682
30683     CONFIG_M68K bdinfo cleanup:
30684
30685     Fixed compiler warning about baudrate printing.
30686     format '%d' expects type 'int', but argument 2 has type 'long unsigned int'.
30687
30688     Added printing of "cpufreq"
30689
30690     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30691
30692 commit 4ffc39050aa46ed8a3d29732293dff769e54fffa
30693 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30694 Date:   Fri Jan 23 09:27:00 2009 -0500
30695
30696     Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list
30697
30698     Added the CONFIG_M5271 to the list of Coldfire V2 processor. This
30699     was causing the bus clock (not CPU clock) to be declared twice as
30700     fast as it actually is. This causes UARTS to operate at half the
30701     specified baudrate.
30702
30703     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30704
30705 commit 59d1bda7f92c8a28c3aba94e48063749d425949f
30706 Author: Dirk Eibach <eibach@gdsys.de>
30707 Date:   Tue Feb 3 15:15:21 2009 +0100
30708
30709     ppc4xx: Make PCIE support selectable
30710
30711     On some platforms PCIE support is not required, but would be included
30712     because the cpu supports it. To reduce fooprint it is now configurable
30713     via CONFIG_PCI_DISABLE_PCIE.
30714
30715     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
30716     Signed-off-by: Stefan Roese <sr@denx.de>
30717
30718 commit b129eff5ede394cc1faeb6dbf6a987e91abce552
30719 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30720 Date:   Tue Feb 3 22:13:16 2009 +0100
30721
30722     ppc4xx: Only fixup opb attached UARTs
30723
30724     This patch updates the fdt UART clock fixup code to
30725     only touch CPU internal UARTs on 4xx systems.
30726     Only these UARTs are definitely clocked by gd->uart_clk.
30727
30728     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30729     Signed-off-by: Stefan Roese <sr@denx.de>
30730
30731 commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c
30732 Author: Mike Frysinger <vapier@gentoo.org>
30733 Date:   Tue Jan 13 11:00:29 2009 -0500
30734
30735     Blackfin: move default boot SPI CS to common code
30736
30737     Move the default SPI CS that we boot from into common code so that it can
30738     be used in other SPI drivers and environment settings.
30739
30740     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30741
30742 commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6
30743 Author: Mike Frysinger <vapier@gentoo.org>
30744 Date:   Wed Dec 10 12:33:54 2008 -0500
30745
30746     Blackfin: dynamically update UART speed when initializing
30747
30748     Previously, booting over the UART required the baud rate to be known ahead
30749     of time.  Using a bit of tricky simple math, we can calculate the new board
30750     rate based on the old divisors.
30751
30752     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30753     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
30754
30755 commit 97f265f14f23050f3cb997f617f3a6917b843ea2
30756 Author: Mike Frysinger <vapier@gentoo.org>
30757 Date:   Tue Dec 9 17:21:08 2008 -0500
30758
30759     Blackfin: add support for fast SPI reads with Boot ROM
30760
30761     Newer Blackfin boot roms support using the fast SPI read command rather than
30762     just the slow one.  If the functionality is available, then use it.
30763
30764     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30765
30766 commit 67619982bfc5cd62710a48e3cbffc304cb78c341
30767 Author: Mike Frysinger <vapier@gentoo.org>
30768 Date:   Sat Oct 11 21:46:52 2008 -0400
30769
30770     Blackfin: check for reserved settings in DDR MMRs
30771
30772     Some bits of the DDR MMRs should not be set.  If they do, bad things may
30773     happen (like random failures or hardware destruction).
30774
30775     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30776
30777 commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6
30778 Author: Mike Frysinger <vapier@gentoo.org>
30779 Date:   Sat Oct 11 21:54:00 2008 -0400
30780
30781     Blackfin: set default voltage levels for BF538/BF539 parts
30782
30783     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30784
30785 commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f
30786 Author: Mike Frysinger <vapier@gentoo.org>
30787 Date:   Sun Jun 1 01:29:57 2008 -0400
30788
30789     Blackfin: use on-chip syscontrol() rom function when available
30790
30791     Newer Blackfin's have an on-chip rom with a syscontrol() function that needs
30792     to be used to properly program the memory and voltage settings as it will
30793     include (possibly critical) factory tested bias values.
30794
30795     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30796
30797 commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63
30798 Author: Stefan Roese <sr@denx.de>
30799 Date:   Thu Feb 5 11:44:52 2009 +0100
30800
30801     cfi_flash: Fix typo in cfi_flash.c
30802
30803     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
30804     introduced a small typo and compilation warning for systems with CFI
30805     legacy support (e.g. hcu4). This patch fixes it.
30806
30807     Signed-off-by: Stefan Roese <sr@denx.de>
30808
30809 commit 28745db969b72693754991c838f68a7fb4a8b1ab
30810 Author: Stefan Roese <sr@denx.de>
30811 Date:   Thu Jan 29 11:21:38 2009 +0100
30812
30813     jedec_flash: Only use manufacturer defines from common flash.h
30814
30815     This patch removes the double defined manufacturer defines from
30816     jedec_flash.c. Since the common defines in flash.h are 32bit
30817     we now need the (16) cast. This patch also removes the compilation
30818     warning (e.g. seen on hcu5):
30819
30820     ./MAKEALL hcu5
30821     Configuring for hcu5 board...
30822     jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type
30823
30824     Signed-off-by: Stefan Roese <sr@denx.de>
30825
30826 commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2
30827 Author: Stefan Roese <sr@denx.de>
30828 Date:   Thu Feb 5 11:25:57 2009 +0100
30829
30830     cfi_flash: Silence compilation warning
30831
30832     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
30833     introduced a small compilation warning. This patch fixes it.
30834
30835     Signed-off-by: Stefan Roese <sr@denx.de>
30836
30837 commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38
30838 Author: Becky Bruce <beckyb@kernel.crashing.org>
30839 Date:   Mon Feb 2 16:34:51 2009 -0600
30840
30841     flash/cfi_flash: Use virtual sector start address, not phys
30842
30843     include/flash.h was commented to say that the address in
30844     flash_info->start was a physical address.  However, from u-boot's
30845     point of view, and looking at most flash code, it makes more
30846     sense for this to be a virtual address.  So I corrected the
30847     comment to indicate that this was a virtual address.
30848
30849     The only flash driver that was actually treating the address
30850     as physical was the mtd/cfi_flash driver.  However, this code
30851     was using it inconsistently as it actually directly dereferenced
30852     the "start" element, while it used map_physmem to get a
30853     virtual address in other places.  I changed this driver so
30854     that the code which initializes the info->start field calls
30855     map_physmem to get a virtual address, eliminating the need for
30856     further map_physmem calls.  The code is now consistent.
30857
30858     The *only* place a physical address should be used is when defining the
30859     flash banks list that is used to initialize the flash_info struct,
30860     usually found in the board config file.
30861
30862     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30863     Signed-off-by: Stefan Roese <sr@denx.de>
30864
30865 commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779
30866 Author: Wolfgang Denk <wd@denx.de>
30867 Date:   Wed Feb 4 09:42:20 2009 +0100
30868
30869     Fix compiler warning
30870
30871     (shows up only when DEBUG is enabled)
30872
30873     Signed-off-by: Wolfgang Denk <wd@denx.de>
30874
30875 commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb
30876 Author: Mike Frysinger <vapier@gentoo.org>
30877 Date:   Mon Oct 6 03:45:55 2008 -0400
30878
30879     Blackfin: update anomaly lists
30880
30881     Update the anomaly lists to match latest anomaly sheets.
30882
30883     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30884
30885 commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d
30886 Author: Ralph Kondziella <rk@argos-messtechnik.de>
30887 Date:   Mon Jan 26 12:34:36 2009 -0700
30888
30889     ADS5121 Add PATA support
30890
30891     Original patch from Ralph Kondziella
30892     plus clean up by Wolfgang Denk
30893     plus changes by John Rigby
30894         use ips clock not lpc
30895         port forward to current u-boot release
30896
30897     Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de>
30898     Signed-off-by: Wolfgang Denk <wd@denx.de>
30899     Signed-off-by: John Rigby <jrigby@freescale.com>
30900
30901 commit abfbd0ae4967df18102345db4f4b529a13da107b
30902 Author: Martha Marx <mmarx@silicontkx.com>
30903 Date:   Mon Jan 26 10:45:07 2009 -0700
30904
30905     ADS5121 Add IC Ident Module (IIM) support
30906
30907     IIM (IC Identification Module) is the fusebox for the mpc5121.
30908     Use #define CONFIG_IIM to turn on the clock for this module
30909     use #define CONFIG_CMD_FUSE to add fusebox commands.
30910     Fusebox commands include the ability to read
30911     the status, read the register cache, override the register cache,
30912     program the fuses and sense them.
30913
30914     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
30915     Signed-off-by: John Rigby <jrigby@freescale.com>
30916
30917 commit 14d19cd1bce9a24b1335598f1568140f4950e4d9
30918 Author: John Rigby <jrigby@freescale.com>
30919 Date:   Fri Jan 23 10:33:15 2009 -0700
30920
30921     ADS5121 Fix rev2 silicon pci iopad config
30922
30923     Reset config is not correct
30924
30925     Signed-off-by: John Rigby <jrigby@freescale.com>
30926
30927 commit 4c154252c480b13f69ce1b71a9530b0515da76a6
30928 Author: John Rigby <jrigby@freescale.com>
30929 Date:   Wed Nov 19 13:57:34 2008 -0700
30930
30931     ADS5121 DIU Add diu_bmp_addr env
30932
30933     Add support for using a bmp other than
30934     FSL_Logo_BMP for the DIU splash screen.
30935
30936     Can now set the env var "diu_bmp_addr" to
30937     the address of a BMP in flash to use instead
30938     of the default FSL_Logo_BMP.
30939
30940     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
30941     Signed-off-by: John Rigby <jrigby@freescale.com>
30942
30943 commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a
30944 Author: John Rigby <jrigby@freescale.com>
30945 Date:   Thu Oct 30 16:39:35 2008 -0600
30946
30947     ADS5121 DIU Make inclusion of FSL logo optional
30948
30949     Make inclusion of FSL logo optional and
30950     turn it off by default.
30951
30952     Signed-off-by: John Rigby <jrigby@freescale.com>
30953
30954 commit bd99ec149abe94e7f6b2bda4766d701b4005053f
30955 Author: Remy Bohmer <linux@bohmer.net>
30956 Date:   Sun Feb 1 12:27:53 2009 +0100
30957
30958     Compile warning fix in onenand_uboot.h
30959
30960     Regression since merge window after 2009.01
30961
30962     Signed-off-by: Remy Bohmer <linux@bohmer.net>
30963
30964 commit a270d1e7295c3d829f42c0480117941dfc1c6477
30965 Author: Stefan Roese <sr@denx.de>
30966 Date:   Thu Jan 29 06:33:55 2009 +0100
30967
30968     USB: Add EHCI support for VCT EHCI controller (really with driver now)
30969
30970     Somehow I missed the real driver part in my last patch version. This patch
30971     now adds the driver.
30972
30973     Signed-off-by: Stefan Roese <sr@denx.de>
30974     Signed-off-by: Remy Bohmer <linux@bohmer.net>
30975
30976 commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e
30977 Author: Cliff Cai <cliff.cai@analog.com>
30978 Date:   Sat Nov 29 18:22:38 2008 -0500
30979
30980     Blackfin: add driver for on-chip MMC/SD controller
30981
30982     This is a port of the Linux Blackfin on-chip SDH driver to U-Boot.
30983
30984     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
30985     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30986
30987 commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2
30988 Author: Mike Frysinger <vapier@gentoo.org>
30989 Date:   Sat Oct 11 22:47:34 2008 -0400
30990
30991     Blackfin: add port muxing for BF51x SPI
30992
30993     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30994
30995 commit fc68f9f85959664d528daea2aef5ef54974331ce
30996 Author: Mike Frysinger <vapier@gentoo.org>
30997 Date:   Tue Jan 6 06:16:19 2009 -0500
30998
30999     Blackfin: output booting source when booting
31000
31001     Knowing the booting source of the part is useful, especially when the part
31002     can switch dynamically between sources.
31003
31004     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31005
31006 commit 8df3ce0f49c37947800ac7c84e751499882619fc
31007 Author: Mike Frysinger <vapier@gentoo.org>
31008 Date:   Thu Dec 11 06:30:46 2008 -0500
31009
31010     Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom
31011
31012     Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by
31013     the Blackfin on-chip bootrom to boot out of SPI flash.
31014
31015     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31016
31017 commit 2b4a486e6fac502d8b883e344cc4012283945b3d
31018 Author: Mike Frysinger <vapier@gentoo.org>
31019 Date:   Thu Dec 11 04:06:26 2008 -0500
31020
31021     Blackfin: update asm-blackfin/posix_types.h to latest Linux version
31022
31023     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31024
31025 commit e5eb93e77391bcc308697116c544ea1340aaae8a
31026 Author: Mike Frysinger <vapier@gentoo.org>
31027 Date:   Sat Dec 6 02:54:52 2008 -0500
31028
31029     Blackfin: add port I bits
31030
31031     Some people need to access port I, so make sure the pins are defined.
31032
31033     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31034
31035 commit 8a6b272596d43de0db4943eac7af58c3534c4026
31036 Author: Sonic Zhang <Sonic.Zhang@analog.com>
31037 Date:   Wed Nov 26 22:16:45 2008 -0500
31038
31039     Blackfin: add driver for on-chip ATAPI controller
31040
31041     This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot.
31042
31043     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
31044     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31045
31046 commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b
31047 Author: Mike Frysinger <vapier@gentoo.org>
31048 Date:   Wed Nov 26 21:43:06 2008 -0500
31049
31050     Blackfin: add driver for on-chip NAND controller
31051
31052     This is a port of the Linux Blackfin on-chip NFC driver to U-Boot.
31053
31054     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31055
31056 commit 4148e02abae9a099f4444b5e168ebc2b911d2295
31057 Author: Mike Frysinger <vapier@gentoo.org>
31058 Date:   Wed Nov 12 07:18:15 2008 -0500
31059
31060     Blackfin: build with -mno-fdpic
31061
31062     Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build
31063     up u-boot, including ones that output FDPIC ELF by default.
31064
31065     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31066
31067 commit 70e95589a24a2d83ad00317e4a9611d0211ecb58
31068 Author: Mike Frysinger <vapier@gentoo.org>
31069 Date:   Tue Nov 11 05:43:57 2008 -0500
31070
31071     Blackfin: fix up EBIU defines
31072
31073     The EBIU defines for EBSZ 256/512 were incorrect.
31074
31075     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31076
31077 commit 961954ea0ec8dc4341034c1a1ff3107ec0527809
31078 Author: Mike Frysinger <vapier@gentoo.org>
31079 Date:   Wed Nov 5 12:45:24 2008 -0500
31080
31081     Blackfin: use 8/16/32 bit transfer widths in dma_memcpy()
31082
31083     Rather than using 8bit transfers for everything, use 8/16/32 bit transfers
31084     as usable with the source/destination addresses and the count size.
31085
31086     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31087
31088 commit b93c68648426f906d63b98117496b6415f505f39
31089 Author: Mike Frysinger <vapier@gentoo.org>
31090 Date:   Wed Nov 5 08:50:23 2008 -0500
31091
31092     Blackfin: only flag L1 instruction for DMA memcpy
31093
31094     The performance difference from doing an 8 bit DMA memcpy vs an optimized
31095     core memcpy can be pretty big when you add in the overhead of setting up the
31096     MDMA registers, cache flushes, etc...  So only use dma_memcpy() when we
31097     actually require it.
31098
31099     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31100
31101 commit e347c092a3b3a2ce1e72f25f4829163634d09fbe
31102 Author: Mike Frysinger <vapier@gentoo.org>
31103 Date:   Wed Nov 5 07:20:37 2008 -0500
31104
31105     Blackfin: dma_memcpy(): fix random failures
31106
31107     We have to make sure the DMA channel is actually disabled in hardware before
31108     attempting to reprogram it.  Otherwise the new settings are ignored and we
31109     end up with random hangs/failures.
31110
31111     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31112
31113 commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3
31114 Author: Mike Frysinger <vapier@gentoo.org>
31115 Date:   Tue Nov 4 00:04:03 2008 -0500
31116
31117     Blackfin: rewrite cache handling functions
31118
31119     Take the cache flush functions from the kernel as they use hardware loops in
31120     order to get optimal performance.
31121
31122     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31123
31124 commit 84c5f0dc47d17593fd81206614891bdc94f6d51c
31125 Author: Mike Frysinger <vapier@gentoo.org>
31126 Date:   Mon Nov 3 22:30:05 2008 -0500
31127
31128     Blackfin: setup bi_enetaddr for single nets
31129
31130     For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup
31131     based on $ethaddr, so set it up.
31132
31133     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31134
31135 commit 40599239e7875b39e2a5c12e6545992041c72c52
31136 Author: Mike Frysinger <vapier@gentoo.org>
31137 Date:   Fri Oct 24 22:48:47 2008 -0400
31138
31139     Blackfin: cache core/system clock values
31140
31141     Calculating the clocks requires a bit of calls to gcc math functions, so
31142     cache the values after the first run since they'll most likely never
31143     change once U-Boot is up and running.
31144
31145     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31146
31147 commit 6957a6209b02f6b69607fc47425f13731cc477f1
31148 Author: Mike Frysinger <vapier@gentoo.org>
31149 Date:   Fri Oct 24 18:18:16 2008 -0400
31150
31151     Blackfin: enable --gc-sections
31152
31153     Start building all Blackfin boards with -ffunction-sections/-fdata-sections
31154     and linking with --gc-sections.
31155
31156     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31157
31158 commit ee1d2001ea7fbabb2b9256026dc5468f057337f8
31159 Author: Mike Frysinger <vapier@gentoo.org>
31160 Date:   Mon Oct 20 21:08:54 2008 -0400
31161
31162     Blackfin: dont check baud if it wont actually get used
31163
31164     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31165
31166 commit 400f5778f375bc99c73c8488c555def261ccfab7
31167 Author: Mike Frysinger <vapier@gentoo.org>
31168 Date:   Tue Oct 14 07:54:09 2008 -0400
31169
31170     Blackfin: add driver for on-chip SPI controller
31171
31172     This fills out the SPI backend for the Blackfin on-chip SPI peripheral.
31173
31174     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31175
31176 commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd
31177 Author: Mike Frysinger <vapier@gentoo.org>
31178 Date:   Sat Oct 18 05:33:51 2008 -0400
31179
31180     Blackfin: only build post code when CONFIG_POST
31181
31182     Save some time by using CONFIG_POST in the Makefile rather than C files.
31183
31184     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31185
31186 commit 6d7d4803c74bb86e1b401b1199e63381a62b9382
31187 Author: Mike Frysinger <vapier@gentoo.org>
31188 Date:   Thu Jan 8 11:57:57 2009 -0500
31189
31190     Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues
31191
31192     Redo how pointers are managed to get rid of ugly casts and strict pointer
31193     aliasing issues that are highlighted by gcc 4.3.
31194
31195     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31196     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31197
31198 commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b
31199 Author: Mike Frysinger <vapier@gentoo.org>
31200 Date:   Tue Dec 9 17:46:21 2008 -0500
31201
31202     Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
31203
31204     No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
31205     does exactly the same thing as common "CONFIG_RMII".
31206
31207     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31208     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31209
31210 commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5
31211 Author: Mike Frysinger <vapier@gentoo.org>
31212 Date:   Wed Nov 5 06:36:15 2008 -0500
31213
31214     Blackfin: bfin_mac: use common debug()
31215
31216     Rather then defining our own DEBUGF(), just use the common debug().
31217
31218     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31219     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31220
31221 commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04
31222 Author: Mike Frysinger <vapier@gentoo.org>
31223 Date:   Mon Oct 20 13:59:51 2008 -0400
31224
31225     Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ}
31226
31227     Rather than having the on-chip MAC hardcoded to phy address 1 and a speed
31228     of 2.5mhz, use these as defaults if the board doesn't specify otherwise.
31229
31230     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31231     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31232
31233 commit ac45af4e63ea925f4accc98453aab1a1166c196d
31234 Author: Mike Frysinger <vapier@gentoo.org>
31235 Date:   Tue Oct 14 04:52:00 2008 -0400
31236
31237     Blackfin: bfin_mac: cleanup MII/PHY functions
31238
31239     Cleanup and rewrite the MII/PHY related functions so that we can reuse the
31240     existing common linux/miiphy.h code and hook into the `mii` command.
31241
31242     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31243     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31244
31245 commit 6b310a05f0d10c751f22468040932139f71c71d3
31246 Author: Mike Frysinger <vapier@gentoo.org>
31247 Date:   Tue Oct 14 00:31:30 2008 -0400
31248
31249     Blackfin: bfin_mac: set MDCDIV based on SCLK
31250
31251     Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK),
31252     use the real algorithm so it gets set correctly regardless of SCLK.
31253
31254     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31255     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31256
31257 commit 930590f3e49c8f32256edf2e5861e1535a329c6c
31258 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31259 Date:   Sat Jan 31 09:10:48 2009 +0100
31260
31261     ixp: move serial to drivers/serial
31262
31263     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31264
31265 commit f90c8022f448bc5e93090e4b714368e52e912f0f
31266 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31267 Date:   Sat Jan 31 09:04:58 2009 +0100
31268
31269     ixp: move pci init in arm/board instead of cpu
31270
31271     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31272
31273 commit 8cb79b5f275f1888ccb278a2d2197140444a84b7
31274 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31275 Date:   Sat Jan 31 08:56:49 2009 +0100
31276
31277     ixp: move pci drivers to drivers/pci
31278
31279     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31280
31281 commit 012d5bab09a534e4800b02f50cf508e6837202ea
31282 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31283 Date:   Sat Jan 31 08:53:44 2009 +0100
31284
31285     ixp: Move conditional compilation to Makefile
31286
31287     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31288
31289 commit f693f501d67434df1f815fd1824a71973ae08207
31290 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31291 Date:   Sat Jan 31 08:53:44 2009 +0100
31292
31293     ixp: add missing os define
31294
31295     need by arm-elf toolchains and no impact on the arm-linux one
31296
31297     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31298
31299 commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f
31300 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31301 Date:   Sat Jan 31 09:53:39 2009 +0100
31302
31303     ixp: remove the option to include the Microcode
31304
31305     instead the board will have to load it from flash or ram
31306     which will be specified by npe_ucode env var
31307
31308     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31309
31310 commit 1b017baf2071d8daf643bce87250db898c606c66
31311 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31312 Date:   Fri Jan 30 09:45:23 2009 +0100
31313
31314     ixp/npe: Move conditional compilation to Makefile
31315
31316     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31317
31318 commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0
31319 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31320 Date:   Wed Jan 28 21:58:04 2009 +0100
31321
31322     SX1: add hardware V2 support
31323
31324     In the V2 the 2 flash has been replace by one 32MB flash
31325
31326     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31327
31328 commit f877f2233dbcd7417c2f0babe6a849099b167f3c
31329 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31330 Date:   Wed Jan 28 21:58:03 2009 +0100
31331
31332     SX1: Fix second flash mapping
31333
31334     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31335
31336 commit 47fd3bffed6430c91eb2660f859574ed98be5bd8
31337 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31338 Date:   Wed Jan 28 21:58:03 2009 +0100
31339
31340     SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty
31341
31342     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31343
31344 commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6
31345 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31346 Date:   Wed Jan 28 21:57:59 2009 +0100
31347
31348     move Samsung's board to board/samsung
31349
31350     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31351
31352 commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e
31353 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31354 Date:   Thu Jan 29 12:07:21 2009 +0100
31355
31356     move ARM Ltd. to vendor dir
31357
31358     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31359
31360 commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf
31361 Author: Larry Johnson <lrj@acm.org>
31362 Date:   Wed Jan 28 15:30:37 2009 -0500
31363
31364     ppc4xx: Clean up configuration file for Korat board
31365
31366     This patch updates the default environmental variables for the
31367     Korat PPC 440EPx board, and makes additional minor fixes.
31368
31369     Signed-off-by: Larry Johnson <lrj@acm.org>
31370     Signed-off-by: Stefan Roese <sr@denx.de>
31371
31372 commit f20405e31680efc36293c59b4963db57c9d93df4
31373 Author: Larry Johnson <lrj@acm.org>
31374 Date:   Wed Jan 28 15:30:02 2009 -0500
31375
31376     ppc4xx: Add variable "korat_usbcf" for Korat board
31377
31378     The new environment variable "korat_usbcf" selects the USB
31379     port used by the Korat board's CompactFlash controller.
31380
31381     Signed-off-by: Larry Johnson <lrj@acm.org>
31382     Signed-off-by: Stefan Roese <sr@denx.de>
31383
31384 commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe
31385 Author: Gunnar Rangoy <gunnar@rangoy.com>
31386 Date:   Fri Jan 23 12:56:31 2009 +0100
31387
31388     AVR32: macb - Search for PHY id
31389
31390     This patch adds support for searching through available PHY-addresses in
31391     the macb-driver. This is needed for the ATEVK1100 evaluation board,
31392     where the PHY-address will be initialized to either 1 or 7.
31393
31394     This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when
31395     enabled tells the driver to search for the PHY address.
31396
31397     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
31398     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
31399     Signed-off-by: Olav Morken <olavmrk@gmail.com>
31400     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31401
31402 commit af8626e0c08a780d9ded1d9c4883a89355f60e75
31403 Author: Olav Morken <olavmrk@gmail.com>
31404 Date:   Fri Jan 23 12:56:26 2009 +0100
31405
31406     Fix IP alignment problem
31407
31408     This patch removes volatile from:
31409     volatile IP_t *ip = (IP_t *)xip;
31410
31411     Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
31412     using volatile, which causes an exception since xip isn't aligned on a word
31413     boundary.
31414
31415     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
31416     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
31417     Signed-off-by: Olav Morken <olavmrk@gmail.com>
31418     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31419
31420 commit 12a8b9db12f82a189ff143a58731007f5469da61
31421 Author: Ron Madrid <ron_madrid@sbcglobal.net>
31422 Date:   Wed Jan 28 16:17:21 2009 -0800
31423
31424     Marvell 88E1118 interrupt fix
31425
31426     This patch adjusts the LED control so that interrupt lines are not reading LEDs
31427     and effectively causing indefinite interrupts to the controller.
31428
31429     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
31430     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31431
31432 commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9
31433 Author: Stefan Roese <sr@denx.de>
31434 Date:   Wed Jan 21 17:14:26 2009 +0100
31435
31436     net: smc911x.c: Add LAN9211 to chip_ids[] array
31437
31438     Signed-off-by: Stefan Roese <sr@denx.de>
31439     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31440
31441 commit 75edebe3011c963a7cd84be0f4a987477f2aaf89
31442 Author: Mike Frysinger <vapier@gentoo.org>
31443 Date:   Tue Jan 27 16:53:39 2009 -0500
31444
31445     Move is_valid_ether_addr() to include/net.h
31446
31447     Import the is_valid_ether_addr() function from the Linux kernel.
31448
31449     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31450     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31451
31452 commit 268859338c0188eab1d0d3b867b7dad3c5cc734a
31453 Author: Michal Simek <monstr@monstr.eu>
31454 Date:   Mon Jan 5 12:25:13 2009 +0100
31455
31456     net: Sort Makefile labels
31457
31458     Signed-off-by: Michal Simek <monstr@monstr.eu>
31459     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31460
31461 commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2
31462 Author: Wolfgang Denk <wd@denx.de>
31463 Date:   Wed Jan 28 23:06:42 2009 +0100
31464
31465     85xx: Fix compile breakage with sbc8540 and sbc8560
31466
31467     This fixes an error which raises just a warning:
31468     sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast
31469
31470     Signed-off-by: Wolfgang Denk <wd@denx.de>
31471
31472 commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58
31473 Author: Mike Frysinger <vapier@gentoo.org>
31474 Date:   Wed Jan 28 13:48:55 2009 -0500
31475
31476     SPD823TS: do not define CONFIG_CMD_ENV
31477
31478     Since the SPD823TS board does not actually have any writable flash to save
31479     its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is
31480     disabled.
31481
31482     This fixes the build error:
31483     common/libcommon.a(cmd_nvedit.o): In function `do_saveenv':
31484     common/cmd_nvedit.c:557: undefined reference to `saveenv'
31485     make: *** [u-boot] Error 1
31486
31487     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31488
31489 commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315
31490 Author: Dirk Behme <dirk.behme@googlemail.com>
31491 Date:   Wed Jan 28 21:40:16 2009 +0100
31492
31493     OMAP3: Add Zoom1 board support
31494
31495     Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here:
31496     http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
31497
31498     Signed-off-by: Nishanth Menon <nm@ti.com>
31499     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
31500
31501 commit 2be2c6cc674e26237962f5cf4c0d311e139e4241
31502 Author: Dirk Behme <dirk.behme@googlemail.com>
31503 Date:   Wed Jan 28 21:39:58 2009 +0100
31504
31505     OMAP3: Add Pandora support
31506
31507     Add Pandora support.
31508
31509     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
31510     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
31511     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
31512
31513 commit ad9bc8e52d174d699d1367be0b90089e4fdeb933
31514 Author: Dirk Behme <dirk.behme@googlemail.com>
31515 Date:   Wed Jan 28 21:39:58 2009 +0100
31516
31517     OMAP3: Add EVM board
31518
31519     Add EVM board support.
31520
31521     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
31522     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
31523     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
31524
31525 commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec
31526 Author: Dirk Behme <dirk.behme@googlemail.com>
31527 Date:   Wed Jan 28 21:39:57 2009 +0100
31528
31529     OMAP3: Add Overo board
31530
31531     Add Overo board support.
31532
31533     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
31534     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
31535     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
31536
31537 commit f904cdbb68167c647887f19929ad295dbaac8862
31538 Author: Dirk Behme <dirk.behme@googlemail.com>
31539 Date:   Tue Jan 27 18:19:12 2009 +0100
31540
31541     OMAP3: Add common power code, README, and BeagleBoard
31542
31543     Add BeagleBoard support, common power code and README.
31544
31545     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
31546     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
31547
31548 commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60
31549 Author: Kumar Gala <galak@kernel.crashing.org>
31550 Date:   Wed Jan 28 08:31:10 2009 -0600
31551
31552     85xx: Fix compile breakage with MPC8540EVAL
31553
31554     Configuring for MPC8540EVAL board...
31555     mpc8540eval.c: In function 'checkboard':
31556     mpc8540eval.c:53: error: invalid operands to binary /
31557     make[1]: *** [mpc8540eval.o] Error 1
31558
31559     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31560
31561 commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6
31562 Author: Bryan Wu <bryan.wu@analog.com>
31563 Date:   Sun Jan 18 23:04:27 2009 -0500
31564
31565     usb_scan_devices: fix output with no devices
31566
31567     We should check the return of usb_new_device() so that if no USB device is
31568     found, we print out the right message rather than always saying "new usb
31569     device found".
31570
31571     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
31572     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31573     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31574
31575 commit f1c1f540243438246aefb703fdcf16957e3a72e1
31576 Author: Stefan Roese <sr@denx.de>
31577 Date:   Thu Jan 22 10:11:21 2009 +0100
31578
31579     USB: Add high-speed (480Mb/s) to all USB related outputs
31580
31581     With this patch the USB related connection speed output ("usb tree" command and
31582     debug output) is now high-speed enabled.
31583
31584     This patch also fixes a compilation warning when debugging is enabled.
31585
31586     Signed-off-by: Stefan Roese <sr@denx.de>
31587     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31588
31589 commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb
31590 Author: Stefan Roese <sr@denx.de>
31591 Date:   Wed Jan 21 17:12:19 2009 +0100
31592
31593     USB: Add dcache support to the EHCI driver
31594
31595     This patch adds routines to handle (flush/invalidate) the dcache for the
31596     QH and qTD structures and data buffers. This is needed on platforms using
31597     this EHCI support with dcache enabled (like the MIPS VCT board port).
31598
31599     Signed-off-by: Stefan Roese <sr@denx.de>
31600     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31601
31602 commit 4e0ea0efc1e501186aca8577a4042fc6fa641602
31603 Author: Stefan Roese <sr@denx.de>
31604 Date:   Wed Jan 21 17:12:28 2009 +0100
31605
31606     USB: Add EHCI support for VCT EHCI controller
31607
31608     Signed-off-by: Stefan Roese <sr@denx.de>
31609     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31610
31611 commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d
31612 Author: Stefan Roese <sr@denx.de>
31613 Date:   Wed Jan 21 17:12:10 2009 +0100
31614
31615     USB: Add config option to call ehci_hcd_init() again after EHCI reset
31616
31617     This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET
31618     to call ehci_hcd_init() again after ehci_reset() is executed. This
31619     is needed for the upcoming VCT EHCI support which needs to re-init
31620     the hcd part again after the EHCI CMD_RESET is executed.
31621
31622     Signed-off-by: Stefan Roese <sr@denx.de>
31623     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31624
31625 commit 597eb28bd9691266b7b804364cda577cdb51d106
31626 Author: Stefan Roese <sr@denx.de>
31627 Date:   Wed Jan 21 17:12:01 2009 +0100
31628
31629     USB: Fix speed detection on EHCI cntr with root hub transaction translators
31630
31631     This patch fixes an issue that the speed of USB devices was not detected
31632     correctly on some EHCI controllers. This will be used on the upcoming VCT
31633     EHCI support.
31634
31635     Signed-off-by: Stefan Roese <sr@denx.de>
31636     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31637
31638 commit 20cc06611ea33fc0a67a5e56e6476379d2de3091
31639 Author: Thomas Abraham <t-abraham@ti.com>
31640 Date:   Sun Jan 4 09:41:20 2009 +0530
31641
31642     usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform
31643
31644     Enabling USB MSC support for DM6446 (TI DaVinci) platform in the
31645     configuration file.
31646
31647     Signed-off-by: Ravi Babu <ravibabu@ti.com>
31648     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
31649     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
31650     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
31651     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31652
31653 commit 538ef967715322f64ee08efa2296d9682111b014
31654 Author: Thomas Abraham <t-abraham@ti.com>
31655 Date:   Sun Jan 4 09:41:16 2009 +0530
31656
31657     usb : musb : Enabling DM6446 (TI DaVinci) USB module power
31658
31659     Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level
31660     controller hook up to USB core layer.
31661
31662     Signed-off-by: Ravi Babu <ravibabu@ti.com>
31663     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
31664     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
31665     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
31666     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31667
31668 commit e142e9f35f8ec61e74bf8019428b003f5070c33b
31669 Author: Thomas Abraham <t-abraham@ti.com>
31670 Date:   Sun Jan 4 09:41:13 2009 +0530
31671
31672     usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support
31673
31674     Adding DM6446 (TI DaVinci) platform specific USB functionality for
31675     USB Phy and VBUS initialization.
31676
31677     Signed-off-by: Ravi Babu <ravibabu@ti.com>
31678     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
31679     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
31680     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
31681     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31682
31683 commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da
31684 Author: Thomas Abraham <t-abraham@ti.com>
31685 Date:   Sun Jan 4 09:41:09 2009 +0530
31686
31687     usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM
31688
31689     Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci)
31690     platform.
31691
31692     Signed-off-by: Ravi Babu <ravibabu@ti.com>
31693     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
31694     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
31695     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
31696     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31697
31698 commit a142896934c755e679ba87e227a8e449f39b0012
31699 Author: Thomas Abraham <t-abraham@ti.com>
31700 Date:   Sun Jan 4 09:41:03 2009 +0530
31701
31702     usb : musb : Adding host controller driver for Mentor USB controller
31703
31704     Adding Mentor USB core functionality and Mentor USB Host controller
31705     functionality for Mentor USB OTG controller (musbhdrc).
31706
31707     Signed-off-by: Ravi Babu <ravibabu@ti.com>
31708     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
31709     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
31710     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
31711     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31712
31713 commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a
31714 Author: Mike Frysinger <vapier@gentoo.org>
31715 Date:   Thu Jan 1 18:27:27 2009 -0500
31716
31717     usb.h: use standard __LITTLE_ENDIAN from Linux headers
31718
31719     Rather than forcing people to define a custom "LITTLEENDIAN", just use the
31720     __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is
31721     already setting up.
31722
31723     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31724     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31725
31726 commit 7b6e31eb17e3ff76238a60803fc531517d516223
31727 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31728 Date:   Wed Dec 31 10:33:56 2008 +0100
31729
31730     USB ehci ixp4xx support
31731
31732     Add USB ehci ixp4xx host controller. Test on ixdp465 board.
31733
31734     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
31735     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31736
31737 commit 1ed9f9adc88218841dfeb60b9094a5a548bff009
31738 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31739 Date:   Wed Dec 31 10:33:22 2008 +0100
31740
31741     USB ehci remove infinite loop and use handshake function
31742
31743     USB ehci code cleanup. Use handshake instead of infinite while loop
31744     to check the STD_ASS status
31745
31746     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
31747     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31748
31749 commit 8fea2914ac974029b65926ef8247d908f84d202d
31750 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31751 Date:   Wed Dec 31 10:32:41 2008 +0100
31752
31753     Add initial support for USB ehci pci
31754
31755     Add USB ehci pci support. This patch doesn't include any
31756     pci_ids and it is not tested on real hardware.
31757
31758     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
31759     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31760
31761 commit 14e4111cdab7e7738ff6a203d445e4d8377f058f
31762 Author: Bryan Wu <Bryan.Wu@analog.com>
31763 Date:   Thu Jan 1 19:48:07 2009 -0500
31764
31765     usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
31766
31767     The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4
31768     does not like to be reset, so check for it.
31769
31770     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
31771     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31772     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31773
31774 commit 1eb734fed3b79a5e6106dad16e88041894fdab30
31775 Author: Thomas Abraham <t-abraham@ti.com>
31776 Date:   Sun Jan 4 12:15:35 2009 +0530
31777
31778     usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure
31779
31780     This patch populates the 'priv' field of the USB keyboard device_t
31781     structure. The 'priv' field is populated with the address of the
31782     'struct usb_device' structure that represents the USB device.
31783
31784     The 'priv' field can then be used in the 'usb_event_poll' function to
31785     determine the USB device that requires to be polled. An
31786     example of its usage in 'usb_event_poll' function is as below.
31787
31788         device_t *dev;
31789         struct usb_device *usb_kbd_dev;
31790
31791         <snip>
31792
31793         dev = device_get_by_name("usbkbd");
31794         usb_kbd_dev = (struct usb_device *)dev->priv;
31795         iface = &usb_kbd_dev->config.if_desc[0];
31796
31797     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
31798     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31799
31800 commit 366523c26b6320af171459b19e6e0e9e3baa83ca
31801 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31802 Date:   Thu Dec 18 10:05:37 2008 +0100
31803
31804     USB change speed
31805
31806     USB changes the speed according to the port status
31807
31808     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
31809     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31810
31811 commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df
31812 Author: Remy Böhmer <linux@bohmer.net>
31813 Date:   Sat Dec 13 22:51:58 2008 +0100
31814
31815     EHCI fix code and ixp4xx test.
31816     USB ehci configuration parameter:
31817
31818     #define CONFIG_CMD_USB          1
31819     #define CONFIG_USB_STORAGE      1
31820     #define CONFIG_USB_EHCI
31821     #define CONFIG_USB_EHCI_IXP4XX      1
31822     #define CONFIG_EHCI_IS_TDI  1
31823     #define CONFIG_EHCI_DESC_BIG_ENDIAN     1
31824     #define CONFIG_EHCI_MMIO_BIG_ENDIAN     1
31825     #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
31826     #define CONFIG_LEGACY_USB_INIT_SEQ      1
31827
31828     2 USB Device(s) found
31829            scanning bus for storage devices... 0 Storage Device(s) found
31830     => usb tree
31831
31832     Device Tree:
31833       1  Hub (1.5MBit/s, 0mA)
31834       |  u-boot EHCI Host Controller
31835       |
31836       |+-2  Mass Storage (12MBit/s, 100mA)
31837            Sony Storage Media 0C07040930296
31838
31839     =>
31840
31841     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
31842     Signed-off-by: Remy Böhmer <linux@bohmer.net>
31843
31844 commit 51ab142b8b546d5e627b2c8c36d0adae222565f7
31845 Author: michael <michael@panicking.retis>
31846 Date:   Thu Dec 11 13:43:55 2008 +0100
31847
31848     [PATCH] This patch add varius fix to the ehci.
31849     - fix ehci_readl, ehci_writel
31850     - introduce new define in ehci.h
31851     - introduce the handshake function for waiting on a register
31852     - fix usb_ehci_fsl with the new HC_LENGTH macro
31853
31854     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
31855     Signed-off-by: Remy Böhmer <linux@bohmer.net>
31856
31857 commit db63299b1dd2894ade542278210bccd046de6435
31858 Author: michael <michael@panicking.retis>
31859 Date:   Wed Dec 10 17:55:19 2008 +0100
31860
31861     [PATCH] Fix EHCI usb. I start to test on a
31862     IXP465 board and I find some errors in the code. This
31863     patch fix:
31864     - descriptor initizialization (config, interface and endpoint
31865       must be one next-to the other when the USB_DT_CONFIG message
31866       is send.
31867     - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN
31868       and the CONFIG_EHCI_MMIO_BIG_ENDIAN)
31869     - Introduce the linux version of the usb_config_descriptor and
31870       usb_interface descriptor. This descriptor does't contains
31871       u-boot extension.
31872
31873     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
31874     Signed-off-by: Remy Böhmer <linux@bohmer.net>
31875
31876 commit 6b92487dcf9afe83a3570153d66940fdb293be76
31877 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31878 Date:   Fri Nov 28 13:22:09 2008 +0100
31879
31880     USB ehci freescale support
31881
31882     Add USB ehci freescale support
31883
31884     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31885     Signed-off-by: Remy Böhmer <linux@bohmer.net>
31886
31887 commit aaf098cfeed04595d4c5100ffd39095d79edbf90
31888 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31889 Date:   Fri Nov 28 13:20:46 2008 +0100
31890
31891     USB ehci core support
31892
31893     Add USB ehci core support
31894
31895     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31896     Signed-off-by: Remy Böhmer <linux@bohmer.net>
31897
31898 commit 3e126484df7868e341545cce740b24b62b0cd3b7
31899 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31900 Date:   Fri Nov 28 13:19:19 2008 +0100
31901
31902     Prepare USB layer for ehci
31903
31904     Prepare USB layer for ehci support
31905
31906     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31907     Signed-off-by: Remy Böhmer <linux@bohmer.net>
31908
31909 commit a0cb3fc31e58996a1c5732715ac04159d4d284fd
31910 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31911 Date:   Wed Dec 10 15:52:06 2008 +0100
31912
31913     USB storage cleanup patch
31914
31915     Cleanup usb storage
31916
31917     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
31918     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31919
31920 commit fe033ad6d0883063fe857237abb9436fab03208c
31921 Author: Mike Frysinger <vapier@gentoo.org>
31922 Date:   Sun Oct 12 06:02:55 2008 -0400
31923
31924     Blackfin: fixup misc warnings such as printf's and missing casts
31925
31926     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31927
31928 commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c
31929 Author: Mike Frysinger <vapier@gentoo.org>
31930 Date:   Sun Oct 12 22:09:26 2008 -0400
31931
31932     Blackfin: convert old boards to use COBJS-y Makefile style
31933
31934     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31935
31936 commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5
31937 Author: Mike Frysinger <vapier@gentoo.org>
31938 Date:   Sat Oct 11 22:38:37 2008 -0400
31939
31940     Blackfin: bf533-stamp: rewrite resource swap logic
31941
31942     The old swap function tended to clobber unrelated pins and screw up masks.
31943     Rewrite the thing from scratch so it only uses the resources it needs.
31944
31945     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31946
31947 commit 29d4ea0a9073c82469184331010136f52edf8db6
31948 Author: Mike Frysinger <vapier@gentoo.org>
31949 Date:   Sat Oct 11 22:08:42 2008 -0400
31950
31951     Blackfin: bootldr: implement BF53x/BF56x LDR loader
31952
31953     The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of
31954     arbitrary memory locations, so implement a basic one in software.
31955
31956     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31957
31958 commit 8b35e3aeff6c2d747c37697997b3f8a808432329
31959 Author: Mike Frysinger <vapier@gentoo.org>
31960 Date:   Sat Oct 11 22:05:42 2008 -0400
31961
31962     Blackfin: implement real write support for OTP
31963
31964     Now that real documentation has been released for the OTP interface and
31965     the on-chip ROM wrt writing/timings, implement support for reading/writing
31966     as well as dumping/locking.
31967
31968     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31969
31970 commit 9372c3214808fab545227d8d0f76b3bfcc6760ec
31971 Author: Mike Frysinger <vapier@gentoo.org>
31972 Date:   Sat Oct 11 22:04:05 2008 -0400
31973
31974     Blackfin: update on-chip ROM API
31975
31976     This brings the API for the on-chip ROM in line with the toolchain and
31977     hardware documentation.
31978
31979     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31980
31981 commit 7633903bff432ec7b27905dce7396958553f2be6
31982 Author: Mike Frysinger <vapier@gentoo.org>
31983 Date:   Sat Oct 11 21:52:17 2008 -0400
31984
31985     Blackfin: allow serial console to be disabled
31986
31987     Some devices have no UART device pulled out, so allow people to disable the
31988     driver completely in favor of other methods (like JTAG-console).
31989
31990     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31991
31992 commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45
31993 Author: Mike Frysinger <vapier@gentoo.org>
31994 Date:   Sat Oct 11 21:51:20 2008 -0400
31995
31996     Blackfin: support console-over-JTAG
31997
31998     The Blackfin JTAG has the ability to pass data via a back-channel without
31999     halting the processor.  Utilize that channel to emulate a console.
32000
32001     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32002
32003 commit cf8f2efb5f39c5225da92391c14a07eecbeca881
32004 Author: Mike Frysinger <vapier@gentoo.org>
32005 Date:   Sat Oct 11 21:49:06 2008 -0400
32006
32007     Blackfin: handle new anomalies with reset
32008
32009     Workaround fun new anomalies related to software reset of the processor.
32010
32011     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32012
32013 commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e
32014 Author: Mike Frysinger <vapier@gentoo.org>
32015 Date:   Sat Oct 11 21:44:00 2008 -0400
32016
32017     Blackfin: pass RETX to Linux
32018
32019     Make sure we save the value of RETX at power on and then pass it on to the
32020     kernel so that it can nicely debug a "double-fault-caused-a-reset" crash.
32021
32022     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32023
32024 commit b5eba3fafcccd1979380f12a256bd0e19be3d61e
32025 Author: Mike Frysinger <vapier@gentoo.org>
32026 Date:   Sat Oct 11 21:40:26 2008 -0400
32027
32028     Blackfin: clarify relocation comment during init
32029
32030     People often ask questions about the init process and when things go
32031     from flash to relocated base, so clarify the comments a bit.
32032
32033     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32034
32035 commit 95433f6d43ede6b40c1d900f3f704c839aa074f1
32036 Author: Mike Frysinger <vapier@gentoo.org>
32037 Date:   Sat Oct 11 21:23:41 2008 -0400
32038
32039     Blackfin: just set SP register directly during init
32040
32041     No need to set the SP register indirectly to the configured value when it
32042     can be set directly.
32043
32044     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32045
32046 commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c
32047 Author: Mike Frysinger <vapier@gentoo.org>
32048 Date:   Sat Oct 11 21:15:53 2008 -0400
32049
32050     Blackfin: add portmuxing for UARTs on the BF51x
32051
32052     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32053
32054 commit 4f6a313240c531042f16909a3a170ab047b95779
32055 Author: Mike Frysinger <vapier@gentoo.org>
32056 Date:   Sun Jun 1 01:26:29 2008 -0400
32057
32058     Blackfin: respect CONFIG_CLKIN_HALF
32059
32060     As pointed out by Ivan Koryakovskiy, the initialization code was not
32061     actually respecting the CONFIG_CLKIN_HALF option when configuring the
32062     PLL_CTL register.
32063
32064     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32065
32066 commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33
32067 Author: Mike Frysinger <vapier@gentoo.org>
32068 Date:   Sun Jun 1 01:21:34 2008 -0400
32069
32070     Blackfin: use common memcpy routine during init
32071
32072     Rather than using a local custom memcpy function, just call the existing
32073     optimized Blackfin version.
32074
32075     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32076
32077 commit 362c943347364e9373af4c5530778491ab56ec2e
32078 Author: Mike Frysinger <vapier@gentoo.org>
32079 Date:   Wed Apr 9 02:27:06 2008 -0400
32080
32081     Blackfin: set default boot SPI CS for BF538/BF539
32082
32083     The BF538/BF539 use CS2 for booting off of rather than CS1 like newer
32084     Blackfin parts.
32085
32086     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32087
32088 commit 74dde80bd5d55bc146630853ca191aaeea7c30f4
32089 Author: Mike Frysinger <vapier@gentoo.org>
32090 Date:   Wed Apr 9 02:20:59 2008 -0400
32091
32092     Blackfin: punt unused BF533-STAMP definitions
32093
32094     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32095
32096 commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26
32097 Author: Mike Frysinger <vapier@gentoo.org>
32098 Date:   Fri Apr 18 20:44:11 2008 -0400
32099
32100     Blackfin: resurrect BF533-STAMP video splash driver
32101
32102     This video driver used to live in the Blackfin cpu directory, but it was
32103     lost during the unification process.  This brings it back.
32104
32105     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32106
32107 commit a750d038f2548d846ea1e046d873dc932d041319
32108 Author: Mike Frysinger <vapier@gentoo.org>
32109 Date:   Wed Apr 9 02:31:29 2008 -0400
32110
32111     Blackfin: tighten up post memory coding style
32112
32113     No functional changes here; just cleanup code style a bit.
32114
32115     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32116
32117 commit 0649908f92c9bd214dd139aa3d4698c1654a45c6
32118 Author: Mike Frysinger <vapier@gentoo.org>
32119 Date:   Wed Apr 9 02:29:18 2008 -0400
32120
32121     Blackfin: bf537-stamp nand: fix more style errors in previous commit
32122
32123     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32124
32125 commit 41f3325ae9add641036d7cb362e884b698e53f07
32126 Author: Mike Frysinger <vapier@gentoo.org>
32127 Date:   Sat Oct 11 20:31:17 2008 -0400
32128
32129     Blackfin: drop dead/wrong debug code in initdram()
32130
32131     The DEBUG code in initdram() is quite old and was never really useful, so
32132     just drop it altogether.  Common Blackfin debug code does a better job.
32133
32134     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32135
32136 commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb
32137 Author: Mike Frysinger <vapier@gentoo.org>
32138 Date:   Sat Oct 11 20:30:28 2008 -0400
32139
32140     Blackfin: bf533-ezkit: shuffle flash defines a little
32141
32142     Some of the flash defines weren't in the correct location and caused build
32143     problems in some configurations, so let's move types and defines to better
32144     local locations.
32145
32146     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32147
32148 commit be853bf86b41e91f4c422f0f56fdf87ea3191266
32149 Author: Mike Frysinger <vapier@gentoo.org>
32150 Date:   Mon Oct 6 04:16:47 2008 -0400
32151
32152     Blackfin: overhaul i2c driver
32153
32154     The current Blackfin i2c driver does not work properly with certain devices
32155     due to it breaking up transfers incorrectly.  This is a rewrite of the
32156     driver and relocates it to the newer place in the source tree.
32157
32158     Also remove duplicated I2C speed defines in Blackfin board configs and
32159     disable I2C slave address usage since it isn't implemented.
32160
32161     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32162
32163 commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45
32164 Author: Mike Frysinger <vapier@gentoo.org>
32165 Date:   Mon Oct 6 04:00:07 2008 -0400
32166
32167     Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection
32168
32169     Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of
32170     128kB when setting up the default flash protection region for U-Boot
32171     itself.
32172
32173     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32174
32175 commit 78a0ba7dc24c9682371f6ee8549b569fb573a329
32176 Author: Mike Frysinger <vapier@gentoo.org>
32177 Date:   Mon Oct 6 03:57:39 2008 -0400
32178
32179     Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE
32180
32181     When setting up the global data, rather than relying on sizeof(), use the
32182     common CONFIG_SYS_GBL_DATA_SIZE define.
32183
32184     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32185
32186 commit 01815c2d06c5b838f2cd536703e47bd2c9148194
32187 Author: Mike Frysinger <vapier@gentoo.org>
32188 Date:   Mon Oct 6 03:52:24 2008 -0400
32189
32190     Blackfin: implement general support for CONFIG_STATUS_LED
32191
32192     Here are the Blackfin-specific and board-independent pieces for status leds.
32193
32194     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32195
32196 commit 6882b5a79a3247494b62c05015fa672557f1bfaa
32197 Author: Mike Frysinger <vapier@gentoo.org>
32198 Date:   Mon Oct 6 03:49:32 2008 -0400
32199
32200     Blackfin: do not init i2c in Blackfin board init
32201
32202     The common code takes care of calling i2c_init() when needed, so no point
32203     in us doing it as well.
32204
32205     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32206
32207 commit 1118ea73698eee6e72ef5cbfc00e41746040304f
32208 Author: Mike Frysinger <vapier@gentoo.org>
32209 Date:   Mon Oct 6 03:42:20 2008 -0400
32210
32211     Blackfin: bfin_mac: update port muxing
32212
32213     Adds support more Blackfin parts and fixes broken muxing for older ones.
32214
32215     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32216
32217 commit 05b75e48832fc4afeecf8e76d704349557dffa35
32218 Author: Mike Frysinger <vapier@gentoo.org>
32219 Date:   Mon Oct 6 03:35:44 2008 -0400
32220
32221     Blackfin: fix dcache handling when doing dma memcpy's
32222
32223     Our dcache invalidate function doesn't just invalidate, it also flushes.
32224     So rename the function accordingly and fix the dma_memcpy() function so it
32225     doesn't inadvertently corrupt the data destination.
32226
32227     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32228
32229 commit 68e5632494168095d75f120af70043b68afd2476
32230 Author: Mike Frysinger <vapier@gentoo.org>
32231 Date:   Thu Aug 7 18:56:56 2008 -0400
32232
32233     Blackfin: dont generate ldrs with --force
32234
32235     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32236
32237 commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8
32238 Author: Mike Frysinger <vapier@gentoo.org>
32239 Date:   Thu Aug 7 18:55:30 2008 -0400
32240
32241     Blackfin: pass --bmode/--initcode when creating ldr
32242
32243     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32244
32245 commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a
32246 Author: Mike Frysinger <vapier@gentoo.org>
32247 Date:   Thu Aug 7 18:39:27 2008 -0400
32248
32249     Blackfin: minimize time cache is turned off when replacing cplb entries
32250
32251     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32252
32253 commit 21d631360430cf0ae9099612273cd4de28911ba9
32254 Author: Mike Frysinger <vapier@gentoo.org>
32255 Date:   Thu Aug 7 15:31:13 2008 -0400
32256
32257     Blackfin: split cache handling out of dma_memcpy()
32258
32259     Creating a new dma_memcpy() function that skips all cache checks allows us
32260     to use the function in very early init where the cache is not yet setup.
32261
32262     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32263
32264 commit d31eb38512bed377d5d4b3c696662e52120a2e4c
32265 Author: Mike Frysinger <vapier@gentoo.org>
32266 Date:   Thu Aug 7 15:30:49 2008 -0400
32267
32268     Blackfin: abort dma_memcpy() for L1 scratchpad
32269
32270     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32271
32272 commit 81b799add709177e838466461f7b9989488b0fd5
32273 Author: Mike Frysinger <vapier@gentoo.org>
32274 Date:   Thu Aug 7 15:27:52 2008 -0400
32275
32276     Blackfin: rename bootm.c to boot.c
32277
32278     The boot file contains functions for more than just "bootm", so rename it
32279     accordingly.
32280
32281     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32282
32283 commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091
32284 Author: Mike Frysinger <vapier@gentoo.org>
32285 Date:   Thu Aug 7 13:22:37 2008 -0400
32286
32287     Blackfin: set more sane default board config values
32288
32289     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32290
32291 commit 36cd52a00794fb15ffab05d640acca92d7482993
32292 Author: Mike Frysinger <vapier@gentoo.org>
32293 Date:   Thu Aug 7 15:24:59 2008 -0400
32294
32295     Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
32296
32297     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32298
32299 commit c8054bc12e00669bd7588f2b30fef48aa94babac
32300 Author: Mike Frysinger <vapier@gentoo.org>
32301 Date:   Thu Aug 7 13:21:27 2008 -0400
32302
32303     Blackfin: add bit defines for DDR parts
32304
32305     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32306
32307 commit 154502fe0796f3b7a4698378c5d2080ae28a9782
32308 Author: Mike Frysinger <vapier@gentoo.org>
32309 Date:   Thu Aug 7 13:21:11 2008 -0400
32310
32311     Blackfin: add defines to describe active bootrom behavior
32312
32313     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32314
32315 commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2
32316 Author: Kim Phillips <kim.phillips@freescale.com>
32317 Date:   Tue Jan 27 16:03:53 2009 -0600
32318
32319     mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build
32320
32321     extend commit c70564e6b1bd08f3230182392238907f3531a87e
32322     "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency
32323     to the simpc8313 build and fix this:
32324
32325     ...Large Page NAND...Configuring for SIMPC8313 board...
32326     nand_boot_fsl_elbc.o: In function `nand_boot':
32327     nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache'
32328     make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1
32329     make: *** [nand_spl] Error 2
32330
32331     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32332
32333 commit 54a7cc4912feefa45be961cc47cc159563725d2f
32334 Author: Wolfgang Denk <wd@denx.de>
32335 Date:   Wed Jan 28 09:25:31 2009 +0100
32336
32337     mpc8536ds.c: include sata.h to for needed function prototypes
32338
32339     Signed-off-by: Wolfgang Denk <wd@denx.de>
32340
32341 commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8
32342 Author: Peter Tyser <ptyser@xes-inc.com>
32343 Date:   Tue Jan 27 18:03:12 2009 -0600
32344
32345     Command usage cleanup
32346
32347     Remove command name from all command "usage" fields and update
32348     common/command.c to display "name - usage" instead of
32349     just "usage". Also remove newlines from command usage fields.
32350
32351     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32352
32353 commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b
32354 Author: Peter Tyser <ptyser@xes-inc.com>
32355 Date:   Tue Jan 27 18:03:11 2009 -0600
32356
32357     amcc: Clean up command usage output
32358
32359     Update taihu and taishan commands to use cmd_usage() function
32360     to display usage messages.
32361
32362     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32363
32364 commit 62c3ae7c6ef215b1afa614abdf61acf077752207
32365 Author: Peter Tyser <ptyser@xes-inc.com>
32366 Date:   Tue Jan 27 18:03:10 2009 -0600
32367
32368     Standardize command usage messages with cmd_usage()
32369
32370     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32371
32372 commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70
32373 Author: Peter Tyser <ptyser@xes-inc.com>
32374 Date:   Tue Jan 27 18:03:09 2009 -0600
32375
32376     pcs440ep: Clean up led command definition
32377
32378     The pcs440ep's led command usage formatting is non-standard.  It
32379     was made standard in preparation for larger command usage updates.
32380
32381     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32382
32383 commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62
32384 Author: Peter Tyser <ptyser@xes-inc.com>
32385 Date:   Tue Jan 27 18:03:08 2009 -0600
32386
32387     Clean up diufb command definitions
32388
32389     The diufb command usage formatting is non-standard.  It was
32390     made standard in preparation for larger command usage updates.
32391
32392     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32393
32394 commit 6450a8485836fc80615ae6de6a864c33369b44f5
32395 Author: Wolfgang Denk <wd@denx.de>
32396 Date:   Wed Jan 28 00:29:26 2009 +0100
32397
32398     Update CHANGELOG, tiny coding style cleanup.
32399
32400     Signed-off-by: Wolfgang Denk <wd@denx.de>
32401
32402 commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
32403 Author: Mike Frysinger <vapier@gentoo.org>
32404 Date:   Tue Jan 27 16:12:21 2009 -0500
32405
32406     SATA: do not auto-initialize during boot
32407
32408     Rather than have the board code initialize SATA automatically during boot,
32409     make the user manually run "sata init".  This brings the SATA subsystem in
32410     line with common U-Boot policy.
32411
32412     Rather than having a dedicated weak function "is_sata_supported", people
32413     can override sata_initialize() to do their weird board stuff.  Then they
32414     can call the actual __sata_initialize().
32415
32416     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32417
32418 commit 50970839712dda35399e2fa83fe818df9354d618
32419 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
32420 Date:   Mon Jan 26 08:45:14 2009 -0500
32421
32422     part_efi: Fix partition size calculation due to inclusive ending LBA.
32423
32424     The ending LBA is inclusive. Hence, the partition size should be
32425     ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
32426
32427     This is confirmed against the results from the parted tool.
32428     (e.g. use parted /dev/sda -s unit S print) and observe the size.
32429
32430     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
32431
32432 commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
32433 Author: Tomasz Figa <tomasz.figa@gmail.com>
32434 Date:   Tue Dec 30 18:35:57 2008 +0100
32435
32436     jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
32437
32438     This patch fixes a bug (?) introduced after inclusion of the new
32439     JFFS2 code.
32440
32441     When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
32442     fill in part->sector_size (keeping it as 0), but a correct value is
32443     needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
32444     to be in the same place of the memory, what obviously means
32445     impossibility to use the JFFS2 partition.
32446
32447     This problem is fixed in this patch by including sector size
32448     calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
32449
32450     Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
32451
32452 commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
32453 Author: Mike Frysinger <vapier@gentoo.org>
32454 Date:   Tue Dec 30 02:59:25 2008 -0500
32455
32456     saveenv: standardize enablement
32457
32458     Rather than special casing each environment type for enabling the saveenv
32459     command, have them all behave the same.  This avoids bitrot as new env
32460     sources are added/removed.
32461
32462     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32463
32464 commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
32465 Author: Andrew Dyer <adyer@righthandtech.com>
32466 Date:   Mon Dec 29 17:36:01 2008 -0600
32467
32468     soft_i2c.c add option for repeated start in i2c_read()
32469
32470     This patch adds a #define to optionally change the behaviour of
32471     i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
32472     stop-start between sending the device address pointer write and
32473     reading back the data.  The current behaviour is retained as the
32474     default.
32475
32476     While most devices will work either way, I have a smart battery(*)
32477     that requires repeated start, and someone at some point found a
32478     device that required a stop-start.
32479
32480     (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
32481
32482     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
32483
32484 commit 3429071700963ca2f944c51d695a7481af0cee33
32485 Author: Wolfgang Denk <wd@denx.de>
32486 Date:   Tue Jan 27 22:07:14 2009 +0100
32487
32488     {delta,zylonite}/lowlevel_init.S: fix typo
32489
32490     Commit 9d803d8c mistakenly changed some constants
32491     from 0x300 into 300 - this patch fixes it.
32492
32493     Pointed out by Tom Evans <tom@ceos.com.au>, see
32494     http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
32495     details.
32496
32497     Signed-off-by: Wolfgang Denk <wd@denx.de>
32498
32499 commit 1bc434373013af241835c14011ac3f291dccbf53
32500 Author: Stefan Althoefer <stefan.althoefer@web.de>
32501 Date:   Sat Dec 20 19:40:41 2008 +0100
32502
32503     drivers/net/e1000.c: missing terminator for supported devices
32504
32505     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
32506
32507 commit 65f7d41031a70b1649b35020995c505edca91533
32508 Author: Wolfgang Denk <wd@denx.de>
32509 Date:   Tue Jan 27 21:36:28 2009 +0100
32510
32511     fat.c: fix warning: array subscript is above array bounds
32512
32513     Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
32514
32515     Signed-off-by: Wolfgang Denk <wd@denx.de>
32516
32517 commit 107b801cf3fe39612d69d70581ebc3bf5e215554
32518 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32519 Date:   Fri Jan 2 15:11:41 2009 +0100
32520
32521     Fix gunzip in case of insufficient output buffer
32522
32523     U-Boot's gunzip() function does not handle the return code
32524     of zlib's inflate() function correctly. gunzip() is implemented
32525     to uncompress all input data in one run. So the correct return
32526     code for the good case is Z_STREAM_END. In case of insufficient
32527     output buffer memory inflate returns Z_OK. For gunzip() this
32528     is an error.
32529
32530     It also makes sense to me to call inflateEnd() also in case
32531     of an error.
32532
32533     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32534
32535 commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
32536 Author: Stefan Roese <sr@denx.de>
32537 Date:   Wed Jan 21 17:25:01 2009 +0100
32538
32539     MIPS: Add VCT board series support (Part 3/3)
32540
32541     Signed-off-by: Stefan Roese <sr@denx.de>
32542
32543 commit ae691e5719c48f1d2826cb72722497d1d162765b
32544 Author: Stefan Roese <sr@denx.de>
32545 Date:   Wed Jan 21 17:24:49 2009 +0100
32546
32547     MIPS: Add VCT board series support (Part 2/3)
32548
32549     Signed-off-by: Stefan Roese <sr@denx.de>
32550
32551 commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
32552 Author: Stefan Roese <sr@denx.de>
32553 Date:   Wed Jan 21 17:24:39 2009 +0100
32554
32555     MIPS: Add VCT board series support (Part 1/3)
32556
32557     Signed-off-by: Stefan Roese <sr@denx.de>
32558
32559 commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
32560 Author: Stefan Roese <sr@denx.de>
32561 Date:   Wed Jan 21 17:20:20 2009 +0100
32562
32563     MIPS: Add flush_dcache_range() and invalidate_dcache_range()
32564
32565     This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
32566     Those functions are needed for the upcoming dcache support for the USB
32567     EHCI driver. I chose this API because those cache handling functions are
32568     already present in the PPC architecture.
32569
32570     Signed-off-by: Stefan Roese <sr@denx.de>
32571     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
32572
32573 commit de832a99414ff06a4b2cdc9f5280b387da039834
32574 Author: Stefan Roese <sr@denx.de>
32575 Date:   Mon Jan 26 10:05:20 2009 +0100
32576
32577     nand_spl: Fix compile problem with board_nand_init() prototype
32578
32579     This patch removes the now obsolete and additionally wrongly defined
32580     board_nand_init() prototype from nand_spl/nand_boot.c.
32581
32582     Signed-off-by: Stefan Roese <sr@denx.de>
32583     Signed-off-by: Scott Wood <scottwood@freescale.com>
32584
32585 commit e8eac437189430d8e04a5d254ed92c58bc534a79
32586 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
32587 Date:   Wed Jan 14 08:44:26 2009 -0500
32588
32589     CFI: Add geometry reversal for STMicro M29W320ET
32590
32591     Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
32592
32593     Modeled after flash_fixup_amd, this patch handles the geometry reversal
32594     or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
32595     Since I cannot test all STM's chips, the detection is implemented as
32596     narrow as possible for now.
32597
32598     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
32599     Signed-off-by: Stefan Roese <sr@denx.de>
32600
32601 commit 0f8e851e897b535959a0781171910cd97f33c30c
32602 Author: Jens Gehrlein <sew_s@tqs.de>
32603 Date:   Tue Dec 16 17:25:55 2008 +0100
32604
32605     CFI: increase performance of function find_sector()
32606
32607     Tested on TQM5200S-BD with Samsung K8P2815UQB
32608
32609     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
32610     Signed-off-by: Stefan Roese <sr@denx.de>
32611
32612 commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
32613 Author: Jens Gehrlein <sew_s@tqs.de>
32614 Date:   Tue Dec 16 17:25:54 2008 +0100
32615
32616     CFI: avoid redundant function call in single word programming mode
32617
32618     The function find_sector() doesn't need to be called twice in
32619     the case of AMD command set.
32620     Tested on TQM5200S-BD with Samsung K8P2815UQB.
32621
32622     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
32623     Signed-off-by: Stefan Roese <sr@denx.de>
32624
32625 commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
32626 Author: Stefan Roese <sr@denx.de>
32627 Date:   Mon Jan 26 10:15:23 2009 +0100
32628
32629     ppc4xx: Remove compilation warning in gdppc440etc.c
32630
32631     Signed-off-by: Stefan Roese <sr@denx.de>
32632
32633 commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
32634 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32635 Date:   Fri Jan 2 12:19:47 2009 +0100
32636
32637     ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
32638
32639     Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
32640     Either they define or undef it. Because it's not used in any source
32641     files this patch removes any references to it.
32642
32643     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32644     Signed-off-by: Stefan Roese <sr@denx.de>
32645
32646 commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
32647 Author: Dirk Eibach <eibach@gdsys.de>
32648 Date:   Tue Dec 9 13:12:40 2008 +0100
32649
32650     ppc4xx: Add GDsys PowerPC 440 ETX board support.
32651
32652     Board support for the Guntermann & Drunck PowerPC 440 ETX module.
32653     Based on the AMCC Yosemite board support by Stefan Roese.
32654
32655     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
32656     Signed-off-by: Stefan Roese <sr@denx.de>
32657
32658 commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
32659 Author: Dirk Eibach <eibach@gdsys.de>
32660 Date:   Tue Dec 9 11:00:07 2008 +0100
32661
32662     ppc4xx: Improve DDR autodetect
32663
32664     Added support for a second memory bank to DDR autodetection for 440
32665     platforms.
32666     Made hardcoded values configurable.
32667
32668     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
32669     Signed-off-by: Stefan Roese <sr@denx.de>
32670
32671 commit 71a040f4f556cca4d30f06805d82e717b3ef1020
32672 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32673 Date:   Fri Nov 21 12:06:26 2008 +0900
32674
32675     sh: sh7763rdp: Update sh7763rdp config
32676
32677     Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API.
32678
32679     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32680     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32681
32682 commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56
32683 Author: Gary Jennejohn <garyj@denx.de>
32684 Date:   Thu Nov 20 12:28:38 2008 +0100
32685
32686     mgcoge make ether_scc.c work with CONFIG_NET_MULTI
32687
32688     This change is needed for mgcoge because it uses two ethernet drivers.
32689
32690     Add a check for the presence of the PIGGY board on mgcoge.  Without this
32691     board networking cannot work and the initialization must be aborted.
32692
32693     Only allocate rtx once to prevent DPRAM exhaustion.
32694
32695     Initialize ether_scc.c and the keymile-specific HDLC driver (to be added
32696     soon) in eth.c.
32697
32698     Signed-off-by: Gary Jennejohn <garyj@denx.de>
32699     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32700
32701 commit bd3980cc095af1728b994cdd8bf1ac430b6289e6
32702 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32703 Date:   Fri Nov 21 12:04:18 2008 +0900
32704
32705     sh: sh_eth: Change new network API
32706
32707     sh_eth used old network API. This patch changed new API.
32708
32709     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32710     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32711
32712 commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6
32713 Author: Stefan Roese <sr@denx.de>
32714 Date:   Wed Nov 12 13:31:02 2008 +0100
32715
32716     net: smc911x: Make register read/write functions weak
32717
32718     This patch changes the reg_read/_write to smc911x_reg_read/_write
32719     and defines then as weak so that they can be overridden by board
32720     specific version.
32721
32722     This will be used by the upcoming VCTH board support.
32723
32724     Signed-off-by: Stefan Roese <sr@denx.de>
32725     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32726
32727 commit 8b69b563039989885969d24465c56f8ac4c07c4c
32728 Author: Heiko Schocher <hs@denx.de>
32729 Date:   Thu Nov 20 09:57:14 2008 +0100
32730
32731     powerpc: net: support for the SMSC LAN8700 PHY
32732
32733     Signed-off-by: Heiko Schocher <hs@denx.de>
32734     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32735
32736 commit d5254f149da9e6cd649d887b042ce577ef3ba78d
32737 Author: Alessandro Rubini <rubini@unipv.it>
32738 Date:   Sat Jan 24 18:10:37 2009 +0100
32739
32740     Initial support for Nomadik 8815 development board
32741
32742     The NMDK8815 board is distributed by ST Microelectornics.
32743     Other (proprietary) code must be run to unlock the CPU before
32744     U-Boot runs. doc/README.nmdk8815 outlines the boot sequence.
32745
32746     This is the initial port, with basic infrastructure and
32747     a working serial port.
32748
32749     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
32750     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
32751     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32752
32753 commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47
32754 Author: Dirk Behme <dirk.behme@googlemail.com>
32755 Date:   Sun Dec 14 09:47:18 2008 +0100
32756
32757     OMAP3: Add I2C support
32758
32759     Add I2C support.
32760
32761     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
32762
32763 commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b
32764 Author: Dirk Behme <dirk.behme@googlemail.com>
32765 Date:   Sun Dec 14 09:47:17 2008 +0100
32766
32767     OMAP3: Add MMC support
32768
32769     Add MMC support.
32770
32771     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
32772
32773 commit 12201a13547ec22ddcdae278e74465e54a3be60c
32774 Author: Dirk Behme <dirk.behme@googlemail.com>
32775 Date:   Sun Dec 14 09:47:16 2008 +0100
32776
32777     OMAP3: Add NAND support
32778
32779     Add NAND support.
32780
32781     Signed-off-by: Nishanth Menon <nm@ti.com>
32782     Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
32783     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
32784
32785 commit 91eee546737ae21d930af479530997174c342b13
32786 Author: Dirk Behme <dirk.behme@googlemail.com>
32787 Date:   Sun Dec 14 09:47:15 2008 +0100
32788
32789     OMAP3: Add common board, interrupt and system info
32790
32791     Add common board, interrupt and system info code.
32792
32793     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
32794
32795 commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8
32796 Author: Dirk Behme <dirk.behme@googlemail.com>
32797 Date:   Sun Dec 14 09:47:14 2008 +0100
32798
32799     OMAP3: Add common clock, memory and low level code
32800
32801     Add common clock, memory and low level code
32802
32803     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
32804
32805 commit 0b02b184003e6a5023e05d5f31de54db279b1431
32806 Author: Dirk Behme <dirk.behme@googlemail.com>
32807 Date:   Sun Dec 14 09:47:13 2008 +0100
32808
32809     OMAP3: Add common cpu and start code
32810
32811     Add common cpu and start code.
32812
32813     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
32814
32815 commit a8b6450546cd507d331b8fde384791d84bde5651
32816 Author: Dirk Behme <dirk.behme@googlemail.com>
32817 Date:   Sun Dec 14 09:47:12 2008 +0100
32818
32819     OMAP3: Add OMAP3, memory and function prototype headers
32820
32821     Add OMAP3, memory and function prototype header files for OMAP3.
32822
32823     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
32824
32825 commit 2c803210a464abbac35752ca1c737514360b4c32
32826 Author: Dirk Behme <dirk.behme@googlemail.com>
32827 Date:   Sun Dec 14 09:47:11 2008 +0100
32828
32829     OMAP3: Add pin mux, clock and cpu headers
32830
32831     Add pin mux, clock and cpu header files for OMAP3.
32832
32833     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
32834
32835 commit 685533646f4ff17a84ec9265cabb60af325b6e1f
32836 Author: Maxim Artamonov <scn1874@yandex.ru>
32837 Date:   Wed Dec 3 05:38:17 2008 +0300
32838
32839     bugfix for i.mx31 CCM_UPCTL reg
32840
32841     Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru>
32842
32843 commit 24113a44ed5cd3257a0237c3961e121812fca6db
32844 Author: Mike Frysinger <vapier@gentoo.org>
32845 Date:   Tue Dec 30 03:15:38 2008 -0500
32846
32847     easylogo: add optional gzip support
32848
32849     Some images can be quite large, so add an option to compress the
32850     image data with gzip in the U-Boot image. Then at runtime, the
32851     board can decompress it with the normal zlib functions.
32852
32853     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32854
32855 commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
32856 Author: Bryan Wu <bryan.wu@analog.com>
32857 Date:   Fri Jan 2 20:47:45 2009 -0500
32858
32859     fat: fix unaligned errors
32860
32861     A couple of buffers in the fat code are declared as an array of bytes.
32862     But it is then cast up to a structure with 16bit and 32bit members.
32863     Since GCC assumes structure alignment here, we have to force the
32864     buffers to be aligned according to the structure usage.
32865
32866     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
32867     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32868
32869 commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
32870 Author: Brad Bozarth <bflinux@yumbrad.com>
32871 Date:   Thu Jan 1 22:45:47 2009 -0500
32872
32873     spi flash: fix crash due to spi flash miscommunication
32874
32875     Higher spi flash layers expect to be given back a pointer that was
32876     malloced so that it can free the result, but the lower layers return
32877     a pointer that is in the middle of the malloced memory. Reorder the
32878     members of the lower spi structures so that things work out.
32879
32880     Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
32881     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32882     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32883
32884 commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
32885 Author: Yuri Tikhonov <yur@emcraft.com>
32886 Date:   Sat Dec 20 14:54:21 2008 +0300
32887
32888     FPU POST: fix warnings when building with 2.18 binutils
32889
32890     When compile u-boot with the 2.18 binutils the following
32891     warning messages for each object file in post/lib_ppc/fpu/ is
32892     produced at the linking stage:
32893
32894     post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
32895     ...
32896
32897     This is because of the fact that, in general, the soft-float and
32898     hard-float ABIs are incompatible; the 2.18 binutils do checking
32899     of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
32900     produce the worning like above if these are not compatible.
32901
32902     The incompatibility of ABIs is concerned only the float values:
32903     e.g. the soft-float ABI assumes the float argument passing in the
32904     pair of rX registers, and the hard-float ABI assumes passing of
32905     the float argument in the fX register. When we don't pass the float
32906     arguments between the functions compiled with different floatness,
32907     then such an application will work correctly.
32908     This is the case for the FPU POST: u-boot (compiled with soft-float)
32909     doesn't pass to (and doesn't get from) the FPU POST functions any
32910     floats; there are no functions exported from the post/lib_ppc/fpu/
32911     objects which would work with float parameters/returns too. So, we
32912     can reassure the linker not to worry about the difference in ABI
32913     attributes of linking files just by setting the 'soft-float'
32914     attribute for the objects in post/lib_ppc/fpu. And this patch does
32915     this.
32916
32917     Also, to avoid passing both soft- and hard-float options in CFLAGS
32918     when compiling the files from post/lib_ppc/fpu (which is OK, but
32919     looks rather dirty) this patch removes the soft-float string from
32920     CFLAGS in post/lib_ppc/fpu/Makefile.
32921
32922     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
32923
32924 commit a7c9310457e85b4598abe5b304108edf11332e2f
32925 Author: Peter Tyser <ptyser@xes-inc.com>
32926 Date:   Wed Dec 17 16:36:22 2008 -0600
32927
32928     Add support for Maxim's DS4510 I2C device
32929
32930     Initial support for the DS4510, a CPU supervisor with
32931     integrated EEPROM, SRAM, and 4 programmable non-volatile
32932     GPIO pins. The CONFIG_DS4510 define enables support
32933     for the device while the CONFIG_CMD_DS4510 define
32934     enables the ds4510 command. The additional
32935     CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
32936     CONFIG_DS4510_RST defines add additional sub-commands
32937     to the ds4510 command when defined.
32938
32939     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32940
32941 commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
32942 Author: Dirk Eibach <eibach@gdsys.de>
32943 Date:   Tue Dec 16 14:51:56 2008 +0100
32944
32945     common: Iteration limit for memory test.
32946
32947     The iteration limit is passed to mtest as a fourth parameter:
32948     [start [end [pattern [iterations]]]]
32949     If no fourth parameter is supplied, there is no iteration limit and the
32950     test will loop forever.
32951
32952     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
32953
32954 commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
32955 Author: Stefan Roese <sr@denx.de>
32956 Date:   Mon Dec 15 15:40:12 2008 +0100
32957
32958     serial: Rename driver vcth to vct to support other board variants
32959
32960     Moved driver vcth.c to vct.c to better reflect the VCT board series.
32961     This driver is now used by the VCT platforms:
32962
32963     vct_premium
32964     vct_platinum
32965     vct_platinumsvc
32966
32967     Signed-off-by: Stefan Roese <sr@denx.de>
32968
32969 commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
32970 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
32971 Date:   Fri Dec 12 00:45:27 2008 +0900
32972
32973     nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
32974
32975     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
32976
32977 commit c3284b030b1cd492b4f46c576aea01bef258599d
32978 Author: Peter Korsgaard <jacmet@sunsite.dk>
32979 Date:   Wed Dec 10 16:24:16 2008 +0100
32980
32981     common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
32982
32983     Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
32984     similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
32985     !CONFIG_AUTOBOOT_KEYED case.
32986
32987     Do this by reversing the loop so we do at least one iteration before
32988     checking for timeout.
32989
32990     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
32991
32992 commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
32993 Author: Niklaus Giger <niklaus.giger@netstal.com>
32994 Date:   Mon Dec 8 17:24:08 2008 +0100
32995
32996     Added legacy flash ST Micro M29W040B
32997
32998 commit 626d07348e5f9f302f4ea182161a89f7362a0488
32999 Author: Graeme Russ <graeme.russ@gmail.com>
33000 Date:   Mon Dec 8 20:04:51 2008 +1100
33001
33002     Fixed off-by-one errors in lib_m68k/interrupts.c
33003
33004     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33005
33006 commit a5989c42ae5e295f274a795c426c47819bbdbfda
33007 Author: Graeme Russ <graeme.russ@gmail.com>
33008 Date:   Sun Dec 7 10:29:05 2008 +1100
33009
33010     Removed all references to CONFIG_SYS_RESET_GENERIC
33011
33012     Generic i386 reset - #define made redundant by weak function
33013
33014     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33015
33016 commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
33017 Author: Graeme Russ <graeme.russ@gmail.com>
33018 Date:   Sun Dec 7 10:29:04 2008 +1100
33019
33020     Remove #ifdef CONFIG_SC520 in source code
33021
33022     CONFIG_SC520 is now used for conditional compile
33023
33024     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33025
33026 commit ead056bc206f6b7ee6dc98766678b64635ea20b8
33027 Author: Graeme Russ <graeme.russ@gmail.com>
33028 Date:   Sun Dec 7 10:29:03 2008 +1100
33029
33030     Added MMCR reset functionality
33031
33032     Reset function specific to AMD SC520 microcontroller - Is more of a
33033     'hard reset' that the triple fault.
33034
33035     Requires CONFIG_SYS_RESET_SC520 to be defined in config
33036
33037     I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
33038     but ld requires that a object file in a library arhive MUST contain
33039     at least one function which does not override a weak function (and is
33040     called from outside the object file) in order for that object file to
33041     be extracted from the archive. This would be the only function on the
33042     new file, and hence, will never get linked in.
33043
33044     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33045
33046 commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
33047 Author: Graeme Russ <graeme.russ@gmail.com>
33048 Date:   Sun Dec 7 10:29:02 2008 +1100
33049
33050     Moved generic (triple fault) reset code
33051
33052     Moved from interrupts.c to cpu.c and made into a weak function to
33053     allow vendor specific override
33054
33055     Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
33056     added to the vendor specific code without the need to remember to
33057     #undef usage of the generic method and if you forget to include your
33058     custom reset method, you will always get the default.
33059
33060     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33061
33062 commit 9933d609020c297788f53f334c8465fa7a99b10c
33063 Author: Graeme Russ <graeme.russ@gmail.com>
33064 Date:   Sun Dec 7 10:29:01 2008 +1100
33065
33066     Moved definition of set_vector() to new header file
33067
33068     This allows for future tidy ups and functionality that will require
33069     set_vector ()
33070
33071     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33072
33073 commit 407976185e0dda2c90e89027121a1071b9c77bfb
33074 Author: Graeme Russ <graeme.russ@gmail.com>
33075 Date:   Sun Dec 7 10:29:00 2008 +1100
33076
33077     Moved sc520 specific code into new cpu/i386/sc520 folder
33078
33079     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33080     Signed-off-by: Wolfgang Denk <wd@denx.de>
33081
33082 commit 85ffbbd51914925a542d8528be7f072e5ab02157
33083 Author: Graeme Russ <graeme.russ@gmail.com>
33084 Date:   Sun Dec 7 10:28:58 2008 +1100
33085
33086     Renamed cpu/i386/reset.S to resetvec.S
33087
33088     Brings i386 in line with other CPUs with a reset vector and frees up reset.c
33089     for CPU reset functions
33090
33091     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33092
33093 commit a3f4c123f569474e80ea012b8db0de46afdb6443
33094 Author: Wolfgang Denk <wd@denx.de>
33095 Date:   Sat Jan 24 01:01:49 2009 +0100
33096
33097     Makefile: keep lists sorted.
33098
33099     Signed-off-by: Wolfgang Denk <wd@denx.de>
33100
33101 commit c620c01e96814558470698ed5cab1bf2f504d1b5
33102 Author: Graeme Russ <graeme.russ@gmail.com>
33103 Date:   Sun Dec 7 10:28:57 2008 +1100
33104
33105     Added initial eNET board support
33106
33107     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33108
33109 commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
33110 Author: Gary Jennejohn <garyj@denx.de>
33111 Date:   Thu Nov 20 11:37:26 2008 +0100
33112
33113     POWERPC 82xx: add the SCC as an HDLC controller
33114
33115     Right now this is only used by keymile.
33116
33117     Signed-off-by: Gary Jennejohn <garyj@denx.de>
33118
33119 commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
33120 Author: Heiko Schocher <hs@denx.de>
33121 Date:   Thu Nov 20 09:59:09 2008 +0100
33122
33123     powerpc, keymile boards: extract identical config options
33124
33125     This patch extracts the identical config options for the
33126     keymile boards mgcoge, mgsuvd and kmeter1 in a new
33127     common config file keymile-common.h.
33128
33129     Signed-off-by: Heiko Schocher <hs@denx.de>
33130
33131 commit 210c8c00aad3328145204adab434bb7d70b06b75
33132 Author: Heiko Schocher <hs@denx.de>
33133 Date:   Fri Nov 21 08:29:40 2008 +0100
33134
33135     powerpc: keymile: Add a check for the PIGGY debug board
33136
33137     Check the presence of the PIGGY on the keymile boards mgcoge,
33138     mgsuvd and kmeter1. If the PIGGY is not present, dont register
33139     this Ethernet device.
33140
33141     Signed-off-by: Heiko Schocher <hs@denx.de>
33142     Acked-by: Ben Warren <biggerbadderben@gmail.com>
33143
33144 commit de0443614af4d16675ab436665aeb11ddc9f7214
33145 Author: Heiko Schocher <hs@denx.de>
33146 Date:   Thu Nov 20 09:57:47 2008 +0100
33147
33148     powerpc: 83xx: add support for the kmeter1 board
33149
33150     This patch adds support for the kmeter1 board from Keymile,
33151     based on a Freescale MPC8360 CPU.
33152
33153     - serial console on UART 1
33154     - 256 MB DDR2 RAM
33155     - 64 MB NOR Flash
33156     - Ethernet RMII Mode over UCC4
33157     - PHY SMSC LAN8700
33158
33159     Signed-off-by: Heiko Schocher <hs@denx.de>
33160
33161 commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
33162 Author: Sergei Poselenov <sposelenov@emcraft.com>
33163 Date:   Tue Nov 4 13:51:18 2008 +0100
33164
33165     Add a do_div() wrapper macro, lldiv().
33166
33167     Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
33168     the dividend and returns the result of division, so it is useful
33169     in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
33170
33171     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
33172
33173 commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
33174 Author: Kumar Gala <galak@kernel.crashing.org>
33175 Date:   Fri Jan 23 14:22:14 2009 -0600
33176
33177     85xx: Add a 36-bit physical configuration for MPC8572DS
33178
33179     We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
33180     to allow for larger memory sizes.
33181
33182     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33183
33184 commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
33185 Author: Kumar Gala <galak@kernel.crashing.org>
33186 Date:   Fri Jan 23 14:22:13 2009 -0600
33187
33188     85xx: Handle eLBC difference w/36-bit physical
33189
33190     The eLBC only handles 32-bit physical address in systems with 36-bit
33191     physical.  The previos generation of LBC handled 34-bit physical
33192     address in 36-bit systems.  Added a new CONFIG option to convey
33193     the difference between the LBC and eLBC.
33194
33195     Also added defines for XAM bits used in LBC for the extended 34-bit
33196     support.
33197
33198     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33199
33200 commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
33201 Author: Kumar Gala <galak@kernel.crashing.org>
33202 Date:   Fri Jan 23 14:22:12 2009 -0600
33203
33204     85xx: Use BR_ADDR macro for NAND chipselects
33205
33206     Use the new BR_ADDR macro to properly setup the address field of the
33207     localbus chipselects used by NAND.
33208
33209     This allows us to deal with 36-bit phys on these boards in the future.
33210
33211     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33212
33213 commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
33214 Author: Haiying Wang <Haiying.Wang@freescale.com>
33215 Date:   Thu Jan 15 11:58:35 2009 -0500
33216
33217     Add secondary CPUs processor frequency for e500 core
33218
33219     This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
33220     and prints each CPU's frequency separately. It also fixes up each CPU's
33221     frequency in "clock-frequency" of fdt blob.
33222
33223     Signed-off-by: James Yang <James.Yang@freescale.com>
33224     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33225
33226 commit bf5b1f0c0d28ce062e1d368680632dfb099de692
33227 Author: Dave Liu <daveliu@freescale.com>
33228 Date:   Fri Nov 21 16:31:53 2008 +0800
33229
33230     85xx: enable the auto self refresh for wake up ARP
33231
33232     The wake up ARP feature need use the memory to process
33233     wake up packet, we enable auto self refresh to support it.
33234
33235     Signed-off-by: Dave Liu <daveliu@freescale.com>
33236     Acked-by: Andy Fleming <afleming@freescale.com>
33237
33238 commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
33239 Author: Dave Liu <daveliu@freescale.com>
33240 Date:   Fri Nov 21 16:31:43 2008 +0800
33241
33242     fsl-ddr: use the 1T timing as default configuration
33243
33244     For light loaded system, we use the 1T timing to gain better
33245     memory performance, but for some heavily loaded system,
33246     you have to add the 2T timing options to board files.
33247
33248     Signed-off-by: Dave Liu <daveliu@freescale.com>
33249     Acked-by: Andy Fleming <afleming@freescale.com>
33250
33251 commit 22cca7e1cd54590e967c73558b07ffbdccd39504
33252 Author: Dave Liu <daveliu@freescale.com>
33253 Date:   Fri Nov 21 16:31:35 2008 +0800
33254
33255     fsl-ddr: make the self refresh idle threshold configurable
33256
33257     Some 85xx processors have the advanced power management feature,
33258     such as wake up ARP, that needs enable the automatic self refresh.
33259
33260     If the DDR controller pass the SR_IT (self refresh idle threshold)
33261     idle cycles, it will automatically enter self refresh. However,
33262     anytime one transaction is issued to the DDR controller, it will
33263     reset the counter and exit self refresh state.
33264
33265     Signed-off-by: Dave Liu <daveliu@freescale.com>
33266     Acked-by: Andy Fleming <afleming@freescale.com>
33267
33268 commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
33269 Author: Dave Liu <daveliu@freescale.com>
33270 Date:   Fri Nov 21 16:31:29 2008 +0800
33271
33272     fsl-ddr: clean up the ddr code for DDR3 controller
33273
33274     - The DDR3 controller is expanding the bits for timing config
33275     - Add the DDR3 32-bit bus mode support
33276
33277     Signed-off-by: Dave Liu <daveliu@freescale.com>
33278     Acked-by: Andy Fleming <afleming@freescale.com>
33279
33280 commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
33281 Author: Dave Liu <daveliu@freescale.com>
33282 Date:   Fri Nov 21 16:31:22 2008 +0800
33283
33284     fsl-ddr: update the bit mask for DDR3 controller
33285
33286     According to the latest 8572 UM, the DDR3 controller
33287     is expanding the bit mask, and we use the extend ACTTOPRE
33288     mode when tRAS more than 19 MCLK.
33289
33290     Signed-off-by: Dave Liu <daveliu@freescale.com>
33291
33292 commit aca5f018a8386b85469482ed9867e3e29a2437d0
33293 Author: Kumar Gala <galak@kernel.crashing.org>
33294 Date:   Tue Dec 2 16:08:40 2008 -0600
33295
33296     85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
33297
33298     Introduce a new define to seperate out the virtual address that PCI
33299     IO space is at from the physical address.  In most situations these are
33300     mapped 1:1.  However any code accessing the bus should use VIRT.
33301
33302     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33303     Acked-by: Andy Fleming <afleming@freescale.com>
33304
33305 commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
33306 Author: Kumar Gala <galak@kernel.crashing.org>
33307 Date:   Tue Dec 2 16:08:39 2008 -0600
33308
33309     85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
33310
33311     Introduce a new define to seperate out the virtual address that PCI
33312     memory is at from the physical address.  In most situations these are
33313     mapped 1:1.  However any code accessing the bus should use VIRT.
33314
33315     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33316     Acked-by: Andy Fleming <afleming@freescale.com>
33317
33318 commit a6e04c344ad1eefd47a75484441b385da815b8df
33319 Author: Kumar Gala <galak@kernel.crashing.org>
33320 Date:   Tue Dec 2 16:08:38 2008 -0600
33321
33322     85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
33323
33324     Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
33325     of TLBs.  This is what we should have always been using from the start.
33326
33327     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33328     Acked-by: Andy Fleming <afleming@freescale.com>
33329
33330 commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
33331 Author: Kumar Gala <galak@kernel.crashing.org>
33332 Date:   Tue Dec 2 16:08:37 2008 -0600
33333
33334     85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
33335
33336     Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
33337     of _IO_BASE so we are more explicit.
33338
33339     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33340
33341 commit 10795f42cb94e71bcb262b615084f69dd886399a
33342 Author: Kumar Gala <galak@kernel.crashing.org>
33343 Date:   Tue Dec 2 16:08:36 2008 -0600
33344
33345     85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
33346
33347     Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
33348     of _MEM_BASE so we are more explicit.
33349
33350     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33351     Acked-by: Andy Fleming <afleming@freescale.com>
33352
33353 commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
33354 Author: Kumar Gala <galak@kernel.crashing.org>
33355 Date:   Tue Dec 2 14:19:34 2008 -0600
33356
33357     85xx: separate FLASH BASE virtual from physical address
33358
33359     Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
33360     maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
33361
33362     This allows us to deal with 36-bit phys on these boards in the future.
33363
33364     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33365     Acked-by: Andy Fleming <afleming@freescale.com>
33366
33367 commit 52b565f5ad23b682489055b187767d8bf1c2e444
33368 Author: Kumar Gala <galak@kernel.crashing.org>
33369 Date:   Tue Dec 2 14:19:33 2008 -0600
33370
33371     85xx: separate PIXIS virtual from physical address
33372
33373     Added a PIXIS_BASE_PHYS for use as the physical address and maintain
33374     PIXIS_BASE as the virtual address of the PIXIS fpga registers.
33375
33376     This allows us to deal with 36-bit phys on these boards in the future.
33377
33378     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33379     Acked-by: Andy Fleming <afleming@freescale.com>
33380
33381 commit 30837e5b21d5a742983581ab9ee3fac085311d19
33382 Author: Haiying Wang <Haiying.Wang@freescale.com>
33383 Date:   Tue Nov 11 08:52:09 2008 -0500
33384
33385     Add README file for MPC8572DS board
33386
33387     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33388     Acked-by: Andy Fleming <afleming@freescale.com>
33389
33390 commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
33391 Author: Mike Frysinger <vapier@gentoo.org>
33392 Date:   Mon Oct 20 16:15:04 2008 -0400
33393
33394     Blackfin: use common strmhz() in system output
33395
33396     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33397
33398 commit 5bb907a4925397789c90d074f4f7e92ce6b39402
33399 Author: Ron Madrid <ron_madrid@sbcglobal.net>
33400 Date:   Thu Jan 22 15:05:24 2009 -0800
33401
33402     mpc83xx: New board support for SIMPC8313
33403
33404     This patch will create a new board, SIMPC8313, from Sheldon Instruments.  This
33405     board boots from NAND devices and is configureable for either large or small
33406     page devices.  The board supports non-soldered DDR2, one ethernet port, a
33407     Marvell 88E1118 PHY, and PCI host support.  The board also has a FPGA connected
33408     to the eLBC providing glue logic to a TMS320C67xx DSP.
33409
33410     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
33411     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33412
33413 commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
33414 Author: Mike Frysinger <vapier@gentoo.org>
33415 Date:   Sun Jan 18 19:46:06 2009 -0500
33416
33417     nand: fixup printf modifiers to match types used
33418
33419     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33420     Signed-off-by: Scott Wood <scottwood@freescale.com>
33421
33422 commit 389e6620e2271096df3316917528003627db4021
33423 Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
33424 Date:   Tue Jan 20 16:57:55 2009 +0100
33425
33426     nand read.jffs2 (nand_legacy) in common/cmd_nand.c
33427
33428     Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
33429     With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
33430     "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
33431     tested before ".jffs2s" and only the first two characters are compared.
33432
33433     Correction:
33434     Test for ".jffs2s" first and compare the first 7 characters.
33435
33436     Signed-off-by: Scott Wood <scottwood@freescale.com>
33437
33438 commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
33439 Author: Wolfgang Grandegger <wg@grandegger.com>
33440 Date:   Fri Jan 16 18:55:54 2009 +0100
33441
33442     NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
33443
33444     This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
33445     changes the default from 8 to 1 for the legacy and the new MTD
33446     NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
33447     in the board config files because none of the boards use multi
33448     chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
33449     define
33450
33451      #define NAND_MAX_CHIPS          CONFIG_SYS_MAX_NAND_DEVICE
33452
33453     but that's bogus and did not work anyhow.
33454
33455     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
33456     Signed-off-by: Scott Wood <scottwood@freescale.com>
33457
33458 commit c70564e6b1bd08f3230182392238907f3531a87e
33459 Author: Dave Liu <daveliu@freescale.com>
33460 Date:   Tue Dec 2 11:48:51 2008 +0800
33461
33462     NAND: Fix cache and memory inconsistency issue
33463
33464     We load the secondary stage u-boot image from NAND to
33465     system memory by nand_load, but we did not flush d-cache
33466     to memory, nor invalidate i-cache before we jump to RAM.
33467     When the system has cache enabled and the TLB/page attribute
33468     of system memory is cacheable, it will cause issues.
33469
33470     - 83xx family is using the d-cache lock, so all of d-cache
33471       access is cache-inhibited. so you can't see the issue.
33472     - 85xx family is using d-cache, i-cache enable, partial
33473       cache lock. you will see the issue.
33474
33475     This patch fixes the cache issue.
33476
33477     Signed-off-by: Dave Liu <daveliu@freescale.com>
33478     Signed-off-by: Scott Wood <scottwood@freescale.com>
33479
33480 commit 50657c273278f74378e1ac39b41d612b92fdffa0
33481 Author: Nishanth Menon <menon.nishanth@gmail.com>
33482 Date:   Sat Dec 13 09:43:06 2008 -0600
33483
33484     NAND: Enable nand lock, unlock feature
33485
33486     Enable nand lock, unlock and status of lock feature.
33487     Not every device and platform requires this, hence,
33488     it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
33489
33490     Nand unlock and status operate on block boundary instead
33491     of page boundary. Details in:
33492     http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
33493
33494     Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
33495     Includes preliminary suggestions from Scott Wood
33496
33497     Signed-off-by: Nishanth Menon <nm@ti.com>
33498     Signed-off-by: Scott Wood <scottwood@freescale.com>
33499
33500 commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
33501 Author: Mike Frysinger <vapier@gentoo.org>
33502 Date:   Sat Dec 6 02:40:55 2008 -0500
33503
33504     NAND: move board_nand_init to nand.h
33505
33506     Rather than putting the function prototype for board_nand_init() in the one
33507     place where it gets called, put it into nand.h so that every place that also
33508     defines it gets the prototype.  Otherwise, errors can go silently unnoticed
33509     such as using the wrong return value (void rather than int) when defining
33510     the function.
33511
33512     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33513     Signed-off-by: Scott Wood <scottwood@freescale.com>
33514
33515 commit 1ae39862044ebb1e682234b51f94421e3f871d6a
33516 Author: Stefan Roese <sr@denx.de>
33517 Date:   Tue Dec 2 11:06:47 2008 +0100
33518
33519     OneNAND: Additional sync with 2.6.27
33520
33521     - Add subpage write support
33522     - Add onenand_oob_64/32 ecclayout
33523
33524     This has been missing and without it UBI has some incompatibilies issues
33525     with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
33526     placed differently (2048 instead of 512) without this fix.
33527
33528     Signed-off-by: Stefan Roese <sr@denx.de>
33529     Signed-off-by: Scott Wood <scottwood@freescale.com>
33530
33531 commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
33532 Author: Kyungmin Park <kmpark@infradead.org>
33533 Date:   Thu Nov 13 15:14:33 2008 +0900
33534
33535     Add markbad function
33536
33537     Add missing markbad function
33538     If not, it's hang when it entered the mtd->mark_bad().
33539
33540     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33541
33542 commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
33543 Author: Stefan Roese <sr@denx.de>
33544 Date:   Wed Nov 12 13:47:24 2008 +0100
33545
33546     OneNAND: Bad block aware read/write command support
33547
33548     Update OneNAND command to support bad block awareness.
33549     Also change the OneNAND command style to better match the
33550     NAND version.
33551
33552     Signed-off-by: Stefan Roese <sr@denx.de>
33553     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
33554
33555 commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
33556 Author: Stefan Roese <sr@denx.de>
33557 Date:   Tue Nov 11 10:29:09 2008 +0100
33558
33559     OneNAND: Save version_id in onenand_chip struct
33560
33561     The version (ver_id) was not stored in the onenand_chip structure and
33562     because of this the continuous locking scheme could be enabled on some
33563     chips.
33564
33565     Signed-off-by: Stefan Roese <sr@denx.de>
33566
33567 commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
33568 Author: Stefan Roese <sr@denx.de>
33569 Date:   Tue Nov 11 10:28:53 2008 +0100
33570
33571     OneNAND: Fix compiler warnings
33572
33573     Signed-off-by: Stefan Roese <sr@denx.de>
33574
33575 commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
33576 Author: Dave Liu <daveliu@freescale.com>
33577 Date:   Tue Nov 4 14:55:06 2008 +0800
33578
33579     mpc83xx: enable eLBC NAND support for MPC8315ERDB board
33580
33581     Signed-off-by: Dave Liu <daveliu@freescale.com>
33582
33583 commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
33584 Author: Kyungmin Park <kmpark@infradead.org>
33585 Date:   Tue Nov 4 09:24:07 2008 +0900
33586
33587     Sync with 2.6.27
33588
33589     Sync with OneNAND kernel codes
33590
33591     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33592
33593 commit e7f325be9edeb84bb457301776bbac1f7257dafc
33594 Author: Michal Simek <monstr@monstr.eu>
33595 Date:   Mon Jan 5 13:35:31 2009 +0100
33596
33597     microblaze: Use cache functions (especially cache status)
33598     in systems which are configured without flash
33599
33600 commit e9b737deb2c30125362d20e24170617476026e94
33601 Author: Michal Simek <monstr@monstr.eu>
33602 Date:   Mon Jan 5 13:29:32 2009 +0100
33603
33604     microblaze: Add cache flush
33605
33606 commit b4f8dda35bfad447b4106828232705b2e878d168
33607 Author: Michal Simek <monstr@monstr.eu>
33608 Date:   Mon Jan 5 13:28:40 2009 +0100
33609
33610     microblaze: Add bootup messages to board.c
33611
33612 commit 330e55459bc9983341da6c1d5c7fe00a664436fe
33613 Author: Michal Simek <monstr@monstr.eu>
33614 Date:   Fri Dec 19 13:25:55 2008 +0100
33615
33616     microblaze: Change microblaze-generic config file
33617
33618     Signed-off-by: Michal Simek <monstr@monstr.eu>
33619
33620 commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
33621 Author: Michal Simek <monstr@monstr.eu>
33622 Date:   Fri Dec 19 13:14:05 2008 +0100
33623
33624     microblaze: Rename ml401 to microblaze-generic
33625
33626     Signed-off-by: Michal Simek <monstr@monstr.eu>
33627
33628 commit 6677876181cc8772bca8a372479a500d160f3993
33629 Author: Scott Wood <scottwood@freescale.com>
33630 Date:   Tue Jan 20 11:56:11 2009 -0600
33631
33632     83xx: Use the proper sequence for updating IMMR.
33633
33634     This ensures that subsequent accesses properly hit the new window.
33635
33636     The dcbi during the NAND loop was accidentally working around this;
33637     it's no longer necessary, as the cache is not enabled.
33638
33639     Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
33640     Signed-off-by: Scott Wood <scottwood@freescale.com>
33641     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33642
33643 commit 8b34557c546e5e9f34ebf83c93413dad973d93df
33644 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
33645 Date:   Thu Jan 8 04:26:19 2009 +0300
33646
33647     mpc83xx: Add PCI-E support for MPC837XEMDS boards
33648
33649     MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
33650     provides two PCI-E (x2) ports. Though, only one port can be used in x2
33651     mode. Two ports can function simultaneously in x1 mode.
33652
33653     PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
33654
33655     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33656     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33657
33658 commit 8f11e34b31a7be124a3239653f33af9510502045
33659 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
33660 Date:   Thu Jan 8 04:26:17 2009 +0300
33661
33662     mpc83xx: Add PCI-E support for MPC8315ERDB boards
33663
33664     MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
33665     support them.
33666
33667     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33668     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33669
33670 commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
33671 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
33672 Date:   Thu Jan 8 04:26:12 2009 +0300
33673
33674     mpc83xx: Add support for MPC83xx PCI-E controllers
33675
33676     This patch adds support for MPC83xx PCI-E controllers in Root Complex
33677     mode.
33678
33679     The patch is based on Tony Li and Dave Liu work[1].
33680
33681     Though unlike the original patch, by default we don't register PCI-E
33682     buses for use in U-Boot, we only configure the controllers for future
33683     use in other OSes (Linux). This is done because we don't have enough
33684     of spare BATs to map all the PCI-E regions.
33685
33686     To actually use PCI-E in U-Boot, users should explicitly define
33687     CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
33688     only then U-Boot will able to access PCI-E, but at the cost of disabled
33689     address translation.
33690
33691     [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
33692
33693     Signed-off-by: Tony Li <tony.li@freescale.com>
33694     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33695     Acked-by: Dave Liu <daveliu@freescale.com>
33696     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33697
33698 commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
33699 Author: Ira Snyder <iws@ovro.caltech.edu>
33700 Date:   Mon Jan 12 13:33:17 2009 -0800
33701
33702     MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
33703
33704     When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
33705     not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
33706     "Clocking in PCI Agent Mode".
33707
33708     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
33709     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33710
33711 commit 75f35209f702bb26826855ed8c8e4d108ab5f412
33712 Author: Ira Snyder <iws@ovro.caltech.edu>
33713 Date:   Mon Jan 12 13:32:26 2009 -0800
33714
33715     83xx: PCI agent mode fixes for multi-board systems
33716
33717     When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
33718     the boards will lock up the PCI bus by scanning against each other.
33719
33720     The boards lock against each other by trying to access the PCI bus before
33721     clearing their configuration lock bit. Both boards end up in a loop,
33722     sending and receiving "Target Not Ready" messages forever.
33723
33724     When running in PCI agent mode, the scanning now takes place after the
33725     boards have cleared their configuration lock bit.
33726
33727     Also, add a missing declaration to the mpc83xx.h header file, fixing a
33728     build warning.
33729
33730     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
33731     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33732
33733 commit 455a46915b82896cc2070eb326d075555c2bc580
33734 Author: Ron Madrid <ron_madrid@sbcglobal.net>
33735 Date:   Fri Dec 12 13:12:45 2008 -0800
33736
33737     mpc83xx: Size optimization of start.S
33738
33739     Currently there are in excess of 100 bytes located at the beginning of the image
33740     built by start.S that are not being utilized.  This patch moves a few functions
33741     into this part of the image.  This will create a greater number of *available*
33742     bytes that can be used by board specific code in NAND builds and will decrease
33743     the size of the assembled code in other builds.
33744
33745     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
33746     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33747
33748 commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
33749 Author: Wolfgang Denk <wd@denx.de>
33750 Date:   Wed Jan 21 23:08:12 2009 +0100
33751
33752     Prepare v2009.01
33753
33754     Signed-off-by: Wolfgang Denk <wd@denx.de>
33755
33756 commit 635e5f8fc82365e6e9734b3132bc95135a6de679
33757 Author: Wolfgang Denk <wd@denx.de>
33758 Date:   Sun Jan 18 21:37:48 2009 +0100
33759
33760     Prepare 2009.01-rc3
33761
33762     Update CHANGELOG
33763
33764     Signed-off-by: Wolfgang Denk <wd@denx.de>
33765
33766 commit 4cda437898f7873752f0201757cd33f12196ce87
33767 Author: Mike Frysinger <vapier@gentoo.org>
33768 Date:   Sat Jan 17 13:32:42 2009 -0500
33769
33770     build system: treat all Darwin's alike
33771
33772     The x86 based version of Darwin behaves the same quirky way as the powerpc
33773     Darwin, so only check HOSTOS when setting up Darwin workarounds.
33774
33775     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33776
33777 commit c088a108c75db565e07292fd668dfa5491e85bc2
33778 Author: Peter Korsgaard <jacmet@sunsite.dk>
33779 Date:   Wed Jan 14 13:52:24 2009 +0100
33780
33781     fdt_resize(): fix actualsize calculations with unaligned blobs
33782
33783     The code in fdt_resize() to extend the fdt size to end on a page boundary
33784     is wrong for fdt's not located at an address aligned on a page boundary.
33785     What's even worse, the code would make actualsize shrink rather than grow
33786     if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
33787     causing fdt_add_mem_rsv to fail.
33788
33789     Fix it by aligning end address (blob + size) to a page boundary instead.
33790     For aligned fdt's this is equivalent to what we had before.
33791
33792     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
33793
33794 commit fadad1573fb16c90025f08a2861d6047d093cba7
33795 Author: Mike Frysinger <vapier@gentoo.org>
33796 Date:   Fri Jan 9 04:38:17 2009 -0500
33797
33798     ncb: use socklen_t
33799
33800     The recvfrom() function takes a socklen_t, not an int.
33801
33802     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33803
33804 commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
33805 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33806 Date:   Sun Jan 11 16:35:16 2009 +0100
33807
33808     sh: serial: use readx/writex accessors
33809
33810     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33811     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33812
33813 commit 9e1fa628bdb64745811cdd26c4f953846c076180
33814 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33815 Date:   Sun Jan 11 16:35:15 2009 +0100
33816
33817     sh: serial: coding style cleanup
33818
33819     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33820     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33821
33822 commit c9935c992575922b7ef13eec0656ed8665d324e3
33823 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33824 Date:   Sun Jan 11 17:48:56 2009 +0900
33825
33826     sh: Fix compile error on lowlevel_init file
33827
33828     lowlevel_init of SH was corrected to use the write/readXX macro.
33829     However, there was a problem that was not able to be compiled partially.
33830     This patch corrected this.
33831
33832     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33833
33834 commit a5b04d00bfeb940c62232972ce644d50b45797f9
33835 Author: Kieran Bingham <kieranbingham@gmail.com>
33836 Date:   Tue Dec 30 01:16:03 2008 +0000
33837
33838     sh: Fix up rsk7203 target for out of tree build
33839
33840     Fix up rsk7203 target to build successfully using out-of-tree build.
33841
33842     Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
33843     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33844
33845 commit f7e78f3b74aae9caca2997bad865a72338326c0a
33846 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33847 Date:   Sat Dec 20 19:29:49 2008 +0100
33848
33849     sh: use write{8,16,32} in all lowlevel_init
33850
33851     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33852     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33853
33854 commit e4430779623af500de1cee7892c379f07ef59813
33855 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33856 Date:   Sat Dec 20 19:29:48 2008 +0100
33857
33858     sh: lowlevel_init coding style cleanup
33859
33860     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33861     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33862
33863 commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
33864 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33865 Date:   Sat Dec 20 15:27:45 2008 +0100
33866
33867     sh: update sh2/sh2a timer coding style
33868
33869     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33870     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33871
33872 commit 1e15ff999322e81af4c0c0c548908f38944ba39c
33873 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33874 Date:   Sat Dec 20 15:25:22 2008 +0100
33875
33876     sh: update sh timer coding style
33877
33878     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33879     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33880
33881 commit 0e3ece33801e377be67ffa29f083421ad820f28b
33882 Author: Wolfgang Denk <wd@denx.de>
33883 Date:   Wed Jan 14 23:26:05 2009 +0100
33884
33885     Prepare 2009.01-rc2
33886
33887     Update CHANGELOG.
33888
33889     Signed-off-by: Wolfgang Denk <wd@denx.de>
33890
33891 commit e92c9a860e44c14513c8909ce4299e253a775eeb
33892 Author: Wolfgang Denk <wd@denx.de>
33893 Date:   Wed Jan 14 22:35:30 2009 +0100
33894
33895     cpu/mpc824x/Makefile: fix warning with parallel builds
33896
33897     Parallel builds would occasionally issue this build warning:
33898
33899         ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists
33900
33901     Use "ln -sf" as quick work around for the issue.
33902
33903     Signed-off-by: Wolfgang Denk <wd@denx.de>
33904
33905 commit 3ba605d4beec649438539e7df97b5fedb26592fb
33906 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33907 Date:   Fri Jan 2 12:18:49 2009 +0100
33908
33909     ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
33910
33911     This patch adds esd's loadpci BSP command to CPCI4052 and
33912     CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
33913
33914     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33915     Signed-off-by: Stefan Roese <sr@denx.de>
33916
33917 commit 600fe46fb3dab7f07604f9009904f31584415114
33918 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33919 Date:   Fri Jan 2 12:18:12 2009 +0100
33920
33921     ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
33922
33923     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33924     Signed-off-by: Stefan Roese <sr@denx.de>
33925
33926 commit f6a1f490d224c600a09137e58d1026d150b8e679
33927 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33928 Date:   Fri Jan 2 12:17:36 2009 +0100
33929
33930     ppc4xx: Cleanup CPCI405 board code
33931
33932     This patch cleans up CPCI405 board support:
33933     - wrap long lines
33934     - unification of spaces in function calls
33935     - remove dead code
33936
33937     Use correct io accessors on peripherals.
33938
33939     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33940     Signed-off-by: Stefan Roese <sr@denx.de>
33941
33942 commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
33943 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33944 Date:   Fri Jan 2 12:16:35 2009 +0100
33945
33946     ppc4xx: Enable auto RS485 mode on PLU405 boards
33947
33948     This patch turns on the auto RS485 mode in the 2nd external
33949     uart on PLU405 boards. This is a special mode of the used
33950     Exar XR16C2850 uart. Because these boards only have a 485 physical
33951     layer connected it's a good idea to turn it on by default.
33952
33953     Signed-off-by: Matthias Fuchs <mf@esd.eu>
33954     Signed-off-by: Stefan Roese <sr@denx.de>
33955
33956 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
33957 Author: Haiying Wang <Haiying.Wang@freescale.com>
33958 Date:   Tue Jan 13 16:29:28 2009 -0500
33959
33960     Some changes of TLB entry setting for MPC8572DS
33961
33962     - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode,
33963     all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0
33964     can not access PIXIS_BASE anymore (any access will cause DataTLBError exception)
33965
33966     - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board.
33967
33968     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33969
33970 commit 950264317eb9594b2b5ee2fb65206200a1c6007a
33971 Author: Haiying Wang <Haiying.Wang@freescale.com>
33972 Date:   Tue Jan 13 16:29:22 2009 -0500
33973
33974     Change DDR tlb start entry to CONFIG param for 85xx
33975
33976     So that we can locate the DDR tlb start entry to the value other than 8. By
33977     default, it is still 8.
33978
33979     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33980
33981 commit 6d3a10f73ece7ffb736890c10e023222612a4aa0
33982 Author: Roy Zang <tie-fei.zang@freescale.com>
33983 Date:   Fri Jan 9 16:02:35 2009 +0800
33984
33985     Change PCIE1&2 deciide logic on MPC8544DS board more readable
33986
33987     The IO port selection for MPC8544DS board:
33988      Port                       cfg_io_ports
33989      PCIE1              0x2, 0x3, 0x4, 0x5, 0x6, 0x7
33990      PCIE2              0x4, 0x5, 0x6, 0x7
33991      PCIE3              0x6, 0x7
33992      This patch changes the PCIE12 and PCIE2 logic more readable.
33993     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
33994
33995 commit 028e116811d28a031660f1ad9e20ac1293b3c5c7
33996 Author: Roy Zang <tie-fei.zang@freescale.com>
33997 Date:   Fri Jan 9 16:01:52 2009 +0800
33998
33999     PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
34000
34001     PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of
34002     PCIE1 bit.
34003     On MPC8572DS board, PCIE refers to PCIE1.
34004     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
34005
34006 commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47
34007 Author: Roy Zang <tie-fei.zang@freescale.com>
34008 Date:   Fri Jan 9 16:00:55 2009 +0800
34009
34010     Fix IO port selection issue on MPC8544DS and MPC8572DS boards
34011
34012     The IO port selection is not correct on MPC8572DS and MPC8544DS board.
34013      This patch fixes this issue.
34014      For MPC8572
34015      Port                       cfg_io_ports
34016      PCIE1              0x2, 0x3, 0x7, 0xb, 0xc, 0xf
34017      PCIE2              0x3, 0x7
34018      PCIE3              0x7
34019
34020     For MPC8544
34021     Port                        cfg_io_ports
34022     PCIE1               0x2, 0x3, 0x4, 0x5, 0x6, 0x7
34023     PCIE2               0x4, 0x5, 0x6, 0x7
34024     PCIE3               0x6, 0x7
34025     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
34026
34027 commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946
34028 Author: Becky Bruce <beckyb@kernel.crashing.org>
34029 Date:   Wed Dec 3 22:36:44 2008 -0600
34030
34031     mpc8610hpcd: Fix PCI mapping concepts
34032
34033     Rename _BASE to _BUS, as it's actually a PCI bus address,
34034     separate virtual and physical addresses into _VIRT and _PHYS,
34035     and use each appopriately.  This makes the code easier to read
34036     and understand, and facilitates mapping changes going forward.
34037
34038     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
34039
34040 commit 79e436cad3b4a7db88408c3f05175028f30d700d
34041 Author: Becky Bruce <beckyb@kernel.crashing.org>
34042 Date:   Wed Dec 3 22:36:26 2008 -0600
34043
34044     sbc8641d: Fix PCI mapping concepts
34045
34046     Rename _BASE to _BUS, as it's actually a PCI bus address,
34047     separate virtual and physical addresses into _VIRT and _PHYS,
34048     and use each appopriately.  This makes the code easier to read
34049     and understand, and facilitates mapping changes going forward.
34050
34051     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
34052
34053 commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0
34054 Author: Wolfgang Denk <wd@denx.de>
34055 Date:   Mon Jan 12 14:50:35 2009 +0100
34056
34057     MPC86xx: fix build warnings
34058
34059     Signed-off-by: Wolfgang Denk <wd@denx.de>
34060
34061 commit 032a1c934ef4dc003281f57302b6e693062c1868
34062 Author: Mike Frysinger <vapier@gentoo.org>
34063 Date:   Mon Jan 5 16:09:44 2009 -0500
34064
34065     bf537-stamp/nand: fix board_nand_init prototype
34066
34067     The board_nand_init() function should return an int, not void.
34068
34069     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34070
34071 commit 687f952e4119594ab913be11c90f7f018c2a7a79
34072 Author: Mike Frysinger <vapier@gentoo.org>
34073 Date:   Thu Dec 11 07:04:48 2008 -0500
34074
34075     Blackfin: drop CONFIG_SPI handling in board init
34076
34077     The eeprom SPI init functions are duplicated as the common code already
34078     executes these for us.
34079
34080     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34081
34082 commit e7e684b10d73a303902208594c7c3e7e0d753282
34083 Author: Mike Frysinger <vapier@gentoo.org>
34084 Date:   Fri Oct 24 17:51:57 2008 -0400
34085
34086     Blackfin: fix out-of-tree building with ldscripts
34087
34088     Many of the Blackfin board linker scripts are preprocessed, so make sure we
34089     output the linker script into the build tree rather than the source tree.
34090
34091     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34092
34093 commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb
34094 Author: Mike Frysinger <vapier@gentoo.org>
34095 Date:   Fri Oct 24 17:48:54 2008 -0400
34096
34097     Blackfin: fix linker scripts to work with --gc-sections
34098
34099     Make sure all .text sections get pulled in and the entry point is properly
34100     referenced so they don't get discarded when linking with --gc-sections.
34101
34102     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34103
34104 commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58
34105 Author: Mike Frysinger <vapier@gentoo.org>
34106 Date:   Sat Oct 11 20:45:44 2008 -0400
34107
34108     Blackfin: set proper LDRFLAGS for parallel booting LDRs
34109
34110     In order to boot an LDR out of parallel flash, the ldr utility needs a few
34111     flags to tell it to generate the right header.
34112
34113     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34114
34115 commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3
34116 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34117 Date:   Tue Jan 6 21:41:59 2009 +0100
34118
34119     at91rm9200: move define from lowlevel_init to header
34120
34121     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34122
34123 commit 8a48686fac2030287765f1970ea046bd5734b733
34124 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34125 Date:   Sat Jan 3 17:22:26 2009 +0100
34126
34127     m501sk: move to the common memory setup
34128
34129     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34130
34131 commit d481c80d78f954133c035dae6c7d22de3625795d
34132 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34133 Date:   Sat Jan 3 17:22:25 2009 +0100
34134
34135     at91rm9200: rename lowlevel init value to CONFIG_SYS_
34136
34137     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34138
34139 commit 4e170b16625291aa10d0d9abc3f34e8a5945d157
34140 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
34141 Date:   Tue Jan 6 21:13:14 2009 +0100
34142
34143     at91: add at91sam9xeek board support
34144
34145     At91sam9xe is basically an at91sam9260 with embedded flash. We can manage
34146     it as another entry for at91sam9260 in the Makefile.
34147
34148     Check documentation at :
34149     http://www.atmel.com/dyn/products/product_card.asp?part_id=4263
34150
34151     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
34152     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34153
34154 commit 9ffd53db870a7da134f9a1ae76894a6b31237be5
34155 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34156 Date:   Tue Jan 6 21:15:57 2009 +0100
34157
34158     fix bmp_logo.h make dependencies to allow parallel build
34159
34160     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34161
34162 commit e12d9a8fb48d24176efffccc072b445e60a3afe4
34163 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34164 Date:   Sat Jan 3 17:22:24 2009 +0100
34165
34166     at91: Fix Atmel's at91sam9 boards out of tree build
34167
34168     introduced in commit 89a7a87f084c
34169
34170     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34171
34172 commit 0668236bafaa1c11c521652a2facebc74beecbf0
34173 Author: Wolfgang Denk <wd@denx.de>
34174 Date:   Tue Dec 30 22:56:11 2008 +0100
34175
34176     README: update mailing list name and hits to patch submission.
34177
34178     Signed-off-by: Wolfgang Denk <wd@denx.de>
34179
34180 commit d9011f9b75561a0bd9254934c2bb2bc799d4f645
34181 Author: Peter Tyser <ptyser@xes-inc.com>
34182 Date:   Tue Dec 23 16:32:01 2008 -0600
34183
34184     85xx: Enable inbound PCI config cycles for X-ES boards cleanup
34185
34186     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34187
34188 commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df
34189 Author: Peter Tyser <ptyser@xes-inc.com>
34190 Date:   Tue Dec 23 16:32:00 2008 -0600
34191
34192     XPedite5200 board support cleanup
34193
34194     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34195
34196 commit fea91edee8ae0295e3c30b1ff544df51f4d668e1
34197 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34198 Date:   Tue Dec 2 21:58:04 2008 +0100
34199
34200     usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable
34201
34202     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34203     Signed-off-by: Remy Böhmer <linux@bohmer.net>
34204
34205 commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28
34206 Author: Trent Piepho <tpiepho@freescale.com>
34207 Date:   Wed Dec 3 15:16:37 2008 -0800
34208
34209     mpc8[56]xx: Put localbus clock in sysinfo and gd
34210
34211     Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
34212     and print it out, but don't save it.
34213
34214     This changes where its calculated and stored to be more consistent with the
34215     CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
34216
34217     The localbus frequency is added to sysinfo and calculated when sysinfo is
34218     set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
34219
34220     get_clocks() copies the frequency into the global data, as the other
34221     frequencies are, into a new field that is only enabled for MPC85xx and
34222     MPC86xx.
34223
34224     checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
34225     from sysinfo, like the other frequencies, instead of calculating it on the
34226     spot.
34227
34228     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
34229     Acked-by: Kumar Gala <galak@kernel.crashing.org>
34230     Acked-by: Jon Loeliger <jdl@freescale.com>
34231
34232 commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7
34233 Author: Trent Piepho <tpiepho@freescale.com>
34234 Date:   Wed Dec 3 15:16:36 2008 -0800
34235
34236     mpc86xx: Double local bus clock divider
34237
34238     The local bus clock divider should be doubled for both 8610 and 8641.
34239
34240     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
34241     Acked-by: Kumar Gala <galak@kernel.crashing.org>
34242     Acked-by: Jon Loeliger <jdl@freescale.com>
34243
34244 commit 446c381e3e16f19857b72ea0d06241267b8b9d58
34245 Author: Trent Piepho <tpiepho@freescale.com>
34246 Date:   Wed Dec 3 15:16:35 2008 -0800
34247
34248     mpc8568: Double local bus clock divider
34249
34250     The clock divider for the MPC8568 local bus should be doubled, like the
34251     other newer MPC85xx chips.
34252
34253     Since there are now more chips with a 2x divider than a 1x, and any new
34254     85xx chips will probably be 2x, invert the sense of the #if so that it
34255     lists the 1x chips instead of the 2x ones.
34256
34257     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
34258     Acked-by: Kumar Gala <galak@kernel.crashing.org>
34259     Acked-by: Jon Loeliger <jdl@freescale.com>
34260
34261 commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03
34262 Author: Dave Liu <daveliu@freescale.com>
34263 Date:   Tue Dec 16 12:09:27 2008 +0800
34264
34265     85xx: Fix the boot window issue
34266
34267     If one custom board is using the 8MB flash, it is set
34268     as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000.
34269     The current start.S code will be broken at switch_as.
34270
34271     It is because the TLB1[15] is set as 16MB page size,
34272     EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000.
34273
34274     For the 8MB flash case, the EPN = 0xefxxxxxx,
34275     RPN = 0xffxxxxxx. Assume the virt address of switch_as
34276     is 0xef7ff18c, the real address of the instruction at
34277     switch_as should be 0xff7ff18c. the 0xff7ff18c is out
34278     of the range of the default 8MB boot LAW window
34279     0xff800000 - 0xffffffff.
34280
34281     So when we switch to AS1 address space at switch_as,
34282     the core can't fetch the instruction at switch_as any
34283     more. It will cause broken issue.
34284
34285     Signed-off-by: Dave Liu <daveliu@freescale.com>
34286
34287 commit 58da8890d5fbd074746037722a423de9ac408616
34288 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
34289 Date:   Thu Dec 11 15:47:50 2008 -0500
34290
34291     sbc8548: use proper PHY address
34292
34293     The values given for the PHY address were wrong, so the code
34294     read no valid PHY ID, and fell through to the generic PHY
34295     support, which would work on 1000M but would not auto negotiate
34296     down to 100M or 10M.
34297
34298     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
34299
34300 commit ad22f9273c6f24fbfa917e867680e9688e0c59c5
34301 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
34302 Date:   Thu Dec 11 15:47:51 2008 -0500
34303
34304     sbc8548: enable command line editing by default.
34305
34306     Lets make things a bit more user friendly.  It isn't 1985 anymore.
34307
34308     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
34309
34310 commit bd93105fa171184a71ca8b22be03dc2705cfbd3f
34311 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
34312 Date:   Thu Dec 11 15:47:49 2008 -0500
34313
34314     sbc8548: don't enable the 3rd and 4th eTSEC
34315
34316     These interfaces don't have usable connectors on the board, so don't
34317     bother enumerating or configuring them.
34318
34319     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
34320
34321 commit 181a3650113883728927928b3ac81ad6dade4b2c
34322 Author: Haiying Wang <Haiying.Wang@freescale.com>
34323 Date:   Wed Dec 3 10:08:19 2008 -0500
34324
34325     Set IVPR to kenrel entry point in second core boot page
34326
34327     Assuming the OSes exception vectors start from the base of kernel address, and
34328     the kernel physical starting address can be relocated to an non-zero address.
34329     This patch enables the second core to have a valid IVPR for debugger before
34330     kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid
34331     value for second core which runs kernel at different physical address other
34332     than 0x0.
34333
34334     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34335
34336 commit a5d212a263c58cc746481bf1fc878510533ce7d6
34337 Author: Trent Piepho <tpiepho@freescale.com>
34338 Date:   Wed Dec 3 15:16:34 2008 -0800
34339
34340     mpc8xxx: LCRR[CLKDIV] is sometimes five bits
34341
34342     On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits
34343     instead of four.
34344
34345     In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems.  It
34346     should be safe as the fifth bit was defined as reserved and set to 0.
34347
34348     Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV.
34349
34350     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
34351     Acked-by: Kumar Gala <galak@kernel.crashing.org>
34352     Acked-by: Jon Loeliger <jdl@freescale.com>
34353
34354 commit 58ec4866ed916c7e422f5107bb27b0822084728e
34355 Author: Trent Piepho <tpiepho@freescale.com>
34356 Date:   Wed Dec 3 15:16:38 2008 -0800
34357
34358     mpc8[56]xx: Put localbus clock in device tree
34359
34360     Export the localbus frequency in the device tree, the same way the CPU, TB,
34361     CCB, and various other frequencies are exported in their respective device
34362     tree nodes.
34363
34364     Some localbus devices need this information to be programed correctly, so
34365     it makes sense to export it along with the other frequencies.
34366
34367     Unfortunately, when someone wrote the localbus dts bindings, they didn't
34368     bother to define what the "compatible" property should be.  So it seems no
34369     one was quite sure what to put in their dts files.
34370
34371     Based on current existing dts files in the kernel source, I've used
34372     "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all
34373     of the 85xx devices, and are looked for by the Linux code.  The eLBC is
34374     apparently not entirely backward compatible with the pq3 LBC and so eLBC
34375     equipped platforms like 8572 won't use pq3-localbus.
34376
34377     For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems
34378     and is also looked for by the Linux code.  On MPC8641, I've also used
34379     "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of
34380     which don't use "fsl,elbc" or any other acceptable name to match on.
34381
34382     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
34383     Acked-by: Kumar Gala <galak@kernel.crashing.org>
34384     Acked-by: Jon Loeliger <jdl@freescale.com>
34385
34386 commit 9d94aff699eed38b286814fcbb335f3eb8516a0e
34387 Author: Kumar Gala <galak@kernel.crashing.org>
34388 Date:   Tue Dec 16 14:59:22 2008 -0600
34389
34390     NAND FSL elbc: Use virt_to_phys to determine which bank is in use
34391
34392     The current code that determines which bank/chipselect is used for a
34393     given NAND instance only worked for 32-bit addresses and assumed
34394     a 1:1 mapping.  This breaks in 36-bit physical configs.
34395
34396     The proper way to handle this is to use the virt_to_phys() and
34397     BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address
34398     with the the virtual address the NAND code uses.
34399
34400     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34401     Acked-by: Scott Wood <scottwood@freescale.com>
34402
34403 commit 77c8115b1f1871811633eae77a5a700fac1f0e50
34404 Author: Kumar Gala <galak@kernel.crashing.org>
34405 Date:   Tue Dec 16 14:59:21 2008 -0600
34406
34407     ppc: Use addrmap in virt_to_phys and map_physmem.
34408
34409     If we have addr map support enabled use the mapping functions to
34410     implement virt_to_phys() and map_physmem().
34411
34412     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34413
34414 commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90
34415 Author: Kumar Gala <galak@kernel.crashing.org>
34416 Date:   Tue Dec 16 14:59:20 2008 -0600
34417
34418     85xx: Add support to populate addr map based on TLB settings
34419
34420     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34421
34422 commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec
34423 Author: Peter Tyser <ptyser@xes-inc.com>
34424 Date:   Mon Dec 1 13:47:13 2008 -0600
34425
34426     XPedite5200 board support
34427
34428     Initial support for Extreme Engineering Solutions XPedite5200 -
34429     a MPC8548-based PMC single board computer.
34430
34431     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34432
34433 commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f
34434 Author: Peter Tyser <ptyser@xes-inc.com>
34435 Date:   Wed Oct 29 12:39:27 2008 -0500
34436
34437     85xx: Enable inbound PCI config cycles for X-ES boards
34438
34439     Update X-ES Freescale boards to allow inbound PCI configuration
34440     cycles when configured as agent/endpoint.
34441
34442     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34443
34444 commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f
34445 Author: Peter Tyser <ptyser@xes-inc.com>
34446 Date:   Wed Dec 17 16:36:23 2008 -0600
34447
34448     XPedite5370 board support
34449
34450     Initial support for Extreme Engineering Solutions XPedite5370 -
34451     a MPC8572-based 3U VPX single board computer with a PMC/XMC
34452     site.
34453
34454     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34455
34456 commit e92739d34e2d6b6aca93b2598248210710897ce8
34457 Author: Peter Tyser <ptyser@xes-inc.com>
34458 Date:   Wed Dec 17 16:36:21 2008 -0600
34459
34460     Add support for PCA953x I2C gpio devices
34461
34462     Initial support for NXP's 4 and 8 bit I2C gpio expanders
34463     (eg pca9537, pca9557, etc). The CONFIG_PCA953X define
34464     enables support for the devices while the CONFIG_CMD_PCA953X
34465     define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO
34466     define enables an 'info' sub-command which provides summary
34467     information for the given pca953x device.
34468
34469     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34470
34471 commit 7a8979591171676417ab36852d8811a8c46accd8
34472 Author: Peter Tyser <ptyser@xes-inc.com>
34473 Date:   Wed Oct 29 12:39:26 2008 -0500
34474
34475     pci/fsl_pci_init: Enable inbound PCI config cycles
34476
34477     Add fsl_pci_config_unlock() function to enable a
34478     PCI/PCIe interface configured in agent/endpoint mode to
34479     respond to inbound PCI configuration cycles.
34480
34481     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34482
34483 commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
34484 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34485 Date:   Wed Dec 17 16:43:18 2008 +0100
34486
34487     avr32: Remove second definition of virt_to_phys()
34488
34489     The second definition introduced by 65e43a1063 conflicts with the
34490     existing one.
34491
34492     Also, convert the existing definition to use phys_addr_t. The volatile
34493     qualifier is still needed due to brain damage elsewhere.
34494
34495     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34496
34497 commit b616f2b545f73757669b37386f0b37bb61fc6797
34498 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34499 Date:   Mon Sep 8 22:27:18 2008 +0200
34500
34501     MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file
34502
34503     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34504     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34505
34506 commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b
34507 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34508 Date:   Tue Dec 16 22:10:31 2008 +0100
34509
34510     MIPS: qemu_mips: update doc to use all disk and boot linux kernel
34511
34512     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34513     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34514
34515 commit 13095b2f07dacb1f863772266c1789d47a523a8a
34516 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34517 Date:   Tue Dec 16 22:10:30 2008 +0100
34518
34519     MIPS: qemu_mips: move env storage just after u-boot
34520
34521     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34522     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34523
34524 commit aced78d852d0b009e8aaa1445af8cb40861ee549
34525 Author: Wolfgang Denk <wd@denx.de>
34526 Date:   Tue Dec 16 23:48:27 2008 +0100
34527
34528     Prepare 2009.01-rc1
34529
34530     Signed-off-by: Wolfgang Denk <wd@denx.de>
34531
34532 commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
34533 Author: Wolfgang Denk <wd@denx.de>
34534 Date:   Tue Dec 16 23:13:46 2008 +0100
34535
34536     include/configs/at91cap9adk.h: fix typo.
34537
34538     Signed-off-by: Wolfgang Denk <wd@denx.de>
34539
34540 commit 45ca04f2377361593151d2d4da51f8ba4832d233
34541 Author: Wolfgang Denk <wd@denx.de>
34542 Date:   Tue Dec 16 22:32:25 2008 +0100
34543
34544     board/trab/memory.c: Fix compile problems.
34545
34546     Apply changes from commit 44b4dbed to board/trab/memory.c, too.
34547
34548     Actually we'd need a major cleanup here - as it turns out,
34549     board/trab/memory.c is more or less a verbatim copy of
34550     post/drivers/memory.c ... but then, trab is EOL anyway,r
34551     so this is not worth the effort.
34552
34553     Signed-off-by: Wolfgang Denk <wd@denx.de>
34554
34555 commit ff49ea8977b56916edd5b1766d9939010e30b181
34556 Author: Scott Wood <scottwood@freescale.com>
34557 Date:   Tue Dec 16 14:24:16 2008 -0600
34558
34559     NAND: Mark the BBT as scanned prior to calling scan_bbt.
34560
34561     Otherwise, recursion can occur if scan_bbt does not find a bad block
34562     table, and tries to write one, and the attempt to erase the BBT area
34563     causes a bad block check.
34564
34565     Signed-off-by: Scott Wood <scottwood@freescale.com>
34566
34567 commit 584eedab66d0828f2d571a24b10526c4e65f547b
34568 Author: Ilya Yanok <yanok@emcraft.com>
34569 Date:   Thu Dec 11 05:51:57 2008 +0300
34570
34571     jffs2: include <linux/mtd/compat.h> instead of defining own min_t
34572
34573     Include <linux/mtd/compat.h> header for min_t definition instead of
34574     providing our own one. Removes warnings in case of OneNAND support
34575     enabled.
34576
34577     Although I thinks it's a bit silly to include <linux/mtd/compat.h>
34578     just for min_t...
34579
34580     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
34581     Acked-by: Stefan Roese <sr@denx.de>
34582
34583 commit b1ffecec37b57a59c139042267faac458e5324e9
34584 Author: Becky Bruce <beckyb@kernel.crashing.org>
34585 Date:   Wed Dec 3 23:04:37 2008 -0600
34586
34587     powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
34588
34589     Casting a pointer to a phys_addr_t when it's an unsigned long long
34590     on a 32-bit system without first casting to a non-pointer type
34591     generates a compiler warning. Fix this.
34592
34593     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
34594
34595 commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
34596 Author: Wolfgang Denk <wd@denx.de>
34597 Date:   Tue Dec 16 16:22:50 2008 +0100
34598
34599     trab: make trab_fkt standalone code independent of libgcc
34600
34601     Use our own local functions in lib_arm/ instead.
34602
34603     Signed-off-by: Wolfgang Denk <wd@denx.de>
34604
34605 commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
34606 Author: Wolfgang Denk <wd@denx.de>
34607 Date:   Tue Dec 16 14:44:06 2008 +0100
34608
34609     post/Makefile: fix dependency problem with parallel builds
34610
34611     Parallel builds (using "make -jN") would occasionally fail with error
34612     messages like
34613         ppc_4xxFP-objdump: string.o: File format not recognized
34614     or
34615         post/libpost.a(cpu.o): In function `cpu_post_test':
34616         /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
34617     or similar. We now make sure to run the 'postdeps" step before
34618     attempting to build the specific POST libraries.
34619
34620     Signed-off-by: Wolfgang Denk <wd@denx.de>
34621
34622 commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
34623 Author: Wolfgang Denk <wd@denx.de>
34624 Date:   Tue Dec 16 14:41:02 2008 +0100
34625
34626     Makefile: fix dependency problem with parallel builds
34627
34628     Parallel builds (using "make -jN") would occasionally fail with error
34629     messages like
34630         include/autoconf.mk:212: *** missing separator.  Stop.
34631     Line numbers and affected boards were changing. Obviously some
34632     Makefiles included autoconf.mk while it was still being written to.
34633     As a fix, we now write to a temporary file first and then rename it,
34634     so that it is really ready to use as soon as it appears.
34635
34636     Signed-off-by: Wolfgang Denk <wd@denx.de>
34637
34638 commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
34639 Author: Wolfgang Denk <wd@denx.de>
34640 Date:   Tue Dec 16 01:02:17 2008 +0100
34641
34642     Coding style cleanup, update CHANGELOG.
34643
34644     Signed-off-by: Wolfgang Denk <wd@denx.de>
34645
34646 commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
34647 Author: Mike Frysinger <vapier@gentoo.org>
34648 Date:   Thu Dec 11 18:39:08 2008 -0500
34649
34650     spi/stmicro: fix debug() display of cmd
34651
34652     The stmicro_wait_ready() func tries to show the actual opcode that was sent
34653     to the device, but instead it displays the array pointer.  Fix it to pull
34654     out the opcode from the start of the array.
34655
34656     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34657
34658 commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
34659 Author: Mike Frysinger <vapier@gentoo.org>
34660 Date:   Thu Dec 11 06:23:37 2008 -0500
34661
34662     env_sf: support embedded environments
34663
34664     If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
34665     size is larger than the env size, then it means the env is embedded in a
34666     block.  So we have to save/restore the part of the sector which is not the
34667     environment.  Previously, saving the environment in SPI flash in this
34668     setup would probably brick the board as the rest of the sector tends to
34669     contain actual U-Boot data/code.
34670
34671     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34672     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34673
34674 commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
34675 Author: Timur Tabi <timur@freescale.com>
34676 Date:   Wed Dec 3 11:28:30 2008 -0600
34677
34678     i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
34679
34680     All implementations of the functions i2c_reg_read() and
34681     i2c_reg_write() are identical. We can save space and simplify the
34682     code by converting these functions into inlines and putting them in
34683     i2c.h.
34684
34685     Signed-off-by: Timur Tabi <timur@freescale.com>
34686     Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34687
34688 commit e39cd81c44740d7355d277ed3d38536cbe1e003d
34689 Author: Dave Liu <daveliu@freescale.com>
34690 Date:   Fri Dec 5 15:36:14 2008 +0800
34691
34692     lib_ppc: rework the flush_cache
34693
34694     - It is possible to miss flush/invalidate the last
34695       cache line, we fix it at here.
34696     - add the volatile and memory clobber.
34697
34698     They are pointed by Scott Wood.
34699
34700     Signed-off-by: Dave Liu <daveliu@freescale.com>
34701
34702 commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
34703 Author: Kumar Gala <galak@kernel.crashing.org>
34704 Date:   Sat Dec 13 17:20:28 2008 -0600
34705
34706     Introduce addr_map library
34707
34708     Add a library that helps in translating between virtual and physical
34709     addresses.  This library can be useful as a simple means to implement
34710     map_physmem() and virt_to_phys() for platforms that need functionality
34711     beyond the simple 1:1 mapping.
34712
34713     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34714
34715 commit 65e43a10631537dcb92c302d36301a12308216c3
34716 Author: Kumar Gala <galak@kernel.crashing.org>
34717 Date:   Sat Dec 13 17:20:27 2008 -0600
34718
34719     Introduce virt_to_phys()
34720
34721     virt_to_phys() returns the physical address given a virtual. In most
34722     cases this will be just the input value as the vast majority of
34723     systems run in a 1:1 mode.
34724
34725     However in systems that are not running this way it should report the
34726     physical address or ~0 if no mapping exists for the given virtual
34727     address.
34728
34729     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34730
34731 commit 45845301af3de8675c1f7bbc815c6de35452605a
34732 Author: Yuri Tikhonov <yur@emcraft.com>
34733 Date:   Sun Dec 7 22:12:50 2008 +0100
34734
34735     POST Make: fix the sub-dir dependencies missing.
34736
34737     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
34738
34739 commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
34740 Author: Martin Michlmayr <tbm@cyrius.com>
34741 Date:   Wed Aug 6 14:44:05 2008 +0300
34742
34743     Fix a typo in fw_env.config
34744
34745     Reported-by: Martin Michlmayr <tbm@cyrius.com>
34746     Signed-off-by: Wolfgang Denk <wd@denx.de>
34747
34748 commit ba490b7761c62b549c222a9723e532dc801a3899
34749 Author: Peter Tyser <ptyser@xes-inc.com>
34750 Date:   Mon Dec 1 16:22:45 2008 -0600
34751
34752     Remove unused CONFIG_ADDR_STREAMING defines
34753
34754     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34755
34756 commit d16da93430520d3e46c1ab52eedacf36ab7a2311
34757 Author: Peter Tyser <ptyser@xes-inc.com>
34758 Date:   Mon Nov 24 11:54:47 2008 -0600
34759
34760     cmd_mem: Remove unused variable
34761
34762     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34763
34764 commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
34765 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34766 Date:   Sun Dec 14 10:29:39 2008 +0100
34767
34768     Fix new found CFG_
34769
34770     Also fix some minor typos.
34771
34772     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34773     Signed-off-by: Wolfgang Denk <wd@denx.de>
34774
34775 commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
34776 Author: Sergei Poselenov <sposelenov@emcraft.com>
34777 Date:   Fri Sep 19 12:07:34 2008 +0200
34778
34779     Remove compiler warning: target CPU does not support interworking
34780
34781     This warning is issued by modern ARM-EABI GCC on non-thumb targets.
34782
34783     Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
34784     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
34785
34786 commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
34787 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34788 Date:   Mon Nov 24 13:33:51 2008 +0100
34789
34790     Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
34791
34792     FDT support is used for both FIT style images and for architectures
34793     that can pass a fdt blob to an OS (ppc, m68k, sparc).
34794
34795     For other architectures and boards which do not pass a fdt blob to an
34796     OS but want to use the new uImage format, we just need FIT support.
34797
34798     Now we can have the 4 following configurations :
34799
34800     1) FIT only             CONFIG_FIT
34801     2) fdt blob only        CONFIG_OF_LIBFDT
34802     3) both                 CONFIG_OF_LIBFDT & CONFIG_FIT
34803     4) none                 none
34804
34805     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34806
34807 commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
34808 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34809 Date:   Wed Dec 10 15:13:32 2008 +0100
34810
34811     ppc4xx: Disable EEPROM write access on PMC440 boards
34812
34813     This patch disables EEPROM wrtie access by default on PMC440 board.
34814
34815     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34816
34817 commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
34818 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34819 Date:   Wed Dec 10 15:12:56 2008 +0100
34820
34821     ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
34822
34823     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34824
34825 commit 71fa0714fe5134bc8718c38d5261d267e88582ba
34826 Author: Stefan Roese <sr@denx.de>
34827 Date:   Tue Nov 18 16:36:12 2008 +0100
34828
34829     MIPS: Flush data cache upon relocation
34830
34831     This patch now adds a flush to the data cache upon relocation. The
34832     current implementation is missing this. Only a comment states that it
34833     should be done. So let's really do it now.
34834
34835     Signed-off-by: Stefan Roese <sr@denx.de>
34836     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34837
34838 commit 44174343688dba32571a34550dba08971c65fef1
34839 Author: Stefan Roese <sr@denx.de>
34840 Date:   Tue Nov 18 16:36:22 2008 +0100
34841
34842     MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
34843
34844     This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
34845     enables support for boards where the lowlevel initialization is
34846     already done when U-Boot runs (e.g. via OnChip ROM).
34847
34848     This will be used in the upcoming VCTH board support.
34849
34850     Signed-off-by: Stefan Roese <sr@denx.de>
34851     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34852
34853 commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
34854 Author: Stefan Roese <sr@denx.de>
34855 Date:   Wed Nov 12 13:18:02 2008 +0100
34856
34857     MIPS: Add board_early_init_f() to init_sequence
34858
34859     This patch adds the board_early_init_f() call to the MIPS init
34860     sequence. A weak dummy implementation is also added which can be
34861     overridden by a board specific version.
34862
34863     This will be used by the upcoming VCTH board support.
34864
34865     Signed-off-by: Stefan Roese <sr@denx.de>
34866     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34867
34868 commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
34869 Author: Stefan Roese <sr@denx.de>
34870 Date:   Wed Nov 12 13:18:19 2008 +0100
34871
34872     MIPS: Add onenand_init() to board.c and move nand_init()
34873
34874     This patch adds a call to onenand_init() for OneNAND support and moves
34875     the nand_init() call to an earlier place, so that the environment can
34876     be used from NAND and OneNAND.
34877
34878     Signed-off-by: Stefan Roese <sr@denx.de>
34879     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34880
34881 commit d8bbc51c7ba9b737a20984333d19fe28a3526431
34882 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34883 Date:   Tue Dec 9 11:32:46 2008 +0900
34884
34885     sh: Update sh2/sh2a timer
34886
34887     Renesas SH2/SH2A timer broken.
34888     This patch fix timer function.
34889
34890     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34891     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34892
34893 commit a319f1496210117b73198e3d889ffffaf6825d00
34894 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34895 Date:   Fri Dec 5 07:27:37 2008 +0100
34896
34897     sh: r2dplus fix register access
34898
34899     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34900     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34901
34902 commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
34903 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34904 Date:   Tue Dec 2 07:40:03 2008 +0100
34905
34906     sh: r2dplus/lowlevel_init: coding style fix
34907
34908     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34909     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34910
34911 commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
34912 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34913 Date:   Tue Nov 25 11:05:19 2008 +0900
34914
34915     sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
34916
34917     SH4 is different a value of CACHE_OC_NUM_ENTRIES and
34918     CACHE_OC_WAY_SHIFT every CPU.
34919     This patch corrects these values.
34920
34921     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34922     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34923
34924 commit e9d5f35497885b3c65d494d09a525d443dcccd3b
34925 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34926 Date:   Thu Nov 20 16:44:42 2008 +0900
34927
34928     sh: Update sh timer function
34929
34930     Change to write/readX function and fix timer problem.
34931
34932     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34933     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34934
34935 commit b81786cff476c41e332eaeb679158f6527cd67d4
34936 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34937 Date:   Tue Nov 4 11:58:58 2008 +0900
34938
34939     sh: Migo-R: Update BSC value
34940
34941     A value of BSC CS4 was wrong, Fixed it.
34942
34943     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34944     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34945
34946 commit 5783758fd260a02f44566ad8f29f899565cd0403
34947 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34948 Date:   Mon Nov 17 16:52:09 2008 +0900
34949
34950     sh: Update ms7722se board config
34951
34952     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34953     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34954
34955 commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
34956 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34957 Date:   Mon Nov 17 16:53:09 2008 +0900
34958
34959     sh: Update SuperH serial driver
34960
34961     The address of SCFSR register is wrong at SH7720/SH7721.
34962     This patch fix this.
34963
34964     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34965     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34966
34967 commit 9a1d3557dcd47365c12eeab584b822e57d994352
34968 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34969 Date:   Tue Nov 11 22:20:15 2008 +0100
34970
34971     sh: fix rsk7203 and MigoR out of tree build
34972
34973     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34974     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34975
34976 commit 1951f847f0a851853871b613ad7cf21a5242226c
34977 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34978 Date:   Wed Dec 10 14:41:25 2008 +0100
34979
34980     ppc4xx: Update TEXT_BASE for CPCI405 boards
34981
34982     This patch fixes building U-Boot for CPCI405 boards.
34983
34984     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34985     Signed-off-by: Stefan Roese <sr@denx.de>
34986
34987 commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
34988 Author: Stefan Roese <sr@denx.de>
34989 Date:   Tue Dec 9 20:08:01 2008 +0100
34990
34991     ppc4xx: Remove some features from ALPR to fit into 256k again
34992
34993     Signed-off-by: Stefan Roese <sr@denx.de>
34994
34995 commit 3b089e4f889a2902449d55e081c886ae607cae89
34996 Author: Stefan Roese <sr@denx.de>
34997 Date:   Wed Dec 10 10:32:59 2008 +0100
34998
34999     UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
35000
35001     With this patch we set the type back to NONE upon failing UBI partition
35002     initialization. Otherwise further calls to the UBI subsystem would try
35003     to really access the non-existing UBI partition.
35004
35005     Thanks to Michael Lawnick for pointing this out.
35006
35007     Signed-off-by: Stefan Roese <sr@denx.de>
35008
35009 commit 817329351639a8895cd9b87b33aeff043f3d5a44
35010 Author: Stefan Roese <sr@denx.de>
35011 Date:   Wed Dec 10 10:28:33 2008 +0100
35012
35013     UBI: Return -ENOMEM upon failing malloc
35014
35015     Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
35016     failing malloc().
35017
35018     Signed-off-by: Stefan Roese <sr@denx.de>
35019
35020 commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
35021 Author: Ben Warren <biggerbadderben@gmail.com>
35022 Date:   Tue Dec 9 23:34:15 2008 -0800
35023
35024     Fix compile error in building MBX860T.
35025
35026     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35027
35028 commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
35029 Author: Michal Simek <monstr@monstr.eu>
35030 Date:   Tue Nov 25 11:42:20 2008 +0100
35031
35032     microblaze: Remove XUPV2P board
35033
35034     ---
35035
35036     Microblaze platforms use generic settings and to have
35037     many platforms is confusing that's why I decided to remove this
35038     platform from U-BOOT. ml401 tree is sufficient for covering
35039     all Microblaze platforms.
35040
35041     This change will go through microblaze custodian tree.
35042
35043 commit 99ba6f353582720defff6e6e6761dc455a207d31
35044 Author: Michal Simek <monstr@monstr.eu>
35045 Date:   Mon Nov 24 18:25:41 2008 +0100
35046
35047     microblaze: Remove CONFIG_LIBFDT due to error in common files
35048
35049 commit e7d591e823a991513833af7030468409e25a3b13
35050 Author: Michal Simek <monstr@monstr.eu>
35051 Date:   Mon Nov 24 11:43:00 2008 +0100
35052
35053     microblaze: Fix ml401 uart16550 setting
35054
35055     Signed-off-by: Michal Simek <monstr@monstr.eu>
35056
35057 commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
35058 Author: Michal Simek <monstr@monstr.eu>
35059 Date:   Mon Nov 24 11:38:22 2008 +0100
35060
35061     microblaze: Set up relocation is done
35062
35063 commit bcb6dd9187d4b23c748704767bd12d20c829e996
35064 Author: Mike Frysinger <vapier@gentoo.org>
35065 Date:   Tue Dec 9 23:20:31 2008 -0500
35066
35067     tools/netconsole: new script for working with netconsole over UDP
35068
35069     While the doc/README.NetConsole does have a snippet for people to
35070     create their own netcat script, it's a lot easier to make a simple
35071     dedicated script and tell people to use it.
35072
35073     Also spruce it up a bit to make it user friendly.
35074
35075     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35076
35077 commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
35078 Author: Sonic Zhang <Sonic.Zhang@analog.com>
35079 Date:   Tue Dec 9 23:20:18 2008 -0500
35080
35081     fs/fat: handle FAT on SATA
35082
35083     The FAT file system driver should also handle FAT on SATA devices.
35084
35085     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
35086     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35087
35088 commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6
35089 Author: Ben Warren <biggerbadderben@gmail.com>
35090 Date:   Tue Dec 9 23:26:31 2008 -0800
35091
35092     Fix compile error in building MBX860T.
35093     Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd
35094
35095     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35096
35097 commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
35098 Author: Jerry Van Baren <gvb.uboot@gmail.com>
35099 Date:   Mon Nov 24 08:15:02 2008 -0500
35100
35101     libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
35102
35103     Compiling U-Boot in an old OS environment (RedHat-7.3  :-)  gives the
35104     following warnings from FDT:
35105
35106     include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
35107     /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
35108
35109     Fix: Protect the definition of uintptr_t when compiling on the host
35110     system.
35111
35112     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35113
35114 commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
35115 Author: Graeme Russ <graeme.russ@gmail.com>
35116 Date:   Sat Nov 22 08:43:29 2008 +1100
35117
35118     Moved sc520 PCI definitions to stand-alone file
35119
35120     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
35121
35122 commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
35123 Author: Graeme Russ <graeme.russ@gmail.com>
35124 Date:   Sat Nov 22 08:43:21 2008 +1100
35125
35126     Fixed path to sc520 SSI include file
35127
35128     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
35129
35130 commit d4f70da544c33db3e4fce6473dea4ecca4322545
35131 Author: Graeme Russ <graeme.russ@gmail.com>
35132 Date:   Fri Nov 21 06:28:05 2008 +1100
35133
35134     Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
35135
35136     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
35137
35138 commit c034075a713b60e654c64e88e87da29440f31bb4
35139 Author: Stefan Roese <sr@denx.de>
35140 Date:   Wed Nov 12 13:30:10 2008 +0100
35141
35142     serial: Add vcth UART driver
35143
35144     This patch adds the UART driver for the upcoming VCTH board support.
35145
35146     Signed-off-by: Stefan Roese <sr@denx.de>
35147
35148 commit 142a80ffc3b537a9c45acd2444a42a77f147c602
35149 Author: Ilya Yanok <yanok@emcraft.com>
35150 Date:   Thu Nov 13 19:49:36 2008 +0300
35151
35152     jffs2: cache data_crc results
35153
35154     As we moved data_crc() invocation from jffs2_1pass_build_lists() to
35155     jffs2_1pass_read_inode() data_crc is going to be calculated on each
35156     inode access. This patch adds caching of data_crc() results. There
35157     is no significant improvement in speed (because of flash access
35158     caching added in previous patch I think, crc in RAM is really fast)
35159     but this patch impacts memory usage -- every b_node structure uses
35160     12 bytes instead of 8.
35161
35162     Signed-off-by: Alexey Neyman <avn@emcraft.com>
35163     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35164
35165 commit 9b7076229ec6a958bd835ab70745f7676297ce82
35166 Author: Ilya Yanok <yanok@emcraft.com>
35167 Date:   Thu Nov 13 19:49:35 2008 +0300
35168
35169     jffs2: summary support
35170
35171     This patch adds support for reading fs information from summary
35172     node instead of scanning full eraseblock.
35173
35174     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35175
35176 commit 70741004dc28946cd82c7af6789c4ddb3fc94526
35177 Author: Ilya Yanok <yanok@emcraft.com>
35178 Date:   Thu Nov 13 19:49:34 2008 +0300
35179
35180     jffs2: add buffer to cache flash accesses
35181
35182     With this patch JFFS2 code allocates memory buffer of max_totlen size
35183     (size of the largest node, calculated during scan time) and uses it to
35184     store entire node. Speeds up loading. If malloc fails we use old ways
35185     to do things.
35186
35187     Signed-off-by: Alexey Neyman <avn@emcraft.com>
35188     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35189
35190 commit 8a36d31f72411144ac0412ee7e1880e801acd754
35191 Author: Ilya Yanok <yanok@emcraft.com>
35192 Date:   Thu Nov 13 19:49:33 2008 +0300
35193
35194     jffs2: rewrite jffs2 scanning code based on Linux one
35195
35196     Rewrites jffs2_1pass_build_lists() function in style of Linux's
35197     jffs2_scan_medium() and jffs2_scan_eraseblock().
35198     This includes:
35199      - Caching flash acceses
35200      - Smart dealing with free space
35201
35202     Signed-off-by: Alexey Neyman <avn@emcraft.com>
35203     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35204
35205 commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
35206 Author: Ilya Yanok <yanok@emcraft.com>
35207 Date:   Thu Nov 13 19:49:32 2008 +0300
35208
35209     jffs2: add sector_size field to part_info structure
35210
35211     This patch adds sector_size field to part_info structure (used
35212     by new JFFS2 code).
35213
35214     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35215
35216 commit f73846956778a7dfee83403ef9747aff77198848
35217 Author: Ilya Yanok <yanok@emcraft.com>
35218 Date:   Thu Nov 13 19:49:31 2008 +0300
35219
35220     jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
35221
35222     We need to update i_version inside cycle to find really latest version
35223     inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
35224     dump_inode() instead of calling expensive jffs2_1pass_read_inode().
35225
35226     Signed-off-by: Alexey Neyman <avn@emcraft.com>
35227     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35228
35229 commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
35230 Author: Wolfgang Denk <wd@denx.de>
35231 Date:   Tue Dec 9 23:13:51 2008 +0100
35232
35233     evb64260: fix "cast to pointer from integer of different size" warnings
35234
35235     Signed-off-by: Wolfgang Denk <wd@denx.de>
35236
35237 commit d2776827315c3d469b8cb4cec14d58877798daa2
35238 Author: Stefan Althoefer <stefan.althoefer@web.de>
35239 Date:   Sun Dec 7 19:39:11 2008 +0100
35240
35241     USB: descriptor handling
35242
35243     Hi,
35244
35245     I found a bug when working with the u-boot USB subsystem on IXP425 processor
35246     (big endian Xscale aka ARMv5).
35247     I recognized that the second usb_endpoint_descriptor of the attached memory
35248     stick was corrupted.
35249
35250     The reason for this are the packed structures below (either u-boot and
35251     u-boot-usb):
35252
35253     --------------
35254     /* Endpoint descriptor */
35255     struct usb_endpoint_descriptor {
35256         unsigned char  bLength;
35257         unsigned char  bDescriptorType;
35258         unsigned char  bEndpointAddress;
35259         unsigned char  bmAttributes;
35260         unsigned short wMaxPacketSize;
35261         unsigned char  bInterval;
35262         unsigned char  bRefresh;
35263         unsigned char  bSynchAddress;
35264
35265     } __attribute__ ((packed));
35266     /* Interface descriptor */
35267     struct usb_interface_descriptor {
35268         unsigned char  bLength;
35269         unsigned char  bDescriptorType;
35270         unsigned char  bInterfaceNumber;
35271         unsigned char  bAlternateSetting;
35272         unsigned char  bNumEndpoints;
35273         unsigned char  bInterfaceClass;
35274         unsigned char  bInterfaceSubClass;
35275         unsigned char  bInterfaceProtocol;
35276         unsigned char  iInterface;
35277
35278         unsigned char  no_of_ep;
35279         unsigned char  num_altsetting;
35280         unsigned char  act_altsetting;
35281         struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
35282     } __attribute__ ((packed));
35283     ------------
35284
35285     As usb_endpoint_descriptor is only 7byte in length, the start of all
35286     odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
35287     of these structures also not word aligned.
35288
35289     ARMv5 Architecture however does not support non-aligned multibyte
35290     data type (see A2.8 of ARM Architecture Reference Manual).
35291
35292     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
35293     Signed-off-by: Remy Böhmer <linux@bohmer.net>
35294
35295 commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
35296 Author: Kumar Gala <galak@kernel.crashing.org>
35297 Date:   Tue Dec 9 10:27:33 2008 -0600
35298
35299     drivers/fsl_pci_init: Fix compile warning
35300
35301     fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
35302     fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
35303
35304     The check only makes sense if we are CONFIG_PHYS_64BIT
35305
35306     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35307
35308 commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
35309 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35310 Date:   Sun Dec 7 09:45:35 2008 +0100
35311
35312     usbtty/omap: update to current API
35313
35314     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35315     Signed-off-by: Remy Böhmer <linux@bohmer.net>
35316
35317 commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
35318 Author: Anatolij Gustschin <agust@denx.de>
35319 Date:   Tue Dec 9 17:52:05 2008 +0100
35320
35321     video: fix FADS823 and RRvision compiling issues
35322
35323     Since commit 561858ee building for FADS823 and RRvision
35324     doesn't work. Let's include version.h and timestamp.h
35325     unconditionally to fix the problem.
35326
35327     Signed-off-by: Anatolij Gustschin <agust@denx.de>
35328
35329 commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
35330 Author: Stefan Roese <sr@denx.de>
35331 Date:   Tue Dec 2 10:53:47 2008 +0100
35332
35333     UBI: Fix size parsing in "ubi create"
35334
35335     Signed-off-by: Stefan Roese <sr@denx.de>
35336
35337 commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
35338 Author: Stefan Roese <sr@denx.de>
35339 Date:   Thu Nov 27 14:07:09 2008 +0100
35340
35341     UBI: Enable re-initializing of the "ubi part" command
35342
35343     With this patch now, the user can call "ubi part" multiple times to
35344     re-connect the UBI device to another MTD partition.
35345
35346     Signed-off-by: Stefan Roese <sr@denx.de>
35347
35348 commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
35349 Author: Stefan Roese <sr@denx.de>
35350 Date:   Thu Nov 27 14:05:15 2008 +0100
35351
35352     MTD: Fix problem based on non-working relocation (list head mtd_partitions)
35353
35354     Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
35355     first call of add_mtd_partitions(). Otherwise this won't work on platforms
35356     where the relocation is broken (like MIPS or PPC).
35357
35358     Signed-off-by: Stefan Roese <sr@denx.de>
35359
35360 commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
35361 Author: Trent Piepho <tpiepho@freescale.com>
35362 Date:   Wed Nov 12 17:29:48 2008 -0800
35363
35364     Section name should be ".data", not "data"
35365
35366     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
35367     Signed-off-by: Wolfgang Denk <wd@denx.de>
35368
35369 commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
35370 Author: Wolfgang Denk <wd@denx.de>
35371 Date:   Tue Dec 9 00:39:08 2008 +0100
35372
35373     MAKEALL: Automatically use parallel builds
35374
35375     Add logic to the MAKEALL script to determine the number of CPU cores
35376     on the system, and run a parallel build if there is more than one.
35377     Usually this significantrly accelerates builds.
35378
35379     Allow to manually adjust the number of parallel make jobs by using
35380     the "BUILD_NCPUS" environment variable.
35381
35382     Signed-off-by: Wolfgang Denk <wd@denx.de>
35383
35384 commit 268405fa7c44156c5192a70779920c70906af8d6
35385 Author: Wolfgang Denk <wd@denx.de>
35386 Date:   Tue Dec 9 00:24:30 2008 +0100
35387
35388     vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
35389
35390     Signed-off-by: Wolfgang Denk <wd@denx.de>
35391
35392 commit 153176a9414120ca1736f3cc4951623d6e14e6af
35393 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35394 Date:   Tue Nov 11 06:08:59 2008 +0100
35395
35396     avr32/bootm: remove unused variable 'ret'
35397
35398     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35399     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35400
35401 commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
35402 Author: Peter Tyser <ptyser@xes-inc.com>
35403 Date:   Wed Nov 12 13:06:48 2008 -0600
35404
35405     Remove unneeded CONFIG_SHELL references
35406
35407     Make should be using the bash shell by default which makes
35408     CONFIG_SHELL unnecessary
35409
35410     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35411
35412 commit cf7a7b99794bac936899819b95539be1dbd71708
35413 Author: Peter Tyser <ptyser@xes-inc.com>
35414 Date:   Wed Nov 12 12:33:20 2008 -0600
35415
35416     Use bash for default GNU Make shell application
35417
35418     Some Make script commands rely on bash-specific features like brace
35419     expansion, so default to bash for the SHELL variable with a fallback
35420     to the standard sh shell
35421
35422     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35423
35424 commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
35425 Author: Heiko Schocher <hs@denx.de>
35426 Date:   Wed Nov 12 09:50:45 2008 +0100
35427
35428     jffs2: rename devices_init () in common/jffs2.c
35429
35430     rename devices_init () in common/jffs2.c to
35431     jffs2_devices_init (), because there is also a
35432     devices_init () in common/devices.c.
35433
35434     Signed-off-by: Heiko Schocher <hs@denx.de>
35435
35436 commit af5eb847a10f1037590001355d88bab3fe7be48b
35437 Author: Daniel Hellstrom <daniel@gaisler.com>
35438 Date:   Mon Nov 10 12:46:20 2008 +0000
35439
35440     SPARC: Fixed compiler error introduced by commit c160a9544743
35441
35442     This patch fixes a build error for the SPARC platform. It was
35443     introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
35444
35445     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
35446
35447 commit 4c60259899aa00f59db0d936b8807f9a26411c0f
35448 Author: Gary Jennejohn <garyj@denx.de>
35449 Date:   Sun Nov 9 12:50:59 2008 +0100
35450
35451     mgsuvd add the board-specific part of the HDLC driver
35452
35453     Signed-off-by: Gary Jennejohn <garyj@denx.de>
35454
35455 commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
35456 Author: Gary Jennejohn <garyj@denx.de>
35457 Date:   Sun Nov 9 12:45:03 2008 +0100
35458
35459     mgcoge add the board-specific part of the HDLC driver
35460
35461     Signed-off-by: Gary Jennejohn <garyj@denx.de>
35462
35463 commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
35464 Author: Gary Jennejohn <garyj@denx.de>
35465 Date:   Sun Nov 9 12:36:15 2008 +0100
35466
35467     keymile add the common parts of the HDLC driver
35468
35469     This implements the ICN protocol used across the backplane and is
35470     needed by all the keymile boards.
35471
35472     Signed-off-by: Gary Jennejohn <garyj@denx.de>
35473
35474 commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
35475 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35476 Date:   Fri Nov 7 22:46:22 2008 +0100
35477
35478     drivers/bios_emulator: Move conditional compilation to Makefile
35479
35480     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35481
35482 commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
35483 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
35484 Date:   Thu Nov 6 14:01:51 2008 -0500
35485
35486     common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
35487
35488     Corrected endian order printing for compact flash serial number.
35489
35490     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
35491
35492 commit 16a28ef219c27423a1ef502f19070c4d375079b8
35493 Author: Gary Jennejohn <garyj@denx.de>
35494 Date:   Thu Nov 6 15:04:23 2008 +0100
35495
35496     IOMUX: Add console multiplexing support.
35497
35498     Modifications to support console multiplexing.  This is controlled using
35499     CONFIG_SYS_CONSOLE_MUX in the board configuration file.
35500
35501     This allows a user to specify multiple console devices in the environment
35502     with a command like this: setenv stdin serial,nc.  As a result, the user can
35503     enter text on both the serial and netconsole interfaces.
35504
35505     All devices - stdin, stdout and stderr - can be set in this manner.
35506
35507     1) common/iomux.c and include/iomux.h contain the environment setting
35508     implementation.
35509     2) doc/README.iomux contains a somewhat more detailed description.
35510     3) The implementation in (1) is called from common/cmd_nvedit.c to
35511     handle setenv and from common/console.c to handle initialization of
35512     input/output devices at boot time.
35513     4) common/console.c also contains the code needed to poll multiple console
35514     devices for input and send output to all devices registered for output.
35515     5) include/common.h includes iomux.h and common/Makefile generates iomux.o
35516     when CONFIG_SYS_CONSOLE_MUX is set.
35517
35518     Signed-off-by: Gary Jennejohn <garyj@denx.de>
35519
35520 commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
35521 Author: Mike Frysinger <vapier@gentoo.org>
35522 Date:   Tue Nov 4 16:03:46 2008 -0500
35523
35524     strings: use puts() rather than printf()
35525
35526     When running `strings` on really long strings, the stack tends to get
35527     smashed due to printf().  Switch to puts() instead since we're only passing
35528     the data through.
35529
35530     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35531
35532 commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
35533 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
35534 Date:   Mon Nov 3 22:16:18 2008 +0100
35535
35536     Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
35537
35538     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
35539
35540 commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
35541 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
35542 Date:   Mon Nov 3 22:15:34 2008 +0100
35543
35544     cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
35545
35546     - fix size too small by one in sprintf
35547     - changed old (pre 2004) device name ibmEmac to emac
35548     - boot device may be overriden in board config
35549     - servername may be defined in board config
35550     - additional parameters may be defined in board config
35551     - fixed some line wrappings
35552     - replaced  redundant MAX define by max
35553
35554     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
35555
35556 commit e9084b23d16102f44ace24379a1c0c352497ef80
35557 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
35558 Date:   Mon Nov 3 22:14:36 2008 +0100
35559
35560     Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
35561
35562     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
35563
35564 commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
35565 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
35566 Date:   Mon Nov 3 22:13:47 2008 +0100
35567
35568     README: Document CONFIG_SYS parameters for vxworks
35569
35570     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
35571
35572 commit ace514837cac656e29c37a19569cb8ea83071126
35573 Author: Peter Tyser <ptyser@xes-inc.com>
35574 Date:   Fri Oct 31 11:12:38 2008 -0500
35575
35576     lcd: Let the board code show board-specific info cleanup
35577
35578     remove unneeded version.h from lcd.c
35579
35580     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35581     Signed-off-by: Wolfgang Denk <wd@denx.de>
35582
35583 commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
35584 Author: Peter Tyser <ptyser@xes-inc.com>
35585 Date:   Mon Nov 3 09:30:59 2008 -0600
35586
35587     Update U-Boot's build timestamp on every compile
35588
35589     Use the GNU 'date' command to auto-generate a new U-Boot
35590     timestamp on every compile.
35591
35592     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35593
35594 commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
35595 Author: Remy Bohmer <linux@bohmer.net>
35596 Date:   Thu Dec 4 22:25:57 2008 +0100
35597
35598     Remove redundant armv4 flag from arm926ejs compile flags
35599
35600     Currently the arm926ejs tree has the armv4 option set during compilation.
35601     This flag does not belong here because a arm926 CPU is always a armv5 CPU.
35602
35603     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35604
35605 commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
35606 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
35607 Date:   Sat Dec 6 13:11:14 2008 +0100
35608
35609     at91: Choose environment variables location within make config target
35610
35611     This patch adds the possiblity to choose the media where the environment will
35612     be located. This allow to choose this fundamental configuration without editing
35613     config files.
35614
35615     Documentation file added.
35616
35617     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
35618     Acked-by: Stelian Pop <stelian@popies.net>
35619     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35620
35621 commit 1450c4a6682378567030414a9f1198c39b7730c7
35622 Author: Anatolij Gustschin <agust@denx.de>
35623 Date:   Mon Nov 3 15:30:34 2008 +0100
35624
35625     lwmon, tqm8xx: Fix build errors
35626
35627     Commit 6b59e03e0237a40a2305ea385defdfd92000978b
35628     lcd: Let the board code show board-specific info
35629
35630     introduced some bugs which prevent U-Boot building
35631     for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
35632     be defined in the board configuration.
35633
35634     Also "LCD enabled" building for TQM823L doesn't work
35635     since this commit.
35636
35637     This patch fixes above-mentioned issues.
35638
35639     Signed-off-by: Anatolij Gustschin <agust@denx.de>
35640
35641 commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
35642 Author: Mike Frysinger <vapier@gentoo.org>
35643 Date:   Sun Nov 2 01:18:18 2008 -0400
35644
35645     ignore .gdb_history files
35646
35647     When using gdb, history files will often get generated.  So ignore them.
35648
35649     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35650
35651 commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
35652 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35653 Date:   Fri Oct 31 12:26:55 2008 +0100
35654
35655     FPGA: move fpga drivers to drivers/fpga
35656
35657     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35658
35659 commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
35660 Author: Peter Tyser <ptyser@xes-inc.com>
35661 Date:   Mon Dec 1 16:29:38 2008 -0600
35662
35663     net: Fix TftpStart() ip:filename bug
35664
35665     The TftpStart() function modifies the 'BootFile'
35666     string when 'BootFile' contains both an IP address
35667     and filename (eg 1.2.3.4:/path/file). This causes
35668     subsequent calls to TftpStart to incorrectly parse
35669     the TFTP filename and server IP address to use.
35670     For example:
35671
35672     => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
35673     Speed: 100, half duplex
35674     Using eTSEC1 device
35675     TFTP from server 10.52.0.62; our IP address is 10.52.253.79
35676                      ^^^^^^^^^^ CORRECT
35677     Filename '/home/ptyser/non_existant'.
35678               ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
35679     Load address: 0x100000
35680     Loading: *
35681     TFTP error: 'File not found' (1)
35682     Starting again
35683
35684     eTSEC2: No link.
35685     Speed: 100, half duplex
35686     Using eTSEC1 device
35687     TFTP from server 10.52.0.33; our IP address is 10.52.253.79
35688                      ^^^^^^^^^^ WRONG
35689     Filename '10.52.0.62'.
35690               ^^^^^^^^^^ WRONG
35691     Load address: 0x100000
35692     Loading: *
35693     TFTP error: 'File not found' (1)
35694     Starting again
35695
35696     TftpStart() was modified to not modify the 'BootFile' string.
35697
35698     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35699     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35700
35701 commit d32c5be50bf0600bfdc54223ef341ee9c63db445
35702 Author: Peter Tyser <ptyser@xes-inc.com>
35703 Date:   Mon Dec 1 16:26:21 2008 -0600
35704
35705     net: Add additional IP fragmentation check
35706
35707     Ignore IP packets which have the "more fragments" flag bit
35708     set.  This flag indicates the IP packet is fragmented and
35709     must be ignored by U-Boot.
35710
35711     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35712     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35713
35714 commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
35715 Author: Peter Tyser <ptyser@xes-inc.com>
35716 Date:   Mon Dec 1 16:26:20 2008 -0600
35717
35718     net: Define IP flag field values
35719
35720     These defines were pulled from the "Add simple
35721     IP/UDP fragmentation support" patch from Frank
35722     Haverkamp <haver@vnet.ibm.com>.
35723
35724     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35725     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35726
35727 commit 23afaba65ec5206757e589ef334a8b38168c045f
35728 Author: Anatolij Gustschin <agust@denx.de>
35729 Date:   Tue Dec 2 10:31:04 2008 +0100
35730
35731     net: tsec: Fix Marvell 88E1121R phy init
35732
35733     This patch tries to ensure that phy interrupt pin
35734     won't be asserted after booting. We experienced
35735     following issues with current 88E1121R phy init:
35736
35737     Marvell 88E1121R phy can be hardware-configured
35738     to share MDC/MDIO and interrupt pins for both ports
35739     P0 and P1 (e.g. as configured on socrates board).
35740     Port 0 interrupt pin will be shared by both ports
35741     in such configuration. After booting Linux and
35742     configuring eth0 interface, port 0 phy interrupts
35743     are enabled. After rebooting without proper eth0
35744     interface shutdown port 0 phy interrupts remain
35745     enabled so any change on port 0 (link status, etc.)
35746     cause assertion of the interrupt. Now booting Linux
35747     and configuring eth1 interface will cause permanent
35748     phy interrupt storm as the registered phy 1 interrupt
35749     handler doesn't acknowledge phy 0 interrupts. This
35750     of course should be fixed in Linux driver too.
35751
35752     Signed-off-by: Anatolij Gustschin <agust@denx.de>
35753     Acked-by: Andy Fleming <afleming@freescale.com>
35754     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35755
35756 commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
35757 Author: Peter Tyser <ptyser@xes-inc.com>
35758 Date:   Tue Dec 2 12:59:51 2008 -0600
35759
35760     net: Fix download command parsing
35761
35762     When CONFIG_SYS_HUSH_PARSER is defined network download
35763     commands with 1 argument in the format 'tftp "/path/file"'
35764     do not work as expected. The hush command parser strips
35765     the quotes from "/path/file" which causes the network
35766     commands to interpret "/path/file" as an address
35767     instead of the intended filename.
35768
35769     The previous check for a leading quote in netboot_common()
35770     was replaced with a check which ensures only valid
35771     numbers are treated as addresses.
35772
35773     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35774     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35775
35776 commit 3c2c2f427905040c1513d0c51d637689cba48346
35777 Author: Remy Bohmer <linux@bohmer.net>
35778 Date:   Thu Nov 27 22:30:27 2008 +0100
35779
35780     Remove non-ascii characters from fat code
35781
35782     This code contains some non-ascii characters in comment lines and code.
35783     Most editors do not display those characters properly and editing those
35784     files results always in diffs at these places which are usually not required
35785     to be changed at all. This is error prone.
35786
35787     So, remove those weird characters and replace them by normal C-style
35788     equivalents for which the proper defines were already in the header.
35789
35790     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35791
35792 commit dc889e865356497d3e495570118c2245ebce2631
35793 Author: Dave Liu <daveliu@freescale.com>
35794 Date:   Fri Nov 28 20:16:58 2008 +0800
35795
35796     85xx: fix the wrong DDR settings for MPC8572DS
35797
35798     The default DDR freq is 400MHz or 800M data rate,
35799     the old settings is pure wrong for the default case.
35800
35801     Signed-off-by: Dave Liu <daveliu@freescale.com>
35802     Acked-by: Andy Fleming <afleming@freescale.com>
35803
35804 commit 9df59533f77de2829b4b66e5b7620e04edaa391c
35805 Author: Kumar Gala <galak@kernel.crashing.org>
35806 Date:   Mon Nov 24 10:29:26 2008 -0600
35807
35808     85xx: init gd as early as possible
35809
35810     Moved up the initialization of GD so C code like set_tlb() can use
35811     gd->flags to determine if we've relocated or not in the future.
35812
35813     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35814     Acked-by: Andy Fleming <afleming@freescale.com>
35815
35816 commit aed461af81012a398a205e9be67ab37667491838
35817 Author: Kumar Gala <galak@kernel.crashing.org>
35818 Date:   Mon Nov 24 10:29:25 2008 -0600
35819
35820     85xx: Fix relocation of CCSRBAR
35821
35822     If the virtual address for CCSRBAR is the same after relocation but
35823     the physical address is changing we'd end up having two TLB entries with
35824     the same VA.  Instead we new us the new CCSRBAR virt address + 4k as a
35825     temp virt address to access the old CCSRBAR to relocate it.
35826
35827     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35828     Acked-by: Andy Fleming <afleming@freescale.com>
35829
35830 commit ea154a1781135d822eedee7567cc156089eae93c
35831 Author: Kumar Gala <galak@kernel.crashing.org>
35832 Date:   Mon Nov 24 10:25:14 2008 -0600
35833
35834     FSL: Moved BR_PHYS_ADDR for localbus to common header
35835
35836     The BR_PHYS_ADDR macro is useful on all machines that have local bus
35837     which is pretty much all 83xx/85xx/86xx chips.
35838
35839     Additionally most 85xx & 86xx will need it if they want to support
35840     36-bit physical addresses.
35841
35842     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35843     Acked-by: Andy Fleming <afleming@freescale.com>
35844
35845 commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
35846 Author: Peter Tyser <ptyser@xes-inc.com>
35847 Date:   Mon Dec 1 13:47:12 2008 -0600
35848
35849     85xx: Add PORDEVSR_PCI1 define
35850
35851     Add define used to determine if PCI1 interface is in PCI or PCIX mode.
35852
35853     Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
35854
35855     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35856     Signed-off-by: Andy Fleming <afleming@freescale.com>
35857
35858 commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
35859 Author: Becky Bruce <becky.bruce@freescale.com>
35860 Date:   Fri Nov 21 19:24:22 2008 -0600
35861
35862     drivers/fsl_pci_init: Fix inbound window mapping bug
35863
35864     The current code will cause the creation of a 4GB window
35865     starting at 0 if we have more than 4GB of RAM installed,
35866     which overlaps with PCI_MEM space and causes pci_bus_to_phys()
35867     to return erroneous information. Limit the size to 4GB - 1;
35868     which causes the code to create one 2GB and one 1GB window
35869     instead.
35870
35871     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
35872     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35873     Acked-by: Andy Fleming <afleming@freescale.com>
35874
35875 commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
35876 Author: Jon Loeliger <jdl@freescale.com>
35877 Date:   Thu Nov 20 15:36:48 2008 -0600
35878
35879     Removed unused CONFIG_L1_INIT_RAM symbol.
35880
35881     Prevent further viral propogation of the unused
35882     symbol CONFIG_L1_INIT_RAM by just removing it.
35883
35884     Signed-off-by: Jon Loeliger <jdl@freescale.com>
35885     Acked-by: Andy Fleming <afleming@freescale.com>
35886
35887 commit 7008d26a40a76f90cae5824c812cfed449fb97b8
35888 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
35889 Date:   Wed Oct 29 09:21:44 2008 -0500
35890
35891     fsl ddr skip interleaving if not supported.
35892
35893     Removed while(1) hang if memctl_intlv_ctl is set wrong.
35894     Remove embedded tabs from strings.
35895
35896     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35897     Acked-by: Kumar Gala <galak@kernel.crashing.org>
35898     Acked-by: Andy Fleming <afleming@freescale.com>
35899
35900 commit dd332e18d082de75eca3fc2c7c778f5d4571a096
35901 Author: Anatolij Gustschin <agust@denx.de>
35902 Date:   Thu Nov 13 18:08:57 2008 +0100
35903
35904     85xx: socrates: fix DDR SDRAM tlb entry configuration
35905
35906     since commit be0bd8234b9777ecd63c4c686f72af070d886517
35907     tlb entry for socrates DDR SDRAM will be reconfigured
35908     by setup_ddr_tlbs() from initdram() causing an
35909     inconsistency with previously configured DDR SDRAM tlb
35910     entry from tlb_table:
35911
35912     socrates>l2cam 7 9
35913     IDX  PID      EPN  SIZE V TS           RPN U0-U3 WIMGE UUUSSS
35914       7 : 00 00000000 256MB V  0 -> 0_00000000  0000 -I-G- ---RWX
35915       8 : 00 00000000 256MB V  0 -> 0_00000000  0000 ----- ---RWX
35916       9 : 00 10000000 256MB V  0 -> 0_10000000  0000 ----- ---RWX
35917
35918     This patch makes the presence of the DDR SDRAM tlb entry in
35919     the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
35920     inconsistency.
35921
35922     Signed-off-by: Anatolij Gustschin <agust@denx.de>
35923     Acked-by: Andy Fleming <afleming@freescale.com>
35924
35925 commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
35926 Author: Peter Tyser <ptyser@xes-inc.com>
35927 Date:   Tue Nov 11 10:17:10 2008 -0600
35928
35929     85xx: Add CPU 2 errata workaround to all 8548 boards
35930
35931     All mpc8548-based boards should implement the suggested workaround
35932     to CPU 2 errata. Without the workaround, its possible for the
35933     8548's core to hang while executing a msync or mbar 0 instruction
35934     and a snoopable transaction from an I/O master tagged to make
35935     quick forward progress is present.
35936
35937     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35938     Acked-by: Andy Fleming <afleming@freescale.com>
35939
35940 commit e57f0fa1333cdf3ca36110aac2900712a5f82976
35941 Author: Dave Liu <daveliu@freescale.com>
35942 Date:   Tue Oct 28 17:53:45 2008 +0800
35943
35944     85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
35945
35946     we need TLB entry for DDR at !SPD case.
35947
35948     Signed-off-by: Dave Liu <daveliu@freescale.com>
35949     Acked-by: Andy Fleming <afleming@freescale.com>
35950
35951 commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
35952 Author: Dave Liu <daveliu@freescale.com>
35953 Date:   Tue Oct 28 17:53:38 2008 +0800
35954
35955     85xx: remove the unused ddr_enable_ecc in the board file
35956
35957     The DDR controller of 8548/8544/8568/8572/8536 processors
35958     have the ECC data init feature, and the new DDR code is
35959     using the feature, and we don't need the way with DMA to
35960     init memory any more.
35961
35962     Signed-off-by: Dave Liu <daveliu@freescale.com>
35963     Acked-by: Andy Fleming <afleming@freescale.com>
35964
35965 commit 4a129a57d923f7c15aa1f567028a80a32d66a100
35966 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35967 Date:   Sun Nov 30 19:36:53 2008 +0100
35968
35969     at91rm9200dk: Fix typo
35970
35971     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35972
35973 commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
35974 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35975 Date:   Sun Nov 30 19:36:50 2008 +0100
35976
35977     AT91: remove non supported board AT91RM9200DF macro
35978
35979     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35980
35981 commit bd876772ee04095e5dd943d97515a1f14bad4b1c
35982 Author: Ilko Iliev <iliev@ronetix.at>
35983 Date:   Tue Dec 2 17:27:54 2008 +0100
35984
35985     mtd/dataflash.c: fix a problem with the last partition
35986
35987     This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
35988     partition can be defined to use the area to the end of dataflash size.
35989     Now it is possible to have only one dataflash partition from 0 to the end
35990     of of dataflash size.
35991
35992     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
35993
35994 commit 03f797793b124dccaae145b977d15d6cb9e74504
35995 Author: Ilko Iliev <iliev@ronetix.at>
35996 Date:   Tue Dec 2 17:20:17 2008 +0100
35997
35998     fix some coding style violations.
35999
36000     This patch fix some coding style violations.
36001
36002     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
36003
36004 commit 5e46b1e54112f4b7fd5185665e571510132c12a7
36005 Author: Stefan Roese <sr@denx.de>
36006 Date:   Thu Nov 27 14:11:37 2008 +0100
36007
36008     OneNAND: Add missing mtd info struct before calling onenand_erase()
36009
36010     Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
36011     for use in UBI) via CONFIG_MTD_PARTITIONS.
36012
36013     Signed-off-by: Stefan Roese <sr@denx.de>
36014     Signed-off-by: Scott Wood <scottwood@freescale.com>
36015
36016 commit 29382d4064fbaff5daacff4c3209370fa5713966
36017 Author: Becky Bruce <becky.bruce@freescale.com>
36018 Date:   Thu Nov 20 16:43:52 2008 -0600
36019
36020     mpc8641: Fix error in README
36021
36022     I made some updates to the code that didn't make it into the
36023     README - fix this
36024
36025     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36026
36027 commit 801a194616d95e6fc426a176d9615ccbf9876c7f
36028 Author: Jon Loeliger <jdl@freescale.com>
36029 Date:   Thu Nov 20 12:01:02 2008 -0600
36030
36031     Removed unused CONFIG_L1_INIT_RAM symbol.
36032
36033     Prevent further viral propogation of the unused
36034     symbol CONFIG_L1_INIT_RAM by just removing it.
36035
36036     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36037
36038 commit f698738e46cb461e28c2d58228bb34a2fcf5a475
36039 Author: Jon Loeliger <jdl@freescale.com>
36040 Date:   Thu Nov 20 14:02:56 2008 -0600
36041
36042     86xx: Fix non-64-bit compilation problems.
36043
36044     Introducing 64-bit (36-bit) support for the MPC8641HPCN
36045     failed to accomodate the other two 86xx boards.
36046     Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
36047     CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
36048     with nominal 32-bit values.
36049
36050     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36051     Acked-by: Becky Bruce <becky.bruce@freescale.com>
36052
36053 commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
36054 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
36055 Date:   Wed Nov 26 17:40:37 2008 +0100
36056
36057     Remove obsolete command (apply afte USB style patch, 80 chars strict)
36058
36059     Remove USB obsolete commmand
36060
36061     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
36062     Signed-off-by: Remy Böhmer <linux@bohmer.net>
36063
36064 commit de39f8c19d7c12017248c49d432dcb81db68f724
36065 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
36066 Date:   Wed Nov 26 17:41:34 2008 +0100
36067
36068     USB style patch, 80 chars strict
36069
36070     USB Code style patch
36071
36072     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
36073     Signed-off-by: Remy Böhmer <linux@bohmer.net>
36074
36075 commit d10c5a87cb8affbb4d35a311370316d4383d598e
36076 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36077 Date:   Fri Nov 7 22:46:21 2008 +0100
36078
36079     drivers/usb: Move conditional compilation to Makefile
36080
36081     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36082     Signed-off-by: Remy Böhmer <linux@bohmer.net>
36083
36084 commit 2077e348c2a84901022ad95311b47b70361e6daa
36085 Author: Scott Wood <scottwood@freescale.com>
36086 Date:   Tue Nov 25 10:47:02 2008 -0600
36087
36088     NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
36089
36090     This caused the operation to be needlessly repeated if there were
36091     no bad blocks and no errors.
36092
36093     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
36094     Signed-off-by: Scott Wood <scottwood@freescale.com>
36095
36096 commit 89295028e7d8f7a524f485328279d72fdb102385
36097 Author: Michal Simek <monstr@monstr.eu>
36098 Date:   Mon Nov 24 12:09:50 2008 +0100
36099
36100     ppc4xx: ml300 remove Xilinx BSP from ml300 folder
36101
36102     This BSP should be outside u-boot source tree.
36103     The second reason is that xilinx ppc405 was moved to generic platform.
36104
36105     Signed-off-by: Michal Simek <monstr@monstr.eu>
36106     Signed-off-by: Stefan Roese <sr@denx.de>
36107
36108 commit 24eea623d4974a169026a975ba12fb23d48154b1
36109 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36110 Date:   Mon Nov 24 15:11:10 2008 +0100
36111
36112     ppc4xx: Remove unused features
36113
36114     This patch disables some unused features from the PCI405 configuration
36115     to keep U-Boot image size below 192k.
36116
36117     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36118     Signed-off-by: Stefan Roese <sr@denx.de>
36119
36120 commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
36121 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36122 Date:   Mon Nov 24 15:11:09 2008 +0100
36123
36124     ppc4xx: Use correct io accessors for PCI405
36125
36126     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36127     Signed-off-by: Stefan Roese <sr@denx.de>
36128
36129 commit 348c849d86a6f0785752b9bc497a34658713d1d1
36130 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36131 Date:   Mon Nov 24 15:11:08 2008 +0100
36132
36133     ppc4xx: Remove unused code from PCI405 code
36134
36135     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36136     Signed-off-by: Stefan Roese <sr@denx.de>
36137
36138 commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
36139 Author: Heiko Schocher <hs@denx.de>
36140 Date:   Thu Nov 20 09:59:09 2008 +0100
36141
36142     powerpc, keymile boards: extract identical config options
36143
36144     This patch extracts the identical config options for the
36145     keymile boards mgcoge, mgsuvd and kmeter1 in a new
36146     common config file keymile-common.h.
36147
36148     Signed-off-by: Heiko Schocher <hs@denx.de>
36149     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36150
36151 commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
36152 Author: Heiko Schocher <hs@denx.de>
36153 Date:   Fri Nov 21 08:29:40 2008 +0100
36154
36155     powerpc: keymile: Add a check for the PIGGY debug board
36156
36157     Check the presence of the PIGGY on the keymile boards mgcoge,
36158     mgsuvd and kmeter1. If the PIGGY is not present, dont register
36159     this Ethernet device.
36160
36161     Signed-off-by: Heiko Schocher <hs@denx.de>
36162     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36163
36164 commit 58c696eed839af894e0265064669c402dc28b371
36165 Author: Wolfgang Denk <wd@xpert.denx.de>
36166 Date:   Mon Nov 24 21:50:59 2008 +0100
36167
36168     AT91RM9200DK: fix broken boot from NOR flash
36169
36170     Signed-off-by: Wolfgang Denk <wd@denx.de>
36171
36172 commit 8052352f20b33bef8f9872fc983eac73d4693c38
36173 Author: Jens Scharsig <esw@bus-elektronik.de>
36174 Date:   Tue Nov 18 10:48:46 2008 +0100
36175
36176     at91rm9200: fix broken boot from nor flash
36177
36178     This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
36179     CONFIG_AT91RM9200 is defined and nor preloader is used.
36180
36181     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
36182
36183 commit 25ea652e907516a283b38237e83712a918f125d7
36184 Author: Piotr Ziecik <kosmo@semihalf.com>
36185 Date:   Mon Nov 17 15:58:00 2008 +0100
36186
36187     UBI: Add proof-of-concept CFI flash support
36188
36189     With this patch UBI can be used on CFI flash chips.
36190
36191     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
36192     Signed-off-by: Stefan Roese <sr@denx.de>
36193
36194 commit e6a7edbc1778d27431ac663b40a71dafa5d20578
36195 Author: Piotr Ziecik <kosmo@semihalf.com>
36196 Date:   Mon Nov 17 15:57:59 2008 +0100
36197
36198     mtd: Remove a printf() from add_mtd_device().
36199
36200     Remove a printf() from add_mtd_device(), which produces spurious output.
36201
36202     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
36203     Signed-off-by: Stefan Roese <sr@denx.de>
36204
36205 commit 91809ed51d8327a8dbbf29aa98a091154c282171
36206 Author: Piotr Ziecik <kosmo@semihalf.com>
36207 Date:   Mon Nov 17 15:57:58 2008 +0100
36208
36209     cfi-mtd: Add cfi-mtd driver.
36210
36211     Add cfi-mtd driver, which exports CFI flash to MTD layer.
36212     This allows CFI flash devices to be used from MTD layer.
36213
36214     Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
36215     option. Initialization is done by calling cfi_mtd_init() from
36216     flash_init().
36217
36218     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
36219     Signed-off-by: Stefan Roese <sr@denx.de>
36220
36221 commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
36222 Author: Piotr Ziecik <kosmo@semihalf.com>
36223 Date:   Mon Nov 17 15:49:32 2008 +0100
36224
36225     cfi_flash: Add interface for flash verbosity control
36226
36227     Add interface for flash verbosity control. It allows
36228     to disable output from low-level flash API. It is useful
36229     when calling these low-level functions from context other
36230     than flash commands (for example the MTD/CFI interface
36231     implmentation).
36232
36233     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
36234     Signed-off-by: Stefan Roese <sr@denx.de>
36235
36236 commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
36237 Author: Piotr Ziecik <kosmo@semihalf.com>
36238 Date:   Thu Nov 20 15:17:38 2008 +0100
36239
36240     cfi_flash: Export flash_sector_size() function.
36241
36242     Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
36243     so that it can be used in the upcoming cfi-mtd driver.
36244
36245     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
36246     Signed-off-by: Stefan Roese <sr@denx.de>
36247
36248 commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
36249 Author: Stefan Roese <sr@denx.de>
36250 Date:   Mon Nov 17 14:45:22 2008 +0100
36251
36252     cfi_flash: Make all flash access functions weak
36253
36254     This patch defines all flash access functions as weak so that
36255     they can be overridden by board specific versions.
36256
36257     This will be used by the upcoming VCTH board support where the NOR
36258     FLASH unfortunately can't be accessed memory-mapped. Special
36259     accessor functions are needed here.
36260
36261     To enable this weak functions you need to define
36262     CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
36263     Otherwise the "old" default functions will be used resulting
36264     in smaller code.
36265
36266     Signed-off-by: Stefan Roese <sr@denx.de>
36267     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36268
36269 commit a5c4067017631d903e1afa6ad615f0ce19fea517
36270 Author: Stefan Roese <sr@denx.de>
36271 Date:   Mon Nov 24 08:31:16 2008 +0100
36272
36273     UBI: Change parsing of size in commands to default to hex
36274
36275     Currently the size parameters of the UBI commands (e.g. "ubi write") are
36276     decoded as decimal instead of hex as default. This patch now interprets
36277     all these values consistantly as hex, as all other standard U-Boot commands
36278     do.
36279
36280     Signed-off-by: Stefan Roese <sr@denx.de>
36281
36282 commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
36283 Author: Stefan Roese <sr@denx.de>
36284 Date:   Fri Nov 21 13:06:06 2008 +0100
36285
36286     ppc4xx: ML2 shouldn't include the 4xx EMAC driver
36287
36288     Signed-off-by: Stefan Roese <sr@denx.de>
36289
36290 commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
36291 Author: Yuri Tikhonov <yur@emcraft.com>
36292 Date:   Fri Nov 14 16:19:19 2008 +0300
36293
36294     ppc4xx: katmai: Change default config
36295
36296      This patch enables support for EXT2, and increases the
36297     CONFIG_SYS_BOOTMAPSZ size for the default configuration
36298     of the katmai boards to use them as the RAID-reference
36299     AMCC setups.
36300
36301      EXT2 enabling allows one to boot kernels from the EXT2
36302     formatted Compact Flash cards.
36303
36304      CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
36305     Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
36306     the memory area with DTB file (which is placed at the
36307     end of the bootmap area) will turn out to be overlapped
36308     with the BSS segment of the 256KB kernel, and zeroed
36309     in early_init() of Linux.
36310
36311      Actually, increasing of the bootmap size could be done
36312     via setting of the bootm_size U-Boot variable, but it looks
36313     like the current U-Boot implementation have some bootm_size-
36314     related functionality lost. In many places through the U-Boot
36315     code the CONFIG_SYS_BOOTMAPSZ definition is used directly
36316     (instead of trying to read the corresponding value from the
36317     environment). The same is truth for the boot_jump_linux()
36318     function in lib_ppc/bootm.c, where U-Boot transfers control
36319     to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
36320     value to the booting kernel.
36321
36322     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36323     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
36324     Signed-off-by: Stefan Roese <sr@denx.de>
36325
36326 commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
36327 Author: Dave Mitchell <dmitch71@gmail.com>
36328 Date:   Thu Nov 20 14:09:50 2008 -0600
36329
36330     ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
36331
36332     Expanded OCM TLB to allow access to 64K OCM as well as 256K of
36333     internal SRAM.
36334
36335     Adjusted internal SRAM initialization to match updated user
36336     manual recommendation.
36337
36338     OCM & ISRAM are now mapped as follows:
36339             physical        virtual         size
36340     ISRAM   0x4_0000_0000   0xE300_0000     256k
36341     OCM     0x4_0004_0000   0xE304_0000     64k
36342
36343     A single TLB was used for this mapping.
36344
36345     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
36346     Signed-off-by: Stefan Roese <sr@denx.de>
36347
36348 commit b14ca4b61a681f75f3125676e09d7ce6af66e927
36349 Author: Dave Mitchell <dmitch71@gmail.com>
36350 Date:   Thu Nov 20 14:00:49 2008 -0600
36351
36352     ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
36353
36354     Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
36355     L2 cache DCRs from ppc440.h to this new header.
36356
36357     Also converted these DCR defines from lowercase to uppercase and
36358     modified referencing modules to use them.
36359
36360     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
36361     Signed-off-by: Stefan Roese <sr@denx.de>
36362
36363 commit 711e2b2af820d21d9931d4cf8057d3894600fd54
36364 Author: Steven A. Falco <sfalco@harris.com>
36365 Date:   Thu Nov 20 14:37:57 2008 -0500
36366
36367     ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
36368
36369     The definitions of bits in SDR_CFG are incorrect, and not used within
36370     U-Boot.  Therefore, they can be removed.
36371
36372     The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
36373     and are unused, so they can be removed too.
36374
36375     A definition for SDR0_DDRCFG is added.
36376
36377     Signed-off-by: Steven A. Falco <sfalco@harris.com>
36378     Signed-off-by: Stefan Roese <sr@denx.de>
36379
36380 commit e23c7c95a96eb0f068efe5c532215a10a1512a95
36381 Author: Dirk Behme <dirk.behme@gmail.com>
36382 Date:   Mon Nov 10 20:15:25 2008 +0100
36383
36384     ARM: OMAP: Convert IO macros
36385
36386     Convert IO macros to readx/writex.
36387
36388     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
36389
36390 commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
36391 Author: Ilko Iliev <iliev@ronetix.at>
36392 Date:   Sun Nov 9 15:53:14 2008 +0100
36393
36394     lib_arm: do_bootm_linux() - correct a small mistake
36395
36396     This patch corrects a small bug in the "if" condition:
36397     the parameter "flag" is 0 and the "if" condition is always true.
36398     The result is - the boom command doesn't start the kernel.
36399     Affected targets: all arm based.
36400
36401     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
36402
36403 commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
36404 Author: Stelian Pop <stelian@popies.net>
36405 Date:   Sun Nov 9 00:14:46 2008 +0100
36406
36407     AT91: Enable PLLB for USB
36408
36409     At least some (old ?) versions of the AT91Bootstrap do not set up the
36410     PLLB correctly to 48 MHz in order to make USB host function correctly.
36411
36412     This patch sets up the PLLB to the same values Linux uses, and makes USB
36413     work ok on the following CPUs:
36414         - AT91CAP9
36415         - AT91SAM9260
36416         - AT91SAM9263
36417
36418     This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
36419     the relevant AT91CAP9/AT91SAM9 atmel boards.
36420
36421     Signed-off-by: Stelian Pop <stelian@popies.net>
36422     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36423
36424 commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
36425 Author: Stelian Pop <stelian@popies.net>
36426 Date:   Fri Nov 7 13:55:14 2008 +0100
36427
36428     AT91: Use AT91_CPU_CLOCK in displays
36429
36430     Introduce AT91_CPU_CLOCK and use it for displaying the CPU
36431     speed in the LCD driver.
36432
36433     Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
36434     corresponding board clocks.
36435
36436     Signed-off-by: Stelian Pop <stelian@popies.net>
36437
36438 commit fed36ac5ae613773b6cd90e61e292c45440e10c8
36439 Author: Heiko Schocher <hs@denx.de>
36440 Date:   Thu Nov 20 09:57:47 2008 +0100
36441
36442     powerpc: 83xx: add support for the kmeter1 board
36443
36444     This patch adds support for the kmeter1 board from Keymile,
36445     based on a Freescale MPC8360 CPU.
36446
36447     - serial console on UART 1
36448     - 256 MB DDR2 RAM
36449     - 64 MB NOR Flash
36450     - Ethernet RMII Mode over UCC4
36451     - PHY SMSC LAN8700
36452
36453     Signed-off-by: Heiko Schocher <hs@denx.de>
36454     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36455
36456 commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
36457 Author: Stefan Roese <sr@denx.de>
36458 Date:   Thu Nov 20 11:46:20 2008 +0100
36459
36460     ppc4xx: Clear all potentially pending exceptions in MCSR
36461
36462     This is needed on Canyonlands which still has an exception pending
36463     while running relocate_code(). This leads to a failure after trap_init()
36464     is moved to the top of board_init_r().
36465
36466     Signed-off-by: Stefan Roese <sr@denx.de>
36467
36468 commit facdad5f2602e899a01746916beddbf9e856b5ee
36469 Author: Heiko Schocher <hs@denx.de>
36470 Date:   Wed Nov 19 10:10:30 2008 +0100
36471
36472     powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
36473
36474     Signed-off-by: Heiko Schocher <hs@denx.de>
36475     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36476
36477 commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
36478 Author: Howard Gregory <Greg.Howard@freescale.com>
36479 Date:   Tue Nov 4 14:55:33 2008 +0800
36480
36481     mpc83xx: Improve the performance of DDR memory
36482
36483     modify the CAS timings. my understanding is that these
36484     settings decrease various wait times in the DDR interface.
36485     Because these wait times are in clock cycles, and the DDR
36486     clock on the 8315 RDB runs slower than on some other 83xx
36487     platforms, we can dial down these values without a problem,
36488     thereby decreasing the latency of memory a little.
36489
36490     Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
36491     Signed-off-by: Dave Liu <daveliu@freescale.com>
36492     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36493
36494 commit 8000b086b33a5a81f3f390f37e178db7956dc08b
36495 Author: Kyungmin Park <kyungmin.park@samsung.com>
36496 Date:   Fri Oct 24 14:55:33 2008 +0200
36497
36498     ARM: Add Apollon UBI support
36499
36500     To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
36501     macro.
36502
36503     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36504     Signed-off-by: Stefan Roese <sr@denx.de>
36505
36506 commit 694a0b3f1c0accd0de94b89555155d69f8022824
36507 Author: Kyungmin Park <kyungmin.park@samsung.com>
36508 Date:   Wed Nov 19 11:47:05 2008 +0100
36509
36510     UBI: Add UBI command support
36511
36512     This patch adds these UBI commands:
36513
36514     ubi part [nand|onenand] [part] - Show or set current partition
36515     ubi info [l[ayout]] -Display volume and UBI layout information
36516     ubi create[vol] volume [size] [type] - Create volume name with size
36517     ubi write[vol] address volume size - Write volume from address with size
36518     ubi read[vol] address volume [size] - Read volume to address with size
36519     ubi remove[vol] volume - Remove volume
36520
36521     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36522     Signed-off-by: Stefan Roese <sr@denx.de>
36523
36524 commit 58be3a1056d88c6d05f3e914389282807e69923a
36525 Author: Kyungmin Park <kyungmin.park@samsung.com>
36526 Date:   Wed Nov 19 16:38:24 2008 +0100
36527
36528     UBI: Add basic UBI support to U-Boot (Part 8/8)
36529
36530     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36531     It's based on the Linux UBI version and basically has a "OS"
36532     translation wrapper that defines most Linux specific calls
36533     (spin_lock() etc.) into no-ops. Some source code parts have been
36534     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36535     this version with the Linux version and simplifies future UBI
36536     ports/bug-fixes from the Linux version.
36537
36538     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36539     Signed-off-by: Stefan Roese <sr@denx.de>
36540
36541 commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
36542 Author: Kyungmin Park <kyungmin.park@samsung.com>
36543 Date:   Wed Nov 19 16:36:36 2008 +0100
36544
36545     UBI: Add basic UBI support to U-Boot (Part 7/8)
36546
36547     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36548     It's based on the Linux UBI version and basically has a "OS"
36549     translation wrapper that defines most Linux specific calls
36550     (spin_lock() etc.) into no-ops. Some source code parts have been
36551     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36552     this version with the Linux version and simplifies future UBI
36553     ports/bug-fixes from the Linux version.
36554
36555     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36556     Signed-off-by: Stefan Roese <sr@denx.de>
36557
36558 commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
36559 Author: Kyungmin Park <kyungmin.park@samsung.com>
36560 Date:   Wed Nov 19 16:32:36 2008 +0100
36561
36562     UBI: Add basic UBI support to U-Boot (Part 6/8)
36563
36564     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36565     It's based on the Linux UBI version and basically has a "OS"
36566     translation wrapper that defines most Linux specific calls
36567     (spin_lock() etc.) into no-ops. Some source code parts have been
36568     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36569     this version with the Linux version and simplifies future UBI
36570     ports/bug-fixes from the Linux version.
36571
36572     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36573     Signed-off-by: Stefan Roese <sr@denx.de>
36574
36575 commit c91a719daa331b5856109313371e4ece5ec06d96
36576 Author: Kyungmin Park <kyungmin.park@samsung.com>
36577 Date:   Wed Nov 19 16:28:06 2008 +0100
36578
36579     UBI: Add basic UBI support to U-Boot (Part 5/8)
36580
36581     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36582     It's based on the Linux UBI version and basically has a "OS"
36583     translation wrapper that defines most Linux specific calls
36584     (spin_lock() etc.) into no-ops. Some source code parts have been
36585     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36586     this version with the Linux version and simplifies future UBI
36587     ports/bug-fixes from the Linux version.
36588
36589     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36590     Signed-off-by: Stefan Roese <sr@denx.de>
36591
36592 commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
36593 Author: Kyungmin Park <kyungmin.park@samsung.com>
36594 Date:   Wed Nov 19 16:27:23 2008 +0100
36595
36596     UBI: Add basic UBI support to U-Boot (Part 4/8)
36597
36598     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36599     It's based on the Linux UBI version and basically has a "OS"
36600     translation wrapper that defines most Linux specific calls
36601     (spin_lock() etc.) into no-ops. Some source code parts have been
36602     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36603     this version with the Linux version and simplifies future UBI
36604     ports/bug-fixes from the Linux version.
36605
36606     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36607     Signed-off-by: Stefan Roese <sr@denx.de>
36608
36609 commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
36610 Author: Kyungmin Park <kyungmin.park@samsung.com>
36611 Date:   Wed Nov 19 16:26:54 2008 +0100
36612
36613     UBI: Add basic UBI support to U-Boot (Part 3/8)
36614
36615     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36616     It's based on the Linux UBI version and basically has a "OS"
36617     translation wrapper that defines most Linux specific calls
36618     (spin_lock() etc.) into no-ops. Some source code parts have been
36619     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36620     this version with the Linux version and simplifies future UBI
36621     ports/bug-fixes from the Linux version.
36622
36623     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36624     Signed-off-by: Stefan Roese <sr@denx.de>
36625
36626 commit 961df83361aff9a14f226214224eb8a06e05ba24
36627 Author: Kyungmin Park <kyungmin.park@samsung.com>
36628 Date:   Wed Nov 19 16:25:44 2008 +0100
36629
36630     UBI: Add basic UBI support to U-Boot (Part 2/8)
36631
36632     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36633     It's based on the Linux UBI version and basically has a "OS"
36634     translation wrapper that defines most Linux specific calls
36635     (spin_lock() etc.) into no-ops. Some source code parts have been
36636     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36637     this version with the Linux version and simplifies future UBI
36638     ports/bug-fixes from the Linux version.
36639
36640     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36641     Signed-off-by: Stefan Roese <sr@denx.de>
36642
36643 commit f399d4a281713d5ef2d764f05d545fe61e3bd569
36644 Author: Kyungmin Park <kyungmin.park@samsung.com>
36645 Date:   Wed Nov 19 16:23:06 2008 +0100
36646
36647     UBI: Add basic UBI support to U-Boot (Part 1/8)
36648
36649     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36650     It's based on the Linux UBI version and basically has a "OS"
36651     translation wrapper that defines most Linux specific calls
36652     (spin_lock() etc.) into no-ops. Some source code parts have been
36653     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36654     this version with the Linux version and simplifies future UBI
36655     ports/bug-fixes from the Linux version.
36656
36657     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36658     Signed-off-by: Stefan Roese <sr@denx.de>
36659
36660 commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
36661 Author: Kyungmin Park <kyungmin.park@samsung.com>
36662 Date:   Wed Nov 19 16:20:36 2008 +0100
36663
36664     MTD: Add MTD paritioning infrastructure
36665
36666     This MTD part infrastructure will be used by the upcoming
36667     UBI support.
36668
36669     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36670     Signed-off-by: Stefan Roese <sr@denx.de>
36671
36672 commit 9b827cf1720acda2473afa516956eab6f7cca9a1
36673 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
36674 Date:   Thu Oct 16 22:54:03 2008 +0530
36675
36676     Align end of bss by 4 bytes
36677
36678     Most of the bss initialization loop increments 4 bytes
36679     at a time. And the loop end is checked for an 'equal'
36680     condition. Make the bss end address aligned by 4, so
36681     that the loop will end as expected.
36682
36683     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
36684     Signed-off-by: Wolfgang Denk <wd@denx.de>
36685
36686 commit 3f510db522d160179dff3ddcce9b18f6241c2c24
36687 Author: Becky Bruce <becky.bruce@freescale.com>
36688 Date:   Mon Nov 10 19:45:35 2008 -0600
36689
36690     mpc8641: fix address-cells default in old .dts detection
36691
36692     address-cells defaults to 2, not 1; so in the unlikely
36693     event that it isn't specified, this patch is required
36694     for correct operation.
36695
36696     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36697
36698 commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
36699 Author: Becky Bruce <becky.bruce@freescale.com>
36700 Date:   Fri Oct 31 17:14:39 2008 -0500
36701
36702     lib_ppc: Move trap_init to occur earlier
36703
36704     Doing trap_init immediately once we're running from RAM
36705     means we're no longer dependent on the physical location of
36706     the flash on non-BookE platforms. Before trap_init, those
36707     platforms switch to real mode and go to 0xfff00100 on exception.
36708     After the switch, they go to 0x00000100  This makes it easier to
36709     move the flash location.
36710
36711     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36712
36713 commit d52082b12c6e545705a19433a2f4142526536189
36714 Author: Becky Bruce <becky.bruce@freescale.com>
36715 Date:   Fri Nov 7 13:46:19 2008 -0600
36716
36717     mpc8641: Try to detect old .dts files
36718
36719     Since we've changed the memory map of the board, be nice and
36720     add some checking to try to catch out-of-date .dts files.  We do
36721     this by checking the CCSRBAR location in the .dts and comparing
36722     it to the CCSRBAR location in u-boot.  If they don't match, a
36723     warning msg is printed.  This isn't foolproof, but it's simple and
36724     will catch most of the cases where an out-of-date .dts is present,
36725     including all of the cases where a new u-boot is used with an old
36726     standard MPC8641 .dts file as supplied with Linux.
36727
36728     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36729
36730 commit 8db0400a27839f91c047dcb83f4a0f09e054a180
36731 Author: Becky Bruce <becky.bruce@freescale.com>
36732 Date:   Thu Nov 6 13:04:09 2008 -0600
36733
36734     toplevel Makefile: Add MPC8641HPCN_36BIT target
36735
36736     This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
36737
36738     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36739
36740 commit 3111d32c494e8251b90917447796a7206b757e1e
36741 Author: Becky Bruce <becky.bruce@freescale.com>
36742 Date:   Thu Nov 6 17:37:35 2008 -0600
36743
36744     mpc8641: Support 36-bit physical addressing
36745
36746     This patch creates a memory map with all the devices
36747     in 36-bit physical space, in addition to the 32-bit map.
36748     The CCSR relocation is moved (again, sorry) to
36749     allow for the physical address to be 36 bits - this
36750     requires translation to be enabled.  With 36-bit physical
36751     addressing enabled, we are no longer running with VA=PA
36752     translations.  This means we have to distinguish between
36753     the two in the config file.  The existing region name is
36754     used to indicate the virtual address, and a _PHYS variety
36755     is created to represent the physical address.
36756
36757     Large physical addressing is not enabled by default.
36758     Set CONFIG_PHYS_64BIT in the config file to turn this on.
36759
36760     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36761
36762 commit c759a01a0022de9378a3a761f49786f87684c916
36763 Author: Becky Bruce <becky.bruce@freescale.com>
36764 Date:   Thu Nov 6 17:36:04 2008 -0600
36765
36766     mpc8641: Change 32-bit memory map
36767
36768     The memory map on the 8641hpcn is modified to look more like
36769     the 85xx boards; this is a step towards a more standardized
36770     layout going forward. As part of this change, we now relocate
36771     the flash.
36772
36773     The regions for some of the mappings were far larger than they
36774     needed to be.  I have reduced the mappings to match the
36775     actual sizes supported by the hardware.
36776
36777     In addition I have removed the comments at the head
36778     of the BAT blocks in the config file, rather than updating
36779     them.  These get horribly out of date, and it's a simple
36780     matter to look at the defines to see what they are set to
36781     since everything is right here in the same file.
36782
36783     Documentation has been changed to reflect the new map, as this
36784     change is user visible, and affects the OS which runs post-uboot.
36785
36786     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36787
36788 commit bf9a8c34309ed9276258295db9e9212aabb2531a
36789 Author: Becky Bruce <becky.bruce@freescale.com>
36790 Date:   Wed Nov 5 14:55:35 2008 -0600
36791
36792     mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
36793
36794     We define CONFIG_MONITOR_BASE_EARLY to define the initial location
36795     of the bootpage in flash.   Use this to create an early mapping
36796     definition for the FLASH, and change the early_bats code to use this.
36797
36798     This  change facilitates the relocation of the flash since the early
36799     mappings are no longer tied to the final location of the flash.
36800
36801     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36802
36803 commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
36804 Author: Becky Bruce <becky.bruce@freescale.com>
36805 Date:   Wed Nov 5 14:55:34 2008 -0600
36806
36807     mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
36808
36809     Using a mtmsr/blr means that you have to be executing at the
36810     same virtual address once you enable translation.  This is
36811     unnecessarily restrictive, and is not really how this is
36812     usually done.  Change it to use the more common mtspr SRR0/SRR1
36813     and rfi method.
36814
36815     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36816
36817 commit 6bf98b1362f0cb237620355ed3e6762fff82388d
36818 Author: Becky Bruce <becky.bruce@freescale.com>
36819 Date:   Wed Nov 5 14:55:33 2008 -0600
36820
36821     mpc8641: make DIAG_ADDR == FLASH_BASE
36822
36823     Currently, that's what it is, but it's hardcoded.
36824
36825     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36826
36827 commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
36828 Author: Becky Bruce <becky.bruce@freescale.com>
36829 Date:   Wed Nov 5 14:55:32 2008 -0600
36830
36831     mpc8641: Drop imaginary second flash bank, map 8MB
36832
36833     There's a lot of setup and foo for the second flash
36834     bank.  The problem is, this board doesn't actually have one.
36835     Clean this up.  Also, the flash is 8M in size.  Get rid
36836     of the confusing aliased overmapping, and just map 8M.
36837
36838     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36839
36840 commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
36841 Author: Becky Bruce <becky.bruce@freescale.com>
36842 Date:   Wed Nov 5 14:55:31 2008 -0600
36843
36844     mpc8641: only define CONFIG_ENV_SIZE once
36845
36846     It's currently defined twice inside in an if/else block, but
36847     both halves set the same value.  Move the define outside
36848     the if.
36849
36850     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36851
36852 commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
36853 Author: Becky Bruce <becky.bruce@freescale.com>
36854 Date:   Wed Nov 5 14:55:30 2008 -0600
36855
36856     mpc86xx: Move setup_bats into cpu_init_f
36857
36858     In order to later allow for a physical relocation of the
36859     flash, setup_bats, which sets up the final BAT mapping
36860     for the board, needs to happen *after* init_laws().
36861     Otherwise, there will be no window programmed for the flash
36862     at the new physical location at the point when we change
36863     the mmu translation.
36864
36865     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36866
36867 commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
36868 Author: Becky Bruce <becky.bruce@freescale.com>
36869 Date:   Wed Nov 5 14:55:29 2008 -0600
36870
36871     mpc8641: Remove extra "0" from BR2 define
36872
36873     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36874
36875 commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
36876 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
36877 Date:   Thu Oct 23 09:08:18 2008 -0400
36878
36879     drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
36880
36881     Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
36882     This adds support for PHY-less MAC connections to the UEC.
36883
36884     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
36885     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36886
36887 commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
36888 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
36889 Date:   Thu Oct 23 16:27:24 2008 +0000
36890
36891     ColdFire: Add mii driver in drivers/net
36892
36893     All CF platforms' mii.c are consolidated into one
36894
36895     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
36896     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36897
36898 commit 25a859066b3af1070eb69f12022113c0a91bd813
36899 Author: Ben Warren <biggerbadderben@gmail.com>
36900 Date:   Mon Oct 27 23:53:17 2008 -0700
36901
36902     Moved initialization of PPC4xx EMAC to cpu_eth_init()
36903
36904     Removed initialization of the driver from net/eth.c
36905
36906     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36907     Acked-by: Stefan Roese <sr@denx.de>
36908
36909 commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
36910 Author: Ben Warren <biggerbadderben@gmail.com>
36911 Date:   Sun Nov 9 21:29:23 2008 -0800
36912
36913     Moved PPC4xx EMAC driver to drivers/net
36914
36915     Also changed path in all linker scripts that reference this driver
36916
36917     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36918     Acked-by: Stefan Roese <sr@denx.de>
36919
36920 commit 96e21f86e8266ed40759e5495ee461265d7f6d28
36921 Author: Ben Warren <biggerbadderben@gmail.com>
36922 Date:   Mon Oct 27 23:50:15 2008 -0700
36923
36924     Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
36925
36926     All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
36927
36928     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36929     Acked-by: Stefan Roese <sr@denx.de>
36930
36931 commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
36932 Author: Ben Warren <biggerbadderben@gmail.com>
36933 Date:   Thu Oct 23 22:02:49 2008 -0700
36934
36935     Moved initialization of MPC8XX SCC to cpu_eth_init()
36936
36937     Removed initialization of the driver from net/eth.c
36938
36939     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36940
36941 commit a9bec96d6359ac9f90a852962bf3040cad9e0256
36942 Author: Ben Warren <biggerbadderben@gmail.com>
36943 Date:   Wed Oct 22 23:47:51 2008 -0700
36944
36945     Moved initialization of MPC8220 FEC to cpu_eth_init()
36946
36947     Removed initialization of the driver from net/eth.c
36948
36949     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36950
36951 commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
36952 Author: Ben Warren <biggerbadderben@gmail.com>
36953 Date:   Wed Oct 22 23:32:48 2008 -0700
36954
36955     Moved initialization of QE Ethernet controller to cpu_eth_init()
36956
36957     Removed initialization of the driver from net/eth.c
36958
36959     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36960
36961 commit 3456a148276d5494b53ee40242efb6462d163504
36962 Author: Ben Warren <biggerbadderben@gmail.com>
36963 Date:   Wed Oct 22 23:20:29 2008 -0700
36964
36965     Moved initialization of FCC Ethernet controller to cpu_eth_init
36966
36967     Affected boards:
36968         Several MPC8xx boards
36969         Several MPC8260/MPC8272 boards
36970         Several MPC85xx boards
36971
36972     Removed initialization of the driver from net/eth.c
36973
36974     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36975
36976 commit 62e15b497f5c6334c059512678c8db7940ae4c61
36977 Author: Ben Warren <biggerbadderben@gmail.com>
36978 Date:   Thu Oct 30 22:15:35 2008 -0700
36979
36980     Fix typo in cpu/mpc85xx/cpu.c
36981
36982     CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
36983
36984     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36985
36986 commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
36987 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36988 Date:   Sun Oct 19 12:08:50 2008 +0900
36989
36990     net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
36991
36992     This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
36993     as a part of ongoing eth_initialize cleanup work.  The function ret value
36994     is also fixed as it should be negative on fail.
36995
36996     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36997     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36998
36999 commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
37000 Author: Ben Warren <biggerbadderben@gmail.com>
37001 Date:   Fri Sep 5 01:55:22 2008 -0400
37002
37003     Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
37004
37005     Also, removed the driver initialization from net/eth.c
37006
37007     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37008
37009 commit f2a7806fc23e82d30c8548911369e0c530607354
37010 Author: Clive Stubbings <uboot@xentech.co.uk>
37011 Date:   Mon Oct 27 15:05:00 2008 +0000
37012
37013     xilinx_emaclite buffer overrun
37014
37015     Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
37016     PKTSIZE_ALIGN bytes long.
37017
37018     Acked-by: Michal Simek <monstr@monstr.eu>
37019
37020     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37021
37022 commit 0115b1953718a2969f6469d3d5da51ba11e12d42
37023 Author: richardretanubun <richardretanubun@ruggedcom.com>
37024 Date:   Fri Sep 26 08:59:12 2008 -0400
37025
37026     NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
37027
37028     The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
37029     This patch makes these function use the devname argument that is passed in to
37030     allow access to the phy registers of other devices in devlist[].
37031
37032     Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
37033
37034     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37035
37036 commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
37037 Author: richardretanubun <richardretanubun@ruggedcom.com>
37038 Date:   Mon Oct 6 15:31:43 2008 -0400
37039
37040     Adds two more ethernet interface to 83xx
37041
37042     Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
37043     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
37044     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37045
37046 commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
37047 Author: Stelian Pop <stelian@popies.net>
37048 Date:   Fri Nov 7 13:54:31 2008 +0100
37049
37050     AT91: Replace AT91_BASE_EMAC by the board specific values.
37051
37052     AT91_BASE_EMAC is never used outside the board specific files,
37053     so replace its usage by the board specific AT91xxx_BASE_EMAC.
37054
37055     Signed-off-by: Stelian Pop <stelian@popies.net>
37056     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37057
37058 commit c91e17affa175ce06afa89b04752301eb4a61666
37059 Author: Stelian Pop <stelian@popies.net>
37060 Date:   Fri Nov 7 12:09:21 2008 +0100
37061
37062     AT91: Replace (undefined) AT91_ID_US* by the board specific values.
37063
37064     AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
37065     Since they are never used outside the board specific files, they can
37066     be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
37067     AT91xxx_ID_US2.
37068
37069     Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
37070
37071     Signed-off-by: Stelian Pop <stelian@popies.net>
37072     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37073
37074 commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
37075 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37076 Date:   Sat Nov 1 10:47:59 2008 +0100
37077
37078     Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
37079
37080     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37081
37082 commit 1079432e04ccf71aa3684181186182cd63512f19
37083 Author: Sergey Lapin <slapin@ossfans.org>
37084 Date:   Fri Oct 31 12:28:43 2008 +0100
37085
37086     Custom AFEB9260 board support
37087
37088     This patch provides support for AFEB9260 board, a product of
37089     OpenSource hardware and software. Some commertial projects
37090     are made with this design. A board is basically AT91SAM9260-EK
37091     with some modifications and different peripherals and different
37092     parts used. Main purpose of this project is to gain experience in
37093     hardware design.
37094     More info: http://groups.google.com/group/arm9fpga-evolution-board
37095     (In Russian only, sorry).
37096     Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
37097
37098     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
37099
37100 commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
37101 Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
37102 Date:   Tue Oct 21 13:17:16 2008 +0900
37103
37104     Change to use "do_div" macro
37105
37106     Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
37107
37108 commit e352495318d8056a00faa21b633b3e4374bfbf52
37109 Author: Roman Mashak <romez777@gmail.com>
37110 Date:   Wed Oct 22 16:00:26 2008 -0400
37111
37112     ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
37113
37114     OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
37115     It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
37116
37117     Signed-off-by: Roman Mashak <romez777@gmail.com>
37118
37119 commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
37120 Author: Roman Mashak <romez777@gmail.com>
37121 Date:   Tue Oct 21 03:01:41 2008 -0700
37122
37123     ARM/Versatile port: Removed unused functions
37124
37125     Removal of never used functions.
37126
37127     Signed-off-by: Roman Mashak <romez777@gmail.com>
37128
37129 commit 1266df887781c779deaf6d05eea2ef90a470cb34
37130 Author: Becky Bruce <becky.bruce@freescale.com>
37131 Date:   Mon Nov 3 15:44:01 2008 -0600
37132
37133     powerpc: change 86xx SMP boot method
37134
37135     We put the bootpg for the secondary cpus into memory and use
37136     BPTR to get to it.  This is a step towards converting to the
37137     ePAPR boot methodology.  Also, the code is written to
37138     deal properly with more than 4GB of RAM.
37139
37140     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37141
37142 commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
37143 Author: Becky Bruce <becky.bruce@freescale.com>
37144 Date:   Fri Oct 31 17:13:49 2008 -0500
37145
37146     8641HPCN: Config file cleanup
37147
37148     There are several items in the config file that were hardcoded
37149     but that should really be based on other config options, since
37150     the regions are contiguous and depend on being so.  This cleans
37151     that up a bit.  Also, add BR_PHYS_ADDR() macro to convert
37152     addresses into the proper format for BR registers.
37153
37154     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37155
37156 commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
37157 Author: Becky Bruce <becky.bruce@freescale.com>
37158 Date:   Fri Oct 31 17:13:32 2008 -0500
37159
37160     86xx: Make dram_size a phys_size_t
37161
37162     It's currently a long and should be phys_size_t.
37163
37164     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37165
37166 commit 104992fc541302a6bac74448e01e7fdad20abca0
37167 Author: Becky Bruce <becky.bruce@freescale.com>
37168 Date:   Sun Nov 2 18:19:32 2008 -0600
37169
37170     powerpc 86xx: Handle CCSR relocation earlier
37171
37172     Currently, the CCSR gets relocated while translation is
37173     enabled, meaning we need 2 BAT translations to get to both the
37174     old location and the new location.  Also, the DEFAULT
37175     CCSR location has a dependency on the BAT that maps the
37176     FLASH region.  Moving the relocation removes this unnecessary
37177     dependency. This makes it easier and more intutive to
37178     modify the board's memory map.
37179
37180     Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
37181     BAT for CCSR space.
37182
37183     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37184
37185 commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
37186 Author: Becky Bruce <becky.bruce@freescale.com>
37187 Date:   Fri Oct 31 17:14:14 2008 -0500
37188
37189     mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
37190
37191     You can't actually have both, and with some coming changes to
37192     change the memory map for the board and support 36-bit physical,
37193     we need the extra BAT that is being consumed by having both.
37194
37195     I also make non-PCI configs build cleanly, for the sake of sanity.
37196
37197     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37198
37199 commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
37200 Author: Becky Bruce <becky.bruce@freescale.com>
37201 Date:   Fri Oct 31 17:14:00 2008 -0500
37202
37203     mpc8641: Stop supporting non-PCI_PNP configs
37204
37205     We don't actually ever do this, remove the code so we
37206     can stop maintaining it.
37207
37208     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37209
37210 commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
37211 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37212 Date:   Fri Oct 24 12:59:12 2008 +0000
37213
37214     ColdFire: Fix M5329EVB and M5373EVB nand issue
37215
37216     Fix compilation issue caused by a few mismatches.
37217     Provide proper nand chip select enable/disable in
37218     nand_hwcontrol() rather than in board_nand_init()
37219     just enable once. Remove redundant local nand driver
37220     functions - nand_read_byte(), nand_write_byte() and
37221     nand_dev_ready() to use common nand driver.
37222
37223     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37224
37225 commit 1b2708442224a551a0b865b52710306333888932
37226 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37227 Date:   Wed Oct 22 11:55:30 2008 +0000
37228
37229     ColdFire: Fix compilation error
37230
37231     The error was caused by the change for strmhz() in cpu.c.
37232     A few of them were one extra close parenthesis.
37233
37234     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37235
37236 commit 536e7dac16769954915a484e682a2efb28699133
37237 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37238 Date:   Wed Oct 22 11:38:21 2008 +0000
37239
37240     ColdFire: Add MCF5301x CPU and M53017EVB support
37241
37242     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37243
37244 commit a21d0c2cc9add8894d971ab791f4032f077db817
37245 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37246 Date:   Tue Oct 21 15:37:02 2008 +0000
37247
37248     ColdFire: Add SBF support for M52277EVB
37249
37250     Add serial boot support
37251
37252     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37253
37254 commit b202816c61042c183fe67d097a5893b0f2dafba0
37255 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37256 Date:   Tue Oct 21 14:19:26 2008 +0000
37257
37258     ColdFire: Use CFI driver for M5272C3
37259
37260     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37261
37262 commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
37263 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37264 Date:   Tue Oct 21 13:47:54 2008 +0000
37265
37266     ColdFire: Relocate FEC's GPIO and mii functions protocols
37267
37268     Place FEC pin assignments in cpu_init.c from platform's
37269     mii.c
37270
37271     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37272
37273 commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
37274 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37275 Date:   Tue Oct 21 12:15:44 2008 +0000
37276
37277     ColdFire: Remove platforms mii.c file
37278
37279     Will use mcfmii.c driver in drivers/net rather than
37280     keep creating new mii.c for each future platform.
37281     Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
37282     M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
37283     M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
37284     mii.c
37285
37286     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37287
37288 commit 012522fef3b382469125beb46a315ab4dee02fb0
37289 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37290 Date:   Tue Oct 21 10:03:07 2008 +0000
37291
37292     ColdFire: Modules header files cleanup
37293
37294     Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
37295     MDHA, SKHA, INTC, and FlexBus structures and
37296     definitions in immap_5xxx.h to more unify modules
37297     header files. Append DSPI support for m547x_8x.
37298     SSI cleanup. Remove USB Host structure from immap_539.h.
37299     Apply changes to use FlexBus structures in mcf52x2's
37300     cpu_init.c and platform configuration files.
37301
37302     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37303
37304 commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
37305 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37306 Date:   Tue Oct 21 08:52:36 2008 +0000
37307
37308     ColdFire: Remove linker file
37309
37310     Each different build for M54455EVB and M5235EVB will
37311     create a u-boot.lds linker file. It is redundant to
37312     keep the u-boot.lds
37313
37314     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37315
37316 commit 0829323073c505556ed5f5073f91adb504584d45
37317 Author: Peter Tyser <ptyser@xes-inc.com>
37318 Date:   Fri Oct 31 11:26:44 2008 -0500
37319
37320     ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
37321
37322     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
37323
37324 commit a80b21d5127583171d6e9bc7f722947641898012
37325 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37326 Date:   Fri Oct 31 12:12:12 2008 +0100
37327
37328     common/Makefile: create others group for non core, environment and command files
37329
37330     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37331
37332 commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
37333 Author: Wolfgang Denk <wd@denx.de>
37334 Date:   Fri Oct 31 01:13:37 2008 +0100
37335
37336     TQM8260: use CFI flash driver instead of custom driver.
37337
37338     Signed-off-by: Wolfgang Denk <wd@denx.de>
37339
37340 commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
37341 Author: Andy Fleming <afleming@freescale.com>
37342 Date:   Thu Oct 30 17:35:30 2008 -0500
37343
37344     Consolidate MAX/MIN definitions
37345
37346     There were several, now there is one (two if you count the lower-case
37347     versions).
37348
37349     Signed-off-by: Andy Fleming <afleming@freescale.com>
37350
37351 commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
37352 Author: Heiko Schocher <hs@denx.de>
37353 Date:   Thu Oct 30 09:23:09 2008 +0100
37354
37355     mgsuvd: remove unused defines in config file.
37356
37357     Signed-off-by: Heiko Schocher <hs@denx.de>
37358
37359 commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
37360 Author: Wolfgang Denk <wd@denx.de>
37361 Date:   Sun Nov 2 16:14:22 2008 +0100
37362
37363     Coding Style cleanup, update CHANGELOG
37364
37365     Signed-off-by: Wolfgang Denk <wd@denx.de>
37366
37367 commit a47f957ab523019992fdef857af01bd71c58a4da
37368 Author: Alessandro Rubini <rubini-list@gnudd.com>
37369 Date:   Fri Oct 31 22:33:21 2008 +0100
37370
37371     NAND: Allow NAND and OneNAND to coexist
37372
37373     This removes in nand.h code that is verbatim duplicated from bbm.h,
37374     including directly bbm.h in nand.h. The previous state of affairs
37375     prevented compiling code for a board hosting both NAND and OneNAND chips.
37376
37377     Reported-by: Scott Wood <scottwood@freescale.com>
37378     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
37379     Signed-off-by: Scott Wood <scottwood@freescale.com>
37380
37381 commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
37382 Author: Scott Wood <scottwood@freescale.com>
37383 Date:   Fri Oct 31 13:51:12 2008 -0500
37384
37385     JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
37386
37387     Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
37388     Signed-off-by: Scott Wood <scottwood@freescale.com>
37389
37390 commit c57fc28947e248fb03c49a28b467686299895055
37391 Author: Jason Jin <Jason.Jin@freescale.com>
37392 Date:   Fri Oct 31 05:07:04 2008 -0500
37393
37394     NAND: Add NAND support for MPC8536DS board
37395
37396     This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
37397     for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
37398     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
37399
37400     Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
37401     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
37402     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37403
37404 commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
37405 Author: Haiying Wang <Haiying.Wang@freescale.com>
37406 Date:   Fri Oct 31 05:06:14 2008 -0500
37407
37408     NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
37409
37410     CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
37411
37412     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
37413     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37414
37415 commit 51b572a801be57790fe26adaa530210e7fba59cc
37416 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37417 Date:   Fri Oct 24 10:49:48 2008 +0900
37418
37419     sh: rsk7203: Moved rsk7203 board to board/renesas
37420
37421     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37422
37423 commit 58453b00b3ebb26aaa901210023f99504a90bb00
37424 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37425 Date:   Fri Oct 24 10:48:31 2008 +0900
37426
37427     sh: MigoR: Moved MigoR board to board/renesas
37428
37429     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37430
37431 commit c1da2a22817ba85b437afa2f4e715e658b219fd1
37432 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37433 Date:   Fri Oct 24 10:39:44 2008 +0900
37434
37435     sh: r2dplus: Moved r2dplus board to board/renesas
37436
37437     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37438
37439 commit 78385bf2359d828184d0b3649f7ae6b933420000
37440 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37441 Date:   Fri Oct 24 10:36:13 2008 +0900
37442
37443     sh: sh7763rdp: Moved sh7763rdp board to board/renesas
37444
37445     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37446
37447 commit c6525d459c350bfc246ea7826456af77e1e314eb
37448 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37449 Date:   Fri Oct 24 10:35:19 2008 +0900
37450
37451     sh: sh7785lcr: Moved sh7785lcr board to board/renesas
37452
37453     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37454
37455 commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
37456 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37457 Date:   Fri Oct 24 10:34:21 2008 +0900
37458
37459     sh: r7780mp: Moved r7780mp board to board/renesas
37460
37461     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37462
37463 commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
37464 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37465 Date:   Fri Oct 24 10:32:14 2008 +0900
37466
37467     sh: ap325rxa: Moved ap325rxa board to board/renesas
37468
37469     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37470
37471 commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
37472 Author: Wolfgang Denk <wd@xpert.denx.de>
37473 Date:   Fri Oct 31 01:12:28 2008 +0100
37474
37475     CFI Driver: Fix "flash not ready" problem
37476
37477     This patch fixes a problem on systems where the NOR flash is attached
37478     to a 64 bit bus.  The toggle bit detection in flash_toggle() is based
37479     on the assumption that the same flash address is read twice without
37480     any other interjacent flash accesses.  However, on 32 bit systems the
37481     function flash_read64() [as currently implemented] does not perform
37482     an atomic 64 bit read - instead, this is broken down into two 32 bit
37483     read accesses on addresses "addr" and "addr + 4".  So instead of
37484     reading a 64 bit value twice from "addr", we see a sequence of 4 32
37485     bit reads from "addr", "addr + 4", "addr", and "addr + 4".  The
37486     consequence is that flash_toggle() fails to work.
37487
37488     This patch implements a simple, but somewhat ugly solution, as it
37489     avoids the use of flash_read64() in this critical place (by breaking
37490     it down manually into 32 bit read operations) instead of rewriting
37491     flash_read64() such to perform atomic 64 bit reads as one could
37492     expect.  However, such a rewrite would require the use of floating
37493     point load operations, which becomes pretty complex:
37494
37495         save MSR;
37496         set Floating Point Enable bit in MSR;
37497         use "lfd" instruction to perform atomic 64 bit read;
37498         use "stfd" to store value to temporary variable on stack;
37499         load u64 value from temporary variable;
37500         restore saved MSR;
37501         return u64 value;
37502
37503     The benefit-cost ratio of such an implementation was considered too
37504     bad to actually attempt this, especially as we can expect that such
37505     an implementation would not only have a bigger memory footprint but
37506     also cause a performance degradation.
37507
37508     Signed-off-by: Wolfgang Denk <wd@denx.de>
37509     Signed-off-by: Stefan Roese <sr@denx.de>
37510
37511 commit cdd4fe63b094d4b767f12ff241d72566b461ee61
37512 Author: Stefan Roese <sr@denx.de>
37513 Date:   Fri Oct 31 10:48:08 2008 +0100
37514
37515     ppc4xx: Fix spelling error in MAINTAINERS file
37516
37517     Signed-off-by: Stefan Roese <sr@denx.de>
37518
37519 commit be270798900b75ad9c47c7b79c72f70441196c56
37520 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37521 Date:   Tue Oct 28 13:37:00 2008 +0100
37522
37523     ppc4xx: Update PMC440 board support
37524
37525     This patch brings PMC440 board support up to date:
37526
37527     - fix GPIO configuration
37528     - add misc_init_f()
37529     - use better values for usbact variable
37530     - fix USB 2.0 phy reset sequence
37531     - shrink BAR2 to save PCI address space
37532     - add FDT support
37533
37534     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37535     Signed-off-by: Stefan Roese <sr@denx.de>
37536
37537 commit 75183b1a7fc04206d9779d13f16e03853d7e965d
37538 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37539 Date:   Tue Oct 28 13:36:59 2008 +0100
37540
37541     ppc4xx: Fix PMC440 BSP commands
37542
37543     This patch fixes the PMC440 BSP commands painit and selfreset
37544
37545     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37546     Signed-off-by: Stefan Roese <sr@denx.de>
37547
37548 commit 76b565b69f886d5ae748db65e44f464b0e70d41a
37549 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37550 Date:   Tue Oct 28 13:36:58 2008 +0100
37551
37552     ppc4xx: Update PMC440 board configuration
37553
37554     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37555     Signed-off-by: Stefan Roese <sr@denx.de>
37556
37557 commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
37558 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37559 Date:   Tue Oct 28 13:36:57 2008 +0100
37560
37561     ppc4xx: Fix esd loadpci command
37562
37563     This patch fixes esd's loadpci command when not all
37564     memory on adapter boards is accessable via PCI.
37565
37566     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37567     Signed-off-by: Stefan Roese <sr@denx.de>
37568
37569 commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
37570 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37571 Date:   Tue Oct 28 13:36:56 2008 +0100
37572
37573     ppc4xx: Clean up PMC440 header
37574
37575     -Codingstyle cleanup
37576     -Remove unused GPIO define
37577
37578     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37579     Signed-off-by: Stefan Roese <sr@denx.de>
37580
37581 commit 295133258a44f97a57fb2ec339aecfda11f4db95
37582 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37583 Date:   Tue Oct 28 13:36:55 2008 +0100
37584
37585     ppc4xx: Handle other board variant in PMC440 FPGA code
37586
37587     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37588     Signed-off-by: Stefan Roese <sr@denx.de>
37589
37590 commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
37591 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
37592 Date:   Mon Oct 27 12:35:59 2008 +0100
37593
37594     ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
37595
37596     Xilinx ppc440 and ppc405 have many similarities. This patch merge the
37597     config files of both infrastuctures
37598
37599     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
37600     Signed-off-by: Stefan Roese <sr@denx.de>
37601
37602 commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
37603 Author: Stefan Roese <sr@denx.de>
37604 Date:   Sat Oct 25 06:45:31 2008 +0200
37605
37606     ppc4xx: Correctly configure the GPIO pin muxing on Arches
37607
37608     Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
37609     pin multiplexing correctly
37610
37611     Signed-off-by: Stefan Roese <sr@denx.de>
37612
37613 commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
37614 Author: Bartlomiej Sieka <tur@semihalf.com>
37615 Date:   Thu Oct 30 23:22:04 2008 +0100
37616
37617     Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
37618
37619     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37620
37621 commit 4bc7deee9095f21e243b724ca3d634251c1d5432
37622 Author: David Gibson <david@gibson.dropbear.id.au>
37623 Date:   Wed Oct 29 23:27:45 2008 -0500
37624
37625     libfdt: Fix bug in fdt_subnode_offset_namelen()
37626
37627     There's currently an off-by-one bug in fdt_subnode_offset_namelen()
37628     which causes it to keep searching after it's finished the subnodes of
37629     the given parent, and into the subnodes of siblings of the original
37630     node which come after it in the tree.
37631
37632     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
37633     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37634
37635 commit f242a08871839eac081ba5b599af979f3a148a0d
37636 Author: Peter Korsgaard <jacmet@sunsite.dk>
37637 Date:   Tue Oct 28 08:26:52 2008 +0100
37638
37639     fdt_resize(): ensure minimum padding
37640
37641     fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
37642     (16 bytes), so make sure that fdt_resize at least adds that much
37643     padding, no matter what the location or size of the fdt is.
37644
37645     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
37646     Acked-by: Andy Fleming <afleming@freescale.com>
37647
37648 commit d685b74c64a38849f1a129b3ab846fbf67dd937e
37649 Author: Dave Liu <daveliu@freescale.com>
37650 Date:   Thu Oct 23 21:59:35 2008 +0800
37651
37652     74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
37653
37654     The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
37655
37656     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
37657
37658     This is needed in unlock_ram_in_cache() because it is called from C and
37659     will corrupt the small data area anchor that is kept in R2.
37660
37661     lock_ram_in_cache() is modified similarly as good coding practice, but
37662     is not called from C.
37663
37664     Signed-off-by: Nick Spence <nick.spence@freescale.com>
37665
37666     also, the r2 is used as global data pointer.
37667
37668     Signed-off-by: Dave Liu <daveliu@freescale.com>
37669
37670 commit e053ab1903ccae6048ef759025b9f675bba91450
37671 Author: Scott Wood <scottwood@freescale.com>
37672 Date:   Tue Oct 28 11:45:04 2008 -0500
37673
37674     mpc83xx pci: Round up memory size in inbound window.
37675
37676     The current calculation will fail to cover all memory if
37677     its size is not a power of two.
37678
37679     Signed-off-by: Scott Wood <scottwood@freescale.com>
37680     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37681
37682 commit 1c671977dc81359628be27ac99c174e76e8069ba
37683 Author: Dave Liu <daveliu@freescale.com>
37684 Date:   Thu Oct 23 21:19:13 2008 +0800
37685
37686     86xx: remove the unused definition
37687
37688     Signed-off-by: Dave Liu <daveliu@freescale.com>
37689
37690 commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
37691 Author: Dave Liu <daveliu@freescale.com>
37692 Date:   Tue Oct 28 17:47:49 2008 +0800
37693
37694     86xx: remove the redundant r2 global data pointer save
37695
37696     The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
37697     the another global data pointer save, but in fact the
37698     global data pointer will be initialized in the board_init_r,
37699     so remove it such as the 85xx/83xx family.
37700
37701     Signed-off-by: Dave Liu <daveliu@freescale.com>
37702     Acked-by: Kumar Gala <kumar.gala@freescale.com>
37703
37704 commit bd888e9544419665334a6f47f81f34011cea38f3
37705 Author: Dave Liu <daveliu@freescale.com>
37706 Date:   Tue Oct 28 17:47:41 2008 +0800
37707
37708     86xx: remove the unused code for 86xx family
37709
37710     I believe these code was copied from 74xx family, but for
37711     86xx, it is unused.
37712
37713     Signed-off-by: Dave Liu <daveliu@freescale.com>
37714     Acked-by: Kumar Gala <kumar.gala@freescale.com>
37715
37716 commit 5ba1ef507402bc5e344dc374203792a40f222e8a
37717 Author: Dave Liu <daveliu@freescale.com>
37718 Date:   Tue Oct 28 17:46:35 2008 +0800
37719
37720     86xx: remove the second DDR LAW setting for mpc8641hpcn
37721
37722     The DDR1 LAW will precedence the DDR2 LAW, so remove
37723     the second DDR LAW.
37724
37725     Signed-off-by: Dave Liu <daveliu@freescale.com>
37726     Acked-by: Becky Bruce <becky.bruce@freescale.com>
37727
37728 commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
37729 Author: Dave Liu <daveliu@freescale.com>
37730 Date:   Tue Oct 28 17:46:23 2008 +0800
37731
37732     86xx: remove the unused ddr_enable_ecc in the board file
37733
37734     The DDR controller of 86xx processors have the ECC data init
37735     feature, and the new DDR code is using the feature, we don't
37736     need the way with DMA to init memory again.
37737
37738     Signed-off-by: Dave Liu <daveliu@freescale.com>
37739     Acked-by: Kumar Gala <kumar.gala@freescale.com>
37740
37741 commit dc2adad85bf580d65916c940683f6e9671e8a5dd
37742 Author: Dave Liu <daveliu@freescale.com>
37743 Date:   Tue Oct 28 17:46:12 2008 +0800
37744
37745     86xx: Move the clear_tlbs before MMU turn on
37746
37747     We must invalidate TLBs before MMU turn on, but
37748     currently the code is not, if there are some stale
37749     TLB entry valid in the TLBs, it will cause strange
37750     issue.
37751
37752     Signed-off-by: Dave Liu <daveliu@freescale.com>
37753     Acked-by: Becky Bruce <becky.bruce@freescale.com>
37754
37755 commit 5cdade07b118d07154cb882650f9778cecc8a87c
37756 Author: Scott Wood <scottwood@freescale.com>
37757 Date:   Mon Oct 27 15:57:08 2008 -0500
37758
37759     mpc8313erdb: Document NAND boot.
37760
37761     Previously, the documentation claimed that NAND boot is not supported.
37762     This is no longer true.
37763
37764     Signed-off-by: Scott Wood <scottwood@freescale.com>
37765
37766 commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
37767 Author: Scott Wood <scottwood@freescale.com>
37768 Date:   Wed Oct 29 14:20:26 2008 -0500
37769
37770     NAND: Properly create JFFS2 cleanmarkers.
37771
37772     As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
37773     command is currently broken, and among other things causes all blocks
37774     to be marked bad.
37775
37776     This implements it properly using MTD_OOB_AUTO, along with some
37777     indentation fixes.
37778
37779     Signed-off-by: Scott Wood <scottwood@freescale.com>
37780
37781 commit f7fe57c09866b44692d18c8cf22828bd137ec58d
37782 Author: Scott Wood <scottwood@freescale.com>
37783 Date:   Wed Oct 29 13:42:41 2008 -0500
37784
37785     NAND fsl elbc: Set FMR[ECCM] based on page size.
37786
37787     Hardware expects ECCM 0 for small page and ECCM 1 for large page
37788     when booting from NAND, so use those defaults.
37789
37790     Signed-off-by: Scott Wood <scottwood@freescale.com>
37791
37792 commit c013b74975dab0805ef6d369b013230c4e8a660d
37793 Author: Haiying Wang <Haiying.Wang@freescale.com>
37794 Date:   Wed Oct 29 13:32:59 2008 -0400
37795
37796     NAND: Add support for MPC8572DS board
37797
37798     This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
37799     0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
37800     config file.
37801
37802     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
37803     make room for the increased code size with NAND enabled.
37804
37805     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
37806     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
37807     Signed-off-by: Scott Wood <scottwood@freescale.com>
37808
37809 commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
37810 Author: Haiying Wang <Haiying.Wang@freescale.com>
37811 Date:   Wed Oct 29 11:05:55 2008 -0400
37812
37813     Make Freescale local bus registers available for both 83xx and 85xx.
37814
37815     - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
37816       can be shared by both 83xx and 85xx
37817     - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
37818       files which use lbus83xx_t.
37819     - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
37820       85xx can share them.
37821
37822     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
37823     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
37824     Signed-off-by: Scott Wood <scottwood@freescale.com>
37825
37826 commit 695c130e4bf75b444720ddfd83aca88f41c046cf
37827 Author: Scott Wood <scottwood@freescale.com>
37828 Date:   Mon Oct 27 15:38:30 2008 -0500
37829
37830     NAND: Align right column of the shorthelp with other commands.
37831
37832     I accidentally broke this in when making consistent the partial
37833     alignment of the longhelp.
37834
37835     Signed-off-by: Scott Wood <scottwood@freescale.com>
37836
37837 commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
37838 Author: Karl Beldan <karl.beldan@gmail.com>
37839 Date:   Mon Sep 15 16:08:03 2008 +0200
37840
37841     NAND: Reset chip on power-up
37842
37843     Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
37844     The first command sent is NAND_CMD_READID.
37845     Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
37846     Tested with an MT29F4G08AAC.
37847
37848     Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
37849     Signed-off-by: Scott Wood <scottwood@freescale.com>
37850
37851 commit c45912d8abc52de796b9059a58faf7c4166eab58
37852 Author: Scott Wood <scottwood@freescale.com>
37853 Date:   Fri Oct 24 16:20:43 2008 -0500
37854
37855     NAND: sync with 2.6.27
37856
37857     This brings the core NAND code up to date with the Linux kernel.
37858
37859     Since there were several drivers in Linux as of the last update that are
37860     not in u-boot, I'm not bringing over new drivers that have been added
37861     since in the absence of an interested party.
37862
37863     I did not update OneNAND since it was recently synced by Kyungmin Park,
37864     and I'm not sure exactly what the common ancestor is.
37865
37866     Signed-off-by: Scott Wood <scottwood@freescale.com>
37867
37868 commit b1d0db1805c3395149777e507b6da53410abac4e
37869 Author: Kumar Gala <galak@kernel.crashing.org>
37870 Date:   Tue Oct 21 17:25:47 2008 -0500
37871
37872     bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
37873
37874     Added the ability to config out bootm support for Linux, NetBSD, RTEMS
37875
37876     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37877
37878 commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
37879 Author: Kumar Gala <galak@kernel.crashing.org>
37880 Date:   Tue Oct 21 17:25:46 2008 -0500
37881
37882     bootm: support subcommands in linux ppc bootm
37883
37884     Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
37885
37886     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37887
37888 commit 49c3a861d11735838f1f1b11999ce433006dc919
37889 Author: Kumar Gala <galak@kernel.crashing.org>
37890 Date:   Tue Oct 21 17:25:45 2008 -0500
37891
37892     bootm: Add subcommands
37893
37894     Add the ability to break the steps of the bootm command into several
37895     subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
37896
37897     This allows us to do things like manipulate device trees before
37898     they are passed to a booting kernel or setup memory for a secondary
37899     core in multicore situations.
37900
37901     Not all OS types support all subcommands (currently only start, loados,
37902     ramdisk, fdt, and go are supported).
37903
37904     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37905
37906 commit be08315933537f061bc1ce61f33a29c56458bbad
37907 Author: Kumar Gala <galak@kernel.crashing.org>
37908 Date:   Tue Oct 21 17:25:44 2008 -0500
37909
37910     bootm: Move to using a function pointer table for the boot os function
37911
37912     This removes a bit of code and makes it easier for the upcoming sub bootm
37913     command support to call into the proper OS specific handler.
37914
37915     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37916     Signed-off-by: Wolfgang Denk <wd@denx.de>
37917
37918 commit a369f4a492fa2805d87775d27380f0eeaca35aa6
37919 Author: Graeme Russ <graeme.russ@gmail.com>
37920 Date:   Mon Sep 29 23:03:14 2008 +1000
37921
37922     i386: Renamed show_boot_progress in assembler code
37923
37924     Renamed show_boot_progress in assembler init phase to
37925     show_boot_progress_asm to avoid link conflicts with C version
37926
37927     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
37928
37929 commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
37930 Author: Peter Tyser <ptyser@xes-inc.com>
37931 Date:   Mon Oct 27 16:42:00 2008 -0500
37932
37933     85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
37934
37935     The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
37936     processors have a 3-bit wide IO_SEL field but have the most
37937     significant bit is wired to 0 so this change should not affect
37938     them.
37939
37940     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
37941
37942 commit cd4251624205cb97104f6e32679dc7754934f711
37943 Author: Becky Bruce <becky.bruce@freescale.com>
37944 Date:   Mon Oct 27 16:09:42 2008 -0500
37945
37946     powerpc: fix pci window initialization to work with > 4GB DRAM
37947
37948     The existing code has a few errors that need to be fixed in
37949     order to support large RAM sizes.  Fix those, and add a
37950     comment to make it clearer.
37951
37952     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37953     Acked-by: Kumar Gala <galak@kernel.crashing.org>
37954
37955 commit 219542a1a66ca017b12860920714a9859b18a5d7
37956 Author: Kumar Gala <galak@kernel.crashing.org>
37957 Date:   Mon Oct 27 13:16:20 2008 -0500
37958
37959     pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
37960
37961     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37962
37963 commit 6b59e03e0237a40a2305ea385defdfd92000978b
37964 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37965 Date:   Mon Sep 1 16:21:22 2008 +0200
37966
37967     lcd: Let the board code show board-specific info
37968
37969     The information displayed when CONFIG_LCD_INFO is set is inherently
37970     board-specific, so it should be done by the board code. The current code
37971     dealing with this only handles two cases, and is already a horrible mess
37972     of #ifdeffery.
37973
37974     Yes, this duplicates some code, but it also allows boards to print more
37975     board-specific information; this used to be very difficult.
37976
37977     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37978     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37979
37980 commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
37981 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37982 Date:   Mon Sep 1 16:21:21 2008 +0200
37983
37984     lcd: Set lcd_is_enabled before clearing the screen
37985
37986     This allows the logo/info rendering routines to use the regular
37987     lcd_putc/lcd_puts/lcd_printf calls.
37988
37989     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37990     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37991
37992 commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
37993 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37994 Date:   Mon Sep 1 16:21:20 2008 +0200
37995
37996     lcd: Implement lcd_printf()
37997
37998     lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
37999     this by borrowing the lcd_printf() implementation from the cogent board
38000     code (which appears to use its own LCD framework.)
38001
38002     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38003     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38004
38005 commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
38006 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38007 Date:   Mon Sep 1 16:21:19 2008 +0200
38008
38009     atmel_lcdfb: Straighten out funky vl_sync logic
38010
38011     If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
38012     otherwise we don't. WTF?
38013
38014     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38015     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38016
38017 commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
38018 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38019 Date:   Mon Sep 1 16:21:18 2008 +0200
38020
38021     atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
38022
38023     atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
38024     includes a file that does, asm/arch/gpio.h, but this file doesn't
38025     include <asm/arch/hardware.h> like it's supposed to.
38026
38027     Add the missing include to asm/arch/gpio.h and remove the workaround
38028     from the atmel_lcdfb driver. This makes the driver compile on avr32.
38029
38030     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38031     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38032
38033 commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
38034 Author: Kumar Gala <galak@kernel.crashing.org>
38035 Date:   Wed Oct 22 14:38:55 2008 -0500
38036
38037     86xx: Convert all fsl_pci_init users to new APIs
38038
38039     Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
38040     fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
38041
38042     With these changes the board code is a bit smaller and we get dma-ranges
38043     set in the device tree for these boards.
38044
38045     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38046     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38047     Acked-by: Jon Loeliger <jdl@freescale.com>
38048
38049 commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
38050 Author: Kumar Gala <galak@kernel.crashing.org>
38051 Date:   Tue Oct 21 08:28:33 2008 -0500
38052
38053     85xx: Convert all fsl_pci_init users to new APIs
38054
38055     Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
38056     MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
38057     and ft_fsl_pci_setup().
38058
38059     With these changes the board code is a bit smaller and we get dma-ranges
38060     set in the device tree for these boards.
38061
38062     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38063     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38064
38065 commit a2aab460727e5f674353a83a81000ef794bffcae
38066 Author: Kumar Gala <galak@kernel.crashing.org>
38067 Date:   Thu Oct 23 00:01:06 2008 -0500
38068
38069     pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
38070
38071     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38072     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38073
38074 commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
38075 Author: Kumar Gala <galak@kernel.crashing.org>
38076 Date:   Wed Oct 22 14:06:24 2008 -0500
38077
38078     pci/fsl_pci_init: Add a common PCI inbound setup function
38079
38080     Add a common setup function that determines the pci_region(s) based
38081     on how much memory we have in the system.
38082
38083     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38084     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38085
38086 commit 612ea01018a459234d54ed57ec6a5a244ce75678
38087 Author: Kumar Gala <galak@kernel.crashing.org>
38088 Date:   Tue Oct 21 10:13:14 2008 -0500
38089
38090     pci/fsl_pci_init: Enable larger address and setting inbound windows properly
38091
38092     * PCI Inbound window was setup incorrectly.  The PCI address and system
38093       address were swapped.  The PCI address should be setting piwar/piwbear
38094       and the system address should be setting pitar.
38095
38096     * Removed masking of addresses to allow for system address to support
38097       system address & PCI address >32-bits
38098
38099     * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
38100
38101     * Respect the PCI_REGION_PREFETCH for inbound windows
38102
38103     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38104     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38105
38106 commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
38107 Author: Kumar Gala <galak@kernel.crashing.org>
38108 Date:   Wed Oct 22 23:33:56 2008 -0500
38109
38110     fdt: Added helper to set PCI dma-ranges property
38111
38112     Added fdt_pci_dma_ranges() that parses the pci_region info from the
38113     struct pci_controller and populates the dma-ranges based on it.
38114
38115     The max # of windws/dma-ranges we support is 3 since on embedded
38116     PowerPC based systems this is the max number of windows.
38117
38118     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38119     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38120
38121 commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
38122 Author: Kumar Gala <galak@kernel.crashing.org>
38123 Date:   Thu Oct 23 00:05:47 2008 -0500
38124
38125     fdt: Add fdt_getprop_u32_default helpers
38126
38127     Add helper functions to return find a node and return it's property
38128     or a default value.
38129
38130     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38131     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38132     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
38133
38134 commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
38135 Author: Kumar Gala <galak@kernel.crashing.org>
38136 Date:   Tue Oct 21 18:06:15 2008 -0500
38137
38138     86xx: Enable 64-bit PCI resources on all Freescale boards
38139
38140     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38141     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38142
38143 commit 0151cbaccf4504821ecfde0217299bd740086bb6
38144 Author: Kumar Gala <galak@kernel.crashing.org>
38145 Date:   Tue Oct 21 11:33:58 2008 -0500
38146
38147     85xx: Enable 64-bit PCI resources on all Freescale boards
38148
38149     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38150     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38151
38152 commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
38153 Author: Kumar Gala <galak@kernel.crashing.org>
38154 Date:   Tue Oct 21 08:36:08 2008 -0500
38155
38156     pci: Allow for PCI addresses to be 64-bit
38157
38158     PCI bus is inherently 64-bit.  While not all system require access to
38159     the full 64-bit PCI address range some do.  This allows those systems
38160     to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
38161
38162     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38163     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38164     Acked-by: Wolfgang Denk <wd@denx.de>
38165
38166 commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
38167 Author: Dave Liu <daveliu@freescale.com>
38168 Date:   Thu Oct 23 21:18:53 2008 +0800
38169
38170     85xx: Fix the incorrect register used for DDR erratum1
38171
38172     The 8572 DDR erratum1:
38173     DDR controller may enter an illegal state when operating
38174     in 32-bit bus mode with 4-beat bursts.
38175
38176     Description:
38177     When operating with a 32-bit bus, it is recommended that
38178     DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
38179     This forces the DDR controller to use 4-beat bursts when
38180     communicating to the DRAMs. However, an issue exists that
38181     could lead to data corruption when the DDR controller is
38182     in 32-bit bus mode while using 4-beat bursts.
38183
38184     Projected Impact:
38185     If the DDR controller is operating in 32-bit bus mode with
38186     4-beat bursts, then the controller may enter into a bad state.
38187     All subsequent reads from memory is corrupted.
38188     Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
38189     Therefore, this erratum does not affect DDR3 mode.
38190
38191     Work Arounds:
38192     To work around this issue, software must set DEBUG_1[31] in
38193     DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
38194     and CCSRBAR offset + 0x6f00 for DDR_2).
38195
38196     Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
38197     as condition, but it should be DDR_SDRAM_CFG register.
38198
38199     Signed-off-by: Dave Liu <daveliu@freescale.com>
38200
38201 commit d5b693090ed08d24c18491df9d8fc7387b2906f3
38202 Author: Dave Liu <daveliu@freescale.com>
38203 Date:   Thu Oct 23 21:17:19 2008 +0800
38204
38205     85xx: remove unused config definition
38206
38207     Signed-off-by: Dave Liu <daveliu@freescale.com>
38208
38209 commit 0f060c3bf82832331a509f2e5d2442539e7aad09
38210 Author: Kumar Gala <galak@kernel.crashing.org>
38211 Date:   Thu Oct 23 01:47:38 2008 -0500
38212
38213     85xx: Add basic e500mc core support
38214
38215     Introduce CONFIG_E500MC to deal with the minor differences between
38216     e500v2 and e500mc.
38217
38218     * Certain fields of HID0/1 don't exist anymore on e500mc
38219     * Cache line size is 64-bytes on e500mc
38220     * reset value of PIR is different
38221
38222     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38223
38224 commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
38225 Author: Kumar Gala <galak@kernel.crashing.org>
38226 Date:   Thu Oct 23 01:47:37 2008 -0500
38227
38228     85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
38229
38230     Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
38231     e500mc's 64-byte cacheline properly when it gets added.
38232
38233     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38234
38235 commit 5deb8022c3749faac30e9ad9694691e2442b5c93
38236 Author: Georg Schardt <schardt@team-ctech.de>
38237 Date:   Fri Oct 24 13:51:52 2008 +0200
38238
38239     ppc4xx: New board avnet fx12 minimodul
38240
38241     This patch adds support for the avnet fx12 minimodul.
38242     It needs the "ppc4xx: Generic architecture for xilinx ppc405"
38243     patch from Ricardo.
38244
38245     Signed-off-by: Georg Schardt <schardt@team-ctech.de>
38246     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
38247     Signed-off-by: Stefan Roese <sr@denx.de>
38248
38249 commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
38250 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
38251 Date:   Tue Oct 21 18:29:46 2008 +0200
38252
38253     ppc4xx: Generic architecture for xilinx ppc405(v3)
38254
38255     As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
38256     ppc440 boards, this patch presents a common architecture for all the
38257     xilinx ppc405 boards.
38258
38259     Any custom xilinx ppc405 board can be added very easily with no code
38260     duplicity.
38261
38262     This patch also adds a simple generic board, that can be used on almost
38263     any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
38264
38265     This patch is prepared to work with the latest version of EDK (10.1)
38266
38267     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
38268     Signed-off-by: Stefan Roese <sr@denx.de>
38269
38270 commit 485c00a57fab86f72a3769480c66bf1ca22e1459
38271 Author: Stefan Roese <sr@denx.de>
38272 Date:   Fri Oct 24 08:56:09 2008 +0200
38273
38274     ppc4xx: Disable DDR2 autocalibration on Kilauea for now
38275
38276     Since the new autocalibration still has some problems on some Kilauea
38277     boards with 200MHz DDR2 frequency we disable the autocalibration and
38278     use the hardcoded values as done before. This seems to work reliably
38279     on all known DDR2 frequencies.
38280
38281     After the autocalibration issue is fixed we will enable it again.
38282
38283     Signed-off-by: Stefan Roese <sr@denx.de>
38284
38285 commit f177f4250c729727b1629fa8d8d6556c999e9b8c
38286 Author: Mike Frysinger <vapier@gentoo.org>
38287 Date:   Wed Apr 9 02:02:07 2008 -0400
38288
38289     Blackfin: fix up UART status bit handling
38290
38291     Some Blackfin UARTs are read-to-clear while others are write-to-clear.
38292     This can cause problems when we poll the LSR and then later try and handle
38293     any errors detected.
38294
38295     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38296
38297 commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
38298 Author: Mike Frysinger <vapier@gentoo.org>
38299 Date:   Sat Oct 11 20:42:17 2008 -0400
38300
38301     Blackfin: bf561-ezkit: drop redundant code
38302
38303     Common Blackfin code already announces CPU information.
38304
38305     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38306
38307 commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
38308 Author: Mike Frysinger <vapier@gentoo.org>
38309 Date:   Sat Oct 11 20:43:10 2008 -0400
38310
38311     Blackfin: bf561-ezkit: drop pointless USB code
38312
38313     The USB/LAN register settings are not actually used/needed in order to
38314     drive things from U-Boot, so drop the code.
38315
38316     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38317
38318 commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
38319 Author: Mike Frysinger <vapier@gentoo.org>
38320 Date:   Sat Oct 11 20:47:58 2008 -0400
38321
38322     Blackfin: linker scripts: force start.o and set initcode boundaries
38323
38324     Make sure that the start.o object is always the first object in our linker
38325     script regardless of configuration settings, and add some linker symbols
38326     so the ldr utility can properly locate the initcode when generating a LDR.
38327
38328     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38329
38330 commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
38331 Author: Mike Frysinger <vapier@gentoo.org>
38332 Date:   Sat Oct 11 21:19:39 2008 -0400
38333
38334     Blackfin: small cpu init optimization while setting interrupt mask
38335
38336     Use the sti instruction to set the initial interrupt mask rather than
38337     banging on the core IMASK MMR to save both space and time.
38338
38339     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38340
38341 commit 960922291c9594acb575cec7e47d7bed9b58182c
38342 Author: Mike Frysinger <vapier@gentoo.org>
38343 Date:   Sat Oct 11 21:18:10 2008 -0400
38344
38345     Blackfin: set initial stack correctly according to Blackfin ABI
38346
38347     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38348
38349 commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
38350 Author: Mike Frysinger <vapier@gentoo.org>
38351 Date:   Sun Apr 20 03:11:53 2008 -0400
38352
38353     Blackfin: make baud calculation more accurate
38354
38355     We should use the algorithm in the Linux kernel so that the UART divisor
38356     calculation is more accurate.  It also fixes problems on some picky UARTs
38357     that have sampling anomalies.
38358
38359     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38360
38361 commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
38362 Author: Mike Frysinger <vapier@gentoo.org>
38363 Date:   Mon Oct 6 04:21:41 2008 -0400
38364
38365     Blackfin: decode hwerrcause/excause when crashing
38366
38367     Having to decode hwerrcause/excause values is a pain, so automate it.
38368
38369     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38370
38371 commit 2de95bb20c488f20298df6881b700a5a757ee780
38372 Author: Mike Frysinger <vapier@gentoo.org>
38373 Date:   Mon Oct 6 04:20:54 2008 -0400
38374
38375     Blackfin: fix register dump messages
38376
38377     Make sure we report RETI/IPEND correctly.
38378
38379     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38380
38381 commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
38382 Author: Mike Frysinger <vapier@gentoo.org>
38383 Date:   Mon Oct 6 04:19:34 2008 -0400
38384
38385     Blackfin: don't bother displaying reboot msg when crashing
38386
38387     The hang function already tells you to reboot, so no point in showing it
38388     twice.
38389
38390     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38391
38392 commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
38393 Author: Mike Frysinger <vapier@gentoo.org>
38394 Date:   Sun Jun 1 01:23:48 2008 -0400
38395
38396     Blackfin: enable support for nested interrupts
38397
38398     During cpu init, make sure we initialize the CEC properly so that
38399     interrupts can fire and be handled while U-Boot is running.
38400
38401     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38402
38403 commit 39782727e185860faa4884c2b04e84cb33d1c6cf
38404 Author: Mike Frysinger <vapier@gentoo.org>
38405 Date:   Mon Oct 6 03:55:25 2008 -0400
38406
38407     Blackfin: init NAND before relocating env
38408
38409     If booting out of NAND, we need to make sure we initialize it properly
38410     before attempting to relocate the environment.
38411
38412     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38413
38414 commit 0f9a8819416ba40a53de50af148847a0e508f84d
38415 Author: Mike Frysinger <vapier@gentoo.org>
38416 Date:   Thu Aug 7 18:40:13 2008 -0400
38417
38418     Blackfin: check cache bits, not cplb bits
38419
38420     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38421
38422 commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
38423 Author: Mike Frysinger <vapier@gentoo.org>
38424 Date:   Thu Aug 7 17:52:59 2008 -0400
38425
38426     Blackfin: drop unused cache flush code
38427
38428     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38429
38430 commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
38431 Author: Mike Frysinger <vapier@gentoo.org>
38432 Date:   Thu Aug 7 15:21:47 2008 -0400
38433
38434     Blackfin: unify cache handling code
38435
38436     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38437
38438 commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
38439 Author: Mike Frysinger <vapier@gentoo.org>
38440 Date:   Mon Oct 6 03:39:07 2008 -0400
38441
38442     Blackfin: only initialize the RTC when actually used
38443
38444     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38445
38446 commit 621e579b812dd1a2e6777f7cbf6e55e736505823
38447 Author: Mike Frysinger <vapier@gentoo.org>
38448 Date:   Mon Oct 6 03:44:33 2008 -0400
38449
38450     Blackfin: fix SWRST register definition
38451
38452     The SWRST register is a 16bit, not 32bit, register.
38453
38454     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38455
38456 commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
38457 Author: Mike Frysinger <vapier@gentoo.org>
38458 Date:   Thu Aug 7 18:54:57 2008 -0400
38459
38460     Blackfin: build with -fomit-frame-pointer
38461
38462     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38463
38464 commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
38465 Author: Mike Frysinger <vapier@gentoo.org>
38466 Date:   Thu Aug 7 17:50:26 2008 -0400
38467
38468     Blackfin: document some of the blackfin directories
38469
38470     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38471
38472 commit e4337968e43698a68ba608369f46d4a4114111ca
38473 Author: Mike Frysinger <vapier@gentoo.org>
38474 Date:   Thu Aug 7 15:16:56 2008 -0400
38475
38476     Blackfin: only enable hardware error irq by default
38477
38478     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38479
38480 commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
38481 Author: Mike Frysinger <vapier@gentoo.org>
38482 Date:   Thu Aug 7 13:36:43 2008 -0400
38483
38484     Blackfin: punt old unused mem_init.h header
38485
38486     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38487
38488 commit bcc121a01608042066a19ab5bff5bcfb805bf406
38489 Author: Mike Frysinger <vapier@gentoo.org>
38490 Date:   Thu Aug 7 13:18:55 2008 -0400
38491
38492     Blackfin: delete unused page_descriptor_table_size define
38493
38494     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38495
38496 commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
38497 Author: Mike Frysinger <vapier@gentoo.org>
38498 Date:   Thu Aug 7 13:17:03 2008 -0400
38499
38500     Blackfin: fix typo in boot mode comment and add NAND define
38501
38502     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38503
38504 commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
38505 Author: Ben Maan <moo@cow>
38506 Date:   Thu Aug 7 13:14:21 2008 -0400
38507
38508     Blackfin: fix port mux defines for BF54x
38509
38510     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38511
38512 commit 0656ef2ba274910d31364fe022f6c7db0051660d
38513 Author: Mike Frysinger <vapier@gentoo.org>
38514 Date:   Thu Aug 7 13:09:50 2008 -0400
38515
38516     Blackfin: update anomaly lists
38517
38518     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38519
38520 commit 50ca95402876cf7bac4e2d4f7855f616a038763f
38521 Author: Mike Frysinger <vapier@gentoo.org>
38522 Date:   Thu Aug 7 13:08:54 2008 -0400
38523
38524     Blackfin: unify DSPID/DBGSTAT MMR definitions
38525
38526     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38527
38528 commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
38529 Author: Wolfgang Denk <wd@denx.de>
38530 Date:   Tue Oct 21 15:53:51 2008 +0200
38531
38532     Fix strmhz(): avoid printing negative fractions
38533
38534     Signed-off-by: Wolfgang Denk <wd@denx.de>
38535
38536 commit 4a7f6b750d8de543fdf8e58acd86745010054571
38537 Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
38538 Date:   Fri Oct 17 08:55:51 2008 -0400
38539
38540     mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
38541
38542     This is done to allow other 83XX based platforms which also have UPM
38543     (e.g. 8360) to configure and use their UPM in u-boot.
38544
38545     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
38546     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38547
38548 commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
38549 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38550 Date:   Tue Oct 14 22:58:53 2008 +0400
38551
38552     mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
38553
38554     With this patch u-boot can fixup the dr_mode and phy_type properties
38555     for the Dual-Role USB controller.
38556
38557     While at it, also remove #ifdefs around includes, they are not needed.
38558
38559     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38560     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38561
38562 commit b3379f3fd13969934c00097c05754e7a8990fd39
38563 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38564 Date:   Wed Oct 8 20:52:54 2008 +0400
38565
38566     mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
38567
38568     Though NAND chip is replaceable on the MPC837XE-MDS boards, the
38569     current settings don't work with the default chip on the board.
38570     Nevertheless Freescale's U-Boot sets the option register correctly,
38571     so I just dumped the register from the working u-boot. My guess is
38572     that the old settings were applicable for some pilot boards, not
38573     found in the production.
38574
38575     This patch also enables FSL ELBC driver so that we could access
38576     the NAND storage in the u-boot.
38577
38578     The NAND support costs about 45KB, so the u-boot no longer fits
38579     into two 128KB NOR flash sectors, thus we also have to adjust
38580     environment location: add another 128KB to the monitor length.
38581
38582     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38583
38584     It is due to hardware design and logic defect, that is the
38585     I/O[0:7] of NAND chip is connected to LAD[7:0], so when
38586     the NAND chip connected to nLCS3,  you have to set up the
38587     OR3[BCTLD] = '1' for normal operation, otherwise it will have
38588     bus contention due to the pin 48/25 of U60 is enabled.
38589
38590     Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
38591     asserted upon access to the NAND chip, keep the default state.
38592
38593     Acked-by: Dave Liu <daveliu@freescale.com>
38594     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38595
38596 commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
38597 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38598 Date:   Thu Oct 2 19:17:33 2008 +0400
38599
38600     mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
38601
38602     The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
38603     standalone or acting as a PCI agent. User's Guide says:
38604
38605     - When the CPLD recognizes its location on the PIB it automatically
38606       configures RCW to the PCI Host.
38607     - If the CPLD fails to recognize its location then it is automatically
38608       configured as an Agent and the PCI is configured to an external arbiter.
38609
38610     This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
38611     flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
38612     PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
38613     any arbiter bad things will happen (here the board hangs during any config
38614     space reads).
38615
38616     In this situation we must disable the PCI. And in case of anybody really
38617     want to use an external arbiter, we provide "pci_external_aribter"
38618     environment variable.
38619
38620     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38621     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38622
38623 commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
38624 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38625 Date:   Thu Oct 2 18:32:25 2008 +0400
38626
38627     mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
38628
38629     This involves configuring the SerDes and fixing up the flags and
38630     PHY addresses for the TSECs.
38631
38632     For Linux we also fix up the device tree.
38633
38634     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38635     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38636
38637 commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
38638 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38639 Date:   Thu Oct 2 18:31:59 2008 +0400
38640
38641     mpc83xx: add TSECs' HRCWH masks for MPC837x processors
38642
38643     We'll use these masks to parse TSEC modes out of HRCWH.
38644
38645     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38646     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38647
38648 commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
38649 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38650 Date:   Thu Oct 2 18:31:56 2008 +0400
38651
38652     mpc83xx: serdes: add forgotten shifts for rfcks
38653
38654     The rfcks should be shifted by 28 bits left. We didn't notice the bug
38655     because we were using only 100MHz clocks (for which rfcks == 0).
38656
38657     Though, for SGMII we'll need 125MHz clocks.
38658
38659     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38660     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38661
38662 commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
38663 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38664 Date:   Thu Oct 2 18:31:53 2008 +0400
38665
38666     mpc83xx: fix serdes setup for the MPC8378E boards
38667
38668     MPC837xE specs says that SerDes1 has:
38669
38670     â€” Two lanes running x1 SGMII at 1.25 Gbps;
38671     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
38672
38673     And for SerDes2:
38674
38675     â€” Two lanes running x1 PCI Express at 2.5 Gbps;
38676     â€” One lane running x2 PCI Express at 2.5 Gbps;
38677     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
38678
38679     The spec also explicitly states that PEX options are not valid for
38680     the SD1.
38681
38682     Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
38683     which is wrong to do.
38684
38685     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38686     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38687
38688 commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
38689 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38690 Date:   Wed Sep 10 18:12:37 2008 +0400
38691
38692     mpc83xx: mpc8360emds: rework LBC SDRAM setup
38693
38694     Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
38695     it difficult to use (b/c then the memory is discontinuous and
38696     there is quite big memory hole between the DDR/SDRAM regions).
38697
38698     This patch reworks LBC SDRAM setup so that now we dynamically
38699     place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
38700     DDR memory).
38701
38702     With this patch we're able to:
38703
38704     - Boot without external DDR memory;
38705     - Use most "DDR + SDRAM" setups without need to support for
38706       sparse/discontinuous memory model in the software.
38707
38708     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38709     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38710
38711 commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
38712 Author: Wolfgang Denk <wd@xpert.denx.de>
38713 Date:   Tue Oct 21 11:23:56 2008 +0200
38714
38715     FDT: don't use private kernel header files
38716
38717     On some systems (for example Fedora Core 4) U-Boot builds with the
38718     following wanrings only:
38719
38720     ...
38721     In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
38722                      from fdt.c:51:
38723                  /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
38724
38725     This patch fixes this problem.
38726
38727     Signed-off-by: Wolfgang Denk <wd@denx.de>
38728
38729 commit f4d14c55504ce40287321bd63ee269e3233ee4ae
38730 Author: Stefan Roese <sr@denx.de>
38731 Date:   Mon Oct 13 15:15:31 2008 +0200
38732
38733     ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
38734
38735     Signed-off-by: Stefan Roese <sr@denx.de>
38736
38737 commit 43cbce69d48d052574d71f50724be546d90a46a4
38738 Author: Stefan Roese <sr@denx.de>
38739 Date:   Mon Oct 13 10:45:14 2008 +0200
38740
38741     ppc4xx: Correctly setup ranges property in ebc node
38742
38743     Previously only the NOR flash mapping was written into the ranges
38744     property of the ebc node. This patch now writes all enabled chip
38745     select areas into the ranges property.
38746
38747     Signed-off-by: Stefan Roese <sr@denx.de>
38748
38749 commit d7b26d58328f137471ea97de382bfa63f7239931
38750 Author: Dirk Eibach <eibach@gdsys.de>
38751 Date:   Wed Oct 8 15:37:50 2008 +0200
38752
38753     ppc4xx: Add GDSys neo 405EP board support
38754
38755     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
38756     Signed-off-by: Stefan Roese <sr@denx.de>
38757
38758 commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
38759 Author: Niklaus Giger <niklaus.giger@netstal.com>
38760 Date:   Wed Oct 1 14:46:13 2008 +0200
38761
38762     ppc4xx: Update configs for Netstal boards
38763
38764     I reorganized my config files, putting the common stuff into netstal-common.h
38765     (got the idea by looking a amcc-common.h from Stefan).
38766
38767     Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
38768
38769     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38770     Signed-off-by: Stefan Roese <sr@denx.de>
38771
38772 commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
38773 Author: Adam Graham <agraham@amcc.com>
38774 Date:   Wed Oct 8 10:13:19 2008 -0700
38775
38776     ppc4xx: Add routine to retrieve CPU number
38777
38778     Provide a weak defined routine to retrieve the CPU number for
38779     reference boards that have multiple CPU's.  Default behavior
38780     is the existing single CPU print output.  Reference boards with
38781     multiple CPU's need to provide a board specific routine.
38782     See board/amcc/arches/arches.c for an example.
38783
38784     Signed-off-by: Adam Graham <agraham@amcc.com>
38785     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
38786     Signed-off-by: Stefan Roese <sr@denx.de>
38787
38788 commit 59217bae40e90982ab5400d849c08af683ace036
38789 Author: Adam Graham <agraham@amcc.com>
38790 Date:   Wed Oct 8 10:13:14 2008 -0700
38791
38792     ppc4xx: Add static support for 44x IBM SDRAM Controller
38793
38794     This patch add the capability to configure a PPC440 based IBM SDRAM
38795     Controller with static, compiled-in, values. PPC440 memory subsystem
38796     includes a Memory Queue core.
38797
38798     Signed-off-by: Adam Graham <agraham@amcc.com>
38799     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
38800     Signed-off-by: Stefan Roese <sr@denx.de>
38801
38802 commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
38803 Author: Adam Graham <agraham@amcc.com>
38804 Date:   Wed Oct 8 10:12:53 2008 -0700
38805
38806     ppc4xx: Add AMCC Arches board support (dual 460GT)
38807
38808     The Arches Evaluation board is based on the AMCC 460GT SoC chip.
38809     This board is a dual processor board with each processor providing
38810     independent resources for Rapid IO, Gigabit Ethernet, and serial
38811     communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
38812     FLASH, UART, EEPROM and temperature sensor, along with a shared debug
38813     port. The two 460GT's will communicate with each other via shared
38814     memory, Gigabit Ethernet and x1 PCI-Express.
38815
38816     Signed-off-by: Adam Graham <agraham@amcc.com>
38817     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
38818     Signed-off-by: Stefan Roese <sr@denx.de>
38819
38820 commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
38821 Author: Wolfgang Denk <wd@xpert.denx.de>
38822 Date:   Sun Oct 19 21:54:30 2008 +0200
38823
38824     TQM8260: environment in flash instead EEPROM, baudrate 115k
38825
38826     Several customers have reported problems with the environment in
38827     EEPROM, including corrupted content after board reset. Probably the
38828     code to prevent I2C Enge Conditions is not working sufficiently.
38829
38830     We move the environment to flash now, which allows to have a backup
38831     copy plus gives much faster boot times.
38832
38833     Also, change the default console initialization to 115200 bps as used
38834     on most other boards.
38835
38836     Signed-off-by: Wolfgang Denk <wd@denx.de>
38837
38838 commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
38839 Author: Kumar Gala <galak@kernel.crashing.org>
38840 Date:   Sun Oct 19 12:49:19 2008 -0500
38841
38842     85xx: Fix compile warning in mpc8536ds.c
38843
38844     mpc8536ds.c: In function 'is_sata_supported':
38845     mpc8536ds.c:615: warning: unused variable 'devdisr'
38846
38847     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38848
38849 commit 8ed44d91c8122d00368523b0b746691c895d3b3c
38850 Author: Wolfgang Denk <wd@denx.de>
38851 Date:   Sun Oct 19 02:35:50 2008 +0200
38852
38853     Cleanup: fix "MHz" spelling
38854
38855     Signed-off-by: Wolfgang Denk <wd@denx.de>
38856
38857 commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
38858 Author: Wolfgang Denk <wd@denx.de>
38859 Date:   Sun Oct 19 02:35:49 2008 +0200
38860
38861     Use strmhz() to format clock frequencies
38862
38863     Signed-off-by: Wolfgang Denk <wd@denx.de>
38864
38865 commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
38866 Author: Wolfgang Denk <wd@denx.de>
38867 Date:   Sun Oct 19 02:35:48 2008 +0200
38868
38869     strmhz(): Round numbers when printing clock frequencies
38870
38871     Round clock frequencies for printing.
38872
38873     Many boards printed off clock frequencies like 399 MHz instead of the
38874     exact 400 MHz because numberes were not rounded. This is fixed now.
38875
38876     Signed-off-by: Wolfgang Denk <wd@denx.de>
38877
38878 commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
38879 Author: Timur Tabi <timur@freescale.com>
38880 Date:   Mon Oct 20 15:16:47 2008 -0500
38881
38882     85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
38883
38884     Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
38885     to add a comment that the correct value disagrees with the 8544 reference
38886     manual.  The changelog for that commit is also wrong, as it says "bit 28"
38887     when it should be "bit 24".
38888
38889     Signed-off-by: Timur Tabi <timur@freescale.com>
38890
38891 commit 360fe71e82b83e264c964c9447c537e9a1f643c8
38892 Author: Heiko Schocher <hs@denx.de>
38893 Date:   Fri Oct 17 18:24:06 2008 +0200
38894
38895     mgcoge: add redundant environment sector
38896
38897     Signed-off-by: Heiko Schocher <hs@denx.de>
38898
38899 commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
38900 Author: Heiko Schocher <hs@denx.de>
38901 Date:   Fri Oct 17 18:23:27 2008 +0200
38902
38903     mgsuvd: update size of environment
38904
38905     Signed-off-by: Heiko Schocher <hs@denx.de>
38906
38907 commit 2e26d837f11460c0e6dede7d65424a31e0183d09
38908 Author: Jason Jin <Jason.jin@freescale.com>
38909 Date:   Fri Oct 10 11:41:00 2008 +0800
38910
38911     Enabled the Freescale SGMII riser card on 8536DS
38912
38913     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
38914
38915 commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
38916 Author: Liu Yu <yu.liu@freescale.com>
38917 Date:   Fri Oct 10 11:40:59 2008 +0800
38918
38919     Enabled the Freescale SGMII riser card on 8572DS
38920
38921     This patch based on Andy's work.
38922     Including command 'pixis_set_sgmii' support.
38923
38924     Signed-off-by: Liu Yu <yu.liu@freescale.com>
38925
38926 commit bff188baf9427c35745356439435acf3864d4c65
38927 Author: Liu Yu <yu.liu@freescale.com>
38928 Date:   Fri Oct 10 11:40:58 2008 +0800
38929
38930     Make pixis_set_sgmii more general to support MPC85xx boards.
38931
38932     The pixis sgmii command depend on the FPGA support on the board, some 85xx
38933     boards support SGMII riser card but did not support this command, define
38934     CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
38935
38936     Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
38937     are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
38938     PIXIS_VCFGEN1_MASK in header file for both boards.
38939
38940     Signed-off-by: Liu Yu <yu.liu@freescale.com>
38941
38942 commit 5e981d683d2363204c76773941c2e9c2044c808f
38943 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38944 Date:   Wed Oct 8 23:38:02 2008 -0500
38945
38946     Add cpu/8xxx to TAGS_SUBDIRS
38947
38948     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38949
38950 commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
38951 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38952 Date:   Thu Oct 9 01:25:55 2008 -0500
38953
38954     fsl_law clear enable before changing.
38955
38956     Debug sessions may have left enabled laws.
38957     Changing lawbar with an unkown enabled tgtid could cause problems.
38958
38959     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38960
38961 commit 86be510f7b5443e7e937f696bfbe037fdc740b15
38962 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38963 Date:   Thu Oct 9 00:29:27 2008 -0500
38964
38965     mpc8572 additional end-point mode
38966
38967     mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
38968     Include host_agent == 0 decode for end-point determination.
38969
38970     This is not needed for the ds reference board since pcie3 will be a host
38971     in order to connect to the uli chip.  Include it here as a reference for
38972     other mpc8572 boards.
38973
38974     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38975
38976 commit 6856b3d0221a838580e6bb06f61425fd7529ba93
38977 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38978 Date:   Wed Oct 8 23:37:59 2008 -0500
38979
38980     85xx if NUM_CPUS>1, print cpu number
38981
38982     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38983
38984 commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
38985 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38986 Date:   Wed Oct 8 23:38:01 2008 -0500
38987
38988     pixis do not print long help if not configured
38989
38990     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38991
38992 commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
38993 Author: Andy Fleming <afleming@freescale.com>
38994 Date:   Tue Oct 7 08:09:50 2008 -0500
38995
38996     Have u-boot pass stashing parameters into device tree
38997
38998     Some cores don't support ethernet stashing at all, and some
38999     instances have errata.  Adds 3 properties to gianfar nodes
39000     which support stashing.  For now, just add this support to
39001     85xx SoCs.
39002
39003     Signed-off-by: Andy Fleming <afleming@freescale.com>
39004
39005 commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
39006 Author: Haiying Wang <Haiying.Wang@freescale.com>
39007 Date:   Fri Oct 3 12:37:57 2008 -0400
39008
39009     Add DDR options setting on MPC8641HPCN board
39010
39011     * Add board specific parameter table to choose correct cpo, clk_adjust,
39012     write_data_delay based on board ddr frequency and n_ranks.
39013
39014     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
39015
39016     Signed-off-by: James Yang <James.Yang@freescale.com>
39017     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39018
39019 commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
39020 Author: Haiying Wang <Haiying.Wang@freescale.com>
39021 Date:   Fri Oct 3 12:37:41 2008 -0400
39022
39023     Add ddr interleaving suppport for MPC8572DS board
39024
39025     * Add board specific parameter table to choose correct cpo, clk_adjust,
39026     write_data_delay, 2T based on board ddr frequency and n_ranks.
39027
39028     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
39029
39030     * Set memory controller interleaving mode to bank interleaving, and disable
39031     bank(chip select) interleaving mode by default, because the default on-board
39032     DDR DIMMs are 2x512MB single-rank.
39033
39034     * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
39035
39036     Signed-off-by: James Yang <James.Yang@freescale.com>
39037     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39038
39039 commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
39040 Author: Haiying Wang <Haiying.Wang@freescale.com>
39041 Date:   Fri Oct 3 12:37:26 2008 -0400
39042
39043     Add debug information for DDR controller registers
39044
39045     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39046
39047 commit c9ffd839b1ada502c86f88edaf1534426b6688ce
39048 Author: Haiying Wang <Haiying.Wang@freescale.com>
39049 Date:   Fri Oct 3 12:37:10 2008 -0400
39050
39051     Check DDR interleaving mode
39052
39053     * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
39054     ba_intlv_ctl.
39055     * Print DDR interleaving mode information
39056     * Add doc/README.fsl-ddr to describe the interleaving setting
39057
39058     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39059
39060 commit dfb49108e4f86c2224e1f30124328b0de66ef72e
39061 Author: Haiying Wang <Haiying.Wang@freescale.com>
39062 Date:   Fri Oct 3 12:36:55 2008 -0400
39063
39064     Pass dimm parameters to populate populate controller options
39065
39066     Because some dimm parameters like n_ranks needs to be used with the board
39067     frequency to choose the board parameters like clk_adjust etc. in the
39068     board_specific_paramesters table of the board ddr file, we need to pass
39069     the dimm parameters to the board file.
39070
39071     * move ddr dimm parameters header file from /cpu to /include directory.
39072     * add ddr dimm parameters to populate board specific options.
39073     * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
39074
39075     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39076
39077 commit dbbbb3abeff325855cae76e33d69d5665631443f
39078 Author: Haiying Wang <Haiying.Wang@freescale.com>
39079 Date:   Fri Oct 3 12:36:39 2008 -0400
39080
39081     Make DDR interleaving mode work correctly
39082
39083     Fix some bugs:
39084       1. Correctly set intlv_ctl in cs_config.
39085       2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
39086       3. Set base_address and total memory for each ddr controller in memory
39087          controller interleaving mode.
39088
39089     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39090
39091 commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
39092 Author: Kumar Gala <galak@kernel.crashing.org>
39093 Date:   Mon Sep 22 23:40:42 2008 -0500
39094
39095     85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
39096
39097     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39098
39099 commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
39100 Author: Kumar Gala <galak@kernel.crashing.org>
39101 Date:   Mon Sep 22 14:11:11 2008 -0500
39102
39103     85xx: Improve flash remapping on MPC8572DS & MPC8536DS
39104
39105     Changing the flash from cacheable to cache-inhibited was taking a significant
39106     amount of time due to the fact that we were iterating over the full 256M of
39107     flash.  Instead we can just flush the L1 d-cache and invalidate the i-cache.
39108
39109     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39110
39111 commit 54e091d3b603a3332c619199ca83a07e95960da4
39112 Author: Kumar Gala <galak@kernel.crashing.org>
39113 Date:   Mon Sep 22 14:11:10 2008 -0500
39114
39115     85xx: Export invalidate_{i,d}cache and add flush_dcache
39116
39117     Added the ability for C code to invalidate the i/d-cache's and
39118     to flush the d-cache.  This allows us to more efficient change mappings
39119     from cache-able to cache-inhibited.
39120
39121     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39122
39123 commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
39124 Author: Heiko Schocher <hs@denx.de>
39125 Date:   Fri Oct 17 16:11:52 2008 +0200
39126
39127     mgcoge, mgsuvd: extract more common code
39128
39129     in ft_blob_update () for both boards was an unneccessary
39130     repetition of code, which this patch moves in a common
39131     function for this boards.
39132
39133     Signed-off-by: Heiko Schocher <hs@denx.de>
39134
39135 commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
39136 Author: Heiko Schocher <hs@denx.de>
39137 Date:   Fri Oct 17 12:15:55 2008 +0200
39138
39139     mgcoge, mgsuvd: use in_*/out_* accesors
39140
39141     Signed-off-by: Heiko Schocher <hs@denx.de>
39142
39143 commit a21ca95f8b9dca22714952b348e4905ac157b5cd
39144 Author: Heiko Schocher <hs@denx.de>
39145 Date:   Fri Oct 17 13:52:51 2008 +0200
39146
39147     mgsuvd: fix compiler warning when using soft_i2c driver
39148
39149     Signed-off-by: Heiko Schocher <hs@denx.de>
39150
39151 commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
39152 Author: Heiko Schocher <hs@denx.de>
39153 Date:   Fri Oct 17 12:15:05 2008 +0200
39154
39155     mgsuvd: fix coding style
39156
39157     Signed-off-by: Heiko Schocher <hs@denx.de>
39158
39159 commit 5f4c3137f4f051787707c548133823f1656eb508
39160 Author: Heiko Schocher <hs@denx.de>
39161 Date:   Fri Oct 17 12:13:30 2008 +0200
39162
39163     mgcoge: Second Flash on CS5 not on CS1
39164
39165     Signed-off-by: Heiko Schocher <hs@denx.de>
39166
39167 commit 76da19df5b8e186d269f29190696bd31fb6c836b
39168 Author: Kumar Gala <galak@kernel.crashing.org>
39169 Date:   Thu Oct 16 21:52:08 2008 -0500
39170
39171     Added arch_lmb_reserve to allow arch specific memory regions protection
39172
39173     Each architecture has different ways of determine what regions of memory
39174     might not be valid to get overwritten when we boot.  This provides a
39175     hook to allow them to reserve any regions they care about.  Currently
39176     only ppc, m68k and sparc need/use this.
39177
39178     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39179
39180 commit e02d4a9904c8f36395994c0c81469d552b82f5ea
39181 Author: Heiko Schocher <hs@denx.de>
39182 Date:   Thu Oct 16 16:32:35 2008 +0200
39183
39184     mgcoge: added CONFIG_FIT to support the new u-boot image format
39185
39186     Signed-off-by: Heiko Schocher <hs@denx.de>
39187
39188 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
39189 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39190 Date:   Thu Oct 16 15:01:15 2008 +0200
39191
39192     rename CFG_ macros to CONFIG_SYS
39193
39194     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39195
39196 commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
39197 Author: Kumar Gala <galak@kernel.crashing.org>
39198 Date:   Mon Oct 13 14:12:55 2008 -0500
39199
39200     74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
39201
39202     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39203
39204 commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
39205 Author: Kumar Gala <galak@kernel.crashing.org>
39206 Date:   Tue Sep 23 10:05:02 2008 -0500
39207
39208     Expose command table search for sub-commands
39209
39210     Sub-command can benefit from using the same table and search functions
39211     that top level commands have.  Expose this functionality by refactoring
39212     find_cmd() and introducing find_cmd_tbl() that sub-command processing
39213     can call.
39214
39215     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39216
39217 commit f7e51b27508446f8cae3927975817137979ad5e8
39218 Author: Heiko Schocher <hs@denx.de>
39219 Date:   Wed Oct 15 09:41:33 2008 +0200
39220
39221     mgsuvd, mgcoge: added BOOTCOUNT feature.
39222
39223     Signed-off-by: Heiko Schocher <hs@denx.de>
39224
39225 commit 8f64da7f83b553889bc08400c97047998382e9d2
39226 Author: Heiko Schocher <hs@denx.de>
39227 Date:   Wed Oct 15 09:41:00 2008 +0200
39228
39229     mgcoge, mgsuvd: added support for the IVM EEprom.
39230
39231     The EEprom contains some Manufacturerinformation,
39232     which are read from u-boot at boot time, and saved
39233     in same hush shell variables.
39234
39235     Signed-off-by: Heiko Schocher <hs@denx.de>
39236
39237 commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
39238 Author: Heiko Schocher <hs@denx.de>
39239 Date:   Wed Oct 15 09:40:28 2008 +0200
39240
39241     hush: add showvar command for hush shell.
39242
39243     This new command shows the local variables defined in
39244     the hush shell:
39245
39246     => help showvar
39247     showvar
39248         - print values of all hushshell variables
39249     showvar name ...
39250         - print value of hushshell variable 'name'
39251
39252     Also make the set_local_var() and unset_local_var ()
39253     no longer static, so it is possible to define local
39254     hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
39255     is defined, u-boot calls hush_init_var (), where
39256     boardspecific code can define local hush shell
39257     variables at boottime.
39258
39259     Signed-off-by: Heiko Schocher <hs@denx.de>
39260
39261 commit 67b23a322848d828a5e45c0567b72762bfde7abf
39262 Author: Heiko Schocher <hs@denx.de>
39263 Date:   Wed Oct 15 09:39:47 2008 +0200
39264
39265     I2C: adding new "i2c bus" Command to the I2C Subsystem.
39266
39267     With this Command it is possible to add new I2C Busses,
39268     which are behind 1 .. n I2C Muxes. Details see README.
39269
39270     Signed-off-by: Heiko Schocher <hs@denx.de>
39271
39272 commit c24853644ddd2dd2e4246b5854a93e6254a14092
39273 Author: Heiko Schocher <hs@denx.de>
39274 Date:   Wed Oct 15 09:39:08 2008 +0200
39275
39276     mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
39277
39278     As documented in doc/I2C_Edge_Conditions, adding a
39279     board specific deblocking mechanism via CFG_I2C_INIT_BOARD
39280     for the mgcoge and mgsuvd board.
39281
39282     This code was originally written by Keymile in association
39283     with Anatech and Atmel in 1998. The Code toggels the SCL
39284     until the SCA line goes to HIGH (max. 16 times).
39285     And after this, a start condition is sent.
39286
39287     This is another approach to deblock the I2C Bus. The
39288     soft I2C driver actually sends 9 clocks with SDA High,
39289     and then a stop at the end, to deblock the I2C Bus.
39290
39291     Maybe we should use the approach from Keymile as
39292     the new standard?
39293
39294     Signed-off-by: Heiko Schocher <hs@denx.de>
39295
39296 commit 4ca107effebfbabac1057c39632105dacef95957
39297 Author: Heiko Schocher <hs@denx.de>
39298 Date:   Wed Oct 15 09:38:38 2008 +0200
39299
39300     soft_i2c: Add CFG_I2C_INIT_BOARD option
39301
39302     This patch adds the option for a boardspecific
39303     I2C deblocking mechanism for the soft i2c driver.
39304
39305     Signed-off-by: Heiko Schocher <hs@denx.de>
39306
39307 commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
39308 Author: Heiko Schocher <hs@denx.de>
39309 Date:   Wed Oct 15 09:38:07 2008 +0200
39310
39311     mgcoge, mgsuvd: add DTT (LM75) support.
39312
39313     Signed-off-by: Heiko Schocher <hs@denx.de>
39314
39315 commit 8e442df438ab677057571e3ac01846bff7719bce
39316 Author: Heiko Schocher <hs@denx.de>
39317 Date:   Wed Oct 15 09:37:34 2008 +0200
39318
39319     lm75: Make the LM75 MULTI_BUS compatible.
39320
39321     Signed-off-by: Heiko Schocher <hs@denx.de>
39322
39323 commit 12f1678127c1df2b2878ba93c88948bedc060775
39324 Author: Heiko Schocher <hs@denx.de>
39325 Date:   Wed Oct 15 09:37:04 2008 +0200
39326
39327     lm75: fix Codingstyle issues.
39328
39329     Signed-off-by: Heiko Schocher <hs@denx.de>
39330
39331 commit f2202450c75ba6934b356024101500ddcde6e2a6
39332 Author: Heiko Schocher <hs@denx.de>
39333 Date:   Wed Oct 15 09:36:33 2008 +0200
39334
39335     mgcoge, mgsuvd: added EEprom support.
39336
39337     Signed-off-by: Heiko Schocher <hs@denx.de>
39338
39339 commit 9661bf9d120f760238b2a073b84f2baf05010057
39340 Author: Heiko Schocher <hs@denx.de>
39341 Date:   Wed Oct 15 09:36:03 2008 +0200
39342
39343     mgcoge, mgsuvd: add I2C support.
39344
39345     Signed-off-by: Heiko Schocher <hs@denx.de>
39346
39347 commit 98aed379586a155292efbf3209356836584b601c
39348 Author: Heiko Schocher <hs@denx.de>
39349 Date:   Wed Oct 15 09:35:26 2008 +0200
39350
39351     soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
39352
39353     This patch fixes the following warnings, when using
39354     the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
39355     systems:
39356
39357     soft_i2c.c: In function 'send_reset':
39358     soft_i2c.c:93: warning: unused variable 'immr'
39359     soft_i2c.c: In function 'send_start':
39360     soft_i2c.c:124: warning: unused variable 'immr'
39361     soft_i2c.c: In function 'send_stop':
39362     soft_i2c.c:146: warning: unused variable 'immr'
39363     soft_i2c.c: In function 'send_ack':
39364     soft_i2c.c:171: warning: unused variable 'immr'
39365     soft_i2c.c: In function 'write_byte':
39366     soft_i2c.c:196: warning: unused variable 'immr'
39367     soft_i2c.c: In function 'read_byte':
39368     soft_i2c.c:244: warning: unused variable 'immr'
39369
39370     Signed-off-by: Heiko Schocher <hs@denx.de>
39371
39372 commit 799b784aa00cb03a352847ab9f9acdde79b72d21
39373 Author: Heiko Schocher <hs@denx.de>
39374 Date:   Wed Oct 15 09:34:45 2008 +0200
39375
39376     i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
39377
39378     Signed-off-by: Heiko Schocher <hs@denx.de>
39379
39380 commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
39381 Author: Heiko Schocher <hs@denx.de>
39382 Date:   Wed Oct 15 09:34:05 2008 +0200
39383
39384     mgcoge: fix Coding Style issues.
39385
39386     Signed-off-by: Heiko Schocher <hs@denx.de>
39387
39388 commit e43a27c49712203fe8848a17714330623edfb2eb
39389 Author: Heiko Schocher <hs@denx.de>
39390 Date:   Wed Oct 15 09:33:30 2008 +0200
39391
39392     I2C: add new command i2c reset.
39393
39394     If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
39395     it is not possible to get out of this, until the
39396     complete Hardware gets a reset. This new commando
39397     calls again i2c_init (and that calls i2c_init_board
39398     if defined), which will deblock the I2C Bus.
39399
39400     Signed-off-by: Heiko Schocher <hs@denx.de>
39401     Signed-off-by: Wolfgang Denk <wd@denx.de>
39402
39403 commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
39404 Author: Heiko Schocher <hs@denx.de>
39405 Date:   Wed Oct 15 09:32:25 2008 +0200
39406
39407     mgsuvd, mgcoge: move this 2 boards in one dir.
39408
39409     There are some more extensions, which are for both boards
39410     and some more boards from this manufacturer will follow soon.
39411
39412     Signed-off-by: Heiko Schocher <hs@denx.de>
39413     Signed-off-by: Wolfgang Denk <wd@denx.de>
39414
39415 commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
39416 Author: Dirk Eibach <eibach@gdsys.de>
39417 Date:   Wed Oct 8 13:44:27 2008 +0200
39418
39419     hwmon: Add LM63 support
39420
39421     This patch adds support for the National LM63 temperature
39422     sensor with integrated fan control. It's used on the GDSys
39423     Neo board (405EP) which will be submitted later.
39424
39425     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
39426     Acked-by: Stefan Roese <sr@denx.de>
39427
39428 commit 7ba890bf2f2b92831420243c058951aa831119fd
39429 Author: Kyungmin Park <kmpark@infradead.org>
39430 Date:   Wed Oct 8 11:01:17 2008 +0900
39431
39432     Add Red Black Tree support
39433
39434     Now it's used at UBI module. Of course other modules can use it.
39435     If you want to use it, please define CONFIG_RBTREE
39436
39437     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
39438
39439 commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
39440 Author: richardretanubun <richardretanubun@ruggedcom.com>
39441 Date:   Mon Oct 6 16:10:53 2008 -0400
39442
39443     CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
39444
39445     Added support for CONFIG_EFI_PARTITION to ext2 commands.
39446     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
39447
39448 commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
39449 Author: richardretanubun <richardretanubun@ruggedcom.com>
39450 Date:   Fri Sep 26 11:13:22 2008 -0400
39451
39452     Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
39453
39454     The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
39455     of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
39456
39457     Based on linux/fs/partitions/efi.[ch]
39458
39459     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
39460
39461 commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
39462 Author: Bartlomiej Sieka <tur@semihalf.com>
39463 Date:   Wed Oct 1 15:26:32 2008 +0200
39464
39465     FIT: output image load address for type 'firmware', fix message while there
39466
39467     Now that the auto-update feature uses the 'firmware' type for updates, it is
39468     useful to inspect the load address of such images.
39469
39470     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39471
39472 commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
39473 Author: Bartlomiej Sieka <tur@semihalf.com>
39474 Date:   Wed Oct 1 15:26:31 2008 +0200
39475
39476     Automatic software update from TFTP server
39477
39478     The auto-update feature allows to automatically download software updates
39479     from a TFTP server and store them in Flash memory during boot. Updates are
39480     contained in a FIT file and protected with SHA-1 checksum.
39481
39482     More detailed description can be found in doc/README.update.
39483
39484     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
39485     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39486
39487 commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
39488 Author: Bartlomiej Sieka <tur@semihalf.com>
39489 Date:   Wed Oct 1 15:26:27 2008 +0200
39490
39491     flash: factor out adjusting of Flash address to the end of sector
39492
39493     The upcoming automatic update feature needs the ability to adjust an
39494     address within Flash to the end of its respective sector. Factor out
39495     this functionality to a new function flash_sect_roundb().
39496
39497     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
39498     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39499     Signed-off-by: Stefan Roese <sr@denx.de>
39500
39501 commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
39502 Author: Bartlomiej Sieka <tur@semihalf.com>
39503 Date:   Wed Oct 1 15:26:29 2008 +0200
39504
39505     net: Make TFTP server timeout configurable
39506
39507     There are two aspects of a TFTP transfer involving timeouts:
39508     1. timeout waiting for initial server reply after sending RRQ
39509     2. timeouts while transferring actual data from the server
39510
39511     Since the upcoming auto-update feature attempts a TFTP download during each
39512     boot, it is undesirable to have a long delay when the TFTP server is not
39513     available. Thus, this commit makes the server timeout (1.) configurable by two
39514     global variables:
39515
39516     TftpRRQTimeoutMSecs
39517     TftpRRQTimeoutCountMax
39518
39519     TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
39520     server, TftpRRQTimeoutCountMax overrides default number of connection retries.
39521     The total delay when trying to download a file from a non-existing TFTP server
39522     is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
39523
39524     Timeouts during file transfers (2.) are unaffected.
39525
39526     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
39527     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39528     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39529
39530 commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
39531 Author: Bartlomiej Sieka <tur@semihalf.com>
39532 Date:   Wed Oct 1 15:26:28 2008 +0200
39533
39534     net: express the first argument to NetSetTimeout() in milliseconds
39535
39536     Enforce millisecond semantics of the first argument to NetSetTimeout() --
39537     the change is transparent for well-behaving boards (CFG_HZ == 1000 and
39538     get_timer() countiing in milliseconds).
39539
39540     Rationale for this patch is to enable millisecond granularity for
39541     network-related timeouts, which is needed for the upcoming automatic
39542     software update feature.
39543
39544     Summary of changes:
39545     - do not scale the first argument to NetSetTimeout() by CFG_HZ
39546     - change timeout values used in the networking code to milliseconds
39547
39548     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
39549     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39550     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39551
39552 commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
39553 Author: richardretanubun <richardretanubun@ruggedcom.com>
39554 Date:   Mon Sep 29 18:28:23 2008 -0400
39555
39556     Adds two more ethernet interface to 83xx
39557
39558     Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
39559     Six eth interface is chosen because the platform I am using combines
39560     UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
39561
39562     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
39563     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39564
39565 commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
39566 Author: Haiying Wang <Haiying.Wang@freescale.com>
39567 Date:   Wed Sep 24 11:42:12 2008 -0500
39568
39569     Change UEC PHY interface to RGMII on MPC8568MDS
39570
39571     Change UEC phy interface from GMII to RGMII on MPC8568MDS board
39572
39573     Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
39574     but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
39575
39576     Now both UEC1 and UEC2 can work properly under u-boot.
39577
39578     It is also in consistent with the kernel setting for 8568 UEC phy interface.
39579
39580     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39581     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39582
39583 commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
39584 Author: Wolfgang Denk <wd@denx.de>
39585 Date:   Sat Oct 18 21:30:31 2008 +0200
39586
39587     Prepare v2008.10 release: update CHANGELOG & Makefile
39588
39589     Signed-off-by: Wolfgang Denk <wd@denx.de>
39590
39591 commit f7a35a60cf45491871a5c28e9ad24db005487857
39592 Author: Heiko Schocher <hs@denx.de>
39593 Date:   Fri Oct 17 18:24:06 2008 +0200
39594
39595     mgcoge: add redundant environment sector
39596
39597     Signed-off-by: Heiko Schocher <hs@denx.de>
39598     Signed-off-by: Wolfgang Denk <wd@denx.de>
39599
39600 commit c2537ee85954af9d036b18b644f3e18d837bf4a5
39601 Author: Heiko Schocher <hs@denx.de>
39602 Date:   Fri Oct 17 18:23:27 2008 +0200
39603
39604     mgsuvd: update size of environment
39605
39606     Signed-off-by: Heiko Schocher <hs@denx.de>
39607
39608 commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
39609 Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
39610 Date:   Thu Oct 16 13:38:00 2008 -0500
39611
39612     83xx NAND boot: wait for LTESR[CC]
39613
39614     At least some revisions of the 8313, and possibly other chips, do not
39615     wait for all pages of the initial 4K NAND region to be loaded before
39616     beginning execution; thus, we wait for it before branching out of the
39617     first NAND page.
39618
39619     This fixes warm reset problems when booting from NAND on 8313erdb.
39620
39621     Signed-off-by: Scott Wood <scottwood@freescale.com>
39622     Acked-by: Kim Phillips <kim.phillips@freescale.com>
39623
39624 commit bf29e0ea0af03d593c64614136acc723a7a022a2
39625 Author: Yuri Tikhonov <yur@emcraft.com>
39626 Date:   Fri Oct 17 12:54:18 2008 +0200
39627
39628     ppc4xx: PPC44x MQ initialization
39629
39630     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
39631     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
39632     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
39633
39634     Previously the appropriate initialization had been made in Linux, by the
39635     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
39636     registers after normal operation has begun is not supported and could
39637     have unpredictable results.
39638
39639     Comment from Stefan: This patch doesn't change the resulting value of the
39640     MQ registers. It explicitly sets/clears all bits to the desired state which
39641     better documents the resulting register value instead of relying on pre-set
39642     default values.
39643
39644     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
39645     Signed-off-by: Stefan Roese <sr@denx.de>
39646
39647 commit ec081c2c190148b374e86a795fb6b1c49caeb549
39648 Author: Stefan Roese <sr@denx.de>
39649 Date:   Fri Oct 17 12:51:46 2008 +0200
39650
39651     ppc4xx: PPC44x MQ initialization
39652
39653     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
39654     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
39655     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
39656
39657     Previously the appropriate initialization had been made in Linux, by the
39658     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
39659     registers after normal operation has begun is not supported and could
39660     have unpredictable results.
39661
39662     Comment from Stefan: This patch doesn't change the resulting value of the
39663     MQ registers. It explicitly sets/clears all bits to the desired state which
39664     better documents the resulting register value instead of relying on pre-set
39665     default values.
39666
39667     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
39668     Signed-off-by: Stefan Roese <sr@denx.de>
39669
39670 commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
39671 Author: Kumar Gala <galak@kernel.crashing.org>
39672 Date:   Thu Oct 16 21:58:50 2008 -0500
39673
39674     85xx: Using proper I2C source clock divider for MPC8544
39675
39676     The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
39677     bit 26, instead it should be bit 28.  This caused in incorrect
39678     interpretation of the i2c_clk which is the same as the SEC clk on
39679     MPC8544.  The SEC clk is controlled by cfg_sec_freq that is reported
39680     in PORDEVSR2.
39681
39682     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39683
39684 commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
39685 Author: Kumar Gala <galak@kernel.crashing.org>
39686 Date:   Thu Oct 16 21:58:49 2008 -0500
39687
39688     Revert "85xx: Using proper I2C source clock divider for MPC8544"
39689
39690     This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
39691
39692     The fix introduced by this patch is not correct.  The problem is
39693     that the documentation is not correct for the MPC8544 with regards
39694     to which bit in PORDEVSR2 is for the SEC_CFG.
39695
39696     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39697
39698 commit 2179c4766bffeece98e5e92040629a96c97e230c
39699 Author: Kumar Gala <galak@kernel.crashing.org>
39700 Date:   Wed Oct 15 10:19:41 2008 -0500
39701
39702     85xx: Fix compile warning
39703
39704     mpc8536ds.c: In function 'is_sata_supported':
39705     mpc8536ds.c:614: warning: unused variable 'devdisr'
39706
39707     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39708
39709 commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
39710 Author: Jason Jin <Jason.jin@freescale.com>
39711 Date:   Wed Oct 15 10:40:24 2008 +0800
39712
39713     Fix the function conflict in x86emu when DEBUG is on
39714
39715     The function parse_line() in common/main.c was exposed globally by commit
39716     6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
39717     name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
39718     This patch fix this by renaming the function in the debug.c file.
39719
39720     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39721
39722 commit b4dbacf69a669a17487054552fc2761149dd6767
39723 Author: Wolfgang Denk <wd@denx.de>
39724 Date:   Wed Oct 15 15:50:45 2008 +0200
39725
39726     Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
39727
39728     Signed-off-by: Wolfgang Denk <wd@denx.de>
39729
39730 commit 374b9038293d01d8744a46af9b7854a6fd99b228
39731 Author: Heiko Schocher <hs@denx.de>
39732 Date:   Wed Oct 15 09:51:19 2008 +0200
39733
39734     Fix compiler warning in lib_ppc/board.c
39735
39736     Fix compiler warning introduced by commit 0f8cbc18
39737
39738     Signed-off-by: Heiko Schocher <hs@denx.de>
39739     Signed-off-by: Wolfgang Denk <wd@denx.de>
39740
39741 commit 9724555755a6f1066636481b41f7094e0ce93a69
39742 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
39743 Date:   Thu Oct 9 10:29:14 2008 +0530
39744
39745     mpc83xx: wait till UPM completes the write to array
39746
39747     Reference manual states that MxMR[MAD] increment is the indication
39748     of write to UPM array is complete. Honour that. Also, make the dummy
39749     write explicit.
39750
39751     also fix the comment.
39752
39753     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
39754     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39755
39756 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
39757 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
39758 Date:   Wed Oct 8 18:12:20 2008 -0500
39759
39760     Remove unwanted ';' at end of define.
39761
39762     Currently this is not creating any problem. But it will result
39763     in compilation error when used as below.
39764
39765     printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
39766
39767     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
39768
39769     continuation of the theme based on git grep "^#define CFG_.*;$" include/
39770
39771     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39772
39773 commit b2934a56650e9a6c54432f9ce6dc36757967385e
39774 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
39775 Date:   Mon Oct 6 10:53:59 2008 -0400
39776
39777     ARM DaVinci: Add maintainer information for SFFSDR board.
39778
39779     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
39780
39781 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
39782 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39783 Date:   Sat Oct 4 19:26:16 2008 +0200
39784
39785     api: fix type mismatch
39786
39787     This patch fixes a type mismatch and thus removes a compiler
39788     warning when compiling with CONFIG_API on powerpc.
39789
39790     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39791
39792 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
39793 Author: Peter Tyser <ptyser@xes-inc.com>
39794 Date:   Wed Oct 1 12:25:04 2008 -0500
39795
39796     cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
39797
39798     Original code displayed:
39799      => help i2c
39800      i2c i2c speed [speed] - show or set I2C bus speed
39801      i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
39802      ...
39803
39804     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
39805
39806 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
39807 Author: Wolfgang Denk <wd@denx.de>
39808 Date:   Tue Oct 14 22:13:41 2008 +0200
39809
39810     Update CHANGELOG
39811
39812     Signed-off-by: Wolfgang Denk <wd@denx.de>
39813
39814 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
39815 Author: Jason Jin <Jason.jin@freescale.com>
39816 Date:   Fri Oct 10 11:41:01 2008 +0800
39817
39818     Do not init SATA when disabled on 8536DS.
39819
39820     SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
39821     driver still try to access the SATA registers, the cpu will hangup.
39822     This patch try to fix this by reading the serdes status before the SATA
39823     initialize.
39824
39825     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39826     Acked-by: Andy Fleming <afleming@freescale.com>
39827
39828 commit 9dbc366744960013965fce8851035b6141f3b3ae
39829 Author: Remy Bohmer <linux@bohmer.net>
39830 Date:   Fri Oct 10 10:23:22 2008 +0200
39831
39832     The PIPE_INTERRUPT flag is used wrong
39833
39834     At a lot of places in the code the PIPE_INTERRUPT flags and friends
39835     are used wrong. The wrong bits are compared to this flag resulting
39836     in wrong conditions. Also there are macros that should be used for
39837     PIPE_* flags.
39838     This patch tries to fix them all, however, I was not able to test the
39839     changes, because I do not have any of these boards.
39840
39841     Review required!
39842
39843     Signed-off-by: Remy Bohmer <linux@bohmer.net>
39844     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39845
39846 commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
39847 Author: Remy Bohmer <linux@bohmer.net>
39848 Date:   Fri Oct 10 10:23:21 2008 +0200
39849
39850     fix USB initialisation procedure
39851
39852     The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
39853     At some places directly 8,16,32,64 was used instead of the encoded
39854     value. Made a enum for the options to make this more clear and to help
39855     preventing similar errors in the future.
39856
39857     After fixing this bug it became clear that another bug existed where
39858     the 'pipe' is and-ed with PIPE_* flags, where it should have been
39859     'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
39860
39861     Also removed the triple 'get_device_descriptor' sequence, it has no use,
39862     and Windows nor Linux behaves that way.
39863     There is also a poll going on with a timeout when usb_control_msg() fails.
39864     However, the poll is useless, because the flag will never be set on a error,
39865     because there is no code that runs in a parallel that can set this flag.
39866     Changed this to something more logical.
39867
39868     Tested on AT91SAM9261ek and compared the flow on the USB bus to what
39869     Linux is doing. There is no difference anymore in the early initialisation
39870     sequence.
39871
39872     Signed-off-by: Remy Bohmer <linux@bohmer.net>
39873     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39874
39875 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
39876 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
39877 Date:   Fri Oct 3 00:03:55 2008 +0400
39878
39879     fsl_diu: fix alignment error that caused malloc corruption
39880
39881     When aligning malloc()ed screen_base, invalid offset was added.
39882     This not only caused misaligned result (which did not cause hardware
39883     misbehaviour), but - worse - caused screen_base + smem_len to
39884     be out of malloc()ed space, which in turn caused breakage of
39885     futher malloc()/free() operation.
39886
39887     This patch fixes screen_base alignment.
39888
39889     Also this patch makes memset() that cleans framebuffer to be executed
39890     on first initialization of diu, not only on re-initialization. It looks
39891     correct to clean the framebuffer instead of displaying random garbage;
39892     I believe that was disabled only because that memset caused breakage
39893     of malloc/free described above - which no longer happens with the fix
39894     described above.
39895
39896     Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
39897
39898 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
39899 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39900 Date:   Wed Sep 24 10:29:37 2008 +0200
39901
39902     api: Fix building with CONFIG_API
39903
39904     This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
39905
39906     USB_MAX_STOR_DEV is defined in include/usb.h, but
39907     needed in api/api_storage.c.
39908
39909     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39910
39911 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
39912 Author: Peter Tyser <ptyser@xes-inc.com>
39913 Date:   Tue Sep 23 12:39:40 2008 -0500
39914
39915     Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
39916
39917     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
39918
39919 commit 81e612014c40c922ec35488d17c504d4e9286f06
39920 Author: Peter Tyser <ptyser@xes-inc.com>
39921 Date:   Tue Sep 23 12:38:42 2008 -0500
39922
39923     Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
39924
39925     The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
39926     CFG_EEPROM_PAGE_WRITE_BITS in various temperature
39927     sensor drivers are not necessary
39928
39929     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
39930
39931 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
39932 Author: Mike Frysinger <vapier@gentoo.org>
39933 Date:   Tue Oct 14 07:04:38 2008 -0400
39934
39935     cmd_spi: remove broken signed casting for display
39936
39937     Since we're working with unsigned data, you can't apply a signed pointer
39938     cast and then attempt to print the result.  Otherwise you get wrong output
39939     when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
39940
39941     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39942
39943 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
39944 Author: Mike Frysinger <vapier@gentoo.org>
39945 Date:   Tue Oct 14 07:05:24 2008 -0400
39946
39947     strings cmd: drop old CONFIG_CFG_STRINGS define
39948
39949     We don't need CONFIG_CFG_STRINGS anymore now that we have the define
39950     CONFIG_CMD_STRINGS and Makefile control.
39951
39952     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39953
39954 commit fecb5ade3b37f62981f2b05b621005850173aaa9
39955 Author: Jason Jin <Jason.jin@freescale.com>
39956 Date:   Fri Sep 19 17:32:49 2008 +0800
39957
39958     Fix the NAND size overflow issue.
39959
39960     When the total size of all NAND devices exceeds 4 GiB, the size  will
39961     overflow. This patch tries to fix this.
39962
39963     Note that we still have a problem when a single NAND device is bigger
39964     than 4 GiB: then the overflow would actually happen earlier, i. e.
39965     when storing the size in nand_info[].size, as nand_info[].size is an
39966     "u_int32_t".
39967
39968     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39969     Signed-off-by: Wolfgang Denk <wd@denx.de>
39970
39971 commit 30f574717277238b9014b8136c90eea77196490f
39972 Author: Louis Su <louis@asix.com.tw>
39973 Date:   Wed Jul 9 11:01:37 2008 +0800
39974
39975     AX88180: new gigabit network driver
39976
39977     Signed-off-by: Louis Su <louis@asix.com.tw>
39978     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39979
39980 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
39981 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
39982 Date:   Tue Aug 19 16:07:03 2008 +0200
39983
39984     enable 10/100M at VSC8601 at tsec driver
39985
39986     Currently VSC8601 doesn't link with 10/100M partners if the
39987     EEPROM/Strapping is not set up.
39988     Setting the auto-neg register fixes this.
39989
39990     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
39991     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39992
39993 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
39994 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
39995 Date:   Tue Sep 30 15:02:53 2008 +0900
39996
39997     net: ne2000: Divided a function of NE2000 driver
39998
39999     get_prom function was used __attriute__ , but it is not enable.
40000     ax88796.o does not do link besides ne2000.o. When ld is carried
40001     out, get_prom function of ax88796.c is ignored.
40002     This problem is a thing by specifications of ld.
40003     I checked and test this patch on SuperH and MIPS.
40004
40005     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40006     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40007
40008 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
40009 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40010 Date:   Tue Oct 14 11:10:59 2008 +0900
40011
40012     sh: rsk7203: Add smc911x driver support to board config file
40013
40014     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40015     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40016
40017 commit cae6f909baf86357b3c0bd01acfc414348c4d175
40018 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40019 Date:   Thu Oct 9 13:54:33 2008 +0900
40020
40021     sh: Fix cannot execute a stand-alone application
40022
40023     Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
40024
40025     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40026     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40027
40028 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
40029 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40030 Date:   Wed Oct 8 23:38:00 2008 -0500
40031
40032     fsl_pci_init do not scan bus when configured as an end-point
40033
40034     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40035     Acked-by: Andy Fleming <afleming@freescale.com>
40036
40037 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
40038 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
40039 Date:   Tue Sep 16 17:07:53 2008 -0400
40040
40041     ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
40042
40043     This is no longer necessary now that the GD_FLG_RELOC flag is set for
40044     all ARM boards.
40045
40046     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
40047
40048 commit d977a57356657ba241256231efca32828a5822f9
40049 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
40050 Date:   Sat Sep 13 10:04:32 2008 +0200
40051
40052     Fix lzma uncompress call (image_start wrongly used instead image_len)
40053
40054     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
40055
40056 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
40057 Author: Nick Spence <nick.spence@freescale.com>
40058 Date:   Thu Aug 28 14:09:15 2008 -0700
40059
40060     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
40061
40062     This is needed in unlock_ram_in_cache() because it is called from C and
40063     will corrupt the small data area anchor that is kept in R2.
40064
40065     lock_ram_in_cache() is modified similarly as good coding practice, but
40066     is not called from C.
40067
40068     Signed-off-by: Nick Spence <nick.spence@freescale.com>
40069
40070 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
40071 Author: Kumar Gala <galak@kernel.crashing.org>
40072 Date:   Tue Aug 19 15:05:34 2008 -0500
40073
40074     86xx: remove redudant code with lib_ppc/interrupts.c
40075
40076     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
40077     Not know how that happened, but there is no good reason for it.
40078
40079     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
40080     they exist.
40081
40082     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40083
40084 commit 0d01f66d235118515b5086b88f82498bc0695d6a
40085 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40086 Date:   Thu Oct 9 01:26:36 2008 -0500
40087
40088     CFI: cfi_flash write fix for AMD legacy
40089
40090     The flash_unlock_seq requires a sector for AMD_LEGACY.
40091     Fix a retcode check typeo.
40092
40093     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40094     Signed-off-by: Stefan Roese <sr@denx.de>
40095
40096 commit 542b385a620a1783454a00424930e51895f45073
40097 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40098 Date:   Tue Oct 7 13:13:10 2008 +0200
40099
40100     ppc4xx: Fix USB 2.0 phy reset sequence
40101
40102     This patch fixes USB 2.0 communication issues on some DU440 boards.
40103
40104     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40105     Signed-off-by: Stefan Roese <sr@denx.de>
40106
40107 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
40108 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40109 Date:   Tue Oct 7 13:13:09 2008 +0200
40110
40111     ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
40112
40113     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40114     Signed-off-by: Stefan Roese <sr@denx.de>
40115
40116 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
40117 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40118 Date:   Tue Oct 7 13:13:08 2008 +0200
40119
40120     ppc4xx: Fix DU440 GPIO configuration
40121
40122     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40123     Signed-off-by: Stefan Roese <sr@denx.de>
40124
40125 commit 35dd025c70fcc4389317db2f2a9d14795172137d
40126 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40127 Date:   Tue Oct 7 13:13:07 2008 +0200
40128
40129     ppc4xx: Update DU440 config
40130
40131     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40132     Signed-off-by: Stefan Roese <sr@denx.de>
40133
40134 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
40135 Author: Kumar Gala <galak@kernel.crashing.org>
40136 Date:   Wed Oct 8 15:36:39 2008 -0500
40137
40138     MPC8572DS: Fix compile warnings
40139
40140     Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
40141     compile warnings:
40142
40143     cmd_i2c.c:112: warning: missing braces around initializer
40144     cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
40145
40146     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40147
40148 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
40149 Author: Wolfgang Grandegger <wg@grandegger.com>
40150 Date:   Tue Sep 30 10:55:57 2008 +0200
40151
40152     85xx: Using proper I2C source clock divider for MPC8544
40153
40154     Measurements with our MPC8544 board showed that the I2C bus frequency
40155     is wrong by a factor of 1.5. Obviously, the interpretation of the
40156     MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
40157     correct. There seems to be an error in the 8544 RM.
40158
40159     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
40160
40161 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
40162 Author: Rafal Czubak <rcz@semihalf.com>
40163 Date:   Wed Oct 8 13:41:30 2008 +0200
40164
40165     FSL: Fix get_cpu_board_revision() return value.
40166
40167     get_cpu_board_revision() returned board revision based on information stored
40168     in global static struct eeprom. It should instead use one from local struct
40169     board_eeprom, to which the data is actually read from EEPROM. The bug led to
40170     system hang after printing L1 cache information on U-Boot startup. The problem
40171     was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
40172     boards using CFG_I2C_EEPROM_CCID.
40173
40174     The change has been successfully tested on MPC8555CDS system.
40175
40176     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
40177
40178 commit 747f316cca484ed627a97dd3391febabce384186
40179 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40180 Date:   Tue Sep 30 20:08:49 2008 +0200
40181
40182     update uImage FIT multi documentation
40183
40184     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40185
40186 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
40187 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40188 Date:   Tue Sep 30 20:08:36 2008 +0200
40189
40190     move README.imx31 to doc/ and merge with README.mx31
40191
40192     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40193
40194 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
40195 Author: Guennadi Liakhovetski <lg@denx.de>
40196 Date:   Thu Sep 25 20:54:37 2008 +0200
40197
40198     i.MX31: switch to CFG_HZ=1000
40199
40200     Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
40201     cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
40202     provides 2% or 0.4% precision depending on the
40203     CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
40204     boot-delay.
40205
40206     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40207
40208 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
40209 Author: gnusercn <gnusercn@gmail.com>
40210 Date:   Wed Oct 8 18:58:58 2008 +0200
40211
40212     Fix bug: in arch-arm, env_get_char dose not work fine
40213
40214     due to the arm implementation which supposed that U-Boot is in RAM
40215     when we jump to start_armboot
40216
40217     Signed-off-by: gnusercn <gnusercn@gmail.com>
40218     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40219
40220 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
40221 Author: Adam Graham <agraham@amcc.com>
40222 Date:   Mon Oct 6 10:16:13 2008 -0700
40223
40224     ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
40225
40226     After changing SDRAM_CLKTR phase value rerun the memory preload
40227     initialization sequence (INITPLR) to reset and relock the memory
40228     DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
40229     adjustment effects the phase relationship of the internal, to the
40230     PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
40231
40232     Signed-off-by: Adam Graham <agraham@amcc.com>
40233     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
40234     Signed-off-by: Stefan Roese <sr@denx.de>
40235
40236 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
40237 Author: Haiying Wang <Haiying.Wang@freescale.com>
40238 Date:   Fri Oct 3 11:48:03 2008 -0400
40239
40240     Remove redundant #define for MPC8536DS
40241
40242     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
40243
40244 commit 445a7b38308eb05b41de74165b20855db58c7ee5
40245 Author: Haiying Wang <Haiying.Wang@freescale.com>
40246 Date:   Fri Oct 3 11:47:30 2008 -0400
40247
40248     Add ID EEPROM support for MPC8572DS
40249
40250     The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
40251     system information like mac addresses etc. This patch enables it.
40252
40253     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
40254
40255 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
40256 Author: Haiying Wang <Haiying.Wang@freescale.com>
40257 Date:   Fri Oct 3 11:46:59 2008 -0400
40258
40259     Minor fixes for I2C address on MPC8572DS
40260
40261     MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
40262     according to the board spec, and adds the 2nd i2c bus offset.
40263
40264     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
40265
40266 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
40267 Author: Jason Jin <Jason.jin@freescale.com>
40268 Date:   Sat Sep 27 14:40:57 2008 +0800
40269
40270     Fix the incorrect DDR clk freq reporting on 8536DS
40271
40272     On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
40273     The display is still sync mode DDR freq. This patch try to fix
40274     this. The display DDR freq is now the actual freq in both
40275     sync and async mode.
40276
40277     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
40278
40279 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
40280 Author: Kumar Gala <galak@kernel.crashing.org>
40281 Date:   Tue Oct 7 10:28:46 2008 -0500
40282
40283     85xx: Remove setting of *cache-line-size in device trees
40284
40285     ePAPR says if the *cache-block-size is the same as *cache-line-size
40286     than we don't need the *cache-line-size property.
40287
40288     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40289
40290 commit a69a42338dd25408f9fd5390a83bc501749c7e1b
40291 Author: Mark Jackson <mpfj@mimc.co.uk>
40292 Date:   Fri Oct 3 11:48:57 2008 +0100
40293
40294     MIMC200 board now uses CONFIG_DISABLE_CONSOLE
40295
40296     Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE.
40297     Also fixed default uImage location.
40298
40299     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
40300     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40301
40302 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
40303 Author: Gerald Van Baren <vanbaren@cideas.com>
40304 Date:   Sat Oct 4 07:56:06 2008 -0400
40305
40306     libfdt: Fix error in documentation for fdt_get_alias_namelen()
40307
40308     Oops, screwed up the function name in the documenting comment for this
40309     function.  Trivial correction in this patch.
40310
40311     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
40312     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
40313
40314 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
40315 Author: David Gibson <david@gibson.dropbear.id.au>
40316 Date:   Wed Aug 20 16:55:14 2008 +1000
40317
40318     libfdt: Add function to explicitly expand aliases
40319
40320     Kumar has already added alias expansion to fdt_path_offset().
40321     However, in some circumstances it may be convenient for the user of
40322     libfdt to explicitly get the string expansion of an alias.  This patch
40323     adds a function to do this, fdt_get_alias(), and uses it to implement
40324     fdt_path_offset().
40325
40326     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
40327
40328 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
40329 Author: Mike Frysinger <vapier@gentoo.org>
40330 Date:   Thu Oct 2 01:55:38 2008 -0400
40331
40332     cfi_flash: do not reset flash when probe fails
40333
40334     The CFI flash driver starts at flash_init() which calls down into
40335     flash_get_size().  This starts by calling flash_detect_cfi().  If said
40336     function fails, flash_get_size() finishes by attempting to reset the
40337     flash.  Unfortunately, it does this with an info->portwidth set to 0x10
40338     which filters down into flash_make_cmd() and that happily smashes the
40339     stack by sticking info->portwidth bytes into a cfiword_t variable that
40340     lives on the stack.  On a 64bit system you probably won't notice, but
40341     killing the last 8 bytes on a 32bit system usually leads to a corrupt
40342     return address.  Which is what happens on a Blackfin system.
40343
40344     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40345     Signed-off-by: Stefan Roese <sr@denx.de>
40346
40347 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
40348 Author: Stefan Roese <sr@denx.de>
40349 Date:   Fri Sep 26 17:03:26 2008 +0200
40350
40351     fdt: Overwrite /chosen node in bootm if it already exists in the dtb
40352
40353     Set force parameter in fdt_chosen() call in do_bootm_linux() call.
40354     Without this, the chosen node is not overwritten if it already
40355     exists.
40356
40357     Signed-off-by: Stefan Roese <sr@denx.de>
40358
40359 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
40360 Author: Jon Loeliger <jdl@freescale.com>
40361 Date:   Thu Sep 25 11:02:17 2008 -0500
40362
40363     Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
40364
40365     Using Gcc 4.3 detected this problem:
40366
40367         ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
40368         ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
40369         occur when assuming that (X + c) < X is always false
40370
40371     To fix the problem, treat the offset as an unsigned int.
40372
40373     The problem report and proposed fix were provided
40374     by Steve Papacharalambous <stevep@freescale.com>.
40375
40376     Signed-off-by: Jon Loeliger <jdl@freescale.com>
40377
40378 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
40379 Author: David Gibson <david@gibson.dropbear.id.au>
40380 Date:   Fri Aug 29 14:19:13 2008 +1000
40381
40382     libfdt: Fix bugs in fdt_get_path()
40383
40384     The current implementation of fdt_get_path() has a couple of bugs,
40385     fixed by this patch.
40386
40387     First, contrary to its documentation, on success it returns the length
40388     of the node's path, rather than 0.  The testcase is correspondingly
40389     wrong, and the patch fixes this as well.
40390
40391     Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
40392     instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
40393     Specifically this happens when there is insufficient space even to
40394     hold the path's second last component.  This behaviour is corrected,
40395     and the testcase updated to check it.
40396
40397     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
40398
40399 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
40400 Author: Wolfgang Denk <wd@denx.de>
40401 Date:   Wed Oct 1 12:34:58 2008 +0200
40402
40403     TQM5200: enable support for ATAPI devices
40404
40405     Signed-off-by: Wolfgang Denk <wd@denx.de>
40406
40407 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
40408 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40409 Date:   Mon Sep 15 05:48:25 2008 +0200
40410
40411     Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
40412
40413     we need this due to the arm implementation which supposed that U-Boot
40414     is in RAM when we jump to start_armboot
40415
40416     This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
40417     in order to do it for all arm board
40418
40419     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40420
40421 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
40422 Author: Kim Phillips <kim.phillips@freescale.com>
40423 Date:   Wed Sep 24 08:46:25 2008 -0500
40424
40425     mpc83xx: don't disable autoboot
40426
40427     bootdelay set to -1 'permanently' disables autobooting, even if
40428     bootcmd is specified.  Change to a positive value to allow
40429     autobooting when a bootcmd is set.
40430
40431     Reported-by: Coray Tate <Coray.Tate@freescale.com>
40432     Cc: Scott Wood <scottwood@freescale.com>
40433     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40434
40435 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
40436 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40437 Date:   Wed Sep 24 10:42:15 2008 +0900
40438
40439     mpc83xx: Fix typo in include/mpc83xx.h
40440
40441     Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
40442
40443     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40444     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40445
40446 commit 162c41c03179727a1d14262f703c9a8bc40231fa
40447 Author: Kim Phillips <kim.phillips@freescale.com>
40448 Date:   Tue Sep 23 09:38:49 2008 -0500
40449
40450     mpc83xx: add h/w flash protection to board configs
40451
40452     the operating system may leave flash in a h/w locked state after writing.
40453     This allows u-boot to continue to write flash by enabling h/w unlocking
40454     by default.
40455
40456     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40457
40458 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
40459 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
40460 Date:   Thu Sep 11 21:35:36 2008 +0400
40461
40462     mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
40463
40464     The spd_dram code shifts the base address, then masks 20 bits, but
40465     forgets to shift the base address back. Fix this by just masking the
40466     base address correctly.
40467
40468     Found this bug while trying to relocate a DDR memory at the base != 0.
40469
40470     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
40471     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40472
40473 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
40474 Author: Stefan Roese <sr@denx.de>
40475 Date:   Mon Sep 22 16:10:43 2008 +0200
40476
40477     ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
40478
40479     Depending on the configuration jumper "SATA SELECT", U-Boot disabled
40480     either one PCIe node or the SATA node in the device tree blob. This
40481     patch removes the unnecessary and even confusing warning, when the node
40482     is not found at all.
40483
40484     Signed-off-by: Stefan Roese <sr@denx.de>
40485
40486 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
40487 Author: Remy Bohmer <linux@bohmer.net>
40488 Date:   Fri Sep 19 13:30:06 2008 +0200
40489
40490     Add missing device types to dev_print() in part.c
40491
40492     Signed-off-by: Remy Bohmer <linux@bohmer.net>
40493
40494 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
40495 Author: Wolfgang Denk <wd@denx.de>
40496 Date:   Mon Sep 22 22:23:06 2008 +0200
40497
40498     Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
40499     eventually leads to a machine check. This change assures that DPRAM
40500     is allocated only once in that case.
40501
40502     Signed-off-by: Gary Jennejohn <garyj@denx.de>
40503     Signed-off-by: Wolfgang Denk <wd@denx.de>
40504
40505 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
40506 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
40507 Date:   Wed Sep 17 17:57:34 2008 +0200
40508
40509     Fix Spartan-3 definitions.
40510
40511     A few Spartan-3 definitions erroneously use Spartan-3E size
40512     constants. This patch fixes them.
40513
40514     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
40515
40516 commit 28113e1f0da4146b823ffce37680d31d5685a60b
40517 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
40518 Date:   Wed Sep 17 17:41:58 2008 +0200
40519
40520     Remove duplicate Spartan-3E definition.
40521
40522     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
40523     Signed-off-by: Wolfgang Denk <wd@denx.de>
40524
40525 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
40526 Author: Anatolij Gustschin <agust@denx.de>
40527 Date:   Wed Sep 17 13:46:17 2008 +0200
40528
40529     socrates: change default mtest address range
40530
40531     Running mtest command on socrates without specifying
40532     an address range crashes the board. This patch changes
40533     default mtest address range to prevent this behavior.
40534
40535     Signed-off-by: Anatolij Gustschin <agust@denx.de>
40536
40537 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
40538 Author: Anatolij Gustschin <agust@denx.de>
40539 Date:   Wed Sep 17 12:34:45 2008 +0200
40540
40541     socrates: fix crash after relocation
40542
40543     Currently U-Boot crashes after relocation to RAM.
40544     Changing the CPO value of the DDR SDRAM TIMING_CFG_2
40545     register to READ_LAT + 1 (to the value it was before
40546     conversion of socrates to new DDR code) fixes the
40547     problem.
40548
40549     Signed-off-by: Anatolij Gustschin <agust@denx.de>
40550
40551 commit 562788b0a303f3528b920d81f547f5ca77ba528e
40552 Author: Anatolij Gustschin <agust@denx.de>
40553 Date:   Wed Sep 17 11:45:51 2008 +0200
40554
40555     socrates: fix SPD EEPROM address
40556
40557     Commit be0bd8234b9777ecd63c4c686f72af070d886517
40558     changed SPD EEPROM address to 0x51 and DDR SDRAM
40559     detection stopped working. Change this address
40560     back to 0x50.
40561
40562     Signed-off-by: Anatolij Gustschin <agust@denx.de>
40563
40564 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
40565 Author: Stefan Roese <sr@denx.de>
40566 Date:   Mon Sep 22 11:06:50 2008 +0200
40567
40568     Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
40569
40570     This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
40571
40572     Signed-off-by: Stefan Roese <sr@denx.de>
40573
40574 commit e58c41e26cf3c8accd60311be579f452e368e97e
40575 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40576 Date:   Thu Sep 18 20:13:08 2008 +0900
40577
40578     usb: Fix compile warning of r8a66597-hcd
40579
40580     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40581     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40582
40583 commit b5d10a13525c07ec6374adf840d7c87553b5f189
40584 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40585 Date:   Thu Sep 18 19:34:36 2008 +0900
40586
40587     sh: Fix compile warning
40588
40589     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40590
40591 commit 4a065abf926f128beb36d93449defa0d690e7fef
40592 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40593 Date:   Thu Sep 18 19:04:26 2008 +0900
40594
40595     sh: Add support watchdog for SH4A core
40596
40597     Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
40598     And fix some compile warning.
40599
40600     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40601
40602 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
40603 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40604 Date:   Wed Sep 17 11:45:26 2008 +0900
40605
40606     sh: Fix typo in SH serial driver
40607
40608     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40609     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40610
40611 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
40612 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40613 Date:   Wed Sep 17 11:08:36 2008 +0900
40614
40615     sh: Add support any page size and empty_zero_page to SH Linux uImage
40616
40617     Old U-Boot supported 4KB page size only. If this version, Linux
40618     kernel can not get command line from U-Boot.
40619     SH Linux kernel can change page size and empty_zero_page.
40620     This patch support this function and fix promlem.
40621
40622     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40623     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40624
40625 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
40626 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40627 Date:   Thu Aug 28 13:40:52 2008 +0900
40628
40629     sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
40630
40631     Add function of smc911x, pkt_data_pull and pkt_data_push.
40632
40633     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40634     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40635
40636 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
40637 Author: Wolfgang Denk <wd@denx.de>
40638 Date:   Thu Sep 18 13:57:32 2008 +0200
40639
40640     ADS5121: fix typo in "rootpath" default setting
40641
40642     Signed-off-by: Wolfgang Denk <wd@denx.de>
40643
40644 commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
40645 Author: Remy Bohmer <linux@bohmer.net>
40646 Date:   Tue Sep 16 14:55:44 2008 +0200
40647
40648     USB layer of U-Boot causes USB protocol errors while using USB memory sticks
40649
40650     There are several differences between Linux, Windows and U-boot for initialising the
40651     USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
40652     things really different, and some are wrong (compared to the USB standard).
40653
40654     This patch fixes some errors:
40655     * The NEW_init procedure that was already in the code is good, while the old procedure
40656       is wrong. See code comments for more info.
40657     * On a Control request the data returned by the device can be more than 8 bytes, while
40658       the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
40659       This results in a lot of USB sticks not being recognised, and the transmission ended
40660       frequently with a CTL:TIMEOUT Error.
40661     * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
40662
40663     Signed-off-by: Remy Bohmer <linux@bohmer.net>
40664     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40665
40666 commit 6f5794a6f78b313231256958fd73673c6aacc116
40667 Author: Remy Bohmer <linux@bohmer.net>
40668 Date:   Tue Sep 16 14:55:43 2008 +0200
40669
40670     Refactoring parts of the common USB OHCI code
40671
40672     This patch refactors some large routines of the USB OHCI code by
40673     making some routines smaller and more readable which helps
40674     debugging and understanding the code. (Makes the code looks
40675     somewhat more like the Linux implementation.)
40676
40677     Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
40678
40679     Signed-off-by: Remy Bohmer <linux@bohmer.net>
40680     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40681
40682 commit be19d324edc1a1d7f393d24e10d164cd94c91a00
40683 Author: Remy Bohmer <linux@bohmer.net>
40684 Date:   Tue Sep 16 14:55:42 2008 +0200
40685
40686     Fix for USB sticks not working on ARM while using GCC 4.x compilers
40687
40688     The GCC-compiler makes an optimisation error while optimising the routine
40689     usb_set_maxpacket(). This should be fixed in the compiler in the first place,
40690     but there lots of compilers out there that makes this error, that it is
40691     probably wiser to workaround it in U-boot itself.
40692
40693     What happens is that the register r3 is used as loop-counter 'i', but gets
40694     overwritten later on. From there it starts using register r3 for several other
40695     things and the assembler code is becoming a big mess. This is clearly a compiler bug.
40696
40697     This error occurs on at least several versions of Code Sourcery Lite compilers
40698     for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
40699     compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
40700
40701     We work around it by splitting up this routine in 2 parts, and making sure that
40702     the split out part is NOT inlined any longer. This will make GCC spit out assembler
40703     that do not show this problem. Another possibility is to adapt the Makefile to stop
40704     optimisation for the complete file. I think this solution is nicer.
40705
40706     Signed-off-by: Remy Bohmer <linux@bohmer.net>
40707     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40708
40709 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
40710 Author: Wolfgang Denk <wd@denx.de>
40711 Date:   Wed Sep 17 10:17:55 2008 +0200
40712
40713     Coding style cleanup; update CHANEGLOG
40714
40715     Signed-off-by: Wolfgang Denk <wd@denx.de>
40716
40717 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
40718 Author: Victor Gallardo <vgallardo@amcc.com>
40719 Date:   Tue Sep 16 06:59:13 2008 -0700
40720
40721     ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
40722
40723     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
40724     Signed-off-by: Adam Graham <agraham@amcc.com>
40725     Signed-off-by: Stefan Roese <sr@denx.de>
40726
40727 commit ce47eb402c5e29a025399dc282246414fc492940
40728 Author: Peter Tyser <ptyser@xes-inc.com>
40729 Date:   Tue Sep 16 10:04:47 2008 -0500
40730
40731     Support for multiple SGMII/TBI interfaces for TSEC ethernet
40732
40733     Fix TBI PHY accesses to use the proper offset in CPU register space. The
40734     previous code would incorrectly access the TBI PHY by reading/writing to CPU
40735     register space at the same location as would be used to access external PHYs.
40736
40737     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
40738     Acked-by: Andy Fleming <afleming@freescale.com>
40739
40740 commit 7c803be2eb3cae245dedda438776e08fb122250f
40741 Author: Wolfgang Denk <wd@denx.de>
40742 Date:   Tue Sep 16 18:02:19 2008 +0200
40743
40744     TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
40745
40746     After switching to using the CFI flash driver, the correct remapping
40747     of the flash banks was forgotten.
40748
40749     Also, some boards were not adapted, and the old legacy flash driver
40750     was not removed yet.
40751
40752     Signed-off-by: Wolfgang Denk <wd@denx.de>
40753
40754 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
40755 Author: Wolfgang Denk <wd@denx.de>
40756 Date:   Sun Sep 14 00:59:35 2008 +0200
40757
40758     Prepare v2008.10-rc2
40759
40760     Signed-off-by: Wolfgang Denk <wd@denx.de>
40761
40762 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
40763 Author: Wolfgang Denk <wd@denx.de>
40764 Date:   Sat Sep 13 02:23:05 2008 +0200
40765
40766     Coding style cleanup, update CHANGELOG
40767
40768     Signed-off-by: Wolfgang Denk <wd@denx.de>
40769
40770 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
40771 Author: Peter Tyser <ptyser@xes-inc.com>
40772 Date:   Wed Sep 10 09:18:34 2008 -0500
40773
40774     Update mailing list email and archive addresses
40775
40776     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
40777
40778 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
40779 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
40780 Date:   Thu Sep 11 15:40:01 2008 +0200
40781
40782     85xx: socrates: autoprobe Lime chip
40783
40784     This patch is an attempt to implement autoprobing for the Lime
40785     presence on the bus.
40786     Configure GPCM for Lime CS2 and try to access chip ID registers.
40787     Second read atempt delivers register values if the chip is present.
40788
40789     Signed-off-by: Anatolij Gustschin <agust@denx.de>
40790
40791 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
40792 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
40793 Date:   Thu Sep 11 15:40:01 2008 +0200
40794
40795     85xx: socrates: Add support for new image format.
40796
40797     Signed-off-by: Detlev Zundel <dzu@denx.de>
40798
40799 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
40800 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40801 Date:   Thu Sep 11 17:28:18 2008 +0900
40802
40803     sh: Fix compile error for r2dplus
40804
40805     netdev.h was not include by r2dplus.
40806
40807     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40808
40809 commit 56844a22b76c719e600047e23b80465a44d76abd
40810 Author: Heiko Schocher <hs@denx.de>
40811 Date:   Thu Sep 11 08:11:23 2008 +0200
40812
40813     powerpc: Fix bootm to boot up again with a Ramdisk
40814
40815     Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
40816     and this stopped Linux from booting with a Ramdisk. This patch fixes
40817     this, by deleting the useless dummy mem reservation.
40818
40819     When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
40820     added to of_size, so we dont need anymore a dummy mem reservation.
40821
40822     I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
40823     system (=0x44 bytes) and rounded it up to 0x80).
40824
40825     Signed-off-by: Heiko Schocher <hs@denx.de>
40826     Acked-by: Kumar Gala <galak@kernel.crashing.org>
40827
40828 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
40829 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
40830 Date:   Mon Sep 8 02:46:13 2008 +0200
40831
40832     Add support for LZMA uncompression algorithm.
40833
40834     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
40835     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40836
40837 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
40838 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
40839 Date:   Fri Jun 27 23:04:20 2008 +0400
40840
40841     fsl_elbc_nand: ecclayout cleanups
40842
40843     This patch deletes oobavail assignments, they're calculated by the nand
40844     core code in nand_scan_tail, plus current oobavail values are wrong for
40845     the LP NANDs.
40846
40847     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
40848     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
40849     Signed-off-by: Scott Wood <scottwood@freescale.com>
40850
40851 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
40852 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
40853 Date:   Fri Jun 27 23:04:13 2008 +0400
40854
40855     fsl_elbc_nand: implement support for flash-based BBT
40856
40857     This patch implements support for flash-based BBT for chips working
40858     through ELBC NAND controller, so that NAND core will not have to re-scan
40859     for bad blocks on every boot.
40860
40861     Because ELBC controller may provide HW-generated ECCs we should adjust
40862     bbt pattern and bbt version positions in the OOB free area.
40863
40864     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
40865     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
40866     Signed-off-by: Scott Wood <scottwood@freescale.com>
40867
40868 commit 97ae023648e764f794ffb9c52da109d6caf09c47
40869 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
40870 Date:   Fri Jun 27 23:04:04 2008 +0400
40871
40872     fsl_elbc_nand: fix OOB workability for large page NAND chips
40873
40874     For large page chips, nand_bbt is looking into OOB area, and checking
40875     for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
40876     reserved for bbt means.
40877
40878     But ELBC driver is specifying ecclayout so that oobfree area starts at
40879     offset 1, so only one byte left for the bbt purposes.
40880
40881     This causes problems with any OOB users, namely JFFS2: after first mount
40882     JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
40883
40884       OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
40885       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
40886       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
40887       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
40888
40889     And on the next boot, NAND core will rescan for bad blocks, then will
40890     see "0xff 0x19" pattern, and will mark all blocks as bad ones.
40891
40892     To fix the issue we should implement our own bad block pattern: just one
40893     byte at OOB start. Though, this will work only for x8 chips. For x16
40894     chips two bytes must be checked. Since ELBC driver does not support x16
40895     NANDs (yet), we're safe for now.
40896
40897     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
40898     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
40899     Signed-off-by: Scott Wood <scottwood@freescale.com>
40900
40901 commit 7238ada313057a85409485b8ee21515dc10c07a5
40902 Author: Wolfgang Denk <wd@denx.de>
40903 Date:   Fri Sep 12 13:52:21 2008 +0200
40904
40905     MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
40906
40907     Signed-off-by: Wolfgang Denk <wd@denx.de>
40908
40909 commit b18410e508a12ba0a177dfc2a386857c806fa96d
40910 Author: Stefan Roese <sr@denx.de>
40911 Date:   Thu Sep 11 13:05:56 2008 +0200
40912
40913     ppc4xx: Enable device tree (FDT) support in zeus board port
40914
40915     Signed-off-by: Stefan Roese <sr@denx.de>
40916
40917 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
40918 Author: Stefan Roese <sr@denx.de>
40919 Date:   Wed Sep 10 16:53:47 2008 +0200
40920
40921     ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
40922
40923     This patch fixes a problem introdiced with patch
40924     bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
40925     initdram()].
40926
40927     The boards affected are:
40928     - PCI405
40929     - PPChameleonEVB
40930     - quad100hd
40931     - taihu
40932     - zeus
40933
40934     Signed-off-by: Stefan Roese <sr@denx.de>
40935
40936 commit 61737c59a3285f6fadf96a5836879898c04ec28d
40937 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40938 Date:   Thu Sep 11 19:41:26 2008 -0400
40939
40940     ppc4xx: Add .gitignore file to xilinx-ppc440 boards
40941
40942     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40943     Signed-off-by: Stefan Roese <sr@denx.de>
40944
40945 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
40946 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40947 Date:   Thu Sep 11 19:41:25 2008 -0400
40948
40949     ppc4xx: Fix compilation of v5fx30teval_flash
40950
40951     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40952     Signed-off-by: Stefan Roese <sr@denx.de>
40953
40954 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
40955 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40956 Date:   Wed Sep 10 17:44:30 2008 -0400
40957
40958     ppc4xx: Fix in-tree build for ppc440-generic boards
40959
40960     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40961     Signed-off-by: Stefan Roese <sr@denx.de>
40962
40963 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
40964 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40965 Date:   Fri Sep 12 02:20:47 2008 +0200
40966
40967     ARM: synchronize mach-types.h with linux 2.6.27-rc6
40968
40969     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40970
40971 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
40972 Author: Jens Scharsig <esw@bus-elektronik.de>
40973 Date:   Fri Sep 12 02:20:47 2008 +0200
40974
40975     at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
40976
40977     This patch prevents linker error on AT91RM9200 boards, if
40978     CONFIG_CMD_I2_TREE is set.
40979     It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
40980
40981     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
40982
40983 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
40984 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
40985 Date:   Fri Sep 12 02:20:47 2008 +0200
40986
40987     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
40988
40989     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
40990
40991     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
40992
40993 commit 03db53335c8eba656a7c44d1555b1a4514383e33
40994 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
40995 Date:   Fri Sep 12 02:20:46 2008 +0200
40996
40997     make: Remove redundant __ARM__ addition when cross-compiling on *BSD
40998
40999     __ARM__ is given by arm_config.mk automatically.
41000
41001     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
41002
41003 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
41004 Author: Claudio Scordino <claudio@evidence.eu.com>
41005 Date:   Fri Sep 12 02:20:46 2008 +0200
41006
41007     Fix MACH_TYPE for the AT91RM9200DK board.
41008
41009     Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
41010
41011 commit 274737e5eb25b2bcd3af3a96da923effd543284f
41012 Author: Andrew Dyer <adyer@righthandtech.com>
41013 Date:   Fri Sep 12 02:20:46 2008 +0200
41014
41015     i.mx change get_timer(base) to return time since base
41016
41017     This patch changes get_timer() for i.MX to return the time since
41018     'base' instead of the time since the counter was at zero.
41019
41020     Symptom seen is flash timeout errors when erasing or programming a
41021     sector using the common cfi flash code.
41022
41023     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
41024
41025 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
41026 Author: Andrew Dyer <adyer@righthandtech.com>
41027 Date:   Fri Sep 12 02:20:46 2008 +0200
41028
41029     i.MX use u-boot baud rate and don't assume UART master clock
41030
41031     1) Change the i.MX serial driver to use the baud rate set in the
41032      u-boot environment
41033
41034     2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
41035
41036     3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
41037      one to clear" like other status bits in the reg.)
41038
41039     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
41040
41041 commit 6e1551a870d360805b9d172dc56d935064abe71d
41042 Author: Andrew Dyer <adyer@righthandtech.com>
41043 Date:   Fri Sep 12 02:20:46 2008 +0200
41044
41045     arm920t fix constant error in start.S
41046
41047     Code in cpu/arm920t/start.S will die with a compilation error if
41048     CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
41049     the ARM sub instruction.  Change the code so that each is subtracted
41050     independently to avoid the error.
41051
41052     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
41053
41054 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
41055 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
41056 Date:   Fri Sep 12 02:20:40 2008 +0200
41057
41058     ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
41059
41060     - Correct Invalid #define of MPUTIM_PTV_MASK for
41061        omap1510 & omap730 register definition
41062
41063      MPUTIM_PTV_MASK is defined as
41064      #define MPUTIM_PTV_MASK            (0x7<<PTV_BIT)
41065
41066      while it should have been
41067      #define MPUTIM_PTV_MASK            (0x7<<MPUTIM_PTV_BIT)
41068
41069     - Below Patch corrects the same
41070
41071     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
41072
41073 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
41074 Author: Adrian Filipi <adrian.filipi@eurotech.com>
41075 Date:   Fri Jul 18 11:52:02 2008 -0400
41076
41077     Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
41078
41079     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
41080
41081 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
41082 Author: Guennadi Liakhovetski <lg@denx.de>
41083 Date:   Thu Aug 28 12:25:11 2008 +0200
41084
41085     i.MX31: document timer precision option
41086
41087     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41088
41089 commit 1a6337b01351b82a45b0defa76f08744511c580b
41090 Author: Magnus Lilja <lilja.magnus@gmail.com>
41091 Date:   Fri Aug 29 10:36:18 2008 +0200
41092
41093     i.MX31: Make the SPI bus and chip select configurable for MC13783
41094
41095     The i.MX31 has three SPI buses and each bus has several chip selects
41096     and the MC13783 chip can be connected to any of these. The current
41097     RTC driver for MC13783 is hardcoded for CSPI2/SS2.
41098
41099     This patch makes make MC13783 SPI bus and chip select configurable
41100     via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
41101
41102     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
41103
41104 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
41105 Author: Magnus Lilja <lilja.magnus@gmail.com>
41106 Date:   Fri Aug 29 10:36:17 2008 +0200
41107
41108     i.MX31: Add reset_timer() and modify get_timer_masked().
41109
41110     This patch adds the reset_timer() function (needed by nand_base.c) and
41111     modifies the get_timer_masked() to work in the same way as the omap24xx
41112     function.
41113
41114     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
41115
41116 commit deeec4991a55de243787002ede24d2331d234fc8
41117 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41118 Date:   Wed Sep 10 22:48:09 2008 +0200
41119
41120     ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
41121
41122     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41123
41124 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
41125 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41126 Date:   Wed Sep 10 22:48:09 2008 +0200
41127
41128     bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
41129
41130     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41131
41132 commit 0e8d158664a913392cb01fb11a948d83f72e105e
41133 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41134 Date:   Wed Sep 10 22:48:06 2008 +0200
41135
41136     rename CFG_ENV macros to CONFIG_ENV
41137
41138     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41139
41140 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
41141 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41142 Date:   Wed Sep 10 22:48:05 2008 +0200
41143
41144     nvedit: rename error comment to CONFIG_ENV_IS_IN_
41145
41146     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41147
41148 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
41149 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41150 Date:   Wed Sep 10 22:48:05 2008 +0200
41151
41152     cmd_mem: Move conditional compilation to Makefile
41153
41154     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41155
41156 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
41157 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41158 Date:   Wed Sep 10 22:48:05 2008 +0200
41159
41160     move cmd_get_data_size to command.c
41161
41162     add CMD_DATA_SIZE macro to enable it
41163
41164     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41165
41166 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
41167 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41168 Date:   Wed Sep 10 22:48:04 2008 +0200
41169
41170     env_flash: Move conditional compilation to Makefile
41171
41172     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41173
41174 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
41175 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41176 Date:   Wed Sep 10 22:48:04 2008 +0200
41177
41178     rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
41179
41180     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41181
41182 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
41183 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41184 Date:   Wed Sep 10 22:48:03 2008 +0200
41185
41186     cleanup use of CFG_ENV_IS_IN_FLASH
41187
41188     - #if CFG_ENV_IS_IN_FLASH
41189     - #if (CFG_ENV_IS_IN_FLASH == 1)
41190     - #define CFG_ENV_IS_IN_FLASH 0
41191
41192     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41193
41194 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
41195 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41196 Date:   Wed Sep 10 22:48:01 2008 +0200
41197
41198     rename environment.c in env_embedded.c to reflect is functionality
41199
41200     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41201
41202 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
41203 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41204 Date:   Wed Sep 10 22:48:01 2008 +0200
41205
41206     env_nowhere: Move conditional compilation to Makefile
41207
41208     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41209
41210 commit 93f6d72544da4510a146bc4c93d609b0116cde37
41211 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41212 Date:   Wed Sep 10 22:48:00 2008 +0200
41213
41214     rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
41215
41216     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41217
41218 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
41219 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41220 Date:   Wed Sep 10 22:48:00 2008 +0200
41221
41222     env_sf: Move conditional compilation to Makefile
41223
41224     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41225
41226 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
41227 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41228 Date:   Wed Sep 10 22:48:00 2008 +0200
41229
41230     rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
41231
41232     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41233
41234 commit 55c5f49910ec8225347aa1d211352a84de6649b4
41235 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41236 Date:   Wed Sep 10 22:48:00 2008 +0200
41237
41238     env_onenand: Move conditional compilation to Makefile
41239
41240     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41241
41242 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
41243 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41244 Date:   Wed Sep 10 22:47:59 2008 +0200
41245
41246     rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
41247
41248     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41249
41250 commit 957a0e69575683efd70ace147746bbb3d8e7c501
41251 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41252 Date:   Wed Sep 10 22:47:59 2008 +0200
41253
41254     env_nvram: Move conditional compilation to Makefile
41255
41256     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41257
41258 commit 9314cee6917444ab88bd4e758da7a30975120187
41259 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41260 Date:   Wed Sep 10 22:47:59 2008 +0200
41261
41262     rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
41263
41264     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41265
41266 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
41267 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41268 Date:   Wed Sep 10 22:47:59 2008 +0200
41269
41270     env_nand: Move conditional compilation to Makefile
41271
41272     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41273
41274 commit 51bfee192099206a4397f15f3b93516e01f58ab0
41275 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41276 Date:   Wed Sep 10 22:47:58 2008 +0200
41277
41278     rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
41279
41280     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41281
41282 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
41283 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41284 Date:   Wed Sep 10 22:47:58 2008 +0200
41285
41286     env_dataflash: Move conditional compilation to Makefile
41287
41288     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41289
41290 commit 057c849c45b9ee19df8ff3acdeee66be52819962
41291 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41292 Date:   Wed Sep 10 22:47:58 2008 +0200
41293
41294     rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
41295
41296     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41297
41298 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
41299 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41300 Date:   Wed Sep 10 22:47:52 2008 +0200
41301
41302     cmd_eeprom: Move conditional compilation to Makefile
41303
41304     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41305
41306 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
41307 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41308 Date:   Fri Sep 5 09:19:54 2008 +0200
41309
41310     env_eeprom: Move conditional compilation to Makefile
41311
41312     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41313
41314 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
41315 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41316 Date:   Fri Sep 5 09:19:30 2008 +0200
41317
41318     rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
41319
41320     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41321
41322 commit 32628c5008105a732212003d83b75f05e5243bb2
41323 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41324 Date:   Sat Aug 30 23:54:58 2008 +0200
41325
41326     cmd_mac: Move conditional compilation to Makefile
41327
41328     finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
41329     start in commit ad8f8687b78c3e917b173f038926695383c55555
41330
41331     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41332
41333 commit e5648acab153f0f429bfc714902c5aaa7879f71b
41334 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41335 Date:   Sat Aug 30 23:47:41 2008 +0200
41336
41337     cmd_fdc: Move conditional compilation to Makefile
41338
41339     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41340
41341 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
41342 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41343 Date:   Sat Aug 30 23:47:38 2008 +0200
41344
41345     common/Makefile: add core command section
41346
41347     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41348
41349 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
41350 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41351 Date:   Sat Aug 30 23:29:57 2008 +0200
41352
41353     cmd_vfd: Move conditional compilation to Makefile
41354
41355     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41356
41357 commit 6644641d072aee3087da129d8443187196a4d8a9
41358 Author: Scott Wood <scottwood@freescale.com>
41359 Date:   Wed Sep 10 11:48:49 2008 -0500
41360
41361     delta, zylonite: Update nand_oobinfo to nand_ecclayout.
41362
41363     This is part of the switch to newer upstream MTD code.
41364
41365     Signed-off-by: Scott Wood <scottwood@freescale.com>
41366
41367 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
41368 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41369 Date:   Sat Aug 30 17:06:55 2008 -0400
41370
41371     ARM DaVinci: Fix broken HW ECC for large page NAND.
41372
41373     Based on original patch by Bernard Blackham <bernard@largestprime.net>
41374
41375     U-boot's HW ECC support for large page NAND on Davinci is completely
41376     broken.  Some kernels, such as the 2.6.10 one supported by
41377     MontaVista for DaVinci, rely upon this broken behaviour as they
41378     share the same code for ECCs. In the existing scheme, error
41379     detection *might* work on large page, but error correction
41380     definitely does not.  Small page ECC correction works, but the
41381     format is not compatible with the mainline git kernel.
41382
41383     This patch adds ECC code that matches what is currently in the
41384     Davinci git repository (since NAND support was added in 2.6.24).
41385     This makes the ECC and OOB layout written by u-boot compatible with
41386     Linux for both small page and large page devices and fixes ECC
41387     correction for large page devices.
41388
41389     The old behaviour can be restored by defining the macro
41390     CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
41391
41392     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41393     Acked-by: Sergey Kubushyn <ksi@koi8.net>
41394     Signed-off-by: Scott Wood <scottwood@freescale.com>
41395
41396 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
41397 Author: Heiko Schocher <hs@denx.de>
41398 Date:   Wed Sep 10 11:15:28 2008 +0200
41399
41400     muas3001: update BR4 settings
41401
41402     Also set up the port pins for using I2C.
41403
41404     Signed-off-by: Heiko Schocher <hs@denx.de>
41405
41406 commit 3591293509e0c0bcf244b0f974775bff2e25697e
41407 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
41408 Date:   Wed Sep 10 09:43:49 2008 +0300
41409
41410     autoscr: Fix one-character lines and non-newline terminated scripts
41411
41412     When not using hush, the autoscr command now executes lines that are
41413     only one character long. It also runs the last line of scripts even if
41414     it does not end in a newline.
41415
41416     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
41417
41418 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
41419 Author: Victor Gallardo <vgallardo@amcc.com>
41420 Date:   Tue Sep 9 15:13:29 2008 -0700
41421
41422     ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
41423
41424     On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
41425     and glacier.
41426
41427     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
41428
41429 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
41430 Author: Heiko Schocher <hs@denx.de>
41431 Date:   Mon Sep 8 10:21:11 2008 +0200
41432
41433     muas3001: added support for the LM75 sensor.
41434
41435     Signed-off-by: Heiko Schocher <hs@denx.de>
41436
41437 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
41438 Author: Heiko Schocher <hs@denx.de>
41439 Date:   Mon Sep 8 10:20:19 2008 +0200
41440
41441     muas3001: activate WDT for the muas3001 board.
41442
41443     Signed-off-by: Heiko Schocher <hs@denx.de>
41444
41445 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
41446 Author: Heiko Schocher <hs@denx.de>
41447 Date:   Mon Sep 8 10:19:36 2008 +0200
41448
41449     muas3001: added 64MB SDRAM autodetection.
41450
41451     Signed-off-by: Heiko Schocher <hs@denx.de>
41452
41453 commit 5251469943895de4bb9a04d5053352cc22acb7d5
41454 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
41455 Date:   Thu Aug 21 07:12:26 2008 -0700
41456
41457     Fix printf errors under -DDEBUG
41458
41459     Fix printf format-string/arg mismatches under -DDEBUG.
41460
41461     These warnings occur with DEBUG defined for a platform using
41462     cpu/mpc85xx.  Users of other architectures can unearth similar
41463     problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
41464     after "CFLAGS += $(call cc-option,-fno-stack-protector)".
41465
41466     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
41467     Signed-off-by: Andy Fleming <afleming@freescale.com>
41468
41469 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
41470 Author: Wolfgang Denk <wd@denx.de>
41471 Date:   Tue Sep 9 23:55:18 2008 +0200
41472
41473     Update CHANGELOG, prepare 2008-10-rc1 release
41474
41475     Signed-off-by: Wolfgang Denk <wd@denx.de>
41476
41477 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
41478 Author: Kumar Gala <galak@kernel.crashing.org>
41479 Date:   Mon Sep 8 08:51:29 2008 -0500
41480
41481     85xx: Ensure timebase is zero on secondary cores
41482
41483     The e500um says the timebase is volatile out of reset.  To ensure
41484     TB sync works we need to make sure its zero.
41485
41486     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41487
41488 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
41489 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41490 Date:   Tue Sep 9 22:18:24 2008 +0200
41491
41492     bootm_load_os: fix load_end debug message
41493
41494     print load_end value not pointer
41495
41496     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41497
41498 commit 1d9af0be764960e6cc1c093e97176c3542796820
41499 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41500 Date:   Tue Sep 9 22:18:23 2008 +0200
41501
41502     bootm: enable fdt support only on ppc, m68k and sparc
41503
41504     ...as done in image.c
41505
41506     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41507
41508 commit 748b5274e76f81df85cfcffaffedc323678d0623
41509 Author: Markus Heidelberg <markus.heidelberg@web.de>
41510 Date:   Tue Sep 9 18:51:05 2008 +0200
41511
41512     common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
41513
41514     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
41515
41516 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
41517 Author: Markus Heidelberg <markus.heidelberg@web.de>
41518 Date:   Tue Sep 9 17:31:46 2008 +0200
41519
41520     gitignore: add tags files and Vim swap file
41521
41522     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
41523
41524 commit 1d9b67b23fca6a25154333733204339802510720
41525 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
41526 Date:   Tue Sep 9 17:52:47 2008 +0900
41527
41528     add board_eth_init() for sh7785lcr board
41529
41530     Fix the problem that cannot work RTL8169 on sh7785lcr board.
41531
41532     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
41533
41534 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
41535 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41536 Date:   Wed Aug 6 16:08:41 2008 -0500
41537
41538     mtd: SPI Flash: Support the STMicro Flash
41539
41540     Add MTD SPI Flash support for M25P16, M25P20, M25P32,
41541     M25P40, M25P64, M25P80, M25P128.
41542
41543     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
41544     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41545
41546 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
41547 Author: Wolfgang Denk <wd@denx.de>
41548 Date:   Tue Sep 9 17:55:31 2008 +0200
41549
41550     trab: fix build problem after change to use do_div()
41551
41552     We must link with libgeneric now.
41553
41554     Signed-off-by: Wolfgang Denk <wd@denx.de>
41555
41556 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
41557 Author: Ryan CHEN <ryan.chen@st.com>
41558 Date:   Wed Aug 20 13:00:17 2008 -0400
41559
41560     Correct drv_usb_kbd_init function
41561
41562     The patch is that check if usb_get_dev_index() function return valid
41563     pointer. If valid, continue. Otherwise return -1.
41564
41565     Signed-off-by: Ryan Chen <ryan.chen@st.com>
41566     Acked-by: Markus Klotzbuecher <mk@denx.de>
41567
41568 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
41569 Author: Remy Bohmer <linux@bohmer.net>
41570 Date:   Wed Aug 20 11:22:02 2008 +0200
41571
41572     Make usb-stop() safe to call multiple times in a row.
41573
41574     A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
41575     enabled the usb_stop() command in common/cmd_bootm.c which was
41576     not enabled for some time, because no board did actually set the
41577     CFG_CMD_USB flag. So, now the usb_stop() is executed before
41578     loading the linux kernel.
41579
41580     However, the usb_ohci driver hangs up (at least on AT91SAM) if the
41581     driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
41582     If some other piece of code calls usb_stop() before the bootm command,
41583     this command will hangup the system during boot.
41584     (usb start and stop is typically used while booting from usb memory stick)
41585
41586     But, stopping the usb stack twice is useless anyway, and a flag already
41587     existed that kept track on the usb_init()/usb_stop() calls.
41588     So, we now check if the usb stack is really started before we stop it.
41589
41590     This problem is now fixed in both the upper as low-level layer.
41591
41592     Signed-off-by: Remy Bohmer <linux@bohmer.net>
41593     Acked-by: Markus Klotzbuecher <mk@denx.de>
41594
41595 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
41596 Author: Wolfgang Denk <wd@denx.de>
41597 Date:   Tue Sep 9 16:55:47 2008 +0200
41598
41599     Makefile: fix bug introduced by commit 47ffd6c2
41600
41601 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
41602 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41603 Date:   Tue Sep 9 10:00:33 2008 -0400
41604
41605     ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
41606
41607     This patch solves the problems compiling ml507, v5fx30teval and
41608     ppc440-generic out of tree.
41609
41610     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41611
41612 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
41613 Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
41614 Date:   Thu Sep 4 15:35:46 2008 -0300
41615
41616     Fix dev_print when called from usb_stor_info (usb storage command)
41617
41618     Fix output of the usb storage command. It was printing "Device 0: not
41619     available" because IF_TYPE_USB was not included into the switch
41620     statement.
41621
41622     Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
41623
41624 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
41625 Author: Bartlomiej Sieka <tur@semihalf.com>
41626 Date:   Tue Sep 9 12:58:16 2008 +0200
41627
41628     FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
41629
41630     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
41631
41632 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
41633 Author: Bartlomiej Sieka <tur@semihalf.com>
41634 Date:   Tue Sep 9 12:58:15 2008 +0200
41635
41636     FIT: add ability to check hashes of all images in FIT, improve output
41637
41638     - add function fit_all_image_check_hashes() that verifies if all
41639       hashes of all images in the FIT are valid
41640     - improve output of fit_image_check_hashes() when the hash check fails
41641
41642     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
41643
41644 commit 1de1fa408967cef6804bb046b904114519bb36f0
41645 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41646 Date:   Mon Sep 8 20:54:39 2008 +0200
41647
41648     qemu_mips: Update linux bootm to support dynamic cmdline
41649
41650     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41651
41652 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
41653 Author: Peter Tyser <ptyser@xes-inc.com>
41654 Date:   Mon Sep 8 14:56:49 2008 -0500
41655
41656     Add support for booting of INTEGRITY operating system uImages
41657
41658     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
41659
41660 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
41661 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41662 Date:   Mon Sep 8 21:01:29 2008 +0200
41663
41664     mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
41665
41666     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41667
41668 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
41669 Author: Kumar Gala <galak@kernel.crashing.org>
41670 Date:   Mon Sep 8 13:57:12 2008 -0500
41671
41672     Remove support for booting ARTOS images
41673
41674     Pantelis Antoniou stated:
41675         AFAIK, it is still used but the products using PPC are long gone.
41676         Nuke it plz (from orbit).
41677
41678     So remove it since it cleans up a usage of env_get_char outside of
41679     the environment code.
41680
41681     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41682
41683 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
41684 Author: Wolfgang Denk <wd@denx.de>
41685 Date:   Tue Sep 9 15:45:18 2008 +0200
41686
41687     Makefile: compile and link each module just once
41688
41689     Several source files need to be compiled and linked when one or more
41690     config options are selected. To allow for easy selection in the
41691     Makefiles yet to avoild multiple compilation (which costs build time)
41692     and especially multiple linking (which causes errors), we use
41693     "COBJS = $(sort COBJS-y)" which eliminates duplicates.
41694
41695     By courtesy of Detlev Zundel who suggested this approach.
41696
41697     Signed-off-by: Wolfgang Denk <wd@denx.de>
41698
41699 commit 48d0192fe869948fef14b460b5f0c85bca933693
41700 Author: Andreas Engel <andreas.engel@ericsson.com>
41701 Date:   Mon Sep 8 14:30:53 2008 +0200
41702
41703     Moved conditional compile into Makefile
41704
41705     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
41706
41707 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
41708 Author: Andreas Engel <andreas.engel@ericsson.com>
41709 Date:   Mon Sep 8 10:17:31 2008 +0200
41710
41711     Merged serial_pl010.c and serial_pl011.c.
41712
41713     They only differ in the init function.
41714     This also adds the missing watchdog support for the PL011.
41715
41716     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
41717
41718 commit 0817d688f307ee2c0598e79175c94a40ce90337b
41719 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41720 Date:   Sun Sep 7 17:10:27 2008 -0400
41721
41722     Remove gap fill in srec object v2
41723
41724     SREC files do not need gap fill: The load address is specified in the
41725     file. On the other hand, it can't be avoided in a .bin object. It has
41726     no information about memory location.
41727
41728     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41729
41730 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
41731 Author: Markus Heidelberg <markus.heidelberg@web.de>
41732 Date:   Sun Sep 7 20:18:27 2008 +0200
41733
41734     README: fix missing subdirectory in the documentation
41735
41736     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
41737
41738 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
41739 Author: Graeme Russ <graeme.russ@gmail.com>
41740 Date:   Sun Sep 7 07:08:42 2008 +1000
41741
41742     Update i386 code (sc520_cdp)
41743
41744     Attempt to bring i386 / sc520 inline with master
41745
41746     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
41747
41748 commit 5608692104efa8d56df803dc79ea41ac3607eee5
41749 Author: Guennadi Liakhovetski <lg@denx.de>
41750 Date:   Thu Sep 4 13:01:49 2008 +0200
41751
41752     fw_env: add NAND support
41753
41754     Add support for environment in NAND with automatic NOR / NAND recognition,
41755     including unaligned environment, bad-block skipping, redundant environment
41756     copy.
41757
41758     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41759
41760 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
41761 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41762 Date:   Tue Sep 9 09:50:24 2008 +0200
41763
41764     ppc4xx: Fix out-of-tree building of CPCI405 variants
41765
41766     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41767     Acked-by: Stefan Roese <sr@denx.de>
41768
41769 commit 59f630588e3fdbd698a0a2798e52a8924e899563
41770 Author: Sergei Poselenov <sposelenov@emcraft.com>
41771 Date:   Fri Aug 15 15:42:11 2008 +0200
41772
41773     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
41774
41775     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
41776
41777 commit e64987a892353f3d49eb242d997820ef8f538912
41778 Author: Anatolij Gustschin <agust@denx.de>
41779 Date:   Fri Aug 15 15:42:13 2008 +0200
41780
41781     85xx: socrates: Enable Lime support.
41782
41783     This patch adds Lime GDC support together with support for the PWM
41784     backlight control through the w83782d chip.  The reset pin of the
41785     latter is attached to GPIO, so we need to reset it in
41786     early_board_init_r.
41787
41788     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41789
41790 commit 3e79b588b5199f35016f178fc0d5d1266382097f
41791 Author: Detlev Zundel <dzu@denx.de>
41792 Date:   Fri Aug 15 15:42:12 2008 +0200
41793
41794     85xx: Socrates: Major code update.
41795
41796     - Update the local bus ranges in the FDT for Linux for the various
41797       devices connected to the local bus via chip-select.
41798
41799     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
41800       lower than 66 MHz and uses I/O accessor functions consequently.
41801
41802     - UPM data update.
41803
41804     - Update of default environment and configuration.  Use I2C multibus
41805       as we do have two I2C buses.  Also enable sdram and ext2 commands.
41806
41807     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
41808     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
41809     Signed-off-by: Detlev Zundel <dzu@denx.de>
41810
41811 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
41812 Author: Timur Tabi <timur@freescale.com>
41813 Date:   Fri Jul 18 16:52:23 2008 +0200
41814
41815     Update Freescale 85xx boards to sys_eeprom.c
41816
41817     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
41818     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
41819     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
41820     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
41821
41822     Signed-off-by: Timur Tabi <timur@freescale.com>
41823
41824 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
41825 Author: Wolfgang Denk <wd@denx.de>
41826 Date:   Tue Sep 9 10:08:02 2008 +0200
41827
41828     lib_ppc/interrupts.c: make board_show_activity() a weak function
41829
41830     This allows to use show_activity() without having to
41831     define an empty board_show_activity() function.
41832
41833     Signed-off-by: Wolfgang Denk <wd@denx.de>
41834
41835 commit fe876787f8743883ce58fed61525eaa2f34da4c5
41836 Author: Wolfgang Denk <wd@denx.de>
41837 Date:   Tue Sep 9 10:06:44 2008 +0200
41838
41839     stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
41840
41841     Signed-off-by: Wolfgang Denk <wd@denx.de>
41842
41843 commit 965de106ba8900372c8b16dc60d5acab7f925e38
41844 Author: Wolfgang Denk <wd@denx.de>
41845 Date:   Tue Sep 9 10:03:47 2008 +0200
41846
41847     NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
41848
41849     Signed-off-by: Wolfgang Denk <wd@denx.de>
41850
41851 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
41852 Author: Sergei Poselenov <sposelenov@emcraft.com>
41853 Date:   Fri Aug 15 15:42:11 2008 +0200
41854
41855     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
41856
41857     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
41858
41859 commit 36241ca29d4804a1006fb3f26069effda5202581
41860 Author: Anatolij Gustschin <agust@denx.de>
41861 Date:   Fri Aug 15 15:42:13 2008 +0200
41862
41863     85xx: socrates: Enable Lime support.
41864
41865     This patch adds Lime GDC support together with support for the PWM
41866     backlight control through the w83782d chip.  The reset pin of the
41867     latter is attached to GPIO, so we need to reset it in
41868     early_board_init_r.
41869
41870     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41871
41872 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
41873 Author: Detlev Zundel <dzu@denx.de>
41874 Date:   Fri Aug 15 15:42:12 2008 +0200
41875
41876     85xx: Socrates: Major code update.
41877
41878     - Update the local bus ranges in the FDT for Linux for the various
41879       devices connected to the local bus via chip-select.
41880
41881     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
41882       lower than 66 MHz and uses I/O accessor functions consequently.
41883
41884     - UPM data update.
41885
41886     - Update of default environment and configuration.  Use I2C multibus
41887       as we do have two I2C buses.  Also enable sdram and ext2 commands.
41888
41889     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
41890     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
41891     Signed-off-by: Detlev Zundel <dzu@denx.de>
41892
41893 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
41894 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41895 Date:   Tue Sep 9 01:22:39 2008 +0200
41896
41897     disk-on-chip: remove duplicate doc_probe declaration
41898
41899     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41900
41901 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
41902 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41903 Date:   Tue Sep 9 00:59:40 2008 +0200
41904
41905     onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
41906
41907     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41908
41909 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
41910 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41911 Date:   Tue Sep 9 00:59:39 2008 +0200
41912
41913     rs5c372: fix rtc_set prototype
41914
41915     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41916
41917 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
41918 Author: Sergei Poselenov <sposelenov@emcraft.com>
41919 Date:   Thu Aug 14 14:08:28 2008 +0200
41920
41921     ARM: fix warning: target CPU does not support interworking
41922
41923     This patch fixes warnings like this:
41924
41925     start.S:0: warning: target CPU does not support interworking
41926
41927     which come from some ARM cross compilers and are caused by hard-coded
41928     (with "--with-cpu=arm9" configuration option) ARM targets (which
41929     support ARM Thumb instructions), while the ARM target selected from
41930     the command line (with "-march=armv4") doesn't support Thumb
41931     instructions.
41932
41933     This warning is issued by the compiler regardless of the real use of
41934     the Thumb instructions in code.
41935
41936     To fix this problem, we use options according to compiler version
41937     being used.
41938
41939     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
41940     Signed-off-by: Wolfgang Denk <wd@denx.de>
41941
41942 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
41943 Author: Sergei Poselenov <sposelenov@emcraft.com>
41944 Date:   Thu Aug 14 14:08:28 2008 +0200
41945
41946     ARM: Use do_div() instead of division for "long long".
41947
41948     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
41949     Signed-off-by: Wolfgang Denk <wd@denx.de>
41950
41951 commit 8febd13c69cb68652577d1a9fcbde954bf784155
41952 Author: Timur Tabi <timur@freescale.com>
41953 Date:   Fri Jul 18 16:52:23 2008 +0200
41954
41955     Update Freescale 85xx boards to sys_eeprom.c
41956
41957     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
41958     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
41959     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
41960     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
41961
41962     Signed-off-by: Timur Tabi <timur@freescale.com>
41963
41964 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
41965 Author: Wolfgang Denk <wd@denx.de>
41966 Date:   Mon Sep 8 23:26:22 2008 +0200
41967
41968     lib_arm/bootm.c: fix compile warnings
41969
41970     bootm.c:128: warning: label 'error' defined but not used
41971     bootm.c:65: warning: unused variable 'ret'
41972
41973     Signed-off-by: Wolfgang Denk <wd@denx.de>
41974
41975 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
41976 Author: Wolfgang Denk <wd@denx.de>
41977 Date:   Mon Sep 8 22:46:42 2008 +0200
41978
41979     ml507: fix out of tree build problem
41980
41981     Signed-off-by: Wolfgang Denk <wd@denx.de>
41982
41983 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
41984 Author: Wolfgang Denk <wd@denx.de>
41985 Date:   Mon Sep 8 22:10:28 2008 +0200
41986
41987     common/cmd_bootm.c: fix printf() format warnings
41988
41989     Signed-off-by: Wolfgang Denk <wd@denx.de>
41990
41991 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
41992 Author: Wolfgang Denk <wd@denx.de>
41993 Date:   Mon Sep 8 22:37:45 2008 +0200
41994
41995     BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
41996
41997     missing doc_probe() prototype.
41998
41999     Signed-off-by: Wolfgang Denk <wd@denx.de>
42000
42001 commit 2c5e3cc4994897d364b148942ff23e47783198f6
42002 Author: Wolfgang Denk <wd@denx.de>
42003 Date:   Mon Sep 8 21:28:14 2008 +0200
42004
42005     mk48t59: fix compile problem introduced by commit d1e23194
42006
42007     Signed-off-by: Wolfgang Denk <wd@denx.de>
42008
42009 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
42010 Author: Stefan Roese <sr@denx.de>
42011 Date:   Mon Sep 8 14:11:12 2008 +0200
42012
42013     ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
42014
42015     This patch moves some 4xx specific prototypes out of include common.h
42016     to a ppc4xx specific header.
42017
42018     Signed-off-by: Stefan Roese <sr@denx.de>
42019
42020 commit ac53ee8318678190bf3c68da477a84a657d86fb0
42021 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42022 Date:   Fri Sep 5 15:34:04 2008 +0200
42023
42024     ppc4xx: Update CPCI405(AB) configuration
42025
42026     This patch add FDT support and command line editing capabilities
42027     for CPCI405 and CPCI405AB boards.
42028
42029     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42030     Signed-off-by: Stefan Roese <sr@denx.de>
42031
42032 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
42033 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42034 Date:   Fri Sep 5 15:34:03 2008 +0200
42035
42036     ppc4xx: Cleanup CPCI405 linker script
42037
42038     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42039     Signed-off-by: Stefan Roese <sr@denx.de>
42040
42041 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
42042 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42043 Date:   Fri Sep 5 15:34:02 2008 +0200
42044
42045     ppc4xx: Update CPCI405 variants handling
42046
42047     This patch replaces the BOARD_REVISION variable in include/config.mk
42048     by a using a temporary include file in the platform directory.
42049
42050     The former way does not work anymore and the latter is also used by
42051     some other boards.
42052
42053     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42054     Signed-off-by: Stefan Roese <sr@denx.de>
42055
42056 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
42057 Author: Stefan Roese <sr@denx.de>
42058 Date:   Mon Sep 8 10:01:48 2008 +0200
42059
42060     ppc4xx: Remove CONFIG_CS8952_PHY define
42061
42062     Since this define is only used on one board that was never really in
42063     production, removing this compile time option doesn't hurt and makes
42064     the code more readable.
42065
42066     Signed-off-by: Stefan Roese <sr@denx.de>
42067
42068 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
42069 Author: Stefan Roese <sr@denx.de>
42070 Date:   Fri Sep 5 14:11:40 2008 +0200
42071
42072     ppc4xx: Fix compilation warning for PIP405
42073
42074     This patch fixes a compilation warning for the PIP405 board. It moves the
42075     #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
42076     occur anymore. I am a little unsure if this #ifdef is at the correct
42077     place now or if it could be removed completely. This needs to get
42078     tested on the PIP405 board.
42079
42080     Signed-off-by: Stefan Roese <sr@denx.de>
42081
42082 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
42083 Author: Stefan Roese <sr@denx.de>
42084 Date:   Fri Sep 5 14:09:09 2008 +0200
42085
42086     ppc4xx: Fix compilation warning for canyonlands & glacier
42087
42088     Signed-off-by: Stefan Roese <sr@denx.de>
42089
42090 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
42091 Author: Kumar Gala <galak@kernel.crashing.org>
42092 Date:   Fri Sep 5 14:40:29 2008 -0500
42093
42094     Fix compiler warning in mpc8xxx ddr code
42095
42096     ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
42097     ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
42098     ctrl_regs.c:523: note: 'caslat' was declared here
42099
42100     Add a warning in DDR1 case if cas_latency isn't a value we know about.
42101
42102     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42103     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42104
42105 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
42106 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42107 Date:   Mon Sep 1 23:06:23 2008 +0200
42108
42109     rtc: allow rtc_set to return an error and use it in cmd_date
42110
42111     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42112
42113 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
42114 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42115 Date:   Mon Sep 1 01:16:33 2008 +0200
42116
42117     ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
42118
42119     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42120
42121 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
42122 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42123 Date:   Sun Aug 31 05:37:04 2008 +0900
42124
42125     config.mk: Move arch-specific condition to $(ARCH)_config.mk
42126
42127     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42128
42129 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
42130 Author: Kumar Gala <galak@kernel.crashing.org>
42131 Date:   Fri Aug 29 19:08:29 2008 -0500
42132
42133     Prevent crash if random/invalid ramdisks are passed to bootm
42134
42135     Adds returning an error from the ramdisk detection code if
42136     its not a real ramdisk (invalid).  There is no reason we can't
42137     just return back to the console if we detect an invalid
42138     ramdisk or CRC error.
42139
42140     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42141
42142 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
42143 Author: Anatolij Gustschin <agust@denx.de>
42144 Date:   Fri Aug 29 21:04:45 2008 +0200
42145
42146     Prevent crash if random DTB address is passed to bootm
42147
42148     This patch adds bootm_start() return value check. If
42149     error status is returned, we do not proceed further to
42150     prevent board reset or crash as we still can recover
42151     at this point.
42152
42153     Signed-off-by: Anatolij Gustschin <agust@denx.de>
42154
42155 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
42156 Author: Andrew Dyer <adyer@righthandtech.com>
42157 Date:   Fri Aug 29 12:30:39 2008 -0500
42158
42159     clean up some #if !defined() in drivers/video/cfb_console.c
42160
42161     rearrange some #if !defined() / #else / #endif statements to remove
42162     the negative logic.
42163
42164     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
42165
42166 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
42167 Author: Kyungmin Park <kmpark@infradead.org>
42168 Date:   Fri Aug 29 09:02:20 2008 +0900
42169
42170     apollon: use the last memory area for u-boot
42171
42172     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
42173
42174 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
42175 Author: Heiko Schocher <hs@denx.de>
42176 Date:   Thu Aug 28 13:50:42 2008 +0200
42177
42178     TQM8272: move NAND part in seperate File
42179
42180     I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
42181     because I have no longer access to the hardware.
42182
42183     Signed-off-by: Heiko Schocher <hs@denx.de>
42184
42185 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
42186 Author: Heiko Schocher <hs@denx.de>
42187 Date:   Thu Aug 28 13:48:36 2008 +0200
42188
42189     TQM8272: Fix compiling error for the TQM8272 board.
42190
42191     Fix compile problems caused by
42192     commit  cfa460adfdefcc30d104e1a9ee44994ee349bb7b
42193
42194     Signed-off-by: Heiko Schocher <hs@denx.de>
42195
42196 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
42197 Author: Kyungmin Park <kmpark@infradead.org>
42198 Date:   Wed Aug 27 14:45:20 2008 +0900
42199
42200     Add JFFS2 command support on OneNAND
42201
42202     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
42203
42204 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
42205 Author: Mark Jackson <mpfj@mimc.co.uk>
42206 Date:   Mon Aug 25 19:21:30 2008 +0100
42207
42208     Allow console input to be disabled
42209
42210     Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
42211
42212     When CONFIG_DISABLE_CONSOLE is defined, setting
42213     GD_FLG_DISABLE_CONSOLE disables all console input and output.
42214
42215     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
42216
42217 commit 2b22d608f370565c87f55928b524207031419c11
42218 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
42219 Date:   Wed Jul 30 12:39:29 2008 +0200
42220
42221     loads: allow negative offsets
42222
42223     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
42224
42225 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
42226 Author: Yuri Tikhonov <yur@emcraft.com>
42227 Date:   Thu Sep 4 11:19:05 2008 +0200
42228
42229     USB EHCI: reset root hub
42230
42231     Some of multi-function USB controllers (e.g. ISP1562) allow root hub
42232     resetting only via EHCI registers. So, this patch adds the
42233     corresponding kind of reset to OHCI's hc_reset() if the newly
42234     introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
42235     board).
42236
42237     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42238     Acked-by: Markus Klotzbuecher <mk@denx.de>
42239
42240 commit 5875d358f025c1b042d8a0f08384b756de7256c9
42241 Author: Yuri Tikhonov <yur@emcraft.com>
42242 Date:   Fri Aug 15 15:42:09 2008 +0200
42243
42244     RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
42245
42246     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42247
42248 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
42249 Author: Stefan Roese <sr@denx.de>
42250 Date:   Fri Sep 5 10:47:46 2008 +0200
42251
42252     devices: Use list_add_tail() instead of list_add() to register a device
42253
42254     This patch fixes a problem spotted on Glacier/Canyonlands (and most
42255     likely lots of other board ports), that no serial output was seen
42256     after console initialization in console_init_r(). This is because the
42257     last added console device was used instead of the first added.
42258
42259     This patch fixes this problem by using list_add_tail() instead of
42260     list_add() to register a device. This way the first added console
42261     is used again.
42262
42263     Signed-off-by: Stefan Roese <sr@denx.de>
42264
42265 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
42266 Author: Victor Gallardo <vgallardo@amcc.com>
42267 Date:   Thu Sep 4 23:49:36 2008 -0700
42268
42269     ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
42270
42271     This patch adds GPCS, SGMII and M88E1112 PHY support
42272     for the AMCC PPC460GT/EX processors.
42273
42274     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
42275     Signed-off-by: Stefan Roese <sr@denx.de>
42276
42277 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
42278 Author: Adam Graham <agraham@amcc.com>
42279 Date:   Wed Sep 3 12:26:59 2008 -0700
42280
42281     ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
42282
42283     Signed-off-by: Adam Graham <agraham@amcc.com>
42284     Signed-off-by: Stefan Roese <sr@denx.de>
42285
42286 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
42287 Author: Adam Graham <agraham@amcc.com>
42288 Date:   Wed Sep 3 12:26:28 2008 -0700
42289
42290     ppc4xx: IBM Memory Controller DDR autocalibration routines
42291
42292     Alternate SDRAM DDR autocalibration routine that can be generically used
42293     for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
42294     support of more DIMM/memory chip vendors and gets the DDR autocalibration
42295     values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
42296
42297     Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
42298     "Method_A" and "Method_B".  DDR autocalibration Method_A scans the full range
42299     of possible PPC4xx  SDRAM Controller DDR autocalibration values and takes a
42300     lot longer to run than Method_B.  Method_B executes in the same amount of time
42301     as the currently existing DDR autocalibration routine, i.e. 1 second or so.
42302     Normally Method_B is used and it is set as the default method.
42303
42304     The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
42305     Controller registers.[bit-field]:
42306     1)  SDRAM0_RQDC.[RQFD]
42307     2)  SDRAM0_RFDC.[RFFD]
42308
42309     This alternate PPC4xx DDR autocalibration code calibrates the following
42310     IBM SDRAM Controller registers.[bit-field]:
42311
42312     1)  SDRAM0_WRDTR.[WDTR]
42313     2)  SDRAM0_CLKTR.[CKTR]
42314     3)  SDRAM0_RQDC.[RQFD]
42315     4)  SDRAM0_RFDC.[RFFD]
42316
42317     and will also use the calibrated settings of the above four registers that
42318     produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
42319     register.[bit-field].
42320
42321     Signed-off-by: Adam Graham <agraham@amcc.com>
42322     Signed-off-by: Stefan Roese <sr@denx.de>
42323
42324 commit e07f4a8033b6270b8103049adb6456f660ff4a89
42325 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
42326 Date:   Mon Sep 1 13:09:39 2008 -0400
42327
42328     ppc44x: Unification of virtex5 pp440 boards
42329
42330     This patch provides an unificated way of handling xilinx v5 ppc440 boards.
42331
42332     It unificates 3 different things:
42333
42334     1) Source code
42335     A new board called ppc440-generic has been created. This board includes
42336     a generic tlb initialization (Maps the whole memory into virtual) and
42337     defines board_pre_init, checkboard, initdram and get_sys_info weakly,
42338     so, they can be replaced by specific functions.
42339
42340     If a new board needs to redefine any of the previous functions
42341     (specific initialization) it can create a new directory with the
42342     specific initializations needed. (see the example ml507 board).
42343
42344     2) Configuration file
42345     Common configurations are located under configs/xilinx-ppc440.h, this
42346     header file interpretes the xparameters file generated by EDK and
42347     configurates u-boot in correspondence. Example: if there is a Temac,
42348     allows CMD_CONFIG_NET
42349     Specific configuration are located under specific configuration file.
42350     (see the example ml507 board)
42351
42352     3) Makefile
42353     Some work has been done in order to not duplicate work in the Main
42354     Makefile. Please see the attached code.
42355
42356     In order to support new boards they can be implemented in the next way:
42357
42358     a) Simple Generic Board  (90% of the time)
42359     Using EDK generates a new xparameters.h file, replace
42360     ppc440-generic/xparameters.h  and run make xilinx-ppc440-generic_config
42361     && make
42362
42363     b) Simple Boards with special u-boot parameters (9 % of the time)
42364     Create a new file under configs for it (use ml507.h as example) and
42365     change your paramaters. Create a new Makefile paragraph and compile
42366
42367     c) Complex boards (1% of the time)
42368     Create a new folder for the board, like the ml507
42369
42370     Finally, it adds support for the Avnet FX30T Evaluation board, following
42371     the new generic structure:
42372
42373     Cheap board by Avnet for evaluating the Virtex5 FX technology.
42374
42375     This patch adds support for:
42376      - UartLite
42377      - 16MB Flash
42378      - 64MB RAM
42379
42380     Prior using U-boot in this board, read carefully the ERRATA by Avnet
42381     to solve some memory initialization issues.
42382
42383     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
42384     Signed-off-by: Stefan Roese <sr@denx.de>
42385
42386 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
42387 Author: Nick Spence <nick.spence@freescale.com>
42388 Date:   Tue Sep 2 15:21:16 2008 -0500
42389
42390     mpc83xx: fix mpc8313 in-tree building with NAND
42391
42392     and add mpc8313 NAND build to MAKEALL
42393
42394     Signed-off-by: Nick Spence <nick.spence@freescale.com>
42395     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42396
42397 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
42398 Author: Nick Spence <nick.spence@freescale.com>
42399 Date:   Thu Aug 28 14:09:25 2008 -0700
42400
42401     mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
42402
42403     Cleans up some latent issues with the data cache control so that
42404     dcache_enable() and dcache_disable() will work reliably (after
42405     unlock_ram_in_cache() has been called)
42406
42407     Signed-off-by: Nick Spence <nick.spence@freescale.com>
42408     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42409
42410 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
42411 Author: Nick Spence <nick.spence@freescale.com>
42412 Date:   Thu Aug 28 14:09:19 2008 -0700
42413
42414     mpc83xx: Store and display Arbiter Event Register values
42415
42416     Record the Arbiter Event Register values and optionally display them.
42417
42418     The Arbiter Event Register can record the type and effective address of
42419     an arbiter error, even through an HRESET. This patch stores the values in
42420     the global data structure.
42421
42422     Display of the Arbiter Event registers immediately after the RSR value
42423     can be enabled with defines. The Arbiter values will only be displayed
42424     if an arbiter event has occured since the last Power On Reset, and either
42425     of the following defines exist:
42426      #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
42427                                         and type register values
42428      #define CONFIG_DISPLAY_AER_FULL  - display and interpret the arbiter
42429                                         event register values
42430
42431     Address Only transactions are one of the trapped events that can register
42432     as an arbiter event. They occur with some cache manipulation instructions
42433     if the HID0_ABE (Address Broadcast Enable) is set and the memory region
42434     has the MEMORY_COHERENCE WIMG bit set. Setting:
42435      #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
42436                                   only events, so that it can still capture
42437                                   other real problems.
42438
42439     Signed-off-by: Nick Spence <nick.spence@freescale.com>
42440     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42441
42442 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
42443 Author: Nick Spence <nick.spence@freescale.com>
42444 Date:   Thu Aug 28 14:09:11 2008 -0700
42445
42446     mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
42447
42448     This is needed in unlock_ram_in_cache() because it is called from C and
42449     will corrupt the small data area anchor that is kept in R2.
42450
42451     lock_ram_in_cache() is modified similarly as good coding practice, but
42452     is not called from C.
42453
42454     Signed-off-by: Nick Spence <nick.spence@freescale.com>
42455     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42456
42457 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
42458 Author: Nick Spence <nick.spence@freescale.com>
42459 Date:   Fri Aug 22 23:52:50 2008 -0700
42460
42461     MPC83XX: Fix GPIO configuration - set gpio level before direction
42462
42463     Set DAT value before DIR values to avoid creating glitches on the
42464     GPIO signals.
42465
42466     Set gpio level register before direction register to inhibit
42467     glitches on high level output pins.
42468
42469     Dir and data gets cleared at powerup, so high level output lines see
42470     a short low pulse between setting the direction and level registers.
42471
42472     Issue was seen on a new board with the nReset line of the NOR flash
42473     connected to a GPIO. Setting the direction register puts the NOR flash
42474     in reset so the next instruction to set the level cannot get executed.
42475
42476     Signed-off-by: Nick Spence <nick.spence@freescale.com>
42477     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
42478     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42479
42480 commit 7007c5975ee900ad70983b0681d3251e221f8321
42481 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42482 Date:   Tue Sep 2 02:58:32 2008 +0200
42483
42484     doc/qemu_mips: add doc howto debug u-boot with gdb
42485
42486     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42487
42488 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
42489 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42490 Date:   Wed Sep 3 17:15:45 2008 +0200
42491
42492     ppx4xx: Fix broken DASA_SIM board
42493
42494     This patch adds initdram() to DASA_SIM boards that has been
42495     removed accidentally by a previous commit.
42496
42497     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42498     Signed-off-by: Stefan Roese <sr@denx.de>
42499
42500 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
42501 Author: Stefan Roese <sr@denx.de>
42502 Date:   Mon Sep 1 08:35:37 2008 +0200
42503
42504     ppc4xx: Remove reference to common/lists.o from some esd linker scripts
42505
42506     This patch removes some direct references to common/lists.o from some
42507     esd linker scripts. This is necessary because the lists source was moved
42508     and is not in the "common" directory anymore.
42509
42510     Signed-off-by: Stefan Roese <sr@denx.de>
42511
42512 commit 97b0734d65f8a0b03df0a335a2addc759da56107
42513 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42514 Date:   Tue Sep 2 16:33:05 2008 +0200
42515
42516     ppc4xx: Remove obsolete or unused functions from some esd boards
42517
42518     This patch removes initdram() and testdram() from most esd 405 platforms.
42519     Some boards also have an empty dummy implementation of
42520     misc_init_f(). This is also removed.
42521
42522     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42523     Signed-off-by: Stefan Roese <sr@denx.de>
42524
42525 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
42526 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42527 Date:   Tue Sep 2 15:07:54 2008 +0200
42528
42529     ppc4xx: Update VOM405 board configuration
42530
42531     - remove PCI code
42532     - add command line editing
42533     - minor cleanup
42534
42535     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42536     Signed-off-by: Stefan Roese <sr@denx.de>
42537
42538 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
42539 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42540 Date:   Tue Sep 2 15:07:53 2008 +0200
42541
42542     ppc4xx: Remove obsolete initdram() function from VOM405 board
42543
42544     This patch removed the obsolete initdram() function from
42545     VOM405 platform file.
42546
42547     Some minor cleanup.
42548
42549     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42550     Signed-off-by: Stefan Roese <sr@denx.de>
42551
42552 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
42553 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42554 Date:   Tue Sep 2 15:07:52 2008 +0200
42555
42556     ppc4xx: Cleanup VOM405 linker script
42557
42558     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42559     Signed-off-by: Stefan Roese <sr@denx.de>
42560
42561 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
42562 Author: Matthias Fuchs <mf@esd.eu>
42563 Date:   Tue Sep 2 15:07:51 2008 +0200
42564
42565     ppc4xx: Add fdt support for VOM405 boards
42566
42567     Signed-off-by: Matthias Fuchs <mf@esd.eu>
42568     Signed-off-by: Stefan Roese <sr@denx.de>
42569
42570 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
42571 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42572 Date:   Tue Sep 2 11:36:14 2008 +0200
42573
42574     ppc4xx: Coding style cleanup
42575
42576     Wrap long lines etc.
42577
42578     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42579     Signed-off-by: Stefan Roese <sr@denx.de>
42580
42581 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
42582 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42583 Date:   Tue Sep 2 11:35:56 2008 +0200
42584
42585     ppc4xx: Enable USB on PLU405 boards
42586
42587     This patch enables the PCI-OHCI controller on PLU405 board.
42588
42589     Also the default CPU frequency is updated to 266 MHz and
42590     command line editing is enabled.
42591
42592     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42593     Signed-off-by: Stefan Roese <sr@denx.de>
42594
42595 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
42596 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42597 Date:   Tue Sep 2 11:35:35 2008 +0200
42598
42599     ppc4xx: Cleanup PLU405 platform file
42600
42601     This patch
42602     - wraps some long lines
42603     - removes unused/obsolete functions: misc_init_f() and initdram()
42604
42605     Signed-off-by: Matthias Fuchs <mf@esd.eu>
42606     Signed-off-by: Stefan Roese <sr@denx.de>
42607
42608 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
42609 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42610 Date:   Tue Sep 2 11:35:04 2008 +0200
42611
42612     ppc4xx: Cleanup PLU405 linker script
42613
42614     Signed-off-by: Matthias Fuchs <mf@esd.eu>
42615     Signed-off-by: Stefan Roese <sr@denx.de>
42616
42617 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
42618 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42619 Date:   Tue Sep 2 11:34:36 2008 +0200
42620
42621     ppc4xx: Add fdt support for PLU405 boards
42622
42623     Signed-off-by: Matthias Fuchs <mf@esd.eu>
42624     Signed-off-by: Stefan Roese <sr@denx.de>
42625
42626 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
42627 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42628 Date:   Tue Sep 2 11:34:08 2008 +0200
42629
42630     ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
42631
42632     Signed-off-by: Matthias Fuchs <mf@esd.eu>
42633     Signed-off-by: Stefan Roese <sr@denx.de>
42634
42635 commit be1b0d2777e179191a57b138b660547a17e55aad
42636 Author: Jochen Friedrich <jochen@scram.de>
42637 Date:   Tue Sep 2 11:24:59 2008 +0200
42638
42639     Don't tftp to unknown flash
42640
42641     If a board has a variable number of flash banks, there are empty entries
42642     in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
42643     "Outside available Flash". This patch skips flash banks with unknown
42644     flash ids.
42645
42646     Signed-off-by: Jochen Friedrich <jochen@scram.de>
42647     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42648
42649 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
42650 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42651 Date:   Thu Aug 28 13:40:44 2008 +0900
42652
42653     net: smc911x: Add pkt_data_pull and pkt_data_push function
42654
42655     The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
42656     Byte-swapping is necessary, and so poor performance is inevitable.
42657     This problem cannot evade by the swap function of CHIP, this can
42658     evade by software Byte-swapping.
42659     And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
42660     functions necessary to solve this problem.
42661
42662     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42663     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42664
42665 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
42666 Author: Ben Warren <biggerbadderben@gmail.com>
42667 Date:   Sun Aug 31 20:37:00 2008 -0700
42668
42669     Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
42670
42671     Affected boards:
42672         db64360
42673         db64460
42674         katmai
42675         taihu
42676         taishan
42677         yucca
42678         cpc45
42679         cpu87
42680         eXalion
42681         elppc
42682         debris
42683         kvme080
42684         mpc8315erdb
42685         integratorap
42686         ixdp425
42687         oxc
42688         pm826
42689         pm828
42690         pm854
42691         pm856
42692         ppmc7xx
42693         sc3
42694         sc520_spunk
42695         sorcery
42696         tqm8272
42697         tqm85xx
42698         utx8245
42699
42700     Removed initialization of the driver from net/eth.c
42701     Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
42702
42703     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42704
42705 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
42706 Author: Ben Warren <biggerbadderben@gmail.com>
42707 Date:   Sun Aug 31 10:45:44 2008 -0700
42708
42709     Moved initialization of TULIP Ethernet controller to board_eth_init()
42710
42711     Affected boards:
42712         cu824
42713         bab7xx
42714         adciop
42715         dasa_sim
42716         mousse
42717         mpc8540eval
42718         musenki
42719         mvblue
42720         pcippc2/pcippc6
42721         sbc8240
42722         stxssa
42723
42724     Removed initialization of the driver from net/eth.c
42725
42726     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42727
42728 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
42729 Author: Ben Warren <biggerbadderben@gmail.com>
42730 Date:   Sun Aug 31 10:44:19 2008 -0700
42731
42732     Moved initialization of E1000 Ethernet controller to board_eth_init()
42733
42734     Affected boards:
42735         ap1000
42736         mvbc_p
42737         PM854
42738
42739     Removed initialization of the driver from net/eth.c
42740
42741     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42742
42743 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
42744 Author: Ben Warren <biggerbadderben@gmail.com>
42745 Date:   Sun Aug 31 10:40:51 2008 -0700
42746
42747     Moved initialization of plb2800 Ethernet driver to board_eth_init
42748
42749     Affected boards:
42750         purple
42751
42752     Removed initialization of controller from net/eth.c
42753
42754     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42755
42756 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
42757 Author: Ben Warren <biggerbadderben@gmail.com>
42758 Date:   Sun Aug 31 10:39:12 2008 -0700
42759
42760     Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
42761
42762     Modified board_eth_init() functions of boards that have this FEC in addition
42763     to other Ethernet controllers.
42764
42765     Affected boards:
42766         bc3450
42767         icecube
42768         mvbc_p
42769         o2dnt
42770         pm520
42771         total5200
42772         tq5200
42773
42774     Removed initialization of controller from net/eth.c
42775
42776     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42777
42778 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
42779 Author: Ben Warren <biggerbadderben@gmail.com>
42780 Date:   Sun Aug 31 10:36:38 2008 -0700
42781
42782     Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
42783
42784     Added a cpu_eth_init() function to MPC512x CPU directory and
42785     removed code from net/eth.c
42786
42787     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42788
42789 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
42790 Author: Ben Warren <biggerbadderben@gmail.com>
42791 Date:   Sun Aug 31 10:16:59 2008 -0700
42792
42793     Moved initialization of IncaIP Ethernet controller to board_eth_init
42794
42795     Affected boards:
42796         IncaIP
42797
42798     Removed initialization of the driver from net/eth.c
42799
42800     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42801
42802 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
42803 Author: Ben Warren <biggerbadderben@gmail.com>
42804 Date:   Sun Aug 31 10:15:26 2008 -0700
42805
42806     Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
42807
42808         Affected boards:
42809             AmigaOneG3SE
42810
42811         Removed initialization of the driver from net/eth.c
42812
42813     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42814
42815 commit 6aca145e067efe75398e9fac97822bd3700de0b2
42816 Author: Ben Warren <biggerbadderben@gmail.com>
42817 Date:   Sun Aug 31 10:13:34 2008 -0700
42818
42819     Moved initialization of GT6426x Ethernet controller to board_eth_init()
42820
42821     Affected boards:
42822         EVB64260
42823         P3G4
42824         ZUMA
42825
42826     Removed initialization of the driver from net/eth.c
42827
42828     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42829
42830 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
42831 Author: Ben Warren <biggerbadderben@gmail.com>
42832 Date:   Sun Aug 31 10:08:43 2008 -0700
42833
42834     Moved initialization of PCNET Ethernet controller to board_eth_init()
42835
42836     Affected boards:
42837         PN62
42838         sc520_cdp
42839
42840     Removed initialization of the driver from net/eth.c
42841
42842     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42843
42844 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
42845 Author: Ben Warren <biggerbadderben@gmail.com>
42846 Date:   Sun Aug 31 10:07:16 2008 -0700
42847
42848     Moved initialization of NATSEMI Ethernet controller to board_eth_init()
42849
42850     Affected boards:
42851         a3000
42852
42853     Removed initialization of the driver from net/eth.c
42854
42855     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42856
42857 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
42858 Author: Ben Warren <biggerbadderben@gmail.com>
42859 Date:   Sun Aug 31 10:03:22 2008 -0700
42860
42861     Moved initialization of NS8382X Ethernet controller to board_eth_init()
42862
42863     Affected boards:
42864         bc3450
42865         cpci5200
42866         mecp5200
42867         pf2000
42868         icecube
42869         o2dnt
42870         pm520
42871         sandpoint8245
42872         total5200
42873         tqm5200
42874
42875     Removed initialization of the driver from net/eth.c
42876
42877     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42878
42879 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
42880 Author: Ben Warren <biggerbadderben@gmail.com>
42881 Date:   Sun Aug 31 09:59:33 2008 -0700
42882
42883     Moved initialization of TSI108 Ethernet controller to board_eth_init()
42884
42885     Affected boards:
42886         mpc7448hpc2
42887
42888     Removed initialization of the driver from net/eth.c
42889
42890     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42891
42892 commit 0b252f50ae218ae15bfb63af44227972686ebc56
42893 Author: Ben Warren <biggerbadderben@gmail.com>
42894 Date:   Sun Aug 31 21:41:08 2008 -0700
42895
42896     Moved initialization of RTL8139 Ethernet controller to board_eth_init()
42897
42898     Affected boards:
42899         hidden_dragon
42900         MPC8544DS
42901         MPC8610HPCN
42902         R2DPLUS
42903         TB0229
42904
42905     Removed initialization of the driver from net/eth.c
42906
42907     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42908
42909 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
42910 Author: Ben Warren <biggerbadderben@gmail.com>
42911 Date:   Sun Aug 31 09:49:42 2008 -0700
42912
42913     Moved initialization of RTL8169 Ethernet controller to board_eth_init()
42914
42915     Affected boards:
42916         linkstation
42917         r7780mp
42918
42919     Removed initialization of the driver from net/eth.c
42920
42921     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42922
42923 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
42924 Author: Ben Warren <biggerbadderben@gmail.com>
42925 Date:   Tue Aug 12 22:11:53 2008 -0700
42926
42927     Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
42928
42929     Removed at91sam9_eth_initialize() from net/eth.c
42930
42931     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42932
42933 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
42934 Author: Ben Warren <biggerbadderben@gmail.com>
42935 Date:   Sun Aug 31 22:22:04 2008 -0700
42936
42937     Introduce netdev.h header file and remove externs
42938
42939     This addresses all drivers whose initializers have already
42940     been moved to board_eth_init()/cpu_eth_init().
42941
42942     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42943
42944 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
42945 Author: Andy Fleming <afleming@freescale.com>
42946 Date:   Sun Aug 31 16:33:30 2008 -0500
42947
42948     Add pixis_set_sgmii command
42949
42950     The 8544DS and 8572DS platforms support an optional SGMII riser card to
42951     expose ethernet over an SGMII interface.  Once the card is in, it is also
42952     necessary to configure the board such that it uses the card, rather than
42953     the on-board ethernet ports.  This can either be done by flipping dip switches
42954     on the motherboard, or by modifying registers in the pixis.  Either way
42955     requires a reboot.
42956
42957     This adds a command to allow users to choose which ports are routed through
42958     the SGMII card, and which through the onboard ports.  It also allows users
42959     to revert to the current switch settings.
42960
42961     This code does not work on the 8572, as the PIXIS is different.
42962
42963     Signed-off-by: Andy Fleming <afleming@freescale.com>
42964     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42965
42966 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
42967 Author: Andy Fleming <afleming@freescale.com>
42968 Date:   Sun Aug 31 16:33:29 2008 -0500
42969
42970     Add SGMII support for the 8544 DS
42971
42972     The 8544 DS has an optional SGMII Riser card, which uses different PHY
42973     addresses.  Check if we are in SGMII mode, and invoke the SGMII Riser
42974     setup code if so.
42975
42976     Signed-off-by: Andy Fleming <afleming@freescale.com>
42977     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42978
42979 commit 652f7c2eef76a1340928bd660845441e932d86a2
42980 Author: Andy Fleming <afleming@freescale.com>
42981 Date:   Sun Aug 31 16:33:28 2008 -0500
42982
42983     Add support for Freescale SGMII Riser Card
42984
42985     The 8544DS and 8572DS systems have an optional SGMII riser card which
42986     exposes new ethernet ports which are connected to the eTSECs via an
42987     SGMII interface.  The SGMII PHYs for this board are offset from the standard
42988     PHY addresses, so this code modifies the passed in tsec_info structure to
42989     use the SGMII PHYs on the card, instead.
42990
42991     Signed-off-by: Andy Fleming <afleming@freescale.com>
42992     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42993
42994 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
42995 Author: Andy Fleming <afleming@freescale.com>
42996 Date:   Sun Aug 31 16:33:27 2008 -0500
42997
42998     Add SGMII support to the tsec
42999
43000     Adds support for configuring the TBI to talk properly with the SerDes.
43001
43002     Signed-off-by: Andy Fleming <afleming@freescale.com>
43003     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43004
43005 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
43006 Author: Andy Fleming <afleming@freescale.com>
43007 Date:   Sun Aug 31 16:33:26 2008 -0500
43008
43009     Pass in tsec_info struct through tsec_initialize
43010
43011     The tsec driver contains a hard-coded array of configuration information
43012     for the tsec ethernet controllers.  We create a default function that works
43013     for most tsecs, and allow that to be overridden by board code.  It creates
43014     an array of tsec_info structures, which are then parsed by the corresponding
43015     driver instance to determine configuration.  Also, add regs, miiregs, and
43016     devname fields to the tsec_info structure, so that we don't need the kludgy
43017     "index" parameter.
43018
43019     Signed-off-by: Andy Fleming <afleming@freescale.com>
43020     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43021
43022 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
43023 Author: Andy Fleming <afleming@freescale.com>
43024 Date:   Sun Aug 31 16:33:25 2008 -0500
43025
43026     tsec: Move tsec.h to include/
43027
43028     This is to prepare the way for board code passing in the tsec_info structure
43029
43030     Signed-off-by: Andy Fleming <afleming@freescale.com>
43031     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43032
43033 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
43034 Author: Sergei Poselenov <sposelenov@emcraft.com>
43035 Date:   Fri Jun 6 15:52:44 2008 +0200
43036
43037     PHY: Add support for the M88E1121R Marvell chip.
43038
43039     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43040     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
43041     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43042
43043 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
43044 Author: Wolfgang Denk <wd@denx.de>
43045 Date:   Tue Sep 2 21:17:36 2008 +0200
43046
43047     fw_env.c: fix build problems with MTD_VERSION=old
43048
43049     (as needed to support old 2.4 Linux kernel based releases)
43050
43051     Signed-off-by: Wolfgang Denk <wd@denx.de>
43052
43053 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
43054 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43055 Date:   Mon Sep 1 17:11:26 2008 +0200
43056
43057     device: make device_register() clone the device
43058
43059     This is expected by the callers, but this fact was hidden well within
43060     the old list implementation.
43061
43062     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43063
43064 commit baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0
43065 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43066 Date:   Mon Sep 1 14:00:07 2008 +0200
43067
43068     avr32: Add support for "GPIO" port mux
43069
43070     The "GPIO" port mux is used on AVR32 UC3 parts as well as AT32AP7200 and
43071     all later AVR32 chips. This patch adds a driver for it, implementing the
43072     same API as the existing portmux-pio driver but with more functionality.
43073
43074     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43075
43076 commit d92852579546c46bdaac978e0b6767a6645b69e0
43077 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43078 Date:   Fri Aug 15 15:02:29 2008 +0200
43079
43080     atstk1000: Convert to new-style makefile
43081
43082     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43083
43084 commit 25e6854d42c11046a468576179b5494f850311b2
43085 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43086 Date:   Sun Aug 31 18:46:35 2008 +0200
43087
43088     avr32: use board_early_init_r instead of board_init_info
43089
43090     Replace the avr32-specific board_init_info hook by the standard
43091     board_early_init_r hook and make it optional.
43092
43093     board_early_init_r() runs somewhat earlier than board_init_info used to
43094     do, but this isn't a problem for any of the in-tree boards.
43095
43096     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43097
43098 commit 36d375faf5cff98e8dca32aabbbb1ec6036437dd
43099 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43100 Date:   Sun Aug 31 18:24:24 2008 +0200
43101
43102     avr32: Use board_postclk_init instead of gclk_init
43103
43104     Replace the avr32-specific gclk_init() board hook with the standard
43105     board_postclk_init() hook which is supposed to run at the same point
43106     during initialization.
43107
43108     Provide a dummy weak alias for boards not implementing this hook. The
43109     cost of this is:
43110       - 2 bytes for the dummy function (retal 0)
43111       - 2 bytes for each unnecessary function call (short rcall)
43112
43113     which is a pretty small price to pay for avoiding lots of #ifdef
43114     clutter. In this particular case, all boards probably end up slightly
43115     smaller because we avoid the conditional checking if the gclk_init
43116     symbol is NULL.
43117
43118     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43119
43120 commit abdde2b1d570b1ee77606bf783444fcddf7f0965
43121 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43122 Date:   Sun Aug 31 18:07:35 2008 +0200
43123
43124     hammerhead: Use gclk helper functions
43125
43126     Use the new gclk helper functions to set up the PHY clock instead of
43127     accessing the PM registers directly.
43128
43129     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43130
43131 commit 98090cd75cdb40b2ab94c806c338540a5716748b
43132 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43133 Date:   Sun Aug 31 18:05:32 2008 +0200
43134
43135     avr32: Add gclk helper functions
43136
43137     Add two helper functions for configuring and enabling generic clocks:
43138       - gclk_enable_output: Enables output on a GCLKx pin
43139       - gclk_set_rate: Configures a gclk to run at a specific rate
43140
43141     This should eliminate any reason to go mucking about with PM registers
43142     from board code.
43143
43144     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43145
43146 commit ab0df36fc7db9dda0b786b909f653e279dfeb9cf
43147 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43148 Date:   Fri Aug 29 21:09:49 2008 +0200
43149
43150     avr32: refactor the portmux/gpio code
43151
43152       - Separate the portmux configuration functionality from the GPIO pin
43153         control API.
43154       - Separate the controller-specific code from the chip-specific code.
43155       - Allow "ganged" port configuration (multiple pins at once).
43156       - Add more flexibility to the "canned" peripheral select functions:
43157           - Allow using more than 23 address bits, more chip selects, as
43158         well as NAND- and CF-specific pins.
43159           - Make the MACB SPEED pin optional, and choose between MII/RMII
43160         using a parameter instead of an #ifdef.
43161           - Make it possible to use other MMC slots than slot 0, and support
43162         different MMC/SDCard data bus widths.
43163       - Use more reasonable pull-up defaults; floating pins may consume a
43164         lot of power.
43165       - Get rid of some custom portmux code from the mimc200 board code. The
43166         old gpio/portmux API couldn't really handle its requirements, but
43167         the new one can.
43168       - Add documentation.
43169
43170     The end result is slightly smaller code for all boards. Which isn't
43171     really the point, but at least it isn't any larger.
43172
43173     This has been verified on ATSTK1002 and ATNGW100. I'd appreciate if
43174     the board maintainers could help me test this on their boards. In
43175     particular, the mimc200 port has lost a lot of code, so I'm hoping Mark
43176     can help me out.
43177
43178     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43179     Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
43180     Cc: Mark Jackson <mpfj@mimc.co.uk>
43181     Cc: Alex Raimondi <alex.raimondi@miromico.ch>
43182     Cc: Julien May <julien.may@miromico.ch>
43183
43184     Changes since v1:
43185       * Enable pullup on NWAIT
43186       * Add missing include to portmux-pio.h
43187       * Rename CONFIG_PIO2 -> CONFIG_PORTMUX_PIO to match docs
43188
43189 commit 4c24e8288c601cb773ab02528b48a8577970e867
43190 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43191 Date:   Sat Aug 30 17:28:36 2008 +0200
43192
43193     avr32: data_bits should reflect the actual number of data bits
43194
43195     Make the data_bits enum in struct sdram_config reflect the actual number
43196     of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean
43197     32 bits is just too confusing.
43198
43199     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43200
43201 commit 66b7bc5175325809718d8d49ef073bc1036ad71b
43202 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43203 Date:   Fri Aug 29 17:48:18 2008 +0200
43204
43205     avr32: Update README
43206
43207     Remove some outdated and/or unnecessary information, and add updated
43208     information about the toolchain and buildroot.
43209
43210     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43211
43212 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
43213 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43214 Date:   Sun Aug 31 23:28:15 2008 +0900
43215
43216     sh: Remove CC line from board's Makefile
43217
43218     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43219
43220 commit 468eae0660de6fdfd9999944c536ecc4797bd944
43221 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43222 Date:   Sun Aug 31 23:25:57 2008 +0900
43223
43224     sh: Replaced "@./mkconfig" for @$(MKCONFIG)
43225
43226     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43227
43228 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
43229 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43230 Date:   Thu Aug 28 14:50:52 2008 +0900
43231
43232     sh: Add support sh2 to MAKEALL
43233
43234     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43235     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43236
43237 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
43238 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43239 Date:   Thu Aug 28 14:52:23 2008 +0900
43240
43241     sh: Fix compile error rsk7203 board
43242
43243     This boards used old type preprocessor.
43244     This patch fix compile error.
43245
43246     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43247     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43248
43249 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
43250 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43251 Date:   Thu Aug 28 14:53:31 2008 +0900
43252
43253     sh: Fix compile error sh7785lcr board
43254
43255     This boards used old type preprocessor.
43256     This patch fix compile error.
43257
43258     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43259     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43260
43261 commit 6f0da4972e48f99d37bc522814940a6022cd3084
43262 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43263 Date:   Fri Aug 22 17:39:09 2008 +0900
43264
43265     sh: Renesas Solutions AP325RXA board support
43266
43267     AP325RXA is SH7723's reference board.
43268     This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
43269     In this patch, support SCIF, NOR Flash, and Ethernet.
43270
43271     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43272     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43273
43274 commit ab09f433b50bb83b5e440c335bc3839ee069e534
43275 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43276 Date:   Fri Aug 22 17:48:51 2008 +0900
43277
43278     sh: add support Renesas SH7723
43279
43280     Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
43281     This patch supports CPU register's header file and SCIF serial driver.
43282
43283     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43284     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43285
43286 commit c655fad06ba3fb042dbc667724a40e1a9a091248
43287 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43288 Date:   Sun Aug 31 23:02:04 2008 +0900
43289
43290     sh: Renesas RSK+ 7203 board support
43291
43292     This adds initial support for the RTE RSK+ SH7203 board.
43293
43294     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43295     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43296
43297 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
43298 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43299 Date:   Thu Jul 3 23:11:02 2008 +0900
43300
43301     sh: Add support Renesas SH7203 processor
43302
43303     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43304     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43305
43306 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
43307 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43308 Date:   Sun Aug 31 22:48:33 2008 +0900
43309
43310     sh: Add support SH2/SH2A which is CPU of Renesas Technology
43311
43312     Add support SH2/SH2A basic function.
43313
43314     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43315     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43316
43317 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
43318 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43319 Date:   Sun Aug 31 22:45:08 2008 +0900
43320
43321     sh: Renesas R0P7785LC0011RL board support
43322
43323     This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
43324     Graphic, Ethernet, USB, SD, RTC, and I2C controller.
43325
43326     This patch supports the following functions:
43327      - 128MB DDR2-SDRAM (29-bit address mode only)
43328      - NOR Flash
43329      - USB host
43330      - Ethernet
43331
43332     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
43333     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43334
43335 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
43336 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
43337 Date:   Thu Jul 10 19:32:53 2008 +0900
43338
43339     sh: add support for SH7785
43340
43341     Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
43342     This patch supports CPU register's header file.
43343
43344     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
43345     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43346
43347 commit d6e04258be8f2408845468d3cf722a4cf0433445
43348 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43349 Date:   Sun Aug 31 04:45:42 2008 +0200
43350
43351     davinci: fix remaining dm644x_eth
43352
43353     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43354
43355 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
43356 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43357 Date:   Sun Aug 31 04:24:56 2008 +0200
43358
43359     fs: Move conditional compilation to Makefile
43360
43361     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43362
43363 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
43364 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43365 Date:   Sun Aug 31 04:24:55 2008 +0200
43366
43367     devices: merge to list_head
43368
43369     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43370
43371 commit ef0255fc75f28655f9681422079287d68a14dbaa
43372 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43373 Date:   Sun Aug 31 04:24:51 2008 +0200
43374
43375     update linux/list
43376
43377     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43378
43379 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
43380 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43381 Date:   Sun Aug 31 00:39:48 2008 +0200
43382
43383     smdk6400: add gitignore
43384
43385     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43386
43387 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
43388 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43389 Date:   Sun Aug 31 00:39:48 2008 +0200
43390
43391     smdk6400: Use CONFIG_FLASH_CFI_DRIVER
43392
43393     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43394
43395 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
43396 Author: Guennadi Liakhovetski <lg@denx.de>
43397 Date:   Sun Aug 31 00:39:47 2008 +0200
43398
43399     smdk6400: remove redundant bootargs definition
43400
43401     Double bootargs setting leads to a duplicated environmant entry.
43402
43403     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43404
43405 commit 11edcfe260f20dcea79284a3e95270989d433854
43406 Author: Guennadi Liakhovetski <lg@denx.de>
43407 Date:   Sun Aug 31 00:39:47 2008 +0200
43408
43409     ARM: Add support for S3C6400 based SMDK6400 board
43410
43411     SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
43412     driver for it too. The board can also boot from the NOR flash, but due to
43413     hardware limitations it can only address 64KiB on it, which is not enough
43414     for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
43415
43416     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43417
43418 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
43419 Author: Guennadi Liakhovetski <lg@denx.de>
43420 Date:   Sun Aug 31 00:39:47 2008 +0200
43421
43422     NAND: add NAND driver for S3C64XX
43423
43424     Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
43425
43426     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43427
43428 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
43429 Author: Guennadi Liakhovetski <lg@denx.de>
43430 Date:   Sun Aug 31 00:39:47 2008 +0200
43431
43432     S3C64XX: remove broken HWFLOW support from the serial driver
43433
43434     As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
43435     broken and currently unused. Remove it.
43436
43437     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43438
43439 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
43440 Author: Guennadi Liakhovetski <lg@denx.de>
43441 Date:   Sun Aug 31 00:39:47 2008 +0200
43442
43443     serial: add S3C64XX serial driver
43444
43445     Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
43446
43447     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43448
43449 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
43450 Author: Guennadi Liakhovetski <lg@denx.de>
43451 Date:   Sun Aug 31 00:39:46 2008 +0200
43452
43453     USB: Add support for OHCI controller on S3C6400
43454
43455     Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
43456     try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
43457     it should work too and we could still profit from instruction cache.
43458
43459     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43460
43461 commit 9b07773f8883665b002500c190507e9fd99b7181
43462 Author: Guennadi Liakhovetski <lg@denx.de>
43463 Date:   Sun Aug 31 00:39:46 2008 +0200
43464
43465     ARM: Add arm1176 core with S3C6400 SoC
43466
43467     Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
43468
43469     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43470
43471 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
43472 Author: Sandeep Paulraj <s-paulraj@ti.com>
43473 Date:   Sun Aug 31 00:39:46 2008 +0200
43474
43475     ARM DaVinci: Changing function names for EMAC driver
43476
43477     DM644x is just one of a series of DaVinci chips that use the EMAC driver.
43478     By replacing all the function names that start with dm644x_* to davinci_*
43479     we make these function more portable. I have tested this change on my EVM.
43480     DM6467 is another DaVinci SOC which uses the EMAC driver and i will
43481     be sending patches that add DaVinci DM6467 support to the list soon.
43482
43483     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
43484
43485 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
43486 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
43487 Date:   Sat Aug 30 23:21:30 2008 +0200
43488
43489     Integrator[AP/CP] - Remove unused file memsetup.S
43490
43491     - memsetup.s is changed/merged to lowlevel_init.S
43492       memsetup.S has a global label memsetup that just returns back to caller
43493     - memsetup global label is changed/merged to lowlevel_init
43494       This label is not called from anywhere.
43495
43496     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
43497
43498 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
43499 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43500 Date:   Wed Aug 27 21:35:52 2008 +0200
43501
43502     ARM DaVinci: Standardize names of directories/files
43503
43504     ARM DaVinci: Standardize names of directories/files.
43505
43506     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43507     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43508
43509 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
43510 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43511 Date:   Fri Jul 11 15:10:13 2008 -0400
43512
43513     ARM DaVinci: Move common functions to board/davinci/common
43514
43515     ARM DaVinci: Move common functions to board/davinci/common.
43516
43517     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43518
43519 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
43520 Author: Stefan Roese <sr@denx.de>
43521 Date:   Fri Aug 29 11:56:49 2008 +0200
43522
43523     ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
43524
43525     This function is needed for the new NAND infrastructure. We only need
43526     a dummy implementation though for the NDFC.
43527
43528     Signed-off-by: Stefan Roese <sr@denx.de>
43529
43530 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
43531 Author: Stefan Roese <sr@denx.de>
43532 Date:   Fri Aug 29 12:06:27 2008 +0200
43533
43534     ppc4xx: Increase image size for NAND boot target
43535
43536     This is needed since now with HUSH enabled (amcc-common.h) the image
43537     read from NAND exceeds the previous limit.
43538
43539     Signed-off-by: Stefan Roese <sr@denx.de>
43540
43541 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
43542 Author: Ben Warren <biggerbadderben@gmail.com>
43543 Date:   Thu Aug 28 23:58:30 2008 -0700
43544
43545     Move MPC512x_FEC driver to drivers/net
43546
43547     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43548
43549 commit 80b00af01b3c9154774de2936f05a051e92f6a03
43550 Author: Ben Warren <biggerbadderben@gmail.com>
43551 Date:   Thu Aug 28 23:58:29 2008 -0700
43552
43553     Move MPC5xxx_FEC driver to drivers/net
43554
43555     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43556
43557 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
43558 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43559 Date:   Fri Aug 29 21:53:57 2008 +0200
43560
43561     cmd_terminal: remove no need ifdef
43562
43563     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43564
43565 commit 578118bdf122877ae769776be002255be447b4fa
43566 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43567 Date:   Fri Aug 29 21:53:57 2008 +0200
43568
43569     common/Makefile: order by functionality
43570
43571     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43572
43573 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
43574 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43575 Date:   Fri Aug 29 21:53:56 2008 +0200
43576
43577     miiphyutil: Move conditional compilation to Makefile
43578
43579     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43580
43581 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
43582 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43583 Date:   Fri Aug 29 21:53:37 2008 +0200
43584
43585     autoscript: Move conditional compilation to Makefile
43586
43587     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43588
43589 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
43590 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43591 Date:   Fri Aug 29 01:18:11 2008 +0200
43592
43593     crc16: move to lib_generic
43594
43595     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43596
43597 commit 55195773eacefb22dd483a3c560ea30a14263ce1
43598 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43599 Date:   Fri Aug 29 01:18:01 2008 +0200
43600
43601     miiphybb: move to drivers/net/phy
43602
43603     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43604
43605 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
43606 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43607 Date:   Thu Aug 28 12:31:51 2008 +0200
43608
43609     soft_spi: move to drivers/spi
43610
43611     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43612
43613 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
43614 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43615 Date:   Thu Aug 28 12:31:51 2008 +0200
43616
43617     soft_i2c: move to drivers/i2c
43618
43619     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43620
43621 commit 717a222229fdb77703e9174d0eb08a4b41febf49
43622 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43623 Date:   Thu Aug 28 12:31:48 2008 +0200
43624
43625     gunzip: move to lib_generic
43626
43627     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43628
43629 commit 52aef8f9ba28b747973bf76741c23db658d5773c
43630 Author: Wolfgang Ocker <weo@reccoware.de>
43631 Date:   Tue Aug 26 19:55:23 2008 +0200
43632
43633     ppc4xx: NAND configuration
43634
43635     Made NAND bank configuration setting a config variable.
43636
43637     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
43638     Signed-off-by: Stefan Roese <sr@denx.de>
43639
43640 commit 5bc542a593abc9e974fbd34704af85c37c366c60
43641 Author: Victor Gallardo <vgallardo@amcc.com>
43642 Date:   Thu Aug 28 16:03:28 2008 -0700
43643
43644     ppc4xx: fix UIC external_interrupt hang on UIC0
43645
43646     This patch fixes a UIC external_interrupt hang if critical or non-critical
43647     interrupt is set at the same time as a normal interrupt is set on UIC0.
43648
43649     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
43650     Signed-off-by: Stefan Roese <sr@denx.de>
43651
43652 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
43653 Author: Prodyut  Hazarika <phazarika@amcc.com>
43654 Date:   Wed Aug 27 16:39:00 2008 -0700
43655
43656     ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
43657
43658     Removed Magic numbers from Initialization preload registers
43659     Tested with Kilauea, Glacier, Canyonlands and Katmai boards
43660     About 5-7% improvement seen for LMBench memtests
43661
43662     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
43663     Signed-off-by: Stefan Roese <sr@denx.de>
43664
43665 commit 8a490422bed685c9491274ec997f62061d88620b
43666 Author: John Rigby <jrigby@freescale.com>
43667 Date:   Thu Aug 28 13:17:07 2008 -0600
43668
43669     ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
43670
43671     MPC5121 rev 2 silicon has a new register for controlling how long
43672     CS is asserted after deassertion of ALE in multiplexed mode.
43673
43674     The default is to assert CS together with ALE.  The alternative
43675     is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
43676
43677     The default is wrong for the NOR flash and CPLD on the ADS5121.
43678
43679     This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
43680     it does so conditionally based on silicon rev 2.0 or greater.
43681
43682     Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
43683     Signed-off-by: John Rigby <jrigby@freescale.com>
43684
43685 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
43686 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43687 Date:   Tue Aug 19 00:56:46 2008 +0600
43688
43689     Add I2C frequency dividers for ColdFire
43690
43691     The existing I2C freqency dividers for FDR does not apply
43692     to ColdFire platforms; thus, a seperate table is added
43693     based on MCF5xxx Reference Manual
43694
43695     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
43696     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43697     Acked-by: Tabi Timur <timur@freescale.com>
43698
43699 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
43700 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43701 Date:   Tue Aug 19 03:01:19 2008 +0600
43702
43703     ColdFire: I2C fix for multiple platforms
43704
43705     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43706
43707 commit d53cf6a9c7423cba668b867978648645f71c3090
43708 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43709 Date:   Tue Aug 19 00:37:13 2008 +0600
43710
43711     ColdFire: Add CONFIG_MII_INIT for M5272C3
43712
43713     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43714
43715 commit f78ced3028d4130b24a318943a70cf5584ab16f4
43716 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43717 Date:   Tue Aug 19 00:26:25 2008 +0600
43718
43719     ColdFire: Multiple fixes for MCF5445x platforms
43720
43721     Add FEC pin set and mii reset in __mii_init(). Change
43722     legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
43723     change cfi_offset to 0, and change CFG_FLASH_CFI to
43724     CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
43725     M54455EVB env settings in configuration file.
43726
43727     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43728
43729 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
43730 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43731 Date:   Fri Aug 15 18:24:25 2008 +0000
43732
43733     ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
43734
43735     The user manuals recommend 7.
43736
43737     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
43738     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43739
43740 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
43741 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43742 Date:   Fri Aug 15 16:50:07 2008 +0000
43743
43744     ColdFire: Raise uart baudrate to 115200 bps
43745
43746     M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
43747     uart baudrate increase from 19200 to 115200 bps
43748
43749     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43750
43751 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
43752 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43753 Date:   Wed Aug 13 12:07:03 2008 +0000
43754
43755     ColdFire: Fix board.c warning message
43756
43757     Implicit declaration of nand_init() warning message
43758
43759     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43760
43761 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
43762 Author: Kumar Gala <galak@kernel.crashing.org>
43763 Date:   Wed Aug 27 01:10:34 2008 -0500
43764
43765     FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
43766
43767     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43768
43769 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
43770 Author: Heiko Schocher <hs@denx.de>
43771 Date:   Thu Aug 21 20:44:49 2008 +0200
43772
43773     mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
43774
43775     Signed-off-by: Heiko Schocher <hs@denx.de>
43776
43777 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
43778 Author: Kumar Gala <galak@kernel.crashing.org>
43779 Date:   Tue Aug 19 14:46:36 2008 -0500
43780
43781     mpc85xx: remove redudant code with lib_ppc/interrupts.c
43782
43783     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
43784     not show how that happened, but there is no good reason for it.
43785
43786     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
43787     they exist.
43788
43789     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43790
43791 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
43792 Author: Kumar Gala <galak@kernel.crashing.org>
43793 Date:   Fri Jul 25 13:31:05 2008 -0500
43794
43795     mpc85xx: Add support for the MPC8536DS reference board
43796
43797     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43798     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
43799     Signed-off-by: Dejan Minic <minic@freescale.com>
43800     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
43801     Signed-off-by: Dave Liu <daveliu@freescale.com>
43802     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43803
43804 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
43805 Author: Kumar Gala <galak@kernel.crashing.org>
43806 Date:   Tue Aug 12 11:14:19 2008 -0500
43807
43808     mpc85xx: Add support for the MPC8536
43809
43810     The MPC8536 Adds SDHC and SATA controllers to the PQ3 family.  We
43811     also have SERDES init code for the 8536.
43812
43813     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43814     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
43815     Signed-off-by: Dejan Minic <minic@freescale.com>
43816     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
43817     Signed-off-by: Dave Liu <daveliu@freescale.com>
43818
43819 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
43820 Author: Kumar Gala <galak@kernel.crashing.org>
43821 Date:   Tue Aug 12 11:13:08 2008 -0500
43822
43823     mpc85xx: Add support for the MPC8572DS reference board
43824
43825     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43826
43827 commit 457caecdbca3df21a93abff19eab12dbc61b7897
43828 Author: Kumar Gala <galak@kernel.crashing.org>
43829 Date:   Wed Aug 27 01:05:35 2008 -0500
43830
43831     FSL DDR: Remove old SPD support from cpu/mpc85xx
43832
43833     All 85xx boards have been converted to the new code so we can
43834     remove the old SPD DDR setup code.
43835
43836     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43837
43838 commit 0e7927db138976469e7257e29c1338050a50fcd9
43839 Author: Kumar Gala <galak@kernel.crashing.org>
43840 Date:   Wed Aug 27 01:04:07 2008 -0500
43841
43842     FSL DDR: Convert STXSSA to new DDR code.
43843
43844     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43845
43846 commit c360d9b970fbb9c13744c355879671165bbb9b9e
43847 Author: Kumar Gala <galak@kernel.crashing.org>
43848 Date:   Wed Aug 27 01:03:42 2008 -0500
43849
43850     FSL DDR: Convert STXGP3 to new DDR code.
43851
43852     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43853
43854 commit 8e55313b7ae12352a343f9b9962e662dbd897187
43855 Author: Kumar Gala <galak@kernel.crashing.org>
43856 Date:   Tue Aug 26 23:52:58 2008 -0500
43857
43858     FSL DDR: Convert SBC8560 to new DDR code.
43859
43860     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43861
43862 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
43863 Author: Kumar Gala <galak@kernel.crashing.org>
43864 Date:   Tue Aug 26 23:52:32 2008 -0500
43865
43866     FSL DDR: Convert MPC8540EVAL to new DDR code.
43867
43868     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43869
43870 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
43871 Author: Kumar Gala <galak@kernel.crashing.org>
43872 Date:   Tue Aug 26 23:52:07 2008 -0500
43873
43874     FSL DDR: Convert PM856 to new DDR code.
43875
43876     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43877
43878 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
43879 Author: Kumar Gala <galak@kernel.crashing.org>
43880 Date:   Tue Aug 26 23:51:49 2008 -0500
43881
43882     FSL DDR: Convert PM854 to new DDR code.
43883
43884     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43885
43886 commit 33b9079ba20926f14238fff863b68a98e938948e
43887 Author: Kumar Gala <galak@kernel.crashing.org>
43888 Date:   Tue Aug 26 23:15:28 2008 -0500
43889
43890     FSL DDR: Convert sbc8548 to new DDR code.
43891
43892     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43893
43894 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
43895 Author: Kumar Gala <galak@kernel.crashing.org>
43896 Date:   Tue Aug 26 23:14:14 2008 -0500
43897
43898     FSL DDR: Convert atum8548 to new DDR code.
43899
43900     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43901
43902 commit be0bd8234b9777ecd63c4c686f72af070d886517
43903 Author: Kumar Gala <galak@kernel.crashing.org>
43904 Date:   Tue Aug 26 22:56:56 2008 -0500
43905
43906     FSL DDR: Convert socrates to new DDR code.
43907
43908     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43909
43910 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
43911 Author: Kumar Gala <galak@kernel.crashing.org>
43912 Date:   Tue Aug 26 08:02:30 2008 -0500
43913
43914     FSL DDR: Convert MPC8544DS to new DDR code.
43915
43916     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43917
43918 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
43919 Author: Jon Loeliger <jdl@freescale.com>
43920 Date:   Tue Mar 18 13:51:05 2008 -0500
43921
43922     FSL DDR: Convert MPC8568MDS to new DDR code.
43923
43924     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43925     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43926
43927 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
43928 Author: Jon Loeliger <jdl@freescale.com>
43929 Date:   Tue Mar 18 13:51:06 2008 -0500
43930
43931     FSL DDR: Convert MPC8548CDS to new DDR code.
43932
43933     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43934     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43935
43936 commit aa11d85cf318b961e029fe50d68ca47d004bce93
43937 Author: Jon Loeliger <jdl@freescale.com>
43938 Date:   Mon Mar 17 15:48:18 2008 -0500
43939
43940     FSL DDR: Convert MPC8541CDS to new DDR code.
43941
43942     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43943     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43944
43945 commit 2b40edb10d81da7bba724edbccd7f53777112579
43946 Author: Jon Loeliger <jdl@freescale.com>
43947 Date:   Tue Mar 18 11:12:42 2008 -0500
43948
43949     FSL DDR: Convert MPC8555ADS to new DDR code.
43950
43951     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43952     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43953
43954 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
43955 Author: Jon Loeliger <jdl@freescale.com>
43956 Date:   Tue Mar 18 11:12:44 2008 -0500
43957
43958     FSL DDR: Convert MPC8560ADS to new DDR code.
43959
43960     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43961     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43962
43963 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
43964 Author: Kumar Gala <galak@kernel.crashing.org>
43965 Date:   Fri Jun 6 13:12:18 2008 -0500
43966
43967     FSL DDR: Convert MPC8540ADS to new DDR code.
43968
43969     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43970
43971 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
43972 Author: Kumar Gala <galak@kernel.crashing.org>
43973 Date:   Tue Aug 26 21:34:55 2008 -0500
43974
43975     FSL DDR: Add 85xx specific register setting
43976
43977     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43978
43979 commit 6fb1b7346849ccd0c20306143e334f5b76143070
43980 Author: Kumar Gala <galak@kernel.crashing.org>
43981 Date:   Mon Jun 9 11:07:46 2008 -0500
43982
43983     FSL DDR: Add e500 TLB helper for DDR code
43984
43985     Provide a helper function that board code can call to map TLBs when
43986     setting up DDR.
43987
43988     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43989
43990 commit d26b739afe5a6760bd345743188759cd9d0f3b47
43991 Author: Andrew Dyer <adyer@righthandtech.com>
43992 Date:   Tue Aug 26 17:03:38 2008 -0500
43993
43994     dm9000 remove dead external phy support, gpio fix
43995
43996     dm9000 has code to detect and initialize external phy parts, but later
43997     on in the code the part is forced to use the internal phy
43998     unconditionally.  Remove the unused/untested code.
43999
44000     change the GPIO initialization so that only the GPIO used as an
44001     internal phy reset (hardwired in the chip) is set as an output.  The
44002     remaining GPIO need to be handled by board specific code to prevent
44003     possible drive conflicts.  Set as inputs for safety.
44004
44005     replace a few magic numbers with defines
44006
44007     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
44008     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44009
44010 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
44011 Author: Peter Tyser <ptyser@xes-inc.com>
44012 Date:   Tue Aug 26 11:17:48 2008 -0500
44013
44014     Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
44015
44016     cmd_net.c command descriptions were updated to describe the optional
44017     hostIPaddr argument.  The dhcp command help message was also updated
44018     to more closely reflect the other commands in cmd_net.c
44019
44020     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
44021     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44022
44023 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
44024 Author: Remy Bohmer <linux@bohmer.net>
44025 Date:   Wed Aug 20 11:30:28 2008 +0200
44026
44027     Fix bogus error message in the DHCP handler
44028
44029     The DHCP handler has 1 state that is not listed in this case, causing a
44030     failure message when there is actually no failure.
44031
44032     Signed-off-by: Remy Bohmer <linux@bohmer.net>
44033     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44034
44035 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
44036 Author: Remy Bohmer <linux@bohmer.net>
44037 Date:   Wed Aug 20 11:30:27 2008 +0200
44038
44039     Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
44040
44041     The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
44042     missing extern inside the net/bootp.h header
44043
44044     Signed-off-by: Remy Bohmer <linux@bohmer.net>
44045     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44046
44047 commit 1803f7f91ff35ca402259065df7557107dcf28a2
44048 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
44049 Date:   Tue Aug 19 21:26:32 2008 +0000
44050
44051     ColdFire: Add FEC Buffer descriptors in SRAM
44052
44053     Add FEC Buffer descriptors and data buffer in SRAM for
44054     faster execution and access.
44055
44056     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
44057     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44058
44059 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
44060 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
44061 Date:   Thu Aug 21 23:55:11 2008 +0000
44062
44063     Fix ColdFire FEC warning messages
44064
44065     Types mismatch and implicit declaration of icache_invalid()
44066     warning messages
44067
44068     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
44069     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44070
44071 commit 6a002171098e968bd5b362347d2831224fab6048
44072 Author: Ben Warren <biggerbadderben@gmail.com>
44073 Date:   Sat Jul 12 00:17:50 2008 -0700
44074
44075     Moved initialization of SKGE Ethernet driver to board code.
44076
44077     The only board using this driver is the SL8245 board.
44078     Removed initialization for the driver from net/eth.c
44079
44080     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44081
44082 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
44083 Author: Ben Warren <biggerbadderben@gmail.com>
44084 Date:   Sat Jul 12 00:08:45 2008 -0700
44085
44086     Moved conditional compilation to Makefile for SK98 Ethernet driver
44087
44088     Brute-force removal of #ifdefs.  Didn't touch the code.
44089     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44090
44091 commit 65d3d99c28dc363d15eaee78225ff643df499b97
44092 Author: Ben Warren <biggerbadderben@gmail.com>
44093 Date:   Fri Jul 11 23:42:19 2008 -0700
44094
44095     Moved initialization of ULI526X Ethernet driver to board code.
44096
44097     The only board using this driver is the Freescale MPC8610HPCD board.
44098     Removed initialization for the driver from net/eth.c
44099
44100     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44101
44102 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
44103 Author: Ben Warren <biggerbadderben@gmail.com>
44104 Date:   Fri Jul 11 23:15:28 2008 -0700
44105
44106     Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
44107
44108     Added board_eth_init() function to bf537-stamp board.
44109     Removed initialization for the Blackin EMAC driver from net/eth.c
44110
44111     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44112
44113 commit fc363ce35408f348cacced68505f3747a53e3d7c
44114 Author: Ben Warren <biggerbadderben@gmail.com>
44115 Date:   Wed Jul 9 01:04:19 2008 -0700
44116
44117     Moved initialization of GRETH Ethernet driver to CPU directory
44118
44119     Added a cpu_eth_init() function to leon2/leon3 CPU directories and
44120     removed code from net/eth.c
44121
44122     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44123
44124 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
44125 Author: Ben Warren <biggerbadderben@gmail.com>
44126 Date:   Tue Aug 26 22:16:25 2008 -0700
44127
44128     Moved initialization of MCFFEC Ethernet driver to CPU directory
44129
44130     Added a cpu_eth_init() function to coldfire CPU directories and
44131     removed code from net/eth.c
44132
44133     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44134
44135 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
44136 Author: Ben Warren <biggerbadderben@gmail.com>
44137 Date:   Tue Aug 26 22:12:36 2008 -0700
44138
44139     Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
44140
44141     Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
44142     removed code from net/eth.c
44143
44144     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44145
44146 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
44147 Author: Kumar Gala <galak@kernel.crashing.org>
44148 Date:   Tue Aug 26 15:01:38 2008 -0500
44149
44150     FSL DDR: Remove old SPD support from cpu/mpc86xx
44151
44152     All 86xx boards have been converted to the new code so we can
44153     remove the old SPD DDR setup code.
44154
44155     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44156
44157 commit 9bd4e5911b750837515466bc7449087698b88e0e
44158 Author: Kumar Gala <galak@kernel.crashing.org>
44159 Date:   Tue Aug 26 15:01:37 2008 -0500
44160
44161     FSL DDR: Convert SBC8641D to new DDR code.
44162
44163     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44164
44165 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
44166 Author: Jon Loeliger <jdl@freescale.com>
44167 Date:   Tue Aug 26 15:01:36 2008 -0500
44168
44169     FSL DDR: Convert MPC8610HPCD to new DDR code.
44170
44171     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44172     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44173
44174 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
44175 Author: Kumar Gala <galak@kernel.crashing.org>
44176 Date:   Tue Aug 26 15:01:35 2008 -0500
44177
44178     FSL DDR: Convert MPC8641HPCN to new DDR code.
44179
44180     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44181     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44182
44183 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
44184 Author: Kumar Gala <galak@kernel.crashing.org>
44185 Date:   Tue Aug 26 15:01:34 2008 -0500
44186
44187     FSL DDR: Add 86xx specific register setting
44188
44189     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44190
44191 commit 233fdd502a6c227f476212b3097653ad48d7e254
44192 Author: Kumar Gala <galak@kernel.crashing.org>
44193 Date:   Tue Aug 26 15:01:32 2008 -0500
44194
44195     FSL DDR: Add DDR2 DIMM paramter support
44196
44197     Compute DIMM parameters based upon the SPD information.
44198
44199     Signed-off-by: James Yang <James.Yang@freescale.com>
44200     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44201     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44202
44203 commit 05c05a2363a6ac11e0e405926034546ffad71fad
44204 Author: Kumar Gala <galak@kernel.crashing.org>
44205 Date:   Tue Aug 26 15:01:30 2008 -0500
44206
44207     FSL DDR: Add DDR1 DIMM paramter support
44208
44209     Compute DIMM parameters based upon the SPD information in spd.
44210
44211     Signed-off-by: James Yang <James.Yang@freescale.com>
44212     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44213     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44214
44215 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
44216 Author: Kumar Gala <galak@kernel.crashing.org>
44217 Date:   Tue Aug 26 15:01:29 2008 -0500
44218
44219     FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
44220
44221     The main purpose of this rewrite it to be able to share the same
44222     initialization code on all FSL PowerPC products that have DDR
44223     controllers.  (83xx, 85xx, 86xx).
44224
44225     The code is broken up into the following steps:
44226         GET_SPD
44227         COMPUTE_DIMM_PARMS
44228         COMPUTE_COMMON_PARMS
44229         GATHER_OPTS
44230         ASSIGN_ADDRESSES
44231         COMPUTE_REGS
44232         PROGRAM_REGS
44233
44234     This allows us to share more code an easily allow for board specific code
44235     overrides.
44236
44237     Additionally this code base adds support for >4G of DDR and provides a
44238     foundation for supporting interleaving on processors with more than one
44239     controller.
44240
44241     Signed-off-by: James Yang <James.Yang@freescale.com>
44242     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44243     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
44244     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
44245     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44246
44247 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
44248 Author: Kumar Gala <galak@kernel.crashing.org>
44249 Date:   Tue Aug 26 15:01:28 2008 -0500
44250
44251     FSL DDR: Provide a generic set_ddr_laws()
44252
44253     Provide a helper function that will setup the last available
44254     LAWs (upto 2) for DDR.  Useful for SPD/dyanmic DDR setting code.
44255
44256     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44257
44258 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
44259 Author: James Yang <James.Yang@freescale.com>
44260 Date:   Tue Aug 26 15:01:27 2008 -0500
44261
44262     Add proper SPD definitions for DDR1/2/3
44263
44264     Also adds helper functions for DDR1/2 to verify the checksum.
44265
44266     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44267
44268 commit 285db74716c724ae8a0ff177878fd09a74428c7b
44269 Author: Wolfgang Denk <wd@denx.de>
44270 Date:   Wed Aug 27 01:02:48 2008 +0200
44271
44272     Update CHANGELOG
44273
44274     Signed-off-by: Wolfgang Denk <wd@denx.de>
44275
44276 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
44277 Author: Heiko Schocher <hs@denx.de>
44278 Date:   Tue Aug 19 10:08:49 2008 +0200
44279
44280     Add support for muas3001 board (MPC8270)
44281
44282     Signed-off-by: Heiko Schocher <hs@denx.de>
44283
44284 commit 322098bff32410d2a00031649b47c4ec90a66d9a
44285 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
44286 Date:   Tue Aug 19 08:31:18 2008 +0530
44287
44288     common/cmd_load.c cleanup - remove unused variables
44289
44290     - Remove unused global variable os_data_count.
44291     - Remove unused variable z.
44292
44293     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
44294
44295 commit 306620b762a4f9fa6678568ad2e8772dec145208
44296 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
44297 Date:   Mon Aug 18 13:35:27 2008 +0200
44298
44299     remove MVS1 board
44300
44301     MVS1 board has reached end-of-life and can be removed completely.
44302
44303     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
44304
44305 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
44306 Author: Kumar Gala <galak@kernel.crashing.org>
44307 Date:   Fri Aug 15 08:24:45 2008 -0500
44308
44309     bootm: refactor do_reset and os boot function args
44310
44311     There is no need for each OS specific function to call do_reset() we
44312     can just do it once in bootm. This means its feasible on an error for
44313     the OS boot function to return.
44314
44315     Also, remove passing in cmd_tbl_t as its not needed by the OS boot
44316     functions.  flag isn't currently used but might be in the future so
44317     we left it alone.
44318
44319     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44320
44321 commit 40afac22a9c602e55c501c800f1c064324711b56
44322 Author: Kumar Gala <galak@kernel.crashing.org>
44323 Date:   Fri Aug 15 08:24:44 2008 -0500
44324
44325     fdt: Added resize command
44326
44327     Resize the fdt to size + padding to 4k boundary
44328
44329     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44330
44331 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
44332 Author: Kumar Gala <galak@kernel.crashing.org>
44333 Date:   Fri Aug 15 08:24:43 2008 -0500
44334
44335     fdt: refactor initrd related code
44336
44337     Created a new fdt_initrd() to deal with setting the initrd properties
44338     in the device tree and fixing up the mem reserve.  We can use this
44339     both in the choosen node handling and lets us remove some duplicated
44340     code when we fixup the initrd info in bootm on PPC.
44341
44342     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44343
44344 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
44345 Author: Kumar Gala <galak@kernel.crashing.org>
44346 Date:   Fri Aug 15 08:24:42 2008 -0500
44347
44348     fdt: refactor fdt resize code
44349
44350     Move the fdt resizing code out of ppc specific boot code and into
44351     common fdt support code.
44352
44353     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44354
44355 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
44356 Author: Kumar Gala <galak@kernel.crashing.org>
44357 Date:   Fri Aug 15 08:24:41 2008 -0500
44358
44359     bootm: refactor image detection and os load steps
44360
44361     Created a bootm_start() that handles the parsing and detection of all
44362     the images that will be used by the bootm command (OS, ramdisk, fdt).
44363     As part of this we now tract all the relevant image offsets in the
44364     bootm_headers_t struct. This will allow us to have all the needed
44365     state for future sub-commands and lets us reduce a bit of arch
44366     specific code on SPARC.
44367
44368     Created a bootm_load_os() that deals with decompression and loading
44369     the OS image.
44370
44371     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44372
44373 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
44374 Author: Kumar Gala <galak@kernel.crashing.org>
44375 Date:   Fri Aug 15 08:24:40 2008 -0500
44376
44377     bootm: move lmb into the bootm_headers_t structure
44378
44379     To allow for persistent state between future bootm subcommands we
44380     need the lmb to exist in a global state.
44381     Moving it into the bootm_headers_t allows us to do that.
44382
44383     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44384
44385 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
44386 Author: Kumar Gala <galak@kernel.crashing.org>
44387 Date:   Fri Aug 15 08:24:39 2008 -0500
44388
44389     bootm: Set working fdt address as part of the bootm flow
44390
44391     Set the fdt working address so "fdt FOO" commands can be used as part
44392     of the bootm flow.  Also set an the environment variable "fdtaddr"
44393     with the value.
44394
44395     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44396
44397 commit 06a09918f3903450313e2047a9cc258bf5872f46
44398 Author: Kumar Gala <galak@kernel.crashing.org>
44399 Date:   Fri Aug 15 08:24:38 2008 -0500
44400
44401     bootm: refactor fdt locating and relocation code
44402
44403     Move the code that handles finding a device tree blob and relocating
44404     it (if needed) into common code so all arch's have access to it.
44405
44406     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44407
44408 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
44409 Author: Kumar Gala <galak@kernel.crashing.org>
44410 Date:   Fri Aug 15 08:24:37 2008 -0500
44411
44412     bootm: refactor ramdisk locating code
44413
44414     Move determing if we have a ramdisk and where its located into the
44415     common code. Keep track of the ramdisk start and end in the
44416     bootm_headers_t image struct.
44417
44418     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44419
44420 commit c160a9544743e80e8889edb2275538e7764ce334
44421 Author: Kumar Gala <galak@kernel.crashing.org>
44422 Date:   Fri Aug 15 08:24:36 2008 -0500
44423
44424     bootm: refactor entry point code
44425
44426     Move entry point code out of each arch and into common code.
44427     Keep the entry point in the bootm_headers_t images struct.
44428
44429     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44430
44431 commit 20220d22b9f41446288588cd2e457e0077a18bed
44432 Author: Randy Vinson <rvinson@mvista.com>
44433 Date:   Wed Aug 13 11:44:57 2008 -0700
44434
44435     mpc7448hpc2: Fix PCI I/O space mapping.
44436
44437     PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
44438     PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
44439     space such that 0xFA000000 in the processor's address space maps to 0
44440     on the PCI I/O bus.
44441
44442     Signed-off-by Randy Vinson <rvinson@mvista.com>
44443     Acked-by: Roy Zang <tie-fei.zang@freescale.com>
44444
44445 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
44446 Author: Guennadi Liakhovetski <lg@denx.de>
44447 Date:   Wed Aug 13 18:10:26 2008 +0200
44448
44449     i.MX31: Specify maintainers for i.MX31-based boards
44450
44451     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
44452     Signed-off-by: Wolfgang Denk <wd@denx.de>
44453
44454 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
44455 Author: Wolfgang Denk <wd@denx.de>
44456 Date:   Tue Aug 26 15:01:28 2008 +0200
44457
44458     ADS5121: adjust image addresses in RAM and flash
44459
44460     Use the same mapping in flash as used by Linux
44461
44462     Signed-off-by: Wolfgang Denk <wd@denx.de>
44463
44464 commit 19f101412c16edee9fd55db4039e1d68a833b28b
44465 Author: Wolfgang Denk <wd@denx.de>
44466 Date:   Tue Aug 26 13:14:34 2008 +0200
44467
44468     cmd_mem.c: Fix help message alignment
44469
44470     Bug was introced by "Big white-space cleanup" (53677ef1)
44471
44472     Signed-off-by: Wolfgang Denk <wd@denx.de>
44473
44474 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
44475 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
44476 Date:   Wed Aug 20 11:11:52 2008 +0200
44477
44478     change mvBL-M7 default env and move to vendor subdir
44479
44480     fix mvBL-M7 config and move to matrix_vision subdir
44481
44482     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
44483     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44484
44485 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
44486 Author: Nick Spence <nick.spence@freescale.com>
44487 Date:   Fri Aug 22 23:52:40 2008 -0700
44488
44489     MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
44490
44491     This patch adds elements to the 83xx sysconf structure and #define values that are used
44492     by mpc83xx family devices.
44493
44494     Signed-off-by: Nick Spence <nick.spence@freescale.com>
44495     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44496
44497 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
44498 Author: Ira W. Snyder <iws@ovro.caltech.edu>
44499 Date:   Fri Aug 22 11:00:15 2008 -0700
44500
44501     MPC8349EMDS: Add PCI Agent (PCISLAVE) support
44502
44503     Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
44504     PCI card rather than a host computer.
44505
44506     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
44507     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44508
44509 commit 4ff9aea9d6b5602683a920951ef896996438af62
44510 Author: Ira W. Snyder <iws@ovro.caltech.edu>
44511 Date:   Fri Aug 22 11:00:14 2008 -0700
44512
44513     mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
44514
44515     This adds a helper function to unlock the PCI configuration bit, so that
44516     any extra PCI setup (such as outbound windows, etc.) can be done after
44517     using the 83XX_GENERIC_PCI code to set up the PCI bus.
44518
44519     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
44520     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44521
44522 commit 162338e1fcde231ca4d562e5ebd7859456731691
44523 Author: Ira W. Snyder <iws@ovro.caltech.edu>
44524 Date:   Fri Aug 22 11:00:13 2008 -0700
44525
44526     MPC8349EMDS: use 83XX_GENERIC_PCI setup code
44527
44528     Change the MPC8349EMDS board to use the generic PCI initialization code
44529     for the mpc83xx cpu.
44530
44531     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
44532     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44533
44534 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
44535 Author: Kim Phillips <kim.phillips@freescale.com>
44536 Date:   Mon Aug 25 14:53:09 2008 -0500
44537
44538     fix out of tree building
44539
44540     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44541
44542 commit a49d10cf027d059ee15c262010a05cdaec0961e1
44543 Author: Wolfgang Denk <wd@denx.de>
44544 Date:   Mon Aug 25 23:45:41 2008 +0200
44545
44546     Minor coding style cleanup, updte CHANGELOG
44547
44548     Signed-off-by: Wolfgang Denk <wd@denx.de>
44549
44550 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
44551 Author: Stefan Roese <sr@denx.de>
44552 Date:   Wed Aug 20 20:29:38 2008 +0200
44553
44554     RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
44555
44556     This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
44557     to combine both config options into one line. This even allows defining
44558     both options and not generating the target object twice.
44559
44560     Signed-off-by: Stefan Roese <sr@denx.de>
44561
44562 commit 079edb913dbae147b50a488cf02e03f473fc5f28
44563 Author: Jens Gehrlein <sew_s@tqs.de>
44564 Date:   Fri Jul 4 16:50:05 2008 +0200
44565
44566     MX31: fix bit masks in function mx31_decode_pll()
44567
44568     Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
44569
44570     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
44571
44572 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
44573 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
44574 Date:   Mon Aug 25 11:11:34 2008 +0200
44575
44576     Correct ARM Versatile Timer Initialization
44577
44578      - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
44579        -- Timer Value Register @ TIMER Base + 4 is Read-only.
44580        -- Prescale Value (Bits 3-2 of TIMER Control register)
44581         can only be one of 00,01,10. 11 is undefined.
44582        -- CFG_HZ for Versatile board is set to
44583         #define CFG_HZ          (1000000 / 256)
44584         So Prescale bits is set to indicate
44585         - 8 Stages of Prescale, Clock divided by 256
44586      - The Timer Control Register has one Undefined/Shouldn't Use Bit
44587        So we should do read/modify/write Operation
44588
44589     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
44590
44591 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
44592 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
44593 Date:   Mon Aug 25 11:30:29 2008 +0200
44594
44595     Add ARM AMBA PL031 RTC Support
44596
44597     Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
44598
44599 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
44600 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
44601 Date:   Tue Aug 19 16:21:03 2008 -0400
44602
44603     ARM DaVinci: Removed redundant NAND initialization code.
44604
44605     ARM DaVinci: Removed redundant NAND initialization code.
44606
44607     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
44608
44609 commit b3fb663b20d995ca41327db877ddb168279b3f62
44610 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
44611 Date:   Tue Aug 19 16:21:00 2008 -0400
44612
44613     ARM DaVinci: Fix compilation error with new MTD code.
44614
44615     ARM DaVinci: Fix compilation error with new MTD code.
44616
44617     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
44618
44619 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
44620 Author: Gerald Van Baren <vanbaren@cideas.com>
44621 Date:   Fri Aug 22 14:37:05 2008 -0400
44622
44623     Add note on dereferencing /aliases pointers
44624
44625     Replace the "must quote special characters" note with a hint on
44626     how to dereference /aliases pointers by omitting the leading "/".
44627     This feature was introduced by Kumar Gala as a libfdt enhancement
44628     in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
44629
44630     Example:
44631
44632     => fdt print /aliases
44633     aliases {
44634             ethernet0 = "/qe@e0100000/ucc@2000";
44635             ethernet1 = "/qe@e0100000/ucc@3000";
44636             serial0 = "/soc8360@e0000000/serial@4500";
44637             serial1 = "/soc8360@e0000000/serial@4600";
44638             pci0 = "/pci@e0008500";
44639     };
44640     => fdt print ethernet0
44641     ucc@2000 {
44642             device_type = "network";
44643             compatible = "ucc_geth";
44644             cell-index = <0x1>;
44645             reg = <0x2000 0x200>;
44646             interrupts = <0x20>;
44647             interrupt-parent = <0x2>;
44648             local-mac-address = [00 00 00 00 00 00];
44649             rx-clock-name = "none";
44650             tx-clock-name = "clk9";
44651             phy-handle = <0x3>;
44652             phy-connection-type = "rgmii-id";
44653             pio-handle = <0x4>;
44654     };
44655
44656     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44657
44658 commit feeca3f578b7f53c032ba203698751c982f8bf5a
44659 Author: Kumar Gala <galak@kernel.crashing.org>
44660 Date:   Thu Aug 14 08:28:19 2008 -0500
44661
44662     libfdt: Add support for using aliases in fdt_path_offset()
44663
44664     If the path doesn't start with '/' check to see if it matches some alias
44665     under "/aliases" and substitute the matching alias value in the path
44666     and retry the lookup.
44667
44668     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44669     Acked-by: David Gibson <david@gibson.dropbear.id.au>
44670     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
44671
44672 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
44673 Author: David Gibson <david@gibson.dropbear.id.au>
44674 Date:   Wed Aug 6 14:50:49 2008 +1000
44675
44676     libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
44677
44678     As well as fdt_subnode_offset(), libfdt includes an
44679     fdt_subnode_offset_namelen() function that takes the subnode name to
44680     look up not as a NUL-terminated string, but as a string with an
44681     explicit length.  This can be useful when the caller has the name as
44682     part of a longer string, such as a full path.
44683
44684     However, we don't have corresponding 'namelen' versions for
44685     fdt_get_property() and fdt_getprop().  There are less obvious use
44686     cases for these variants on property names, but there are
44687     circumstances where they can be useful e.g. looking up property names
44688     which need to be parsed from a longer string buffer such as user input
44689     or a configuration file, or looking up an alias in a path with
44690     IEEE1275 style aliases.
44691
44692     So, since it's very easy to implement such variants, this patch does
44693     so.  The original NUL-terminated variants are, of course, implemented
44694     in terms of the namelen versions.
44695
44696     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44697
44698 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
44699 Author: David Gibson <david@gibson.dropbear.id.au>
44700 Date:   Tue Jul 29 14:51:22 2008 +1000
44701
44702     libfdt: Forgot one function when cleaning the namespace
44703
44704     In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
44705     libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
44706     chance of collisions with things from whatever package libfdt is
44707     embedded in, pulled into the libfdt build via that environment's
44708     libfdt_env.h.
44709
44710     Except... I missed one.  This patch applies the same treatment to
44711     _stringlist_contains().  While we're at it, also make it static since
44712     it's only used in the same file.
44713
44714     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44715
44716 commit 46390da15411351fc3b498bd8c1615f78fe80df0
44717 Author: Wolfram Sang <w.sang@pengutronix.de>
44718 Date:   Wed Jul 9 11:22:44 2008 +0200
44719
44720     libfdt: Improve documentation in libfdt.h
44721
44722     Fix a few typos and mistakes.
44723
44724     Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
44725     Acked-by: David Gibson <david@gibson.dropbear.id.au>
44726
44727 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
44728 Author: David Gibson <david@gibson.dropbear.id.au>
44729 Date:   Wed Jul 9 14:10:24 2008 +1000
44730
44731     libfdt: Increase namespace-pollution paranoia
44732
44733     libfdt is supposed to easy to embed in projects all and sundry.
44734     Often, it won't be practical to separate the embedded libfdt's
44735     namespace from that of the surrounding project.  Which means there can
44736     be namespace conflicts between even libfdt's internal/static functions
44737     and functions or macros coming from the surrounding project's headers
44738     via libfdt_env.h.
44739
44740     This patch, therefore, renames a bunch of libfdt internal functions
44741     and macros and makes a few other chances to reduce the chances of
44742     namespace collisions with embedding projects.  Specifically:
44743         - Internal functions (even static ones) are now named _fdt_*()
44744
44745         - The type and (static) global for the error table in
44746               fdt_strerror() gain an fdt_ prefix
44747
44748         - The unused macro PALIGN is removed
44749
44750         - The memeq and streq macros are removed and open-coded in the
44751               users (they were only used once each)
44752
44753         - Other macros gain an FDT_ prefix
44754
44755         - To save some of the bulk from the previous change, an
44756               FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
44757               FDT_ALIGN(x, FDT_TAGSIZE)
44758
44759     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44760
44761 commit c66830263af19831f2b7db307f79d1943febf7f9
44762 Author: David Gibson <david@gibson.dropbear.id.au>
44763 Date:   Mon Jul 7 10:14:15 2008 +1000
44764
44765     dtc: Enable and fix -Wcast-qual warnings
44766
44767     Enabling -Wcast-qual warnings in dtc shows up a number of places where
44768     we are incorrectly discarding a const qualification.  There are also
44769     some places where we are intentionally discarding the 'const', and we
44770     need an ugly cast through uintptr_t to suppress the warning.  However,
44771     most of these are pretty well isolated with the *_w() functions.  So
44772     in the interests of maximum safety with const qualifications, this
44773     patch enables the warnings and fixes the existing complaints.
44774
44775     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44776     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
44777
44778 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
44779 Author: David Gibson <david@gibson.dropbear.id.au>
44780 Date:   Mon Jul 7 10:10:48 2008 +1000
44781
44782     dtc: Enable and fix -Wpointer-arith warnings
44783
44784     This patch turns on the -Wpointer-arith option in the dtc Makefile,
44785     and fixes the resulting warnings due to using (void *) in pointer
44786     arithmetic.  While convenient, pointer arithmetic on void * is not
44787     portable, so it's better that we avoid it, particularly in libfdt.
44788
44789     Also add necessary definition of uintptr_t needed by David Gibson's
44790     changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
44791     comes from stdint.h, which u-boot doesn't have). -- gvb
44792
44793     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44794     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44795
44796 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
44797 Author: Tirumala R Marri <tmarri@amcc.com>
44798 Date:   Thu Aug 21 21:54:53 2008 -0700
44799
44800     ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
44801
44802     During recent PCI-E tests it has been found that current
44803     driverl level and de-emphasis values are not set correctly.
44804     After sweeping throgh all de-ephasis values, it was found that
44805     0x130 is a right value. Where 0x13 is driver level and 0 is
44806     de-emphasis.
44807
44808     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
44809     Signed-off-by: Stefan Roese <sr@denx.de>
44810
44811 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
44812 Author: Remy Bohmer <linux@bohmer.net>
44813 Date:   Wed Aug 20 20:46:56 2008 +0200
44814
44815     Make the YAFFS filesystem work
44816
44817     Recently the YAFFS filesystem support has been added to U-boot.
44818     However, just enabling CONFIG_YAFFS2 is not enough to get it working.
44819
44820     ymount will generate an exception (when dereferencing mtd->readoob()), because
44821     the genericDevice is a null pointer. Further, a lot of logging is produced
44822     while using YAFFS fs, so logging should also be disabled.
44823     Both issues are solved by this patch.
44824
44825     With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
44826     in U-boot, as well as in Linux.
44827
44828     Tested on a Atmel AT91SAM9261EK board.
44829
44830     Signed-off-by: Remy Bohmer <linux@bohmer.net>
44831     Acked-by: William Juul <william.juul@tandberg.com>
44832     Signed-off-by: Scott Wood <scottwood@freescale.com>
44833
44834 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
44835 Author: Kyungmin Park <kmpark@infradead.org>
44836 Date:   Tue Aug 19 08:42:53 2008 +0900
44837
44838     Fix OneNAND read_oob/write_oob functions compatability
44839
44840     Also sync with kernel OneNAND codes
44841
44842     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
44843     Signed-off-by: Scott Wood <scottwood@freescale.com>
44844
44845 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
44846 Author: Scott Wood <scottwood@freescale.com>
44847 Date:   Mon Aug 18 17:11:20 2008 -0500
44848
44849     NAND: Remove delay from nand_boot_fsl_elbc.c.
44850
44851     It was for debugging purposes, and shouldn't have been left in.
44852
44853     Signed-off-by: Scott Wood <scottwood@freescale.com>
44854
44855 commit f556483734126793522fb7a8cf36af90da78f084
44856 Author: Stefan Roese <sr@denx.de>
44857 Date:   Thu Aug 21 11:05:03 2008 +0200
44858
44859     ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
44860
44861     This patch fixes some minor issues introduced with the patch:
44862     ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
44863
44864     - Rework memory-queue and PLB arbiter optimization code, that the
44865       local variable is not needed anymore. This removes one #ifdef.
44866     - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
44867       of XXX+ 0x01). This was not introduced by Prodyut, just a
44868       copy-paste problem.
44869
44870     Signed-off-by: Stefan Roese <sr@denx.de>
44871
44872 commit 079589bcfb24ba11068460276a3cc9549ab5346f
44873 Author: Prodyut  Hazarika <phazarika@amcc.com>
44874 Date:   Wed Aug 20 09:38:51 2008 -0700
44875
44876     ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
44877         PPC405EX and PPC460EX/GT/SX
44878
44879     - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
44880       processors
44881     - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
44882       across processors (405 and 440/460)
44883     - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
44884       processors
44885     - Add register bit definitions for Memory Queue Configuration registers
44886
44887     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
44888     Signed-off-by: Stefan Roese <sr@denx.de>
44889
44890 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
44891 Author: Kumar Gala <galak@kernel.crashing.org>
44892 Date:   Tue Aug 19 15:41:18 2008 -0500
44893
44894     fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
44895
44896     Move to using the environment variables 'ethaddr', 'eth1addr', etc..
44897     instead of bd->bi_enetaddr, bi_enet1addr, etc.
44898
44899     This makes the code a bit more flexible to the number of ethernet
44900     interfaces.
44901
44902     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44903
44904 commit 4cacf7c64609839f809e2f9c45873f1d65861703
44905 Author: Stefan Roese <sr@denx.de>
44906 Date:   Tue Aug 19 14:57:55 2008 +0200
44907
44908     hush: Fix printf debug macro in hush.c so that it usable in U-Boot
44909
44910     This patch changes the debug_printf() marco for U-Boot in hush.c and
44911     moves the definition of DEBUG_SHELL to a place that is actually compiled
44912     under U-Boot.
44913
44914     Signed-off-by: Stefan Roese <sr@denx.de>
44915
44916 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
44917 Author: Heiko Schocher <hs@denx.de>
44918 Date:   Tue Aug 19 09:57:41 2008 +0200
44919
44920     cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
44921
44922     Commit      00b1883a4cac59d97cd297b1a3a398db85982865
44923     missed a few boards:
44924         include/configs/M5253DEMO.h
44925         include/configs/ml507.h
44926         include/configs/redwood.h
44927
44928     This patch fixes this.
44929
44930     Signed-off-by: Heiko Schocher <hs@denx.de>
44931
44932 commit 0768b7a872964085eece8d5e9fec9175e9deb161
44933 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
44934 Date:   Mon Aug 18 13:41:27 2008 +0200
44935
44936     Consolidate strmhz() implementation
44937
44938     ARM, i386, m68k and ppc all have identical implementations of strmhz().
44939     Other architectures don't provide this function at all.
44940
44941     This patch moves strmhz() into lib_generic, reducing code duplication
44942     and providing a more unified API across architectures.
44943
44944     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
44945
44946 commit a928d0df211f1d829308d335d19be3ca42558dfc
44947 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
44948 Date:   Mon Aug 18 12:02:51 2008 +0200
44949
44950     fix mvbc_p board build warnings
44951
44952     fix build warnings @ mvBC-P board by using correct types, i.e. change
44953     out_be32 to out_be16 and out_8 accordingly.
44954
44955     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
44956
44957 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
44958 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44959 Date:   Sat Aug 16 18:54:27 2008 +0200
44960
44961     Makefile: fix posix support on find
44962
44963     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44964
44965 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
44966 Author: Axel Beierlein <belatronix@web.de>
44967 Date:   Sat Aug 16 00:30:48 2008 +0200
44968
44969     Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
44970
44971     Tested with TQM5200S on STK52XX.200 Board
44972
44973     Signed-off-by: Axel Beierlein <belatronix@web.de>
44974
44975 commit 0800707b6d5041a840a65d556032c15c584b55f8
44976 Author: Peter Tyser <ptyser@xes-inc.com>
44977 Date:   Fri Aug 15 14:36:32 2008 -0500
44978
44979     mod_i2c_mem() bugfix
44980
44981     The last used chip, address, and address length were not being
44982     stored for the imm and imn commands.
44983
44984     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
44985
44986 commit 4afbef967275b2f636abae86f91b81becee7ad03
44987 Author: Steven A. Falco <sfalco@harris.com>
44988 Date:   Fri Aug 15 15:37:31 2008 -0400
44989
44990     Fix typo in spelling of ATAPI.
44991
44992     Correct a small spelling mistake.
44993
44994     Signed-off-by: Steven A. Falco <sfalco@harris.com>
44995
44996 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
44997 Author: Steven A. Falco <sfalco@harris.com>
44998 Date:   Fri Aug 15 15:34:10 2008 -0400
44999
45000     Add a hook to allow board-specific PIO mode setting.
45001
45002     This patch adds a hook whereby a board-specific routine can be called to
45003     configure hardware for a PIO mode.  The prototype for the board-specific
45004     routine is:
45005
45006         int inline ide_set_piomode(int pio_mode)
45007
45008     ide_set_piomode should be prepared to configure hardware for a pio_mode
45009     between 0 and 6, inclusive.  It should return 0 on success or 1 on failure.
45010
45011     Signed-off-by: Steven A. Falco <sfalco@harris.com>
45012
45013 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
45014 Author: Steven A. Falco <sfalco@harris.com>
45015 Date:   Fri Aug 15 15:29:12 2008 -0400
45016
45017     Replace enums in ata.h with an include of libata.h
45018
45019     This patch removes some enums from ata.h and replaces them with an
45020     include of libata.h.  This way, we eliminate duplicated code, and
45021     prevent errors whereby the different versions could be out of sync.
45022
45023     Signed-off-by: Steven A. Falco <sfalco@harris.com>
45024
45025 commit 0de0afbca865ecf482b4d2b635236746def8518f
45026 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45027 Date:   Fri Aug 15 18:32:41 2008 +0200
45028
45029     coldfire: fix CFI drivers activation with new macro
45030
45031     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
45032
45033     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45034
45035 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
45036 Author: Kumar Gala <galak@kernel.crashing.org>
45037 Date:   Fri Aug 15 08:24:35 2008 -0500
45038
45039     fdt: fdt addr w/o any args reports back the current working address
45040
45041     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45042
45043 commit f953d99fd528a496b400a706b511eaf8e3ea66af
45044 Author: Kumar Gala <galak@kernel.crashing.org>
45045 Date:   Fri Aug 15 08:24:34 2008 -0500
45046
45047     fdt: added the ability to set initrd start/end via chosen command
45048
45049     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45050
45051 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
45052 Author: Kumar Gala <galak@kernel.crashing.org>
45053 Date:   Fri Aug 15 08:24:33 2008 -0500
45054
45055     Add command to enable/disable interrupts
45056
45057     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45058
45059 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
45060 Author: Nick Spence <nick.spence@freescale.com>
45061 Date:   Tue Aug 19 22:21:16 2008 -0700
45062
45063     CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
45064
45065     This patch fixes a missing vendor code in the flash_real_protect() function.
45066
45067     Signed-off-by: Nick Spence <nick.spence@freescale.com>
45068     Signed-off-by: Stefan Roese <sr@denx.de>
45069
45070 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
45071 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45072 Date:   Tue Aug 19 16:53:39 2008 +0000
45073
45074     CFI: Fix AMD Legacy sector protect
45075
45076     New implement sector lock and unlock or softlock commands
45077     do not exist in AMD legacy flash. Thus, causing issue
45078     when erasing AMD legacy flash (such as lv040)
45079
45080     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45081     Signed-off-by: Stefan Roese <sr@denx.de>
45082
45083 commit 492671404140f09d5b21b3d2ce4e362c0692c069
45084 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45085 Date:   Wed Aug 20 09:40:16 2008 +0200
45086
45087     hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
45088
45089     CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
45090
45091     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45092
45093 commit 33eac2b3d946fc998a09245dfe54d017079b9056
45094 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45095 Date:   Wed Aug 20 09:28:36 2008 +0200
45096
45097     hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
45098
45099     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45100
45101 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
45102 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45103 Date:   Wed Aug 20 09:27:37 2008 +0200
45104
45105     favr-32-ezkit: Fix printf format warnings
45106
45107     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45108
45109 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
45110 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45111 Date:   Fri Aug 15 12:04:25 2008 +0200
45112
45113     MAINTAINERS: Sort avr32 section alphabetically
45114
45115     The rest of the MAINTAINERS file appears to be sorted
45116     almost-alphabetically, but entries for the newly added AVR32 boards were
45117     added somewhat randomly. This patch sorts the list alphabetically again.
45118
45119     Also update my e-mail address. The old one still works, but it may not
45120     work forever.
45121
45122     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45123
45124 commit 13b50fe3bc065c48911fa373231421280855a9d6
45125 Author: Mark Jackson <mpfj@mimc.co.uk>
45126 Date:   Wed Jul 30 13:07:27 2008 +0100
45127
45128     avr32: Add MIMC200 board
45129
45130     The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
45131     8MByte FLASH and 128KByte FRAM.
45132
45133     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
45134     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45135
45136 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
45137 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
45138 Date:   Wed Jul 9 21:07:34 2008 +0900
45139
45140     rtl8169: add support for RTL8110SCL
45141
45142     This patch fixes a problem that RTL8110SCL started transfer
45143     with an incorrect memory address.
45144
45145     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
45146     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45147
45148 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
45149 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45150 Date:   Wed Jun 25 15:48:52 2008 -0500
45151
45152     Fix dm9000 receive status and len little endian issue
45153
45154     The received status and len was in little endian
45155     format and caused the ethernet unable to proceed
45156     further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
45157
45158     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45159     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45160
45161 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
45162 Author: Kumar Gala <galak@kernel.crashing.org>
45163 Date:   Fri Aug 15 08:24:32 2008 -0500
45164
45165     Clean up usage of icache_disable/dcache_disable
45166
45167     There is no point in disabling the icache on 7xx/74xx/86xx parts and not
45168     also flushing the icache.  All callers of invalidate_l1_instruction_cache()
45169     call icache_disable() right after.  Make it so icache_disable() calls
45170     invalidate_l1_instruction_cache() for us.
45171
45172     Also, dcache_disable() already calls dcache_flush() so there is no point
45173     in the explicit calls of dcache_flush().
45174
45175     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45176
45177 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
45178 Author: Kumar Gala <galak@kernel.crashing.org>
45179 Date:   Fri Aug 15 08:24:31 2008 -0500
45180
45181     Update linux bootm to support ePAPR client interface
45182
45183     The ePAPR spec has some subtle differences from the current device
45184     tree based boot interface to the powerpc linux kernel. The powerpc
45185     linux kernel currently ignores the differences that ePAPR specifies.
45186
45187     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45188
45189 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
45190 Author: Wolfgang Denk <wd@denx.de>
45191 Date:   Mon Aug 18 23:50:20 2008 +0200
45192
45193     Minor code cleanup: keep lists sorted.
45194
45195     Signed-off-by: Wolfgang Denk <wd@denx.de>
45196
45197 commit d0039d4ed275e6ca09fb417895024ad02be118c4
45198 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
45199 Date:   Wed Jul 23 19:10:14 2008 +0200
45200
45201     Add support for ADT7460 I2C monitor chip
45202
45203     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
45204
45205 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
45206 Author: Michal Simek <monstr@monstr.eu>
45207 Date:   Mon Jul 14 19:45:45 2008 +0200
45208
45209     video: Clean drivers/video/Makefile
45210
45211     Signed-off-by: Michal Simek <monstr@monstr.eu>
45212
45213 commit 871c18dd301752270e1f74328c846c3104be1e2e
45214 Author: Michal Simek <monstr@monstr.eu>
45215 Date:   Mon Jul 14 19:45:37 2008 +0200
45216
45217     rtc: Clean drivers/rtc/Makefile
45218
45219     Signed-off-by: Michal Simek <monstr@monstr.eu>
45220
45221 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
45222 Author: Michal Simek <monstr@monstr.eu>
45223 Date:   Mon Jul 14 19:45:35 2008 +0200
45224
45225     i2c: Clean drivers/i2c/ Makefile
45226
45227     Signed-off-by: Michal Simek <monstr@monstr.eu>
45228
45229 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
45230 Author: Harald Welte <laforge@openmoko.org>
45231 Date:   Wed Jul 9 22:30:30 2008 +0800
45232
45233     Add 'license' command to U-Boot command line
45234
45235     The 'license' command includes the U-Boot license (GPLv2) into the
45236     actual bootloader binary. The license text can be shown interactively
45237     at the U-Boot commandline.
45238
45239     For products where the commandline can actually be accessed by the
45240     end user, this helps to prevent inadvertent GPL violations, since the
45241     GPLv2 license text can no longer be 'forgotten' to be included into
45242     the product.
45243
45244     The 'license' command can be enabled by CONFIG_CMD_LICENSE.
45245
45246     Signed-off-by: Harald Welte <laforge@openmoko.org>
45247
45248 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
45249 Author: Harald Welte <laforge@gnumonks.org>
45250 Date:   Sun Jul 6 15:56:38 2008 +0800
45251
45252     add 'unzip' command to u-boot commandline
45253
45254     [PATCH] add new 'unzip' command to u-boot commandline
45255
45256     common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
45257     memory to memory, and option CONFIG_CMD_UNZIP to enable it
45258
45259     Signed-off-by: Werner Almesberger <werner@openmoko.org>
45260     Signed-off-by: Harald Welte <laforge@openmoko.org>
45261
45262 commit 07efc9e321619c3dec213310c32e011aa6f02783
45263 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45264 Date:   Wed Aug 6 19:37:17 2008 -0500
45265
45266     Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
45267
45268     The CFG_ENV_SIZE is not suitable used for SPI flash erase
45269     sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
45270     Add condition check if CFG_ENV_SIZE is larger than
45271     CFG_ENV_SECT_SIZE, calculate the right number of sectors for
45272     erasing.
45273
45274     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45275
45276 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
45277 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45278 Date:   Mon Aug 11 15:54:25 2008 +0000
45279
45280     ColdFire: Multiple fixes for M5282EVB
45281
45282     Incorrect CFG_HZ value, change 1000000 to 1000.
45283     Rename #waring to #warning. RAMBAR1 uses twice
45284     in start.S, rename the later to FLASHBAR. Insert
45285     nop for DRAM setup. And, env_offset in linker file.
45286
45287     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45288
45289 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
45290 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45291 Date:   Mon Aug 11 15:26:43 2008 +0000
45292
45293     ColdFire: Move m5282evb from board to board/freescale
45294
45295     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45296
45297 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
45298 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45299 Date:   Mon Aug 11 15:25:07 2008 +0000
45300
45301     ColdFire: Move m5272c3 from board to board/freescale
45302
45303     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45304
45305 commit 659e9bad629a480f606b286d5703aef7159edf98
45306 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45307 Date:   Mon Aug 11 15:23:16 2008 +0000
45308
45309     ColdFire: Move m5271evb from board to board/freescale
45310
45311     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45312
45313 commit 05316f8ece8206339a208ec052f039cd0f7ca922
45314 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45315 Date:   Mon Aug 11 13:41:49 2008 +0000
45316
45317     ColdFire: Add M54451EVB platform support for MCF5445x
45318
45319     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45320
45321 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
45322 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45323 Date:   Wed Aug 6 19:14:08 2008 -0500
45324
45325     ColdFire: Add Serial Flash support for M54455EVB
45326
45327     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45328
45329 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
45330 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45331 Date:   Wed Jul 23 20:38:53 2008 -0500
45332
45333     ColdFire: Implement SBF feature for M5445EVB
45334
45335     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45336
45337 commit a7323bba229203aae2604afde131ab47bad4eadc
45338 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45339 Date:   Wed Jul 23 17:53:36 2008 -0500
45340
45341     ColdFire: Add SSPI feature for MCF5445x
45342
45343     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45344
45345 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
45346 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45347 Date:   Wed Jul 23 17:37:10 2008 -0500
45348
45349     ColdFire: Use CFI Flash driver for M54455EVB
45350
45351     Remove non-common flash driver in
45352     board/freescale/m54455evb/flash.c. The non-cfi flash will
45353     use CONFIG_FLASH_CFI_LEGACY to configure the flash
45354     attribute.
45355
45356     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45357
45358 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
45359 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45360 Date:   Wed Jul 23 17:11:47 2008 -0500
45361
45362     ColdFire: Add M5253DEMO platform support for MCF5253
45363
45364     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45365
45366 commit 80ba61fd82569af40e04d4a089257b81881884f2
45367 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45368 Date:   Wed Aug 6 14:17:09 2008 -0500
45369
45370     ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
45371
45372     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45373
45374 commit d361307e73ce1f6fc68760123f37d4876f851f3e
45375 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45376 Date:   Wed Aug 6 14:11:36 2008 -0500
45377
45378     ColdFire: Fix M5253EVB dram bring up issue
45379
45380     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45381
45382 commit 4b0708093e15b412296328bf81325cf9b69fe512
45383 Author: Wolfgang Denk <wd@denx.de>
45384 Date:   Thu Aug 14 14:41:06 2008 +0200
45385
45386     Coding Style cleanup, update CHANGELOG
45387
45388     Signed-off-by: Wolfgang Denk <wd@denx.de>
45389
45390 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
45391 Author: Scott Wood <scottwood@freescale.com>
45392 Date:   Wed Aug 13 18:24:05 2008 -0500
45393
45394     socrates: Update NAND driver to new API.
45395
45396     Also, fix some minor formatting issues, and simplify the handling of
45397     "state" for writes.
45398
45399     Signed-off-by: Scott Wood <scottwood@freescale.com>
45400
45401 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
45402 Author: Scott Wood <scottwood@freescale.com>
45403 Date:   Wed Aug 13 18:03:40 2008 -0500
45404
45405     quad100hd: Update NAND driver to new API.
45406
45407     Signed-off-by: Scott Wood <scottwood@freescale.com>
45408
45409 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
45410 Author: Scott Wood <scottwood@freescale.com>
45411 Date:   Wed Aug 13 17:53:48 2008 -0500
45412
45413     m5373evb: Update NAND driver to new API.
45414
45415     Signed-off-by: Scott Wood <scottwood@freescale.com>
45416
45417 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
45418 Author: Scott Wood <scottwood@freescale.com>
45419 Date:   Wed Aug 13 17:04:30 2008 -0500
45420
45421     s3c24x0: Update NAND driver to new API.
45422
45423     Signed-off-by: Scott Wood <scottwood@freescale.com>
45424
45425 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
45426 Author: Scott Wood <scottwood@freescale.com>
45427 Date:   Wed Aug 13 15:56:00 2008 -0500
45428
45429     at91: Update board NAND drivers to current API.
45430
45431     Signed-off-by: Scott Wood <scottwood@freescale.com>
45432
45433 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
45434 Author: Kyungmin Park <kmpark@infradead.org>
45435 Date:   Wed Aug 13 09:11:02 2008 +0900
45436
45437     Fix OneNAND build break
45438
45439     Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
45440     - fix bufferram management at erase operation
45441     This patch includes the NAND/OneNAND state filed too.
45442
45443     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
45444     Signed-off-by: Scott Wood <scottwood@freescale.com>
45445
45446 commit 9483df6408c25f16060432de3868901e352e23bc
45447 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45448 Date:   Wed Aug 13 01:40:43 2008 +0200
45449
45450     drivers/mtd/nand_legacy: Move conditional compilation to Makefile
45451
45452     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45453
45454 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
45455 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45456 Date:   Wed Aug 13 01:40:43 2008 +0200
45457
45458     drivers/mtd/nand: Move conditional compilation to Makefile
45459
45460     rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
45461
45462     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45463
45464 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
45465 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45466 Date:   Wed Aug 13 01:40:42 2008 +0200
45467
45468     drivers/mtd/onenand: Move conditional compilation to Makefile
45469
45470     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45471
45472 commit 00b1883a4cac59d97cd297b1a3a398db85982865
45473 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45474 Date:   Wed Aug 13 01:40:42 2008 +0200
45475
45476     drivers/mtd: Move conditional compilation to Makefile
45477
45478     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
45479
45480     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45481
45482 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
45483 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45484 Date:   Wed Aug 13 01:40:41 2008 +0200
45485
45486     drivers/qe: Move conditional compilation to Makefile
45487
45488     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45489
45490 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
45491 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45492 Date:   Wed Aug 13 01:40:40 2008 +0200
45493
45494     drivers/pci: Move conditional compilation to Makefile
45495
45496     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45497
45498 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
45499 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45500 Date:   Wed Aug 13 01:40:40 2008 +0200
45501
45502     drivers/misc: Move conditional compilation to Makefile
45503
45504     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45505
45506 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
45507 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45508 Date:   Wed Aug 13 01:40:40 2008 +0200
45509
45510     drivers/input: Move conditional compilation to Makefile
45511
45512     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45513
45514 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
45515 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45516 Date:   Wed Aug 13 01:40:39 2008 +0200
45517
45518     drivers/dma: Move conditional compilation to Makefile
45519
45520     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45521
45522 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
45523 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45524 Date:   Wed Aug 13 01:40:39 2008 +0200
45525
45526     drivers/block: Move conditional compilation to Makefile
45527
45528     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45529
45530 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
45531 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45532 Date:   Wed Aug 13 01:40:39 2008 +0200
45533
45534     serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
45535
45536     move also conditional compilation to Makefile
45537
45538     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45539
45540 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
45541 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45542 Date:   Wed Aug 13 01:40:38 2008 +0200
45543
45544     serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
45545
45546     move also conditional compilation to Makefile
45547
45548     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45549
45550 commit d6e9ee92e890f67594ab150689510df361133ead
45551 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45552 Date:   Wed Aug 13 01:40:38 2008 +0200
45553
45554     common: Move conditional compilation to Makefile
45555
45556     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45557
45558 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
45559 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45560 Date:   Wed Aug 13 01:40:09 2008 +0200
45561
45562     mx31: move freescale's mx31 boards to vendor board dir
45563
45564     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45565
45566 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
45567 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45568 Date:   Sat Jul 5 23:11:11 2008 +0200
45569
45570     at91: move arch-at91sam9 to arch-at91
45571
45572     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45573
45574 commit 195ccfc5991d48764b2519941e3507f693851d5d
45575 Author: Fathi BOUDRA <fabo@debian.org>
45576 Date:   Wed Aug 6 10:06:20 2008 +0200
45577
45578     OneNAND: Fill in MTD function pointers for OneNAND.
45579
45580     onenand_print_device_info():
45581      - Now returns a string to be placed in mtd->name,
45582        rather than calling printf.
45583      - Remove verbose parameter as it becomes useless.
45584
45585     Signed-off-by: Fathi Boudra <fabo@debian.org>
45586     Signed-off-by: Scott Wood <scottwood@freescale.com>
45587
45588 commit aa646643b6bc250cb3a4966bf728876e0c10d329
45589 Author: Guennadi Liakhovetski <lg@denx.de>
45590 Date:   Wed Aug 6 21:42:07 2008 +0200
45591
45592     nand_spl: Support page-aligned read in nand_load, use chipselect
45593
45594     Supporting page-aligned reads doesn't incure any sinificant overhead, just
45595     a small change in the algorithm. Also replace in_8 with readb, since there
45596     is no in_8 on ARM.
45597
45598     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
45599     Signed-off-by: Scott Wood <scottwood@freescale.com>
45600
45601 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
45602 Author: Scott Wood <scottwood@freescale.com>
45603 Date:   Tue Aug 5 11:15:59 2008 -0500
45604
45605     NAND boot: Update large page support for current API.
45606
45607     Also, remove the ctrl variable in favor of passing the constants
45608     directly, and remove redundant (u8) casts.
45609
45610     Signed-off-by: Scott Wood <scottwood@freescale.com>
45611
45612 commit e4c09508545d1c45617ba45391c03c03cbc360b9
45613 Author: Scott Wood <scottwood@freescale.com>
45614 Date:   Mon Jun 30 14:13:28 2008 -0500
45615
45616     NAND boot: MPC8313ERDB support
45617
45618     Note that with older board revisions, NAND boot may only work after a
45619     power-on reset, and not after a warm reset.  I don't have a newer board
45620     to test on; if you have a board with a 33MHz crystal, please let me know
45621     if it works after a warm reset.
45622
45623     Signed-off-by: Scott Wood <scottwood@freescale.com>
45624
45625 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
45626 Author: Scott Wood <scottwood@freescale.com>
45627 Date:   Thu Jun 26 14:06:52 2008 -0500
45628
45629     mpc8313erdb: Enable NAND in config.
45630
45631     Signed-off-by: Scott Wood <scottwood@freescale.com>
45632
45633 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
45634 Author: Guennadi Liakhovetski <lg@denx.de>
45635 Date:   Thu Jul 31 12:38:26 2008 +0200
45636
45637     NAND: Do not write or read a whole block if it is larger than the environment
45638
45639     Environment can be smaller than NAND block size, do not need to read a whole
45640     block and minimum for writing is one page. Also remove an unused variable.
45641
45642     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
45643     Signed-off-by: Scott Wood <scottwood@freescale.com>
45644
45645 commit eafcabd15f00c142156235c519fcc55b10993241
45646 Author: Marcel Ziswiler <marcel@ziswiler.com>
45647 Date:   Sun Jun 22 16:30:06 2008 +0200
45648
45649     NAND: chip->state does not always get set.
45650
45651     Fixes an issue with chip->state not always being set causing troubles.
45652
45653     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
45654     Signed-off-by: Scott Wood <scottwood@freescale.com>
45655
45656 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
45657 Author: Ilya Yanok <yanok@emcraft.com>
45658 Date:   Mon Jun 30 15:34:40 2008 +0200
45659
45660     NAND: Scan bad blocks lazily.
45661
45662     Rather than scanning on boot, scan upon the first attempt to check the
45663     badness of a block.  This speeds up boot when not using NAND, and reduces
45664     the likelihood of needing to reflash via JTAG if NAND becomes
45665     nonfunctional.
45666
45667     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
45668     Signed-off-by: Scott Wood <scottwood@freescale.com>
45669
45670 commit dfbf617ff055e4216f78d358b0867c548916d14b
45671 Author: Scott Wood <scottwood@freescale.com>
45672 Date:   Thu Jun 12 13:20:16 2008 -0500
45673
45674     NAND read/write fix
45675
45676     Implement block-skipping read/write, based on a patch from
45677     Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
45678
45679     Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
45680     Signed-off-by: Scott Wood <scottwood@freescale.com>
45681
45682 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
45683 Author: Scott Wood <scottwood@freescale.com>
45684 Date:   Thu Jun 12 13:13:23 2008 -0500
45685
45686     NAND: Always skip blocks on read/write/boot.
45687
45688     Use of the non-skipping versions was almost always (if not always)
45689     an error, and no valid use case has been identified.
45690
45691     Signed-off-by: Scott Wood <scottwood@freescale.com>
45692
45693 commit e1c3dbada349992875934575c97b328ab2cb33ca
45694 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
45695 Date:   Thu Jun 12 11:10:21 2008 -0500
45696
45697     nand: fsl_upm: convert to updated MTD NAND infrastructure
45698
45699     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
45700     Signed-off-by: Scott Wood <scottwood@freescale.com>
45701
45702 commit 300253306acc72b1b2e9faf0987f86551151d7cf
45703 Author: Scott Wood <scottwood@freescale.com>
45704 Date:   Thu May 22 15:02:46 2008 -0500
45705
45706     fsl_elbc_nand: Hard-code the FBAR/FPAR split.
45707
45708     The hardware has separate registers for block and page-within-block,
45709     but the division between the two has no apparent relation to the
45710     actual erase block size of the NAND chip.
45711
45712     Signed-off-by: Scott Wood <scottwood@freescale.com>
45713
45714 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
45715 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
45716 Date:   Fri Mar 28 22:10:54 2008 +0300
45717
45718     fsl_elbc_nand: workaround for hangs during nand write
45719
45720     Using current driver elbc sometimes hangs during nand write. Reading back
45721     last byte helps though (thanks to Scott Wood for the idea).
45722
45723     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
45724     Signed-off-by: Scott Wood <scottwood@freescale.com>
45725
45726 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
45727 Author: Scott Wood <scottwood@freescale.com>
45728 Date:   Fri Mar 21 16:12:51 2008 -0500
45729
45730     Freescale eLBC FCM NAND driver
45731
45732     This is a driver for the Flash Control Machine of the enhanched Local Bus
45733     Controller found on some Freescale chips (such as the mpc8313 and the
45734     mpc8379).
45735
45736     Signed-off-by: Scott Wood <scottwood@freescale.com>
45737
45738 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
45739 Author: Scott Wood <scottwood@freescale.com>
45740 Date:   Tue Mar 18 15:29:14 2008 -0500
45741
45742     Don't panic if a controller driver does ecc its own way.
45743
45744     Some hardware, such as the enhanced local bus controller used on some
45745     mpc83xx chips, does ecc transparently when reading and writing data, rather
45746     than providing a generic calculate/correct mechanism that can be exported to
45747     the nand subsystem.
45748
45749     The subsystem should not BUG() when calculate, correct, or hwctl are
45750     missing, if the methods that call them have been overridden.
45751
45752     Signed-off-by: Scott Wood <scottwood@freescale.com>
45753
45754 commit e52b34d40a8a646e3d11638ea8797e96398dba13
45755 Author: Stefan Roese <sr@denx.de>
45756 Date:   Thu Jan 10 18:47:33 2008 +0100
45757
45758     NAND: Make NAND driver less verbose per default
45759
45760     This patch turns off printing of bad blocks per default upon bootup.
45761     This can always be shown via the "nand bad" command later.
45762
45763     Signed-off-by: Stefan Roese <sr@denx.de>
45764
45765 commit fe56a2772e5c59577df906163d0d4b29b056140e
45766 Author: Sergey Kubushyn <ksi@koi8.net>
45767 Date:   Wed Jan 9 15:36:20 2008 +0100
45768
45769     NAND: Davinci driver updates
45770
45771     Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
45772     don't have hardware handy so I can not test it at the moment but changes are
45773     rather trivial so it should work. It would be nice if somebody with a
45774     hardware checked it anyways.
45775
45776     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
45777
45778 commit deac913effd8d80535c9ff4687b6fcdff540c554
45779 Author: Stefan Roese <sr@denx.de>
45780 Date:   Sat Jan 5 16:50:32 2008 +0100
45781
45782     NAND: Fix compilation warning and small coding style issue
45783
45784     Signed-off-by: Stefan Roese <sr@denx.de>
45785
45786 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
45787 Author: Stefan Roese <sr@denx.de>
45788 Date:   Sat Jan 5 16:49:37 2008 +0100
45789
45790     NAND: Update nand_spl driver to match updated nand subsystem
45791
45792     This patch changes the NAND booting driver nand_spl/nand_boot.c to match
45793     the new infrastructure from the updated NAND subsystem. This NAND
45794     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
45795     subsystem.
45796
45797     Signed-off-by: Stefan Roese <sr@denx.de>
45798
45799 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
45800 Author: Stefan Roese <sr@denx.de>
45801 Date:   Sat Jan 5 16:47:58 2008 +0100
45802
45803     NAND: Update 4xx NDFC driver to match updated nand subsystem
45804
45805     This patch changes the 4xx NAND driver ndfc.c to match the new
45806     infrastructure from the updated NAND subsystem. This NAND
45807     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
45808     subsystem.
45809
45810     Tested successfully on AMCC Sequoia and Bamboo.
45811
45812     Signed-off-by: Stefan Roese <sr@denx.de>
45813
45814 commit 12072264528eba33737bc9674e19f0e925ffda23
45815 Author: Stefan Roese <sr@denx.de>
45816 Date:   Sat Jan 5 16:43:25 2008 +0100
45817
45818     NAND: Change nand_wait_ready() to not call nand_wait()
45819
45820     This patch changes nand_wait_ready() to not just call nand_wait(),
45821     since this will send a new command to the NAND chip. We just want to
45822     wait for the chip to become ready here.
45823
45824     Signed-off-by: Stefan Roese <sr@denx.de>
45825
45826 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
45827 Author: William Juul <william.juul@datarespons.no>
45828 Date:   Fri Dec 14 16:33:45 2007 +0100
45829
45830     make nand dump and nand dump.oob work
45831
45832     Signed-off-by: William Juul <william.juul@tandberg.com>
45833     Signed-off-by: Scott Wood <scottwood@freescale.com>
45834
45835 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
45836 Author: William Juul <william.juul@datarespons.no>
45837 Date:   Mon Nov 19 14:46:00 2007 +0100
45838
45839     moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
45840
45841     Signed-off-by: William Juul <william.juul@tandberg.com>
45842
45843 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
45844 Author: William Juul <william.juul@tandberg.com>
45845 Date:   Tue Jun 10 16:18:13 2008 -0500
45846
45847     Clean out unneeded files
45848
45849     Signed-off-by: William Juul <william.juul@tandberg.com>
45850
45851 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
45852 Author: William Juul <william.juul@datarespons.no>
45853 Date:   Fri Nov 16 08:44:27 2007 +0100
45854
45855     Create symlinks from yaffs2/direct to yaffs2
45856
45857     Signed-off-by: William Juul <william.juul@tandberg.com>
45858
45859 commit 90ef117b68387d66763291af0117677644166611
45860 Author: William Juul <william.juul@datarespons.no>
45861 Date:   Thu Nov 15 12:23:57 2007 +0100
45862
45863     Incorporate yaffs2 into U-boot
45864
45865     To use YAFFS2 define CONFIG_YAFFS2
45866
45867     Signed-off-by: William Juul <william.juul@tandberg.com>
45868     Signed-off-by: Scott Wood <scottwood@freescale.com>
45869
45870 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
45871 Author: William Juul <william.juul@datarespons.no>
45872 Date:   Thu Nov 15 11:13:05 2007 +0100
45873
45874     YAFFS2 import
45875
45876     Direct import of yaffs as a tarball as of 20071113 from their public
45877     CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
45878
45879     The code can also be imported on the command line with:
45880     export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
45881     (Hit return when asked for a password)
45882     cvs checkout yaffs2
45883
45884     Signed-off-by: William Juul <william.juul@tandberg.com>
45885     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
45886
45887 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
45888 Author: William Juul <william.juul@datarespons.no>
45889 Date:   Wed Nov 14 14:28:11 2007 +0100
45890
45891     Whitespace cleanup and marking broken code.
45892
45893     Changes requested by maintainer Stefan Roese after
45894     posting patch to U-boot mailing list.
45895
45896     Signed-off-by: William Juul <william.juul@tandberg.com>
45897     Signed-off-by: Scott Wood <scottwood@freescale.com>
45898
45899 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
45900 Author: William Juul <william.juul@datarespons.no>
45901 Date:   Fri Nov 9 13:32:30 2007 +0100
45902
45903     Fixing coding style issues
45904
45905      - Fixing leading white spaces
45906      - Fixing indentation where 4 spaces are used instead of tab
45907      - Removing C++ comments (//), wherever I introduced them
45908
45909     Signed-off-by: William Juul <william.juul@tandberg.com>
45910     Signed-off-by: Scott Wood <scottwood@freescale.com>
45911
45912 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
45913 Author: William Juul <william.juul@datarespons.no>
45914 Date:   Thu Nov 8 10:39:53 2007 +0100
45915
45916     Remove white space at end.
45917
45918     Signed-off-by: William Juul <william.juul@tandberg.com>
45919     Signed-off-by: Scott Wood <scottwood@freescale.com>
45920
45921 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
45922 Author: William Juul <william.juul@datarespons.no>
45923 Date:   Wed Oct 31 13:53:06 2007 +0100
45924
45925     Update MTD to that of Linux 2.6.22.1
45926
45927     A lot changed in the Linux MTD code, since it was last ported from
45928     Linux to U-Boot. This patch takes U-Boot NAND support to the level
45929     of Linux 2.6.22.1 and will enable support for very large NAND devices
45930     (4KB pages) and ease the compatibility between U-Boot and Linux
45931     filesystems.
45932
45933     This patch is tested on two custom boards with PPC and ARM
45934     processors running YAFFS in U-Boot and Linux using gcc-4.1.2
45935     cross compilers.
45936
45937     MAKEALL ppc/arm has some issues:
45938      * DOC/OneNand/nand_spl is not building (I have not tried porting
45939        these parts, and since I do not have any HW and I am not familiar
45940        with this code/HW I think its best left to someone else.)
45941
45942     Except for the issues mentioned above, I have ported all drivers
45943     necessary to run MAKEALL ppc/arm without errors and warnings. Many
45944     drivers were trivial to port, but some were not so trivial. The
45945     following drivers must be examined carefully and maybe rewritten to
45946     some degree:
45947      cpu/ppc4xx/ndfc.c
45948      cpu/arm926ejs/davinci/nand.c
45949      board/delta/nand.c
45950      board/zylonite/nand.c
45951
45952     Signed-off-by: William Juul <william.juul@tandberg.com>
45953     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
45954     Signed-off-by: Scott Wood <scottwood@freescale.com>
45955
45956 commit cd82919e6c8a73b363a26f34b734923844e52d1c
45957 Author: Wolfgang Denk <wd@denx.de>
45958 Date:   Tue Aug 12 16:08:38 2008 +0200
45959
45960     Coding style cleanup, update CHANGELOG, prepare release
45961
45962     Signed-off-by: Wolfgang Denk <wd@denx.de>
45963
45964 commit 17e900b8c0f38d922da47073246219dce2a847f2
45965 Author: Wolfgang Denk <wd@denx.de>
45966 Date:   Tue Aug 12 14:54:04 2008 +0200
45967
45968     MVBC_P: fix compile problem
45969
45970     Signed-off-by: Wolfgang Denk <wd@denx.de>
45971
45972 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
45973 Author: Wolfgang Denk <wd@denx.de>
45974 Date:   Tue Aug 12 12:10:11 2008 +0200
45975
45976     MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
45977
45978     Signed-off-by: Wolfgang Denk <wd@denx.de>
45979
45980 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
45981 Author: Wolfgang Denk <wd@denx.de>
45982 Date:   Tue Aug 12 00:36:53 2008 +0200
45983
45984     ads5121: fix compiler warnings (unused variables)
45985
45986     Signed-off-by: Wolfgang Denk <wd@denx.de>
45987
45988 commit 902ca09246039964d59bbcb519b1e1b5aed01308
45989 Author: Kumar Gala <galak@kernel.crashing.org>
45990 Date:   Mon Aug 11 11:29:28 2008 -0500
45991
45992     85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
45993
45994     Use CONFIG_NUM_CPUS to match existing define used by 86xx.
45995
45996     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45997     Acked-by: Jon Loeliger <jdl@freescale.com>
45998
45999 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
46000 Author: Kumar Gala <galak@kernel.crashing.org>
46001 Date:   Mon Aug 11 09:20:53 2008 -0500
46002
46003     Fix fallout from autostart revert
46004
46005     The autostart revert caused a bit of duplicated code as well as
46006     code that was using images->autostart that needs to get removed so
46007     we can build again.
46008
46009     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46010
46011 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
46012 Author: Kumar Gala <galak@kernel.crashing.org>
46013 Date:   Mon Aug 11 09:16:25 2008 -0500
46014
46015     Fix compile error related to r8a66597-hcd & usb
46016
46017     When building the 8544DS board we get this error:
46018
46019     In file included from r8a66597-hcd.c:22:
46020     u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
46021     make[1]: *** [r8a66597-hcd.o] Error 1
46022
46023     The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
46024     is set.
46025
46026     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46027
46028 commit 2d0daa03612338a813e3c9d22680e54eabfea378
46029 Author: Becky Bruce <becky.bruce@freescale.com>
46030 Date:   Mon Aug 4 14:02:26 2008 -0500
46031
46032     POWERPC 86xx: Move BAT setup code to C
46033
46034     This is needed because we will be possibly be locating
46035     devices at physical addresses above 32bits, and the asm
46036     preprocessing does not appear to deal with ULL constants
46037     properly. We now call write_bat in lib_ppc/bat_rw.c.
46038
46039     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46040     Acked-by: Jon Loeliger <jdl@freescale.com>
46041
46042 commit 9de67149db576c91b9c2a0a182652331e7e44211
46043 Author: Becky Bruce <becky.bruce@freescale.com>
46044 Date:   Mon Aug 4 14:01:53 2008 -0500
46045
46046     POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
46047
46048     Perform sync/isync as required by the architecture.
46049
46050     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46051     Acked-by: Jon Loeliger <jdl@freescale.com>
46052
46053 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
46054 Author: Becky Bruce <becky.bruce@freescale.com>
46055 Date:   Mon Aug 4 14:01:16 2008 -0500
46056
46057     POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
46058
46059     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46060     Acked-by: Jon Loeliger <jdl@freescale.com>
46061
46062 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
46063 Author: Magnus Lilja <lilja.magnus@gmail.com>
46064 Date:   Sun Aug 3 21:44:10 2008 +0200
46065
46066     i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
46067
46068     Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
46069     contacts instead of only the first 256 ones as is the case prior to
46070     this patch.
46071
46072     Add missing MUX_* macros and update board files to use the new macros.
46073
46074     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
46075
46076 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
46077 Author: Magnus Lilja <lilja.magnus@gmail.com>
46078 Date:   Sun Aug 3 21:43:37 2008 +0200
46079
46080     i.MX31: Fix IOMUX related typos
46081
46082     Correct the names of some IOMUX macros.
46083
46084     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
46085
46086 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
46087 Author: Steve Sakoman <steve@sakoman.com>
46088 Date:   Mon Aug 11 20:26:16 2008 +0200
46089
46090     OneNAND: Remove unused parameters to onenand_verify_page
46091
46092     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.
46093
46094     Signed-off-by: Steve Sakoman <steve@sakoman.com>
46095     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
46096
46097 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
46098 Author: Anatolij Gustschin <agust@denx.de>
46099 Date:   Fri Aug 8 18:00:40 2008 +0200
46100
46101     video: fix bug in cfb_console code
46102
46103     FILL_15BIT_555RGB macro extension for pixel swapping
46104     by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
46105     introduced a bug in cfb_console:
46106
46107     Bitmaps with odd-numbered width won't be rendered
46108     correctly and even U-Boot crashes are observed on
46109     some platforms while repeated rendering of such
46110     bitmaps with "bmp display". Also if a bitmap is
46111     rendered to an odd-numbered x starting position,
46112     the same problem occurs. This patch is an attempt
46113     to fix it.
46114
46115     Signed-off-by: Anatolij Gustschin <agust@denx.de>
46116
46117 commit d9015f6a50d7258125349ef5c2af836458a0029a
46118 Author: Anatolij Gustschin <agust@denx.de>
46119 Date:   Fri Aug 8 18:00:39 2008 +0200
46120
46121     video: fix bug in logo_plot
46122
46123     If logo_plot() should ever be called with x starting
46124     position other than zero and for pixel depths greater
46125     than 8bpp, logo colors distortion will be observed.
46126     This patch fixes the issue.
46127
46128     Signed-off-by: Anatolij Gustschin <agust@denx.de>
46129
46130 commit 406819ae94f79f5b59e01d163380ca7d83709251
46131 Author: Wolfgang Denk <wd@denx.de>
46132 Date:   Mon Aug 11 00:17:52 2008 +0200
46133
46134     MAINTAINERS: sort entries
46135
46136     Signed-off-by: Wolfgang Denk <wd@denx.de>
46137
46138 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
46139 Author: Roy Zang <tie-fei.zang@freescale.com>
46140 Date:   Thu Aug 7 18:19:28 2008 +0800
46141
46142     Add mpc7448hpc2 maintainer information
46143
46144     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
46145
46146 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
46147 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
46148 Date:   Thu Aug 7 13:13:27 2008 +0530
46149
46150     common/cmd_load.c - Minor code & Coding Style cleanup
46151
46152     - os_data_header Variable is a carry over feature
46153        & unused. So removed all instance of this variable
46154      - Minor Code Style Update
46155
46156     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
46157     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46158
46159 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
46160 Author: Magnus Lilja <lilja.magnus@gmail.com>
46161 Date:   Wed Aug 6 19:32:33 2008 +0200
46162
46163     Update the U-Boot wiki URL.
46164
46165     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
46166
46167 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
46168 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
46169 Date:   Sun Aug 10 17:56:36 2008 +0200
46170
46171     OneNAND: Remove base address offset usage
46172
46173     While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
46174     using OneNAND and some using NAND, we found some differences in OneNAND and
46175     NAND command address handling.
46176
46177     As this might confuse users (it already confused us), we like to align OneNAND
46178     and NAND address handling.
46179
46180     The issue is that cmd_onenand.c subtracts the onenand base address from the
46181     addresses you type into the u-boot command line so, unlike nand, you can't
46182     use addresses relative to the start of the onenand part e.g. this won't work:
46183
46184     onenand read 82000000 280000 400000
46185
46186     you have to use:
46187
46188     onenand read 82000000 20280000 400000
46189
46190     Looking at recent git, the only board currently using OneNAND is Apollon, and
46191     for this the OneNAND base address is 0 (apollon.h)
46192
46193     #define     CFG_ONENAND_BASE        0x00000000
46194
46195     so patch below won't break any existing boards and will align OneNAND and NAND
46196     handling on boards where OneNAND base address is != 0.
46197
46198     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
46199     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
46200     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
46201
46202 commit c11528083ef6e55e76df742228c26e39d151813d
46203 Author: Kumar Gala <galak@kernel.crashing.org>
46204 Date:   Thu Aug 7 09:28:20 2008 -0500
46205
46206     mpc85xx: workaround old binutils bug
46207
46208     The recent change to move the .bss outside of the image gives older
46209     binutils (ld from eldk4.1/binutils-2.16) some headache:
46210
46211     ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
46212     ppc_85xx-ld: final link failed: Bad value
46213
46214     We workaround it by being explicit about the program headers and not
46215     assigning the .bss to a program header.
46216
46217     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46218
46219 commit 0bf202ec586d4466c900e987720fa635c594d689
46220 Author: Wolfgang Denk <wd@denx.de>
46221 Date:   Sun Aug 10 01:26:26 2008 +0200
46222
46223     Revert "[new uImage] Add autostart flag to bootm_headers structure"
46224
46225     This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
46226
46227     The commit was based on a misunderstanding of the (documented)
46228     meaning of the 'autostart' environment variable. It might cause
46229     boards to hang if 'autostart' was used, with the potential to brick
46230     them. Go back to the documented behaviour.
46231
46232     Conflicts:
46233
46234         common/cmd_bootm.c
46235         common/image.c
46236         include/image.h
46237
46238     Signed-off-by: Wolfgang Denk <wd@denx.de>
46239
46240 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
46241 Author: Wolfgang Denk <wd@denx.de>
46242 Date:   Sat Aug 9 23:17:32 2008 +0200
46243
46244     TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
46245
46246     - enable CFI driver where this was forgotten
46247     - enable mtdparts support
46248     - adjust default environment
46249     etc.
46250
46251     Signed-off-by: Wolfgang Denk <wd@denx.de>
46252
46253 commit 41266c9b5a5f873df3ec891bb0907616958b5602
46254 Author: Peter Tyser <ptyser@xes-inc.com>
46255 Date:   Tue Aug 5 10:51:57 2008 -0500
46256
46257     FIT: Fix handling of images without ramdisks
46258
46259     boot_get_ramdisk() should not treat the case when a FIT image does
46260     not contain a ramdisk as an error.
46261
46262     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
46263     Acked-by: Michal Simek <monstr@monstr.eu>
46264
46265 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
46266 Author: Sergey Lapin <slapin@ossfans.org>
46267 Date:   Sat Aug 9 01:39:09 2008 +0400
46268
46269     DataFlash: AT45DB021 fix and AT45DB081 support
46270
46271     Fix for page size of AT45DB021. Also adding bigger AT45DB081
46272     which comes with some newer boards.
46273
46274     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
46275
46276 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
46277 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
46278 Date:   Fri Aug 8 16:30:23 2008 +0900
46279
46280     sh: Update sh7763rdp config
46281
46282     Add sh_eth support to sh7763rdp.
46283
46284     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
46285
46286 commit 21f971ec265f6042ec21636d55d06a6bc0751077
46287 Author: Wolfgang Denk <wd@denx.de>
46288 Date:   Mon Jul 7 01:22:29 2008 +0200
46289
46290     TQM823L: re-enable logo support; update LCD_INFO text
46291
46292     Signed-off-by: Wolfgang Denk <wd@denx.de>
46293
46294 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
46295 Author: Wolfgang Denk <wd@denx.de>
46296 Date:   Fri Aug 8 16:41:56 2008 +0200
46297
46298     TQM8xxL: fix support for second flash bank
46299
46300     When switching the TQM8xxL modules to use the CFI flash driver,
46301     support for the second flash bank was broken because the CFI driver
46302     did not support dynamically sized banks. This gets fixed now.
46303
46304     Signed-off-by: Wolfgang Denk <wd@denx.de>
46305
46306 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
46307 Author: Wolfgang Denk <wd@denx.de>
46308 Date:   Fri Aug 8 16:39:54 2008 +0200
46309
46310     CFI: allow for dynamically determined flash sizes and addresses
46311
46312     The CFI driver allowed only for static initializers in the
46313     CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
46314     several flash banks contiguously if the bank sizes were not known in
46315     advance, which kind of violates U-Boot's design philosophy.
46316
46317     (will be used for example by the TQM8xxL boards)
46318
46319     Signed-off-by: Wolfgang Denk <wd@denx.de>
46320
46321 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
46322 Author: Ben Warren <biggerbadderben@gmail.com>
46323 Date:   Thu Aug 7 23:26:35 2008 -0700
46324
46325     QE UEC: Fix compiler warnings
46326
46327     Moved static functions earlier in file so forward declarations are not needed.
46328
46329     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
46330
46331 commit d5d28fe4aad5f4535400647a5617c11039506467
46332 Author: David Saada <David.Saada@ecitele.com>
46333 Date:   Mon Mar 31 02:37:38 2008 -0700
46334
46335     QE UEC: Add MII Commands
46336
46337     Add MII commands to the UEC driver. Note that once a UEC device is selected,
46338     any device on its MDIO bus can be addressed.
46339
46340     Signed-off-by: David Saada <david.saada@ecitele.com>
46341     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
46342
46343 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
46344 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
46345 Date:   Wed Jul 9 21:07:38 2008 +0900
46346
46347     usb: add support for R8A66597 usb controller
46348
46349     add support for Renesas R8A66597 usb controller.
46350     This patch supports USB Host mode.
46351
46352     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
46353     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46354
46355 commit 1d10dcd041aaeae9fd7c821005692898a0303382
46356 Author: Hunter, Jon <jon-hunter@ti.com>
46357 Date:   Sat Jul 26 18:59:16 2008 -0500
46358
46359     Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
46360
46361     Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
46362
46363     Signed-off-by: Jon Hunter <jon-hunter@ti.com>
46364     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46365
46366 commit eab1007334b93a6209f1ec33615e26ef5311ede7
46367 Author: Steven A. Falco <sfalco@harris.com>
46368 Date:   Wed Aug 6 15:42:52 2008 -0400
46369
46370     ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
46371
46372     The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
46373     configuration to match the schematic, and also sets the SDR0_PFC1 register to
46374     select the corresponding mode for the UARTs.
46375
46376     Signed-off-by: Steven A. Falco <sfalco@harris.com>
46377     Signed-off-by: Stefan Roese <sr@denx.de>
46378
46379 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
46380 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
46381 Date:   Wed Aug 6 14:42:13 2008 +0200
46382
46383     avr32: add support for EarthLCD Favr-32 board
46384
46385     This patch adds support for the Favr-32 board made by EarthLCD.
46386
46387     This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
46388     has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
46389     Ethernet, audio out, USB device, SD-card slot, USART and various other
46390     connectors for cennecting stuff to SPI, I2C, GPIO, etc.
46391
46392     Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
46393     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46394
46395 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
46396 Author: Rafael Campos <rafael.campos@hanscan.com>
46397 Date:   Thu Jul 31 10:22:20 2008 +0200
46398
46399     cfi-flash: Added support to flash_real_protect for Atmel flash devices
46400
46401     Some of the flash memories produced by ATMEL start in read-only mode.
46402     We need to unprotect it. This patch allows the AT49BV6416 to work with
46403     cfi_flash memories. Tested in the at91rm9200ek board.
46404
46405     Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
46406     Signed-off-by: Stefan Roese <sr@denx.de>
46407
46408 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
46409 Author: Guennadi Liakhovetski <lg@denx.de>
46410 Date:   Tue Aug 5 15:36:39 2008 +0200
46411
46412     cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
46413
46414     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
46415     Signed-off-by: Stefan Roese <sr@denx.de>
46416
46417 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
46418 Author: Stefan Roese <sr@denx.de>
46419 Date:   Wed Aug 6 14:06:03 2008 +0200
46420
46421     Fix merge problems
46422
46423     Signed-off-by: Stefan Roese <sr@denx.de>
46424
46425 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
46426 Author: Stefan Roese <sr@denx.de>
46427 Date:   Wed Aug 6 14:05:38 2008 +0200
46428
46429     Fix merge problems
46430
46431     Signed-off-by: Stefan Roese <sr@denx.de>
46432
46433 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
46434 Author: Kenneth Johansson <kenneth@southpole.se>
46435 Date:   Tue Jul 15 12:13:38 2008 +0200
46436
46437     mpc5121: Move iopin features from board specific to common files.
46438
46439     And in the process eliminate some duplicate register defines.
46440
46441     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
46442
46443 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
46444 Author: John Rigby <jrigby@freescale.com>
46445 Date:   Tue Aug 5 17:38:57 2008 -0600
46446
46447     mpc5121: squash some fdt fixup errors
46448
46449     On ADS5121 when booting linux the following errors are seen:
46450         Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
46451         Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
46452         Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
46453
46454     This is caused by ft_cpu_setup trying to deal with
46455     both old and new soc node naming.  This patch
46456     fixes this by being smarter about what to
46457     fixup.
46458
46459     Also do soc node fixups by compatible instead of by path.
46460     A new board config called OF_SOC_COMPAT defined
46461     to be "fsl,mpc5121-immr" replaces the old
46462     OF_SOC node path that was defined to be "soc@80000000".
46463
46464     Old device trees still work, but the compatiblity
46465     is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
46466     which is on by default in include/configs/ads5121.h.
46467
46468     Signed-off-by: John Rigby <jrigby@freescale.com>
46469
46470 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
46471 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46472 Date:   Sat Aug 2 23:48:30 2008 +0200
46473
46474     drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
46475
46476     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46477
46478 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
46479 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46480 Date:   Sat Aug 2 23:48:32 2008 +0200
46481
46482     nios2/sysid: fix printf warning
46483
46484     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46485
46486 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
46487 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46488 Date:   Sat Aug 2 23:48:33 2008 +0200
46489
46490     Fix remaining build issues with MPC8xx FADS boards.
46491
46492     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46493
46494 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
46495 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46496 Date:   Sat Aug 2 23:48:31 2008 +0200
46497
46498     nios2: fix phys_addr_t and phys_size_t support
46499
46500     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46501
46502 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
46503 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46504 Date:   Sat Aug 2 23:48:34 2008 +0200
46505
46506     mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
46507
46508     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46509
46510 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
46511 Author: Mark Jackson <mpfj@mimc.co.uk>
46512 Date:   Fri Aug 1 09:48:29 2008 +0100
46513
46514     Fix bitmap display for atmel lcd controller
46515
46516     The current lcd_display_bitmap() function does not work properly
46517     for the Atmel LCD controller.
46518
46519     2 fixes need to be done:-
46520
46521     (a) when setting the colour map, use the lcd_setcolreg() function
46522         as provided by the Atmel driver
46523     (b) the data is never actually written to the lcd framebuffer !!
46524
46525     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
46526
46527 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
46528 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46529 Date:   Fri Aug 1 08:40:34 2008 +0200
46530
46531     qemu_mips: update README to follow qemu update about default machine
46532
46533     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46534
46535 commit ac169d645f5f0e0b9a232563099209e92a355d8e
46536 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46537 Date:   Thu Jul 31 19:53:21 2008 -0500
46538
46539     ColdFire: Fix compilation issue caused by a missing function
46540
46541     Implement usec2ticks() which is used by fsl_i2c.c in
46542     lib_m68k/time.c
46543
46544     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46545
46546 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
46547 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46548 Date:   Thu Jul 31 19:53:06 2008 -0500
46549
46550     Fix compilation error for TASREG
46551
46552     TASREG is ColdFire platform, the include ppc4xx.h in
46553     board/esd/common/flash.c causes conflict.
46554
46555     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46556
46557 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
46558 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46559 Date:   Thu Jul 31 19:52:36 2008 -0500
46560
46561     Fix compilation error for MCF5275
46562
46563     Rename OBJ to COBJ in board/platform/Makefile
46564
46565     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46566
46567 commit 5c40548f01218360a1f1395198c50ff45f3035b5
46568 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46569 Date:   Thu Jul 31 19:52:28 2008 -0500
46570
46571     Fix compile error caused by incorrect function return type
46572
46573     Rename int mii_init(void) to void mii_init(void) for idmr
46574     ColdFire platform
46575
46576     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46577
46578 commit a58c78067c928976c082c758d3987e89ead5b191
46579 Author: Wolfgang Denk <wd@denx.de>
46580 Date:   Fri Aug 1 12:06:22 2008 +0200
46581
46582     Fix build issues with MPC8xx FADS boards.
46583
46584     Signed-off-by: Wolfgang Denk <wd@denx.de>
46585
46586 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
46587 Author: Wolfgang Denk <wd@denx.de>
46588 Date:   Thu Jul 31 17:54:03 2008 +0200
46589
46590     Prepare v1.3.4-rc2: update CHANGELOG
46591
46592     Signed-off-by: Wolfgang Denk <wd@denx.de>
46593
46594 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
46595 Author: Mark Jackson <mpfj@mimc.co.uk>
46596 Date:   Thu Jul 31 16:09:00 2008 +0100
46597
46598     Add gzipped logo support
46599
46600     The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
46601
46602       If this option is set, additionally to standard BMP
46603       images, gzipped BMP images can be displayed via the
46604       splashscreen support or the bmp command.
46605
46606     However, the splashscreen function *only* supports standard BMP images.
46607
46608     This patch adds the documented gzip support.
46609
46610     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
46611
46612 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
46613 Author: Mark Jackson <mpfj@mimc.co.uk>
46614 Date:   Thu Jul 31 15:56:48 2008 +0100
46615
46616     Fix Atmel LCD controller endianess for AVR32 processors
46617
46618     The Atmel lcd controller is used on Atmel's AT91 (little endian) and
46619     AVR32 (big endian) platforms.
46620
46621     As such, the controller can handle both big and little endian memory.
46622
46623     This patch fixes the driver for the AVR32 platform.
46624
46625     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
46626
46627 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
46628 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46629 Date:   Thu Jul 31 15:56:01 2008 +0200
46630
46631     apollon: fix build out of tree
46632
46633     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46634
46635 commit 2e752be39d3e398d4ab89ffa6634c397df298297
46636 Author: Guennadi Liakhovetski <lg@denx.de>
46637 Date:   Thu Jul 31 12:35:04 2008 +0200
46638
46639     Uncompressed images loaded to their start address shall set load_end too
46640
46641     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
46642     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
46643
46644 commit c37207d7f51e19c17f859966f314e27cc1231801
46645 Author: Wolfgang Denk <wd@denx.de>
46646 Date:   Wed Jul 16 16:38:59 2008 +0200
46647
46648     Fix printf() format problems with configurable prompts
46649
46650     U-Boot allows for configurable prompt strings using the
46651     CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
46652     the assumption was that any such user defined problts would contain
46653     exactly one "%d" format specifier. But some boards did not.
46654
46655     To allow for flexible boot prompts without adding too complex code we
46656     now allow to specify the whole list of printf() arguments in the user
46657     definition. This is powerful, but requires a responsible user who
46658     really understands what he is doing, as he needs to know for exanple
46659     which variables are available in the respective context.
46660
46661     Signed-off-by: Wolfgang Denk <wd@denx.de>
46662
46663 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
46664 Author: Wolfgang Denk <wd@denx.de>
46665 Date:   Thu Jul 31 17:02:14 2008 +0200
46666
46667     TQM85xx: fix typo introduce by commit ffbb5cb9
46668
46669     Signed-off-by: Wolfgang Denk <wd@denx.de>
46670
46671 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
46672 Author: Wolfgang Denk <wd@denx.de>
46673 Date:   Thu Jul 31 15:27:01 2008 +0200
46674
46675     mvbc_p board: fix most build warnings.
46676
46677     Signed-off-by: Wolfgang Denk <wd@denx.de>
46678
46679 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
46680 Author: Wolfgang Denk <wd@denx.de>
46681 Date:   Thu Jul 31 13:57:20 2008 +0200
46682
46683     E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
46684
46685     Avoid "integer constant is too large for 'long' type" warnings.
46686     And simplify the code.
46687
46688     Signed-off-by: Wolfgang Denk <wd@denx.de>
46689
46690 commit 9196b44334c330cc13de2464c59181e4db71f549
46691 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
46692 Date:   Wed Jul 30 23:21:19 2008 +0400
46693
46694     8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
46695
46696     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
46697
46698 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
46699 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
46700 Date:   Wed Jul 30 23:20:32 2008 +0400
46701
46702     PPC: Add pci_clk in the global_data for CPM2 processors
46703
46704     This patch adds pci_clk field to the global_data structure for the
46705     processors which have CPM2 module in case the CONFIG_PCI is defined.
46706
46707     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
46708
46709 commit f0ff885ca64655bee6540eb8a25eed90b1152686
46710 Author: Kumar Gala <galak@kernel.crashing.org>
46711 Date:   Wed Jul 30 14:13:30 2008 -0500
46712
46713     mpc85xx: Update linker scripts for Freescale boards
46714
46715     * Move to using absolute addressing always.  Makes the scripts a bit more
46716       portable and common
46717     * Moved .bss after the end of the image.  These allows us to have more
46718       room in the resulting binary image for code and data.
46719     * Removed .text object files that aren't really needed
46720     * Make sure _end is 4-byte aligned as the .bss init code expects this.
46721       (Its possible that the end of .bss isn't 4-byte aligned)
46722
46723     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46724
46725 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
46726 Author: Kumar Gala <galak@kernel.crashing.org>
46727 Date:   Wed Jul 30 08:01:15 2008 -0500
46728
46729     Fix compile warnings in dlmalloc
46730
46731     The origional code was using on odd reference to get to the first
46732     real element in av_[].  The first two elements of the array are
46733     not used for actual bins, but for house keeping.  If we are more
46734     explicit about how use the first few elements we can get rid of the
46735     warnings:
46736
46737     dlmalloc.c: In function 'malloc_extend_top':
46738     dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
46739     dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
46740     dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
46741     ...
46742
46743     The logic of how this code came to be is:
46744         bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
46745
46746     SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
46747         bin_at(0) = &(av_[0])
46748
46749     Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
46750
46751     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46752
46753 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
46754 Author: Stefan Roese <sr@denx.de>
46755 Date:   Wed Jul 30 10:21:01 2008 +0200
46756
46757     ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
46758
46759     Signed-off-by: Stefan Roese <sr@denx.de>
46760
46761 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
46762 Author: Stefan Roese <sr@denx.de>
46763 Date:   Wed Jul 30 09:59:51 2008 +0200
46764
46765     cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
46766
46767     A recent patch used '#if (CONFIG_CMD_USB)' instead of
46768     '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
46769     common/bootm.c compile again.
46770
46771     Signed-off-by: Stefan Roese <sr@denx.de>
46772     Acked-by: Markus Klotzbuecher <mk@denx.de>
46773
46774 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
46775 Author: Kyungmin Park <kmpark@infradead.org>
46776 Date:   Tue Jul 22 08:01:43 2008 +0900
46777
46778     Remove unused I2C at apollon board
46779
46780     There are no I2C devices on this board.
46781
46782     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
46783
46784 commit 3c95960e526b3b026da20201db64526f46faf14b
46785 Author: Wolfgang Denk <wd@denx.de>
46786 Date:   Thu Jul 31 10:12:09 2008 +0200
46787
46788     at91rm9200dk, csb637: fix NAND related build problems
46789
46790     Tried fixing NAND support for the at91rm9200dk board; untested.
46791     Disabled NAND support in the csb637 board config file.
46792
46793     Signed-off-by: Wolfgang Denk <wd@denx.de>
46794
46795 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
46796 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
46797 Date:   Wed Jul 30 12:39:28 2008 +0200
46798
46799     ppc4xx: ML507: Environment in flash and MTD Support
46800
46801     - Relocate the location of U-Boot in the flash
46802     - Save the environment in one sector of the flash memory
46803     - MTD Support
46804
46805     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
46806     Signed-off-by: Stefan Roese <sr@denx.de>
46807
46808 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
46809 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
46810 Date:   Tue Jul 29 17:16:10 2008 +0200
46811
46812     ppc4xx: ML507: Use of get_ram_size in board ml507
46813
46814     - Change suggested by WD
46815
46816     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
46817     Signed-off-by: Stefan Roese <sr@denx.de>
46818
46819 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
46820 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
46821 Date:   Mon Jul 21 20:30:07 2008 +0200
46822
46823     ppc4xx: ML507: U-Boot in flash and System ACE
46824
46825     This patch allows booting from FLASH the ML507 board by Xilinx.
46826     Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
46827
46828     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
46829     Signed-off-by: Stefan Roese <sr@denx.de>
46830
46831 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
46832 Author: Julien May <mailinglist@miromico.ch>
46833 Date:   Mon Jun 23 13:57:52 2008 +0200
46834
46835     Add support for the hammerhead (AVR32) board
46836
46837     The Hammerhead platform is built around a AVR32 32-bit microcontroller
46838     from Atmel.  It offers versatile peripherals, such as ethernet, usb
46839     device, usb host etc.
46840
46841     The board also incooperates a power supply and is a Power over Ethernet
46842     (PoE) Powered Device (PD).
46843
46844     Additonally, a Cyclone III FPGA from Altera is integrated on the board.
46845     The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
46846     DDR2 SDRAM interfaces, which will cover even the most exceptional need
46847     of memory bandwidth. Together with the onboard video decoder the board
46848     is ready for video processing.
46849
46850     For more information see: http:///www.miromico.com/hammerhead
46851
46852     Signed-off-by: Julien May <mailinglist@miromico.ch>
46853     [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
46854     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46855
46856 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
46857 Author: Kumar Gala <galak@kernel.crashing.org>
46858 Date:   Tue Jul 29 12:23:49 2008 -0500
46859
46860     fsl_i2c: Use timebase timer functions instead of get_timer()
46861
46862     The current implementation of get_timer() is only really useful after we
46863     have relocated u-boot to memory.  The i2c code is used before that as part
46864     of the SPD DDR setup.
46865
46866     We actually have a bug when using the get_timer() code before relocation
46867     because the .bss hasn't been setup and thus we could be reading/writing
46868     a random location (probably in flash).
46869
46870     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46871
46872 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
46873 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
46874 Date:   Tue Jul 29 14:49:31 2008 +0200
46875
46876     Adder8xx: Fix CFG_MONITOR_LEN
46877
46878     Due to increased space usage, U-Boot can no longer be stored in three sectors.
46879     The current U-Boot use just over three flash sectors (197k), and U-Boot will
46880     become corrupt after saving environment variables. This patch adds another 64k
46881     to CFG_MONITOR_LEN.
46882
46883     Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
46884
46885 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
46886 Author: Kyungmin Park <kmpark@infradead.org>
46887 Date:   Tue Jul 29 08:47:57 2008 +0900
46888
46889     Add OneNAND IPL related files to gitignore
46890
46891     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
46892
46893 commit 8d87589e8e874df7120a3d9667f051bc33bac250
46894 Author: Rafal Jaworowski <raj@semihalf.com>
46895 Date:   Mon Jul 28 20:38:25 2008 +0200
46896
46897     API: Teach the storage layer about SATA and MMC options.
46898
46899     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
46900     Acked-by: Rafal Jaworowski <raj@semihalf.com>
46901
46902 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
46903 Author: Rafal Jaworowski <raj@semihalf.com>
46904 Date:   Mon Jul 28 20:37:48 2008 +0200
46905
46906     API: Dump contents of sector 0 in the demo application.
46907
46908     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
46909     Acked-by: Rafal Jaworowski <raj@semihalf.com>
46910
46911 commit 13ca6305f2eba49c175f6370c35286141059c789
46912 Author: Rafal Jaworowski <raj@semihalf.com>
46913 Date:   Mon Jul 28 20:37:10 2008 +0200
46914
46915     API: Correct storage enumeration routine, other minor fixes in API storage area.
46916
46917     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
46918     Acked-by: Rafal Jaworowski <raj@semihalf.com>
46919
46920 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
46921 Author: Rafal Jaworowski <raj@semihalf.com>
46922 Date:   Mon Jul 28 20:36:19 2008 +0200
46923
46924     API: Fix compilation warnings in api_examples/demo.c.
46925
46926     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
46927
46928 commit c14eefcc48212af2f3314809605698dd8393a90a
46929 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46930 Date:   Sun Jul 27 17:09:43 2008 +0200
46931
46932     Fix more printf() format warnings
46933
46934     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46935
46936 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
46937 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46938 Date:   Fri Jul 25 15:18:16 2008 +0200
46939
46940     Fix remaining CFG_CMD_ define, ifdef and comments
46941
46942     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46943
46944 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
46945 Author: Stefano Babic <sbabic@denx.de>
46946 Date:   Fri Jul 25 08:57:40 2008 +0200
46947
46948     Add include for config.h in command.h.
46949
46950     Because the cmd_tbl_s structure depends on the configuration file, it
46951     must be assured that config.h is included before the structure is
46952     evaluated by the compiler. If this is not certain, it could happen
46953     that the compiler generates structures of different size, depending
46954     on the fact if the source file includes <config.h> before or after
46955     <command.h>.
46956
46957     The effect is that u-boot crashes when tries to relocate the command
46958     table (for ppc) or try to access to the command table for other
46959     architectures.
46960
46961     The problem can happen on board-depending commands. All general
46962     commands under /common are unaffected, because they include already
46963     config.h before command.h.
46964
46965     Signed-off-by: Stefano Babic <sbabic@denx.de>
46966
46967 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
46968 Author: Scott Wood <scottwood@freescale.com>
46969 Date:   Wed Jul 23 13:16:06 2008 -0500
46970
46971     NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
46972
46973     This fixes building out-of-tree.
46974
46975     Signed-off-by: Scott Wood <scottwood@freescale.com>
46976
46977 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
46978 Author: Heiko Schocher <hs@denx.de>
46979 Date:   Wed Jul 23 07:30:46 2008 +0200
46980
46981     Fix warnings if compiling with IDE support.
46982
46983     cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
46984     cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
46985
46986     Signed-off-by: Heiko Schocher <hs@denx.de>
46987
46988 commit 7610db17fd4d59c51d825488526d85ede2f06767
46989 Author: Adrian Filipi <adrian.filipi@eurotech.com>
46990 Date:   Tue Jul 22 14:28:11 2008 -0400
46991
46992     Removed support for the adsvix board.
46993
46994     Support for the adsvix was originally provided by Applied Data
46995     Systems (ADS), inc., now EuroTech, Inc.
46996     The board never shipped aside from some sample boards.
46997
46998     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
46999
47000 commit f96b44cef897bd372beb86dde1b33637c119d84d
47001 Author: Remy Bohmer <linux@bohmer.net>
47002 Date:   Tue Jul 22 16:22:11 2008 +0200
47003
47004     ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
47005
47006     If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
47007     never set, because relocation to RAM is actually never done by U-boot
47008     itself. However, several pieces of code check if this flag is set at
47009     some time.
47010
47011     So, to make sure this flag is set on boards skipping relocation, this
47012     is added to the initialisation of U-boot at a moment where it is safe
47013     to do so.
47014
47015     Signed-off-by: Remy Bohmer <linux@bohmer.net>
47016
47017 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
47018 Author: Timur Tabi <timur@freescale.com>
47019 Date:   Mon Jul 21 14:26:23 2008 -0500
47020
47021     fsl-i2c: fix writes to data segment before relocation
47022
47023     Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
47024     relocation.  Commit d8c82db4 added the ability for i2c_init() to program the
47025     I2C bus speed and save the value in i2c_bus_speed[], which is a global
47026     variable.  It is an error to write to the data segment before relocation,
47027     which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
47028
47029     Signed-off-by: Timur Tabi <timur@freescale.com>
47030
47031 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
47032 Author: Wolfgang Ocker <weo@reccoware.de>
47033 Date:   Mon Jul 28 16:56:51 2008 +0200
47034
47035     mips: Fix baudrate divisor computation on alchemy cpus
47036
47037     Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
47038     on alchemy cpus.
47039
47040     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
47041     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47042
47043 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
47044 Author: Ben Warren <biggerbadderben@gmail.com>
47045 Date:   Sat Jul 5 00:08:48 2008 -0700
47046
47047     Moved initialization of AVR32 Ethernet controllers to board_eth_init()
47048
47049     Renamed initialization functions for atngw100 and atstk1000.
47050     Removed initializations for these boards from net/eth.c
47051
47052     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47053     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47054
47055 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
47056 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47057 Date:   Wed Jul 23 10:55:46 2008 +0200
47058
47059     spi flash: Fix printf() format warnings
47060
47061     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47062
47063 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
47064 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47065 Date:   Wed Jul 23 10:55:31 2008 +0200
47066
47067     atmel_mci: Fix printf() format warnings
47068
47069     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47070
47071 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
47072 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47073 Date:   Wed Jul 23 10:55:15 2008 +0200
47074
47075     avr32: Fix printf() format warnings
47076
47077     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47078
47079 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
47080 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47081 Date:   Wed Jul 23 10:52:19 2008 +0200
47082
47083     avr32: asm/io.h needs asm/types.h
47084
47085     map_physmem() takes a phys_addr_t as parameter. This type is defined in
47086     asm/types.h, so we need to include that file.
47087
47088     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47089
47090 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
47091 Author: Michal Simek <monstr@monstr.eu>
47092 Date:   Thu Jul 17 12:25:46 2008 +0200
47093
47094     microblaze: Fix printf() format issues
47095
47096     Signed-off-by: Michal Simek <monstr@monstr.eu>
47097
47098 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
47099 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
47100 Date:   Thu Jul 17 07:27:51 2008 +0530
47101
47102     Remove unused code from lib_arm/bootm.c
47103
47104     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
47105
47106 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
47107 Author: Detlev Zundel <dzu@denx.de>
47108 Date:   Wed Jul 16 18:56:45 2008 +0200
47109
47110     tqm85xx: Demystify 'DK: !!!' comment
47111
47112     Signed-off-by: Detlev Zundel <dzu@denx.de>
47113
47114 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
47115 Author: Detlev Zundel <dzu@denx.de>
47116 Date:   Wed Jul 16 18:56:44 2008 +0200
47117
47118     83xx/85xx/86xx: Add LTEDR local bus definitions
47119
47120     Signed-off-by: Detlev Zundel <dzu@denx.de>
47121
47122 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
47123 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47124 Date:   Wed Jul 16 16:22:32 2008 +0200
47125
47126     serial_xuartlite.c: fix compiler warnings
47127
47128     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47129     Acked-by: Grant Likely <grant.likely@secretlab.ca>
47130
47131 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
47132 Author: Stefan Roese <sr@denx.de>
47133 Date:   Fri Jul 18 11:03:35 2008 +0200
47134
47135     POST: Add disable interrupts in some of the missing CPU POST tests
47136
47137     Some CPU POST tests did not disable the interrupts while running. This
47138     seems to be necessary to protect this self modifying code.
47139
47140     Signed-off-by: Stefan Roese <sr@denx.de>
47141
47142 commit 97a3bf268d096e0e97e54048448c35114edcf557
47143 Author: Stefan Roese <sr@denx.de>
47144 Date:   Fri Jul 18 10:43:24 2008 +0200
47145
47146     ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
47147
47148     This is needed for boards that define CFG_64BIT_STRTOUL but don't define
47149     CFG_64BIT_LBA.
47150
47151     Signed-off-by: Stefan Roese <sr@denx.de>
47152
47153 commit 0043ac55024963295fc79b39af85b6dc3b261e17
47154 Author: Niklaus Giger <niklaus.giger@netstal.com>
47155 Date:   Fri Jul 18 11:22:23 2008 +0200
47156
47157     POST PPC4xx/spr IVPR only if PPC440
47158
47159     The SPR IVPR register is only present (as far as I know) for
47160     processors with a PPC440 core.
47161
47162     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47163     Acked-by: Stefan Roese <sr@denx.de>
47164
47165 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
47166 Author: Stefan Roese <sr@denx.de>
47167 Date:   Fri Jul 18 10:42:29 2008 +0200
47168
47169     ppc4xx: Enable 64bit printf format on 440/460 platforms
47170
47171     This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
47172     440/460 platforms. This may be needed since those platforms support
47173     36bit physical address space.
47174
47175     Signed-off-by: Stefan Roese <sr@denx.de>
47176
47177 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
47178 Author: Stefan Roese <sr@denx.de>
47179 Date:   Fri Jul 18 15:57:23 2008 +0200
47180
47181     ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
47182
47183     This patch fixes a problem with incorrect MODTx (On Die Termination)
47184     setup for a configuration with multiple DIMM's and multiple ranks.
47185     Without this change Katmai was unable to boot Linux with DDR2 frequency
47186     >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
47187     with DDR2 frequency = 640MHz and mem=4GB.
47188
47189     Signed-off-by: Stefan Roese <sr@denx.de>
47190
47191 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
47192 Author: Stefan Roese <sr@denx.de>
47193 Date:   Fri Jul 18 12:24:41 2008 +0200
47194
47195     ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
47196
47197     Signed-off-by: Stefan Roese <sr@denx.de>
47198
47199 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
47200 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47201 Date:   Thu Jul 17 12:47:09 2008 +0200
47202
47203     ppc4xx: ML507 Board Support
47204
47205     The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
47206         among others:
47207         -Virtex 5 FX FPGA (With a ppc440x5 in it)
47208         -256MB of SDRAM2
47209         -32MB of Flash
47210         -I2C Eeprom
47211         -System ACE chip
47212         -Serial ATA connectors
47213         -RS232 Level Conversors
47214         -Ethernet Transceiver
47215
47216     This patch gives support to a standard design produced by EDK for this
47217     board: ppc440, uartlite, xilinx_int and flash
47218
47219     - Includes Changes propossed by Stefan Roese and Michal Simek
47220
47221     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47222     Acked-by: Stefan Roese <sr@denx.de>
47223
47224 commit d865fd09809a3a18669f35f970781820af40e4de
47225 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47226 Date:   Thu Jul 17 11:44:12 2008 +0200
47227
47228     ppc4xx: CPU PPC440x5 on Virtex5 FX
47229
47230     -This patchs gives support for the embbedded ppc440
47231      on the Virtex5 FPGAs
47232     -interrupts.c divided in uic.c and interrupts.c
47233     -xilinx_irq.c for xilinx interrupt controller
47234     -Include modifications propossed by  Stefan Roese
47235
47236     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47237     Acked-by: Stefan Roese <sr@denx.de>
47238
47239 commit 340ccb260f21516be360745d5c5e3bd0657698df
47240 Author: Sebastian Siewior <bigeasy@linutronix.de>
47241 Date:   Wed Jul 16 20:04:49 2008 +0200
47242
47243     cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
47244
47245     This got broken by commits 93c56f212c
47246      [cfi_flash: support of long cmd in U-boot.]
47247
47248     That command needs to be in little endian format on BE machines
47249     with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
47250     gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
47251     the cmdbuf in case portwidth = chipwidth = 8bit.
47252
47253     Cc: Alexey Korolev <akorolev@infradead.org>
47254     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
47255     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
47256
47257 commit 11188d55bc16dd907451c00282e00a038f73dd62
47258 Author: Stefan Roese <sr@denx.de>
47259 Date:   Thu Jul 17 10:40:51 2008 +0200
47260
47261     ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
47262
47263     Signed-off-by: Stefan Roese <sr@denx.de>
47264
47265 commit 021f6df6e96af5b387810cf96d24848da1faa55c
47266 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
47267 Date:   Thu Jul 10 17:20:51 2008 +0400
47268
47269     83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
47270
47271     The thinko was quite silly indeed, I messed with !ptr. Normally this
47272     would trigger some fault, but in U-Boot NULL pointer is equal to phys
47273     0, so the code was working still, just didn't actually test mpc8315erdb
47274     environment variable value. Heh.
47275
47276     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
47277     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47278
47279 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
47280 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
47281 Date:   Tue Jul 8 21:00:04 2008 +0400
47282
47283     83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
47284
47285     Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
47286     support, or without TSEC1 but with USB ULPI PHY support in addition.
47287     With this patch user can specify desired USB PHY.
47288
47289     Also, it seems that we can't distinguish the two boards in software, so
47290     user have to set `mpc8315erdb' environment variable to either 'tsec1'
47291     (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
47292     Linux will not probe for TSEC1.
47293
47294     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
47295     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47296
47297 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
47298 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
47299 Date:   Tue Jul 8 20:59:43 2008 +0400
47300
47301     fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
47302
47303     Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
47304     MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
47305     (connected to the four-ports hub, usb host only).
47306
47307     This patch implements support for passing Dual-Role USB controller's
47308     device tree property phy_type through the usb_phy_type environment
47309     variable.
47310
47311     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
47312     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
47313     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47314
47315 commit 699f05125509249072a0b865c8d35520d97cd501
47316 Author: Wolfgang Denk <wd@denx.de>
47317 Date:   Tue Jul 15 22:22:44 2008 +0200
47318
47319     Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
47320
47321     Signed-off-by: Wolfgang Denk <wd@denx.de>
47322
47323 commit bcab74baa6b1b1c969038ab6f64a186239180405
47324 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47325 Date:   Tue Jul 15 11:23:02 2008 -0400
47326
47327     Round the serial port clock divisor value returned by calc_divisor()
47328
47329     Round the serial port clock divisor value returned by
47330     calc_divisor()
47331
47332     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47333     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
47334
47335 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
47336 Author: Robin Getz <rgetz@blackfin.uclinux.org>
47337 Date:   Tue Jul 15 21:44:46 2008 +0200
47338
47339     Fix DHCP protocol so U-Boot does not respond too early
47340     on the network with it's offered IP number; it should not reply until
47341     after it has received a DHCP ACK message. Also ensures that U-Boot
47342     does it's DHCPREQUEST as broadcast (per RFC 2131).
47343
47344     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
47345     Acked-by: Ben Warren <biggerbadderben@gmail.com>
47346     Signed-off-by: Wolfgang Denk <wd@denx.de>
47347
47348 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
47349 Author: Sebastian Siewior <bigeasy@linutronix.de>
47350 Date:   Tue Jul 15 13:35:23 2008 +0200
47351
47352     cfi_flash: make the command u32 only
47353
47354     This got changed by commit 93c56f212c
47355     [cfi_flash: support of long cmd in U-boot.]
47356
47357     Long is the wrong type because it will behave differently on 64bit
47358     machines in a way that is probably not expected. u32 should be
47359     enough.
47360
47361     Cc: Alexey Korolev <akorolev@infradead.org>
47362     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
47363     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
47364
47365 commit 31cfe57491b183acae575d486729e158f016c27b
47366 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47367 Date:   Mon Jul 14 23:48:41 2008 +0200
47368
47369     tools/gitignore: update to all generated files
47370
47371     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47372
47373 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
47374 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
47375 Date:   Wed Jul 9 18:30:44 2008 +0200
47376
47377     mpc5xxx: Add MVBC_P board support
47378
47379     The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
47380     controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
47381
47382     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
47383     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47384
47385 commit e2d31fb3450653115452144363d5bde4e5e3e693
47386 Author: Timur Tabi <timur@freescale.com>
47387 Date:   Thu Jun 19 17:56:11 2008 -0500
47388
47389     Update Freescale sys_eeprom.c to handle CCID formats
47390
47391     Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats.  The
47392     NXID format replaces the older CCID format, but it's important to support both
47393     since most boards out there still use the CCID format.  This change is in
47394     preparation for using one file to handle both formats.  This will also unify
47395     EEPROM support for all Freescale 85xx and 86xx boards.
47396
47397     Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
47398     instead of ID_EEPROM_ADDR.
47399
47400     Signed-off-by: Timur Tabi <timur@freescale.com>
47401
47402 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
47403 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
47404 Date:   Fri Jul 11 17:22:43 2008 +0900
47405
47406     pci: sh: Add pci_skip_dev and pci_print_dev function
47407
47408     Add function of new PCI, pci_skip_dev and pci_print_dev.
47409
47410     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
47411     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47412
47413 commit 1107014e835ec9d46c0333f4211d104f77442db0
47414 Author: Andy Fleming <afleming@freescale.com>
47415 Date:   Mon Jul 14 20:29:07 2008 -0500
47416
47417     Clean up INIT_RAM options
47418
47419     The L2_INIT_RAM option was unused, and recent changes to the TLB code
47420     meant that the INIT_RAM TLBs weren't being cleared out.  In order to reduce
47421     the amount of mapped space attached to nothing, we change things so the TLBs
47422     get cleared.
47423
47424     Signed-off-by: Andy Fleming <afleming@freescale.com>
47425
47426 commit 4524561820a9327e89107854b3a7187800ccf719
47427 Author: Andy Fleming <afleming@freescale.com>
47428 Date:   Mon Jul 14 20:26:57 2008 -0500
47429
47430     Remove fake flash bank from 8544 DS
47431
47432     The fake flash bank was generating errors for anyone who didn't have a
47433     PromJET hooked up to the board.  As that constitutes the vast majority of
47434     users, we remove it.
47435
47436     Signed-off-by: Andy Fleming <afleming@freescale.com>
47437
47438 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
47439 Author: Kumar Gala <galak@kernel.crashing.org>
47440 Date:   Mon Jul 14 14:07:03 2008 -0500
47441
47442     MPC8544DS: Add ATI Video card support
47443
47444     Add support for using a PCIe ATI Video card on PCIe2.
47445
47446     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47447
47448 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
47449 Author: Kumar Gala <galak@kernel.crashing.org>
47450 Date:   Mon Jul 14 14:07:02 2008 -0500
47451
47452     85xx: Add some L1/L2 SPR register definitions
47453
47454     Add new L1/L2 SPRs related to e500mc cache config and control.
47455
47456     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47457
47458 commit e5852787f0c3c442a276262f13d91ca450605ac0
47459 Author: Kumar Gala <galak@kernel.crashing.org>
47460 Date:   Mon Jul 14 14:07:01 2008 -0500
47461
47462     MPC8544DS: Report board id, board version and fpga version.
47463
47464     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47465
47466 commit 73f15a060f67a2462551c334215bd20fac6b81d1
47467 Author: Kumar Gala <galak@kernel.crashing.org>
47468 Date:   Mon Jul 14 14:07:00 2008 -0500
47469
47470     85xx: Cleanup L2 cache size detection
47471
47472     The L2 size detection code was a bit confusing and we kept having to add
47473     code to it to handle new processors.  Change the sense of detection so we
47474     look for the older processors that aren't changing.
47475
47476     Also added support for 1M cache size on 8572.
47477
47478     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47479
47480 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
47481 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47482 Date:   Fri Jul 11 15:33:08 2008 -0400
47483
47484     sbc8560: enable CONFIG_OF_LIBFDT by default
47485
47486     Make the default build for the sbc8560 board be powerpc
47487     capable with libfdt support.
47488
47489     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47490
47491 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
47492 Author: Andy Fleming <afleming@freescale.com>
47493 Date:   Mon Jul 14 20:04:40 2008 -0500
47494
47495     Fix indentation for default boot environment variables
47496
47497     This was proposed by Paul Gortmaker in response to Wolfgang's comments on
47498     similar #defines in sbc8560.h.
47499
47500     Signed-off-by: Andy Fleming <afleming@freescale.com>
47501
47502 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
47503 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47504 Date:   Fri Jul 11 15:33:07 2008 -0400
47505
47506     sbc8560: add default fdt values
47507
47508     Add in the default fdt settings and the typical EXTRA_ENV
47509     settings as borrowed from the mpc8560ads.  Fix a couple
47510     of stale references to the mpc8560ads dating back to the
47511     original clone/fork.
47512
47513     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47514     Signed-off-by: Andy Fleming <afleming@freescale.com>
47515
47516 commit d04e76edf92f7f89696989e8702b97e020455af3
47517 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47518 Date:   Fri Jul 11 15:33:06 2008 -0400
47519
47520     sbc8560: add in ft_board_setup()
47521
47522     Add in for the sbc8560, the ft_board_setup() routine, based on what is
47523     in use for the Freescale MPC8560ADS board.
47524
47525     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47526
47527 commit c158bcaca3b31cbe38c4143812e6170e38a57393
47528 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47529 Date:   Fri Jul 11 15:33:05 2008 -0400
47530
47531     sbc8560: define eth0 and eth1 instead of eth1 and eth2
47532
47533     The existing config doesn't define CONFIG_HAS_ETH0, and so the
47534     fdt support doesn't update the zeros in the dtb local-mac with
47535     real data from the u-boot env.  Since the existing config is
47536     tailored to just two interfaces, get rid of the ETH2 definitions
47537     at the same time.
47538
47539     Also don't include any end user specific data into the environment
47540     by default -- things like MAC address, network parameters etc. need
47541     to come from the end user.
47542
47543     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47544     Signed-off-by: Andy Fleming <afleming@freescale.com>
47545
47546 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
47547 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47548 Date:   Fri Jul 11 15:33:04 2008 -0400
47549
47550     sbc8560: properly set cs0_bnds for 512MB
47551
47552     The sbc8560 board ships with 512MB of memory installed,
47553     but the current cs0_bnds is hard coded for 256MB.  Set the
47554     value based on CFG_SDRAM_SIZE.
47555
47556     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47557
47558 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
47559 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47560 Date:   Fri Jul 11 15:33:03 2008 -0400
47561
47562     sbc8560: proper definitions for TSEC.
47563
47564     The definitions for the TSEC have become out of date.  There is no
47565     longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
47566     Update to match those of other boards, like the MPC8560ADS.
47567
47568     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47569     Acked-by: Ben Warren <biggerbadderben@gmail.com>
47570
47571 commit 71074abbe0c76429577aff58aeff0a24ad210b23
47572 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47573 Date:   Wed Jul 9 13:23:05 2008 -0400
47574
47575     8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
47576
47577     Some boards that have external 16550 UARTs don't have a direct
47578     tie between bi_busfreq and the clock used for the UARTs.  Boards
47579     that do have such a tie should set CFG_NS16550_CLK to be
47580     get_bus_freq(0) -- which most of them do already.
47581
47582     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47583     Acked-by: Kim Phillips <kim.phillips@freescale.com>
47584
47585 commit 24ef76f320fbadf074105229826514db140f939f
47586 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
47587 Date:   Wed Jul 2 07:03:53 2008 -0700
47588
47589     Change the temp map to ROM to align addresses to page size.
47590
47591     With a page size of BOOKE_PAGESZ_16M, both the real and effective
47592     addresses must be multiples of 16MB.  The hardware silently truncates
47593     them so the code happens to work.  This patch clarifies the situation
47594     by establishing addresses that the hardware doesn't need to truncate.
47595
47596     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
47597     Signed-off-by: Andy Fleming <afleming@freescale.com>
47598
47599 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
47600 Author: Kim Phillips <kim.phillips@freescale.com>
47601 Date:   Tue Jun 17 17:45:22 2008 -0500
47602
47603     mpc85xx: use IS_E_PROCESSOR macro
47604
47605     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47606
47607 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
47608 Author: Kim Phillips <kim.phillips@freescale.com>
47609 Date:   Mon Jun 16 15:55:53 2008 -0500
47610
47611     fdt: add crypto node handling for MPC8{3, 5}xxE processors
47612
47613     Delete the crypto node if not on an E-processor.  If on 8360 or 834x family,
47614     check rev and up-rev crypto node (to SEC rev. 2.4 property values)
47615     if on an 'EA' processor, e.g. MPC8349EA.
47616
47617     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47618
47619 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
47620 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47621 Date:   Fri Jul 11 15:10:11 2008 -0400
47622
47623     ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
47624
47625     ARM DaVinci: Remove extern phy_t declaration by moving
47626     code to proper place.
47627
47628     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47629
47630 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
47631 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47632 Date:   Fri Jul 11 15:10:10 2008 -0400
47633
47634     ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
47635
47636     ARM DaVinci: Remove duplicate definitions of MACH_TYPE
47637     and prototype of i2c_init().
47638
47639     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47640
47641 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
47642 Author: Kumar Gala <galak@kernel.crashing.org>
47643 Date:   Mon Jul 14 14:03:02 2008 -0500
47644
47645     Fix some more printf() format problems.
47646
47647     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47648
47649 commit 45b16d22c64674ccd8c4637456a987463609141c
47650 Author: Wolfgang Denk <wd@denx.de>
47651 Date:   Mon Jul 14 22:38:42 2008 +0200
47652
47653     Fix coding style; make code better parsable by external tools
47654
47655     Signed-off-by: Wolfgang Denk <wd@denx.de>
47656
47657 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
47658 Author: Wolfgang Denk <wd@denx.de>
47659 Date:   Mon Jul 14 21:19:08 2008 +0200
47660
47661     cpu/i386/serial.c: Fix syntax errors
47662
47663     Signed-off-by: Wolfgang Denk <wd@denx.de>
47664
47665 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
47666 Author: Wolfgang Denk <wd@denx.de>
47667 Date:   Mon Jul 14 20:41:35 2008 +0200
47668
47669     elppc board: Coding style cleanup.
47670
47671     Signed-off-by: Wolfgang Denk <wd@denx.de>
47672
47673 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
47674 Author: Wolfgang Denk <wd@denx.de>
47675 Date:   Mon Jul 14 20:40:22 2008 +0200
47676
47677     elppc board: fix syntax error.
47678
47679     Signed-off-by: Wolfgang Denk <wd@denx.de>
47680
47681 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
47682 Author: Wolfgang Denk <wd@denx.de>
47683 Date:   Mon Jul 14 20:38:26 2008 +0200
47684
47685     EB+MCF-EV123 board: fix coding style (alingment)
47686
47687     Signed-off-by: Wolfgang Denk <wd@denx.de>
47688
47689 commit 6841785a0bb0f38175456a923edd634fb7dd6947
47690 Author: Wolfgang Denk <wd@denx.de>
47691 Date:   Mon Jul 14 20:36:44 2008 +0200
47692
47693     EB+MCF-EV123 board: fix syntx error
47694
47695     Signed-off-by: Wolfgang Denk <wd@denx.de>
47696
47697 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
47698 Author: Andy Fleming <afleming@freescale.com>
47699 Date:   Mon Jul 7 18:02:08 2008 -0500
47700
47701     Remove LBC_CACHE_BASE from 8544 DS
47702
47703     The 8544 DS doesn't have any cacheable Local Bus memories set up.  By mapping
47704     space for some anyway, we were allowing speculative loads into unmapped space,
47705     which would cause an exception (annoying, even if ultimately harmless).
47706     Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
47707     problem.
47708
47709     Signed-off-by: Andy Fleming <afleming@freescale.com>
47710
47711 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
47712 Author: Wolfgang Denk <wd@denx.de>
47713 Date:   Mon Jul 14 15:19:07 2008 +0200
47714
47715     Code cleanup: fix old style assignment ambiguities like "=-" etc.
47716
47717     Signed-off-by: Wolfgang Denk <wd@denx.de>
47718
47719 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
47720 Author: Wolfgang Denk <wd@denx.de>
47721 Date:   Mon Jul 14 15:10:53 2008 +0200
47722
47723     AmigaOneG3SE: remove dead and incomplete files
47724
47725     Signed-off-by: Wolfgang Denk <wd@denx.de>
47726
47727 commit b64f190b7a34224df09b559ca111eb1b733f00ad
47728 Author: Wolfgang Denk <wd@denx.de>
47729 Date:   Mon Jul 14 15:06:35 2008 +0200
47730
47731     Fix printf() format issues with sizeof_t types by using %zu
47732
47733     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47734     Signed-off-by: Wolfgang Denk <wd@denx.de>
47735
47736 commit f354b73e16a86f9e9085471a830605f74f84ea5d
47737 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47738 Date:   Mon Jul 14 14:11:45 2008 +0200
47739
47740     vsprintf: add z and t options
47741
47742     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47743
47744 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
47745 Author: Wolfgang Denk <wd@denx.de>
47746 Date:   Sun Jul 13 23:07:35 2008 +0200
47747
47748     Fix some more printf() format issues.
47749
47750     Signed-off-by: Wolfgang Denk <wd@denx.de>
47751
47752 commit d5996dd555edf52721b7691a4c59de016251ed39
47753 Author: Wolfgang Denk <wd@denx.de>
47754 Date:   Sun Jul 13 19:51:00 2008 +0200
47755
47756     Fix some more printf() format problems.
47757
47758     Signed-off-by: Wolfgang Denk <wd@denx.de>
47759
47760 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
47761 Author: Wolfgang Denk <wd@denx.de>
47762 Date:   Sun Jul 13 19:48:26 2008 +0200
47763
47764     ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
47765
47766     Signed-off-by: Wolfgang Denk <wd@denx.de>
47767
47768 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
47769 Author: Anatolij Gustschin <agust@denx.de>
47770 Date:   Sat Jul 12 17:31:36 2008 +0200
47771
47772     Fix bug in Lime video driver
47773
47774     We need to wait while drawing engine clears frame
47775     buffer before any further software accesses to frame
47776     buffer will be initiated. Otherwise software drawn
47777     parts could be partially destroyed by the drawing
47778     engine or even GDC chip freeze could occur (as
47779     observed on socrates board).
47780
47781     Signed-off-by: Anatolij Gustschin <agust@denx.de>
47782
47783 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
47784 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47785 Date:   Sat Jul 12 14:36:34 2008 +0200
47786
47787     Fix some more printf() format issues.
47788
47789     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47790
47791 commit 18c8a28aad49803780bd8d52432ded528e37e701
47792 Author: Michal Simek <monstr@monstr.eu>
47793 Date:   Fri Jul 11 15:11:57 2008 +0200
47794
47795     hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
47796
47797     Signed-off-by: Michal Simek <monstr@monstr.eu>
47798     Acked-by: Stefan Roese <sr@denx.de>
47799
47800 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
47801 Author: Michal Simek <monstr@monstr.eu>
47802 Date:   Fri Jul 11 11:50:53 2008 +0200
47803
47804     hwmon: Cleaning hwmon devices
47805
47806     Clean Makefile
47807     Move device specific values to driver for better reading
47808
47809     Signed-off-by: Michal Simek <monstr@monstr.eu>
47810     Acked-by: Stefan Roese <sr@denx.de>
47811
47812 commit c78fce699c7ff467ecd841da6a79f065180bf578
47813 Author: Michal Simek <monstr@monstr.eu>
47814 Date:   Fri Jul 11 10:43:13 2008 +0200
47815
47816     FIS: repare incorrect return value with ramdisk handling
47817
47818     Microblaze and PowerPC use boot_get_ramdisk for loading
47819     ramdisk to memory with checking return value.
47820     Return 0 means success. Return 1 means failed.
47821     Here is correspond part of code from bootm.c which check
47822     return code.
47823
47824     ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
47825                 &rd_data_start, &rd_data_end);
47826     if (ret)
47827         goto error;
47828
47829     Signed-off-by: Michal Simek <monstr@monstr.eu>
47830
47831 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
47832 Author: Michal Simek <monstr@monstr.eu>
47833 Date:   Fri Jul 11 10:10:32 2008 +0200
47834
47835     microblaze: Remove useless ancient headers
47836
47837     Signed-off-by: Michal Simek <monstr@monstr.eu>
47838
47839 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
47840 Author: Michal Simek <monstr@monstr.eu>
47841 Date:   Fri Jul 11 10:10:31 2008 +0200
47842
47843     microblaze: Clean uartlite driver
47844
47845     Redesign uartlite driver to in_be32 and out_be32 macros
47846     Fix missing header in io.h
47847
47848     Signed-off-by: Michal Simek <monstr@monstr.eu>
47849     Acked-by: Grant Likely <grant.likely@secretlab.ca>
47850
47851 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
47852 Author: Marcel Ziswiler <marcel@ziswiler.com>
47853 Date:   Fri Jul 11 02:39:14 2008 +0200
47854
47855     Enable passing of ATAGs required by latest Linux kernel.
47856
47857 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
47858 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47859 Date:   Fri Jul 11 10:24:15 2008 -0400
47860
47861     Fix integer overflow warning in calc_divisor()
47862
47863     which happened when rounding the serial port clock divisor
47864
47865     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47866
47867 commit 6b760189d77f001684e3160b355c185ca3804961
47868 Author: Marcel Ziswiler <marcel@ziswiler.com>
47869 Date:   Fri Jul 11 01:09:59 2008 +0200
47870
47871     Fix build time warnings in function mmc_decode_csd()
47872
47873     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
47874
47875 commit c15947d6ce0d59925c97fdfac692476af6e262d0
47876 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47877 Date:   Thu Jul 10 10:46:33 2008 -0400
47878
47879     ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
47880
47881     caused by missing dcache status/enable/disable functions.
47882
47883     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47884
47885 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
47886 Author: Stefan Roese <sr@denx.de>
47887 Date:   Thu Jul 10 13:53:31 2008 +0200
47888
47889     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
47890
47891     This patch removes some ft_board_setup() functions from some 4xx boards.
47892     This can be done since we now have a default weak implementation for this
47893     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
47894     implementation like canyonlands need their own version.
47895
47896     Signed-off-by: Stefan Roese <sr@denx.de>
47897
47898 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
47899 Author: Wolfgang Denk <wd@denx.de>
47900 Date:   Sun Jul 13 14:58:16 2008 +0200
47901
47902     Add last known maintainer for orphaned boards; reformat.
47903
47904     Signed-off-by: Wolfgang Denk <wd@denx.de>
47905
47906 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
47907 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47908 Date:   Thu Jul 10 13:16:04 2008 +0200
47909
47910     Remove kharris@nexus-tech.net from MAINTAINERS
47911
47912     Mail to kharris@nexus-tech.net bounces because the user doesn't exist
47913     anymore. You can't be a maintainer without a valid e-mail address, so
47914     move all boards that used to be maintained by Kyle Harris to the
47915     "orphaned" list.
47916
47917     Currently, only PowerPC has a list of orphaned boards, so this patch
47918     creates one for ARM as well.
47919
47920     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47921
47922 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
47923 Author: Anatolij Gustschin <agust@denx.de>
47924 Date:   Thu Jul 10 01:15:10 2008 +0200
47925
47926     at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
47927
47928     On the at91sam9260ep development board there is an EEPROM
47929     connected to the TWI interface (PA23, PA24 Peripheral A
47930     multiplexing), so we cannot use these pins as ETX2, ETX3.
47931     This patch configures PA10, PA11 pins for ETX2, ETX3
47932     instead of PA23, PA24 pins.
47933
47934     Signed-off-by: Anatolij Gustschin <agust@denx.de>
47935     Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
47936
47937 commit f889265753ddf4465d9d580827bb9289bfac55d6
47938 Author: Kenneth Johansson <kenneth@southpole.se>
47939 Date:   Sat Jul 12 13:18:34 2008 -0600
47940
47941     fix DIU for small screens
47942
47943     The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
47944     so it was not possible to set a slow pixel clock and thus prevented
47945     display on small screens.
47946
47947     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
47948     Acked-by: John Rigby <jrigby@freescale.com>
47949
47950 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
47951 Author: John Rigby <jrigby@freescale.com>
47952 Date:   Fri Jul 11 14:44:09 2008 -0600
47953
47954     ADS5121 cleanup compile warnings
47955
47956     board/ads5121/iopin.c
47957         Replace bit fields in struct iopin_t with a single
47958         field and intialize it via plain old macros.
47959         This fixes the type pun warnings and makes the code
47960         more readable.
47961
47962     board/ads5121/ads5121.c
47963         Add include iopin.h to ads5121.c for the iopin_initialize
47964         prototype.
47965
47966         Add an extern void ads5121_diu_init(void)
47967
47968     Signed-off-by: John Rigby <jrigby@freescale.com>
47969
47970 commit bde63587622c4b830a27d1ddf7265843de9e994f
47971 Author: Wolfgang Denk <wd@denx.de>
47972 Date:   Fri Jul 11 22:56:11 2008 +0200
47973
47974     Fix some more printf() format issues.
47975
47976     Signed-off-by: Wolfgang Denk <wd@denx.de>
47977
47978 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
47979 Author: Wolfgang Denk <wd@denx.de>
47980 Date:   Fri Jul 11 22:55:31 2008 +0200
47981
47982     Fixed some out-of-tree build issues
47983
47984     Signed-off-by: Wolfgang Denk <wd@denx.de>
47985
47986 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
47987 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47988 Date:   Wed Jul 9 16:20:23 2008 -0500
47989
47990     ColdFire: Fix FB CS not setup properly for Mcf5282
47991
47992     Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
47993     CFG_CSn_RO is defined as 0, the chipselect will not
47994     be assigned.
47995
47996     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47997
47998 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
47999 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48000 Date:   Wed Jul 9 15:47:27 2008 -0500
48001
48002     ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
48003
48004     Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
48005     clock module in cpu/<cf arch>/cpu_init.c
48006
48007     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48008
48009 commit f94945b517f10e01927101679c62361e03d4e837
48010 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48011 Date:   Wed Jul 9 15:25:01 2008 -0500
48012
48013     ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
48014
48015     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48016
48017 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
48018 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48019 Date:   Wed Jul 9 15:21:44 2008 -0500
48020
48021     Fix compile error caused by missing timer function
48022
48023     Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
48024
48025     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48026
48027 commit c37ea031175b807c54e6bad9b270e9bede6c0078
48028 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48029 Date:   Wed Jul 9 15:14:25 2008 -0500
48030
48031     Fix compile error caused by incorrect function return type
48032
48033     Rename int mii_init(void) to void mii_init(void)
48034
48035     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48036
48037 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
48038 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48039 Date:   Wed Jun 18 19:27:23 2008 -0500
48040
48041     ColdFire: Fix power up issue for MCF5235
48042
48043     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48044
48045 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
48046 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48047 Date:   Wed Jun 18 19:19:07 2008 -0500
48048
48049     ColdFire: Fix compiling error for MCF5275
48050
48051     The compiling error was caused by missing a closed parentheses
48052     in speed.c
48053
48054     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48055
48056 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
48057 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48058 Date:   Wed Jun 18 19:14:01 2008 -0500
48059
48060     ColdFire: Fix timer issue for MCF5272
48061
48062     The timer was assigned to wrong timer memory mapped which
48063     caused udelay() and timer() not working properly.
48064
48065     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48066
48067 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
48068 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48069 Date:   Wed Jun 18 19:12:13 2008 -0500
48070
48071     ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
48072
48073     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
48074
48075 commit 8371dc2066136be21e10b7b9293e469297d77298
48076 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48077 Date:   Wed Jun 18 19:05:23 2008 -0500
48078
48079     ColdFire: Add -got=single param for new linux v4e toolchains
48080
48081     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
48082
48083 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
48084 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48085 Date:   Wed Jun 18 13:21:19 2008 -0500
48086
48087     ColdFire: Fix code flash configuration for M547x/M548x boards
48088
48089     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
48090
48091 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
48092 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48093 Date:   Tue Jun 24 12:12:16 2008 -0500
48094
48095     ColdFire: Fix warning messages by passing correct data type in board.c
48096
48097     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48098
48099 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
48100 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48101 Date:   Thu May 29 12:21:54 2008 -0500
48102
48103     ColdFire: Fix UART baudrate formula
48104
48105     The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
48106     can generate the wrong divisor due to integer division truncation.
48107     Round the calculated divisor value by adding 1/2 the baudrate
48108     before dividing by the baudrate.
48109
48110     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48111     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
48112
48113 commit b578fb471444cbd7db1285701ba51343baaf73fb
48114 Author: Stefan Roese <sr@denx.de>
48115 Date:   Thu Jul 10 11:38:26 2008 +0200
48116
48117     ppc4xx: Fix include sequence in 4xx_pcie.c
48118
48119     This patch now moves common.h to the top of the inlcude list. This
48120     is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
48121     the phys_size_t/phys_addr_t are defined to the correct size in this
48122     driver.
48123
48124     Signed-off-by: Stefan Roese <sr@denx.de>
48125
48126 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
48127 Author: Stefan Roese <sr@denx.de>
48128 Date:   Fri Jul 11 13:10:56 2008 +0200
48129
48130     ppc4xx: Fix compile warning in 44x_spd_ddr2.c
48131
48132     Signed-off-by: Stefan Roese <sr@denx.de>
48133
48134 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
48135 Author: Stefan Roese <sr@denx.de>
48136 Date:   Fri Jul 11 11:40:13 2008 +0200
48137
48138     ppc4xx: Fix small korat merge problem
48139
48140     Signed-off-by: Stefan Roese <sr@denx.de>
48141
48142 commit 1d0554736a0a1dd59718acda660871ce56b69e18
48143 Author: Stefan Roese <sr@denx.de>
48144 Date:   Fri Jul 11 11:34:52 2008 +0200
48145
48146     ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
48147
48148     Signed-off-by: Stefan Roese <sr@denx.de>
48149
48150 commit 3a82113ed5934d498f25080441a8261fc9454b15
48151 Author: Stefan Roese <sr@denx.de>
48152 Date:   Thu Jul 10 16:37:09 2008 +0200
48153
48154     ppc4xx: Add 460SX UIC defines
48155
48156     Only the really needed ones are added (cascading and EMAC/MAL).
48157
48158     Signed-off-by: Stefan Roese <sr@denx.de>
48159
48160 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
48161 Author: Stefan Roese <sr@denx.de>
48162 Date:   Mon Jun 30 14:11:07 2008 +0200
48163
48164     ppc4xx: Continue cleanup of ppc440.h
48165
48166     This patch continues the ppc440.h cleanup by removing some of the unused
48167     defines.
48168
48169     Signed-off-by: Stefan Roese <sr@denx.de>
48170
48171 commit d9056b7913ed6a228d2f33671d916efedee541dd
48172 Author: Stefan Roese <sr@denx.de>
48173 Date:   Mon Jun 30 14:05:05 2008 +0200
48174
48175     ppc4xx: Cleanup Katmai & Yucca PCIe register usage
48176
48177     This patch cleans up the 440SPe PCIe register usage. Now only defines
48178     from the include/asm-ppc/4xx_pcie.h are used.
48179
48180     Signed-off-by: Stefan Roese <sr@denx.de>
48181
48182 commit 5de851403b01489b493fa83137ad990b8ce60d1c
48183 Author: Stefan Roese <sr@denx.de>
48184 Date:   Thu Jun 26 17:36:39 2008 +0200
48185
48186     ppc4xx: Rework 440GX UIC handling
48187
48188     This patch reworks the 440GX interrupt handling so that the common 4xx
48189     code can be used. The 440GX is an exception to all other 4xx variants
48190     by having the cascading interrupt vectors not on UIC0 but on a special
48191     UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
48192     the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
48193     handling is simpler without any 440GX special cases.
48194
48195     Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
48196
48197     Signed-off-by: Stefan Roese <sr@denx.de>
48198
48199 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
48200 Author: Stefan Roese <sr@denx.de>
48201 Date:   Thu Jun 26 13:40:57 2008 +0200
48202
48203     ppc4xx: Consolidate PPC4xx UIC defines
48204
48205     This 2nd patch now removes all UIC mask bit definition. They should be
48206     generated from the vectors by using the UIC_MASK() macro from now on.
48207     This way only the vectors need to get defined for new PPC's.
48208
48209     Also only the really used interrupt vectors are now defined. This makes
48210     definitions for new PPC versions easier and less error prone.
48211
48212     Another part of this patch is that the 4xx emac driver got a little
48213     cleanup, since now the usage of the interrupts is clearer.
48214
48215     Signed-off-by: Stefan Roese <sr@denx.de>
48216
48217 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
48218 Author: Stefan Roese <sr@denx.de>
48219 Date:   Wed Jun 25 10:59:22 2008 +0200
48220
48221     ppc4xx: Consolidate PPC4xx UIC defines
48222
48223     This patch is the first step to consolidate the UIC related defines in the
48224     4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
48225     asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
48226     steps.
48227
48228     Signed-off-by: Stefan Roese <sr@denx.de>
48229
48230 commit 7ee2619c20ccecd57966d74d844e6329e141261c
48231 Author: Stefan Roese <sr@denx.de>
48232 Date:   Tue Jun 24 17:18:50 2008 +0200
48233
48234     ppc4xx: Consolidate PPC4xx EBC defines
48235
48236     This patch removes all EBC related defines from the PPC4xx headers
48237     ppc405.h and ppc440.h and introduces a new header
48238
48239     include/asm-ppc/ppc4xx-ebc.h
48240
48241     with all those defines.
48242
48243     Signed-off-by: Stefan Roese <sr@denx.de>
48244
48245 commit e321801bed5a6d896d298c00fd20046f039d5d66
48246 Author: Stefan Roese <sr@denx.de>
48247 Date:   Thu Jul 10 13:52:44 2008 +0200
48248
48249     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
48250
48251     This patch removes some ft_board_setup() functions from some 4xx boards.
48252     This can be done since we now have a default weak implementation for this
48253     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
48254     implementation like canyonlands need their own version.
48255
48256     Signed-off-by: Stefan Roese <sr@denx.de>
48257
48258 commit 08250eb2edbd96514d049602d9e134110ac3185f
48259 Author: Stefan Roese <sr@denx.de>
48260 Date:   Thu Jul 10 15:32:32 2008 +0200
48261
48262     ppc4xx: Fix merge problems in 44x_spd_ddr2.c
48263
48264     Signed-off-by: Stefan Roese <sr@denx.de>
48265
48266 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
48267 Author: Grant Erickson <gerickson@nuovations.com>
48268 Date:   Tue Jul 8 08:35:00 2008 -0700
48269
48270     ppc4xx: Add MII mode support to the EMAC RGMII Bridge
48271
48272     This patch adds support for placing the RGMII bridge on the
48273     PPC405EX(r) into MII/GMII mode and allows a board-specific
48274     configuration to specify the bridge mode at compile-time.
48275
48276     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
48277     Signed-off-by: Stefan Roese <sr@denx.de>
48278
48279 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
48280 Author: Grant Erickson <gerickson@nuovations.com>
48281 Date:   Wed Jul 9 16:46:35 2008 -0700
48282
48283     ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
48284
48285     This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
48286     controller registers (MODT and INITPLR) used by the
48287     PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
48288     peer values used for the INITPLR MR and EMR registers,
48289     respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
48290
48291     With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
48292     Kilauea are replaced by equivalent mnemonics to make it easier to
48293     compare and contrast other 405EX(r)-based boards (e.g. during board
48294     bring-up).
48295
48296     Finally, unified the SDRAM controller register dump routine such that
48297     it can be used across all processor variants that utilize the IBM DDR2
48298     SDRAM controller core. It produces output of the form:
48299
48300         PPC4xx IBM DDR2 Register Dump:
48301                 ...
48302                 SDRAM_MB0CF[40] = 0x00006701
48303                 ...
48304
48305     which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
48306     since it is not uncommon that the DCR values in header files get mixed
48307     up and it helps to validate, at a glance, they match what is printed
48308     in the user manual.
48309
48310     Tested on:
48311       AMCC Kilauea/Haleakala:
48312       - NFS Linux Boot: PASSED
48313       - NAND Linux Boot: PASSED
48314
48315     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
48316     Signed-off-by: Stefan Roese <sr@denx.de>
48317
48318 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
48319 Author: Grant Erickson <gerickson@nuovations.com>
48320 Date:   Wed Jul 9 16:31:59 2008 -0700
48321
48322     ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
48323
48324     Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
48325     revision ID DCR based on 405EX, and add field mnemonics for bus error
48326     status and ECC error status registers.
48327
48328     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
48329     Signed-off-by: Stefan Roese <sr@denx.de>
48330
48331 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
48332 Author: Grant Erickson <gerickson@nuovations.com>
48333 Date:   Wed Jul 9 16:31:36 2008 -0700
48334
48335     ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
48336
48337     This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
48338
48339     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
48340     Signed-off-by: Stefan Roese <sr@denx.de>
48341
48342 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
48343 Author: Grant Erickson <gerickson@nuovations.com>
48344 Date:   Wed Jul 9 11:55:46 2008 -0700
48345
48346     PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
48347
48348     While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
48349     controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
48350     the 405EX(r), SDRAM_MCSTAT has a different DCR value.
48351
48352     Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
48353     which causes SDRAM initialization to periodically fail since it can
48354     prematurely indicate SDRAM ready status.
48355
48356     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
48357     Signed-off-by: Stefan Roese <sr@denx.de>
48358
48359 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
48360 Author: Feng Kan <fkan@amcc.com>
48361 Date:   Tue Jul 8 22:48:42 2008 -0700
48362
48363     ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
48364
48365     Add AMCC Redwood reference board that uses the latest
48366     PPC 464 CPU processor combined with a rich mix of peripheral
48367     controllers. The board will support PCIe, mutiple Gig ethernet
48368     ports, advanced hardware RAID assistance and IEEE 1588.
48369
48370     Signed-off-by: Feng Kan <fkan@amcc.com>
48371     Signed-off-by: Stefan Roese <sr@denx.de>
48372
48373 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
48374 Author: Feng Kan <fkan@amcc.com>
48375 Date:   Tue Jul 8 22:48:07 2008 -0700
48376
48377     ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
48378
48379     Signed-off-by: Feng Kan <fkan@amcc.com>
48380     Signed-off-by: Stefan Roese <sr@denx.de>
48381
48382 commit 7d30793685efcada183891c78fc892e6c9ba50c7
48383 Author: Feng Kan <fkan@amcc.com>
48384 Date:   Tue Jul 8 22:47:31 2008 -0700
48385
48386     ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
48387
48388     Signed-off-by: Feng Kan <fkan@amcc.com>
48389     Signed-off-by: Stefan Roese <sr@denx.de>
48390
48391 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
48392 Author: Wolfgang Denk <wd@denx.de>
48393 Date:   Fri Jul 11 01:16:00 2008 +0200
48394
48395     Fix some more print() format errors.
48396
48397     Signed-off-by: Wolfgang Denk <wd@denx.de>
48398
48399 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
48400 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48401 Date:   Thu Jul 10 20:57:54 2008 +0200
48402
48403     MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
48404
48405     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48406
48407 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
48408 Author: Sergey Lapin <slapin@ossfans.org>
48409 Date:   Thu Jun 5 11:06:29 2008 +0400
48410
48411     DataFlash AT45DB021 support
48412
48413     Some boards based on AT91SAM926X-EK use smaller DF chips to keep
48414     bootstrap, u-boot and its environment, using NAND or other external
48415     storage for kernel and rootfs. This patch adds support for
48416     small 1024x263 chip.
48417
48418     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
48419
48420 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
48421 Author: Kim Phillips <kim.phillips@freescale.com>
48422 Date:   Thu Jul 10 14:00:15 2008 -0500
48423
48424     silence misc printf formatting compiler warnings
48425
48426     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48427
48428 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
48429 Author: Markus Klotzbücher <mk@denx.de>
48430 Date:   Thu Jul 10 14:47:09 2008 +0200
48431
48432     USB: shutdown USB before booting
48433
48434     This patch fixes a potentially serious issue related to USB which was
48435     discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
48436     ARM920T. Martin wrote:
48437
48438       Turn off USB to prevent the host controller from writing to the
48439       SDRAM while Linux is booting. This could happen, because the HCCA
48440       (Host Controller Communication Area) lies within the SDRAM and the
48441       host controller writes continously to this area (as busmaster!), for
48442       example to increase the HccaFrameNumber variable, which happens
48443       every 1 ms.
48444
48445     This is a slightly modified version of the patch in order to shutdown
48446     USB when booting on all architectures.
48447
48448     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
48449
48450 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
48451 Author: Martha Marx <mmarx@silicontkx.com>
48452 Date:   Thu May 29 14:23:25 2008 -0400
48453
48454     Configuration changes for ADS5121 Rev 3
48455
48456     ADS5121 Rev 3 board is now the default config
48457
48458     config targets are now
48459
48460     ads5121_config
48461         Rev 3 board with
48462         PCI
48463         M41T62 on board RTC
48464         512MB DRAM
48465
48466     ads5121_rev2_config
48467         Rev 2 board with
48468         No PCI
48469         256MB DRAM
48470
48471     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
48472     Acked-by: Grant Likely <grant.likely@secretlab.ca>
48473     Acked-by: John Rigby <jrigby@freescale.com>
48474
48475 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
48476 Author: Martha Marx <mmarx@silicontkx.com>
48477 Date:   Thu May 29 15:37:21 2008 -0400
48478
48479     Consolidate ADS5121 IO Pin configuration
48480
48481     Consolidate ADS5121 IO Pin configuration to one file
48482     board/ads5121/iopin.c.
48483
48484     Remove pin config from cpu/mpc512x/fec.c
48485
48486     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
48487     Acked-by: Grant Likely <grant.likely@secretlab.ca>
48488     Acked-by: John Rigby <jrigby@freescale.com>
48489
48490 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
48491 Author: Christian Eggers <christian@p2400.wgnetz.xx>
48492 Date:   Fri Jun 27 19:46:51 2008 +0200
48493
48494     Fix "usb part" command
48495
48496     Only print partition for selected device if user supplied the <dev>
48497     arg with the "usb part [dev]" command.
48498
48499     Signed-off-by: Christian Eggers <ceggers@gmx.de>
48500     Acked-by: Markus Klotzbuecher <mk@denx.de>
48501
48502 commit cc83b27217f7380041fea386ddb6d6d9b261617d
48503 Author: Harald Welte <laforge@gnumonks.org>
48504 Date:   Mon Jul 7 00:58:05 2008 +0800
48505
48506     fix USB devices with multiple configurations
48507
48508     This patch fixes bugs in usbdcore*.c related to the use of devices
48509     with multiple configurations.
48510
48511     The original code made mistakes about the meaning of configuration value and
48512     configuration index, and the resulting off-by-one errors resulted in:
48513
48514     * SET_CONFIGURATION always selected the first configuration, no matter what
48515       wValue is being passed.
48516     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
48517       configuration (index 0).
48518
48519     Signed-off-by: Harald Welte <laforge@openmoko.org>
48520     Acked-by: Markus Klotzbuecher <mk@denx.de>
48521
48522 commit 06c53beae1a726e707971c555613f09b270a2461
48523 Author: Wolfgang Denk <wd@denx.de>
48524 Date:   Thu Jul 10 13:16:09 2008 +0200
48525
48526     Fix some more print() format errors.
48527
48528     Signed-off-by: Wolfgang Denk <wd@denx.de>
48529
48530 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
48531 Author: Christian Eggers <christian@p2400.wgnetz.xx>
48532 Date:   Fri Jun 27 19:46:51 2008 +0200
48533
48534     Fix "usb part" command
48535
48536     Only print partition for selected device if user supplied the <dev>
48537     arg with the "usb part [dev]" command.
48538
48539     Signed-off-by: Christian Eggers <ceggers@gmx.de>
48540     Acked-by: Markus Klotzbuecher <mk@denx.de>
48541
48542 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
48543 Author: Harald Welte <laforge@gnumonks.org>
48544 Date:   Mon Jul 7 00:58:05 2008 +0800
48545
48546     fix USB devices with multiple configurations
48547
48548     This patch fixes bugs in usbdcore*.c related to the use of devices
48549     with multiple configurations.
48550
48551     The original code made mistakes about the meaning of configuration value and
48552     configuration index, and the resulting off-by-one errors resulted in:
48553
48554     * SET_CONFIGURATION always selected the first configuration, no matter what
48555       wValue is being passed.
48556     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
48557       configuration (index 0).
48558
48559     Signed-off-by: Harald Welte <laforge@openmoko.org>
48560     Acked-by: Markus Klotzbuecher <mk@denx.de>
48561
48562 commit e870690bdca154943ecadd5212d2d59c1b9d391b
48563 Author: Stefan Roese <sr@denx.de>
48564 Date:   Thu Jul 10 10:10:54 2008 +0200
48565
48566     MTD/NAND: Fix printf format warning in nand code
48567
48568     This patch fixes NAND related printf format warning. Those warnings are
48569     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
48570     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
48571     really helpful.
48572
48573     Signed-off-by: Stefan Roese <sr@denx.de>
48574
48575 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
48576 Author: Stefan Roese <sr@denx.de>
48577 Date:   Thu Jul 10 10:00:45 2008 +0200
48578
48579     rtc: Fix printf format warning in m41t60.c
48580
48581     Signed-off-by: Stefan Roese <sr@denx.de>
48582
48583 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
48584 Author: Stefan Roese <sr@denx.de>
48585 Date:   Tue Jul 8 12:01:47 2008 +0200
48586
48587     pci: Move PCI device configuration check into a separate weak function
48588
48589     This patch moves the check, if a device should be skipped in PCI PNP
48590     configuration into the function pci_skip_dev(). This function is defined
48591     as weak so that it can be overwritten by a platform specific one if
48592     needed. The check if the device should get printed in the PCI summary upon
48593     bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
48594     pci_print_dev() which is also defined as weak too.
48595
48596     Signed-off-by: Stefan Roese <sr@denx.de>
48597
48598 commit b002144e1dc21374b1ef5281fe6b5d014af96650
48599 Author: Stefan Roese <sr@denx.de>
48600 Date:   Thu Jul 10 09:58:06 2008 +0200
48601
48602     ppc4xx: Fix printf format warnings now visible with the updated format check
48603
48604     This patch fixes ppc4xx related printf format warning. Those warnings are
48605     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
48606     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
48607     really helpful.
48608
48609     Signed-off-by: Stefan Roese <sr@denx.de>
48610
48611 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
48612 Author: Stefan Roese <sr@denx.de>
48613 Date:   Wed Jul 9 17:33:57 2008 +0200
48614
48615     ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
48616
48617     Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
48618     To support such configurations, we "only" map the first 2GB via the TLB's. We
48619     need some free virtual address space for the remaining peripherals like, SoC
48620     devices, FLASH etc.
48621
48622     Note that ECC is currently not supported on configurations with more than 2GB
48623     SDRAM. This is because we only map the first 2GB on such systems, and therefore
48624     the ECC parity byte of the remaining area can't be written.
48625
48626     Signed-off-by: Stefan Roese <sr@denx.de>
48627
48628 commit cf1c2ed91df26903b956948f37f82de9e1158a89
48629 Author: Larry Johnson <lrj@acm.org>
48630 Date:   Sat Jun 14 17:02:49 2008 -0400
48631
48632     ppc4xx: Remove implementation of testdram() from Korat board support
48633
48634     Signed-off-by: Larry Johnson <lrj@acm.org>
48635     Signed-off-by: Stefan Roese <sr@denx.de>
48636
48637 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
48638 Author: Larry Johnson <lrj@acm.org>
48639 Date:   Sat Jun 14 16:53:02 2008 -0400
48640
48641     ppc4xx: Update and add FDT to Korat board support
48642
48643     Signed-off-by: Larry Johnson <lrj@acm.org>
48644     Signed-off-by: Stefan Roese <sr@denx.de>
48645
48646 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
48647 Author: Wolfgang Denk <wd@denx.de>
48648 Date:   Thu Jul 10 01:13:30 2008 +0200
48649
48650     Minor coding style cleanup; update CHANGELOG
48651
48652     Signed-off-by: Wolfgang Denk <wd@denx.de>
48653
48654 commit 8915f1189c1d29d8be7f4de325702d90a8988219
48655 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
48656 Date:   Wed Jul 9 17:50:45 2008 -0400
48657
48658     e1000: add support for 82545GM 64bit PCI-X copper variant
48659
48660     This PCI-X e1000 variant works by just adding in the correct
48661     PCI IDs in the appropriate places.
48662
48663     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
48664
48665 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
48666 Author: Daniel Hellstrom <daniel@gaisler.com>
48667 Date:   Wed Jul 9 12:34:11 2008 +0000
48668
48669     SPARC: Build error fix
48670
48671     (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
48672
48673     This patch makes SPARC targets build again. It is caused by
48674     phys_addr_t and phys_size_t being defined in the wrong header
48675     file. include/lmb.h need those typedefs to build.
48676
48677     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
48678
48679 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
48680 Author: Marcel Ziswiler <marcel@ziswiler.com>
48681 Date:   Wed Jul 9 08:17:15 2008 +0200
48682
48683     Many spelling fixes in README.
48684
48685     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
48686
48687 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
48688 Author: Marcel Ziswiler <marcel@ziswiler.com>
48689 Date:   Wed Jul 9 08:17:06 2008 +0200
48690
48691     Minor spelling fix in comment.
48692
48693     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
48694
48695 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
48696 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48697 Date:   Tue Jul 8 14:54:58 2008 -0400
48698
48699     Round the serial port clock divisor value returned by calc_divisor()
48700
48701     Round the serial port clock divisor value returned by
48702     calc_divisor().
48703
48704     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48705     Signed-off-by: John Roberts <john.roberts@pwav.com>
48706
48707 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
48708 Author: Scott Wood <scottwood@freescale.com>
48709 Date:   Wed Jul 9 17:47:52 2008 -0500
48710
48711     NAND: ifdef-protect most of nand.h when using legacy NAND.
48712
48713     Some macros such as NAND_CTL_SETALE conflict between current and legacy
48714     NAND, being defined by the subsystem in the former case and the board
48715     config file in the latter.
48716
48717     Signed-off-by: Scott Wood <scottwood@freescale.com>
48718
48719 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
48720 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48721 Date:   Tue Jul 8 11:02:05 2008 -0400
48722
48723     ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
48724
48725     ARM: Fix for incorrect version of patch applied when
48726     adding support for the Lyrtech SFF-SDR board.
48727
48728     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48729     Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
48730
48731 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
48732 Author: Kyungmin Park <kmpark@infradead.org>
48733 Date:   Tue Jul 8 09:08:40 2008 +0900
48734
48735     Remove useless print message at apollon
48736
48737     Remove useless print message at apollon
48738
48739     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
48740
48741 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
48742 Author: Andy Fleming <afleming@freescale.com>
48743 Date:   Mon Jul 7 14:24:39 2008 -0500
48744
48745     Fix LMB type issues
48746
48747     The LMB code now uses phys_addr_t and phys_size_t.  Also, there were a couple
48748     of casting problems in the bootm code that called the LMB functions.
48749
48750     Signed-off-by: Andy Fleming <afleming@freescale.com>
48751
48752 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
48753 Author: Kumar Gala <galak@kernel.crashing.org>
48754 Date:   Mon Jul 7 09:39:06 2008 -0500
48755
48756     Fix compiler warnings
48757
48758     gcc-4.3.x generates the following:
48759
48760     bootm.c: In function 'do_bootm_linux':
48761     bootm.c:208: warning: cast from pointer to integer of different size
48762     bootm.c:215: warning: cast from pointer to integer of different size
48763
48764     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48765
48766 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
48767 Author: Harald Welte <laforge@gnumonks.org>
48768 Date:   Mon Jul 7 15:40:39 2008 +0800
48769
48770     Remove code duplication for setting the default environment
48771
48772     common/env_common.c (default_env): new function that resets the environment to
48773                     the default value
48774     common/env_common.c (env_relocate): use default_env instead of own copy
48775     common/env_nand.c (env_relocate_spec): use default_env instead of own copy
48776     include/environment.h: added default_env prototype
48777
48778     Signed-off-by: Werner Almesberger <werner@openmoko.org>
48779     Signed-off-by: Harald Welte <laforge@openmoko.org>
48780
48781 commit 99c2b434d37863df5dda5207a53760c6506fc2be
48782 Author: Marcel Ziswiler <marcel@ziswiler.com>
48783 Date:   Sun Jun 22 16:13:46 2008 +0200
48784
48785     NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
48786
48787     The writeenv() and readenv() calls introduced by the recently added bad block
48788     management for environment variables were missing casts therefore producing
48789     compile time warnings.
48790     While at it fixing some typo in a comment and indentation.
48791
48792     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
48793     Signed-off-by: Scott Wood <scottwood@freescale.com>
48794
48795 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
48796 Author: Scott Wood <scottwood@freescale.com>
48797 Date:   Fri Jun 20 12:38:57 2008 -0500
48798
48799     NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
48800
48801     This is particularly problematic now that non-NAND-specific code is
48802     including <nand.h>, and thus all debugging code is being compiled
48803     regardless of whether it was requested, as reported by Scott McNutt
48804     <smcnutt@psyent.com>.
48805
48806     Signed-off-by: Scott Wood <scottwood@freescale.com>
48807
48808 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
48809 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
48810 Date:   Thu Jun 12 19:27:58 2008 +0200
48811
48812     mmc: Move atmel_mci driver into drivers/mmc
48813
48814     This makes it easier to use the driver on other platforms.
48815
48816     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
48817     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48818
48819 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
48820 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
48821 Date:   Thu Jun 12 19:27:57 2008 +0200
48822
48823     avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
48824
48825     After we move the atmel_mci driver into drivers/mmc, we can't select
48826     it with CONFIG_MMC anymore. Introduce a new symbol specifically for
48827     this driver so that there's no ambiguity.
48828
48829     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
48830     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48831
48832 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
48833 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
48834 Date:   Thu Jun 12 19:27:56 2008 +0200
48835
48836     Create drivers/mmc subdirectory
48837
48838     In order to consolidate more of the various MMC drivers around the
48839     tree, we must first have a common place to put them.
48840
48841     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
48842     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48843
48844 commit b502611b51f02718c2d1117d4981dabceb5af6de
48845 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
48846 Date:   Sun Jul 6 12:30:09 2008 +0200
48847
48848     Change env_get_char from a global function ptr to a function
48849
48850     This avoids an early global data reference.
48851
48852     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
48853
48854 commit 27269417ade432189b234d9fbac98b54e37b978c
48855 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
48856 Date:   Sun Jul 6 13:57:58 2008 +0400
48857
48858     Some copy-n-paste fixes in printf usage
48859
48860     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
48861
48862 commit 0e6989b9faf1588e8723535539e88a0df3c71356
48863 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
48864 Date:   Sun Jul 6 13:57:00 2008 +0400
48865
48866     FDT memory and pci node fixes for MPC8260ADS
48867
48868     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
48869
48870 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
48871 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
48872 Date:   Mon Jul 7 06:41:14 2008 -0700
48873
48874     Fix printf errors.
48875
48876     The compiler will help find mismatches between printf formats and
48877     arguments if you let it.  This patch adds the necessary attributes to
48878     declarations in include/common.h, then begins to correct the resulting
48879     compiler warnings.  Some of these were bugs, e.g., "$d" instead of
48880     "%d" and incorrect arguments.  Others were just annoying, like
48881     int-long mismatches on a system where both are 32 bits.  It's worth
48882     fixing the annoying errors to catch the real ones.
48883
48884     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
48885
48886 commit 417faf285b2527acb2de24c5cd3e2621d385408c
48887 Author: Becky Bruce <becky.bruce@freescale.com>
48888 Date:   Wed Jul 9 11:09:41 2008 -0500
48889
48890     Allow print_size to print in GB
48891
48892     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
48893
48894 commit e7c374529c87525c9aa463e0557c287887ae4e9e
48895 Author: Jason McMullan <mcmullan@netapp.com>
48896 Date:   Sun Jun 8 23:56:00 2008 -0400
48897
48898     mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
48899
48900     Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
48901     they are set in the U-Boot environment.
48902
48903     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
48904     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
48905
48906 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
48907 Author: Stefan Roese <sr@denx.de>
48908 Date:   Tue Jul 8 12:57:14 2008 +0200
48909
48910     jedec_flash: Fix AM29DL800BB device ID
48911
48912     As pointed out by Jerry Hicks, this patch corrects the device ID of
48913     the Spansion AM29DL800BB NOR device. Verified against latest Spansion
48914     datasheet (rev C4 from Dezember 2006).
48915
48916     Signed-off-by: Stefan Roese <sr@denx.de>
48917
48918 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
48919 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48920 Date:   Mon Jul 7 11:22:37 2008 +0900
48921
48922     sh: Fix compile error sh7763rdp board
48923
48924     Disable SH ether driver.
48925
48926     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48927
48928 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
48929 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48930 Date:   Tue Jul 8 12:03:24 2008 +0900
48931
48932     sh: Fix SH-boards compile error
48933
48934     By Cleanup out-or-tree building for some boards (.depend)
48935     (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
48936     because filse ware changed, some SH-boards have compile error.
48937     I revised this problem.
48938
48939     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48940
48941 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
48942 Author: Jason Jin <Jason.jin@freescale.com>
48943 Date:   Tue May 13 11:50:36 2008 +0800
48944
48945     Feed the watchdog in u-boot for 8610 board.
48946
48947     The watchdog on 8610 board is enabled by setting sw[6]
48948     to on. Once enabled, the watchdog can not be disabled
48949     by software. So feed the dog in u-boot is necessary for
48950     normal operation.
48951
48952     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
48953
48954 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
48955 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48956 Date:   Wed Jun 18 12:10:33 2008 -0400
48957
48958     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
48959
48960     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
48961
48962     Remove duplicate code in a if/else block in
48963     cpu/arm926ejs/davinci/lxt972.c.
48964     Fixed style issues.
48965
48966     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48967     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48968
48969 commit fec61431a003f5778bafa2624073a571af8bec9f
48970 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48971 Date:   Wed Jun 18 12:10:31 2008 -0400
48972
48973     Remove duplicate definitions in include/lxt971a.h.
48974
48975     Remove duplicate definitions in include/lxt971a.h.
48976
48977     Remove duplicate registers and bits definitions in
48978     include/lxt971a.h for standard MII registers, and
48979     use values in include/miiphy.h instead.
48980
48981     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48982     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48983
48984 commit 9751ee0990f467941da0b095a4e995f863672d7a
48985 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
48986 Date:   Wed Jun 11 21:05:00 2008 +0900
48987
48988     net: sh: Renesas SH7763 Ethernet device support
48989
48990     Renesas SH7763 has 2 channel Ethernet device.
48991     This is 10/100/1000 Base support.
48992     But this patch check 10/100 Base only.
48993
48994     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
48995     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48996
48997 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
48998 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
48999 Date:   Tue Jun 17 16:28:05 2008 +0900
49000
49001     sh: Update Renesas R2DPlus board
49002
49003     New NOR Flash board support and remove old type flash board config.
49004     And Remove network setting from config file.
49005
49006     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49007     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49008
49009 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
49010 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49011 Date:   Tue Jun 17 16:28:01 2008 +0900
49012
49013     sh: Update Renesas R7780MP board
49014
49015     New NOR Flash board support and remove network setting from config file.
49016
49017     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49018     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49019
49020 commit c001cd604e9f133743effbddb1c215b48e761c5a
49021 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49022 Date:   Tue Jun 17 16:27:56 2008 +0900
49023
49024     sh: Update Renesas Migo-R board
49025
49026     Remove network setting from config file.
49027
49028     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49029     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49030
49031 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
49032 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49033 Date:   Tue Jun 17 16:27:52 2008 +0900
49034
49035     sh: Update Hitachi MS7722SE board
49036
49037     Remove network setting from config file.
49038
49039     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49040     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49041
49042 commit 26209e48e8791670c93108029a5c31a30016c6df
49043 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49044 Date:   Tue Jun 17 16:27:48 2008 +0900
49045
49046     sh: Cleanup source code of SH7763RDP
49047
49048     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49049     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49050
49051 commit 5cd5b2c96ef0025762931349d350287aec03ab47
49052 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49053 Date:   Tue Jun 17 16:27:44 2008 +0900
49054
49055     sh: Cleanup source code of R2DPlus
49056
49057     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49058     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49059
49060 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
49061 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49062 Date:   Tue Jun 17 16:27:41 2008 +0900
49063
49064     sh: Cleanup source code of R7780MP
49065
49066     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49067     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49068
49069 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
49070 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49071 Date:   Tue Jun 17 16:27:38 2008 +0900
49072
49073     sh: Cleanup source code of MS7722SE
49074
49075     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49076     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49077
49078 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
49079 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49080 Date:   Tue Jun 17 16:27:34 2008 +0900
49081
49082     sh: Cleanup source code of MS7720SE
49083
49084     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49085     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49086
49087 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
49088 Author: Wolfgang Denk <wd@denx.de>
49089 Date:   Mon Jul 7 00:45:03 2008 +0200
49090
49091     SH: fix out of tree building
49092
49093     Signed-off-by: Wolfgang Denk <wd@denx.de>
49094
49095 commit 9047bfa1e737d787be460387dd6f45737eeceb10
49096 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49097 Date:   Thu Jul 3 23:16:06 2008 +0900
49098
49099     net: smc911x: Fix typo
49100
49101     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49102
49103 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
49104 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
49105 Date:   Wed Jul 2 18:54:08 2008 +0200
49106
49107     update mvBL-M7 board config
49108
49109     update mvBL-M7 config file to use UBOOT_VERSION and define
49110     CONFIG_HIGH_BATS.
49111
49112     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
49113
49114 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
49115 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49116 Date:   Mon Jun 30 17:45:01 2008 +0900
49117
49118     net: fix compile problem in smc911x driver.
49119
49120     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49121     Acked-by: Ben Warren <biggerbadderben@gmail.com>
49122
49123 commit 9fea65a6c469b1b474b27446feb58738baba2d31
49124 Author: Michal Simek <monstr@monstr.eu>
49125 Date:   Tue Jun 24 09:54:09 2008 +0200
49126
49127     ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
49128
49129     This change helps with better handling with others
49130     Xilinx based platform.
49131
49132     Signed-off-by: Michal Simek <monstr@monstr.eu>
49133     Acked-by: Stefan Roese <sr@denx.de>
49134
49135 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
49136 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49137 Date:   Tue Jun 17 13:07:11 2008 +0900
49138
49139     net: ne2000: Move dev_addr variable from grobal to local.
49140
49141     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49142     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49143
49144 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
49145 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49146 Date:   Tue Jun 17 13:07:15 2008 +0900
49147
49148     net: ne2000: Fix compile error of NE2000
49149
49150     If enable DEBUG, can not compile ne2000 driver.
49151
49152     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49153     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49154
49155 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
49156 Author: Ben Warren <biggerbadderben@gmail.com>
49157 Date:   Mon Jun 23 22:57:27 2008 -0700
49158
49159     Add mechanisms for CPU and board-specific Ethernet initialization
49160
49161     This patch is the first step in cleaning up net/eth.c, by moving Ethernet
49162     initialization to CPU or board-specific code.  Initial implementation is
49163     only on the Freescale TSEC controller, but others will be added soon.
49164
49165     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49166
49167 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
49168 Author: Wolfgang Denk <wd@denx.de>
49169 Date:   Sun Jul 6 01:21:46 2008 +0200
49170
49171     include/sha256.h: fix file permissions.
49172
49173     Signed-off-by: Wolfgang Denk <wd@denx.de>
49174
49175 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
49176 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
49177 Date:   Tue May 27 11:15:29 2008 +0200
49178
49179     [AT91SAM9] Fix NAND FLASH timings
49180
49181     Fix NAND FLASH timings for at91sam9x evaluation kits.
49182
49183     New timings are based on application note
49184     "NAND Flash Support on AT91SAM9 Microcontrollers" available at
49185     http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
49186
49187     Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
49188     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49189     Acked-by: Stelian Pop <stelian@popies.net>
49190
49191 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
49192 Author: Stelian Pop <stelian@popies.net>
49193 Date:   Thu May 22 00:15:40 2008 +0200
49194
49195     Fix boot from NOR due to incorrect reset delay.
49196
49197     AT91 RSTC registers are battery-backuped, so their values
49198     are not reset across power cycles. One of those registers,
49199     the AT91_RSTC_MR register, is being modified by U-Boot, in
49200     the ethernet initialisation routine, to generate a 500ms
49201     user reset.
49202
49203     Unfortunately, this value is not being restored afterwards,
49204     causing subsequent resets to also last for 500ms.
49205
49206     This long reset sequence causes problems (at least) in the
49207     boot sequence from NOR: by the time the CPU tries to load
49208     a program from the NOR flash, the latter is still in reset
49209     and not yet available.
49210
49211     Additionaly, this patch fixes a bug in the original code which
49212     caused the reset delay to last for 2s instead of 500ms.
49213
49214     Signed-off-by: Stelian Pop <stelian@popies.net>
49215     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49216
49217 commit f492dd636fbbae529e17533995bc6e5813c007f6
49218 Author: Wolfgang Denk <wd@denx.de>
49219 Date:   Fri Jul 4 20:11:49 2008 +0200
49220
49221     Update CHANGELOG
49222
49223     Signed-off-by: Wolfgang Denk <wd@denx.de>
49224
49225 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
49226 Author: Wolfgang Denk <wd@denx.de>
49227 Date:   Fri Jul 4 20:07:35 2008 +0200
49228
49229     CCM/SCM boards: fix out of tree building
49230
49231     Signed-off-by: Wolfgang Denk <wd@denx.de>
49232
49233 commit ab4c3a490df9a964711556d2a05b0c787db45fde
49234 Author: Wolfgang Denk <wd@denx.de>
49235 Date:   Thu Jul 3 23:22:27 2008 +0200
49236
49237     SCM board: fix build errors.
49238
49239     Signed-off-by: Wolfgang Denk <wd@denx.de>
49240
49241 commit a566466f17ba0e2d2b6c250e77da678fb932470d
49242 Author: Wolfgang Denk <wd@denx.de>
49243 Date:   Thu Jul 3 23:06:36 2008 +0200
49244
49245     IAD210 board: fix ``"ALIGN" redefined'' warning.
49246
49247     Signed-off-by: Wolfgang Denk <wd@denx.de>
49248
49249 commit ad756314797c16fa5dca23e115aab881011f164f
49250 Author: Wolfgang Denk <wd@denx.de>
49251 Date:   Thu Jul 3 23:00:24 2008 +0200
49252
49253     CCM board: fix build errors.
49254
49255     Signed-off-by: Wolfgang Denk <wd@denx.de>
49256
49257 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
49258 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
49259 Date:   Wed Jul 2 18:54:08 2008 +0200
49260
49261     update mvBL-M7 board config
49262
49263     update mvBL-M7 config file to use UBOOT_VERSION.
49264
49265     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
49266     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49267
49268 commit ced209c50e80c25f13c083099b05044048d21f4f
49269 Author: Wolfgang Denk <wd@denx.de>
49270 Date:   Thu Jul 3 22:39:21 2008 +0200
49271
49272     sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
49273
49274     Signed-off-by: Wolfgang Denk <wd@denx.de>
49275
49276 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
49277 Author: Wolfgang Denk <wd@denx.de>
49278 Date:   Thu Jul 3 22:34:08 2008 +0200
49279
49280     Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
49281
49282     Signed-off-by: Wolfgang Denk <wd@denx.de>
49283
49284 commit 730f298485984b011b6ee8f4acb511cb45a843dd
49285 Author: Wolfgang Denk <wd@denx.de>
49286 Date:   Thu Jul 3 22:04:17 2008 +0200
49287
49288     lmb: fix "implicit declaration of function 'lmb_free'" warning
49289
49290     Signed-off-by: Wolfgang Denk <wd@denx.de>
49291
49292 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
49293 Author: Wolfgang Denk <wd@denx.de>
49294 Date:   Wed Jul 2 23:53:23 2008 +0200
49295
49296     Cleanup: remove redundant deleting on *~ files
49297
49298     Signed-off-by: Wolfgang Denk <wd@denx.de>
49299
49300 commit c8a3b109f07f02342d097b30908965f7261d9f15
49301 Author: Wolfgang Denk <wd@denx.de>
49302 Date:   Wed Jul 2 23:49:18 2008 +0200
49303
49304     Cleanup out-or-tree building for some boards (.depend)
49305
49306     Signed-off-by: Wolfgang Denk <wd@denx.de>
49307
49308 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
49309 Author: Wolfgang Denk <wd@denx.de>
49310 Date:   Wed Jul 2 23:38:50 2008 +0200
49311
49312     Cleanup: fix out-of-tree building for some boards
49313
49314     Signed-off-by: Wolfgang Denk <wd@denx.de>
49315
49316 commit 461fa68d20861811487944d22291db5a13410e20
49317 Author: Wolfgang Denk <wd@denx.de>
49318 Date:   Wed Jul 2 23:00:14 2008 +0200
49319
49320     Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
49321
49322     Signed-off-by: Wolfgang Denk <wd@denx.de>
49323
49324 commit 5981ebd32017e062b08aa6747cf591276f2db779
49325 Author: Detlev Zundel <dzu@denx.de>
49326 Date:   Fri Jun 20 22:26:24 2008 +0200
49327
49328     fdt: Fix typo in variable name.
49329
49330     Signed-off-by: Detlev Zundel <dzu@denx.de>
49331
49332 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
49333 Author: Gary Jennejohn <garyj@denx.de>
49334 Date:   Thu Jun 19 11:11:19 2008 +0200
49335
49336     Add logos for RRvision board
49337
49338     Signed-off-by: Gary Jennejohn <garyj@denx.de>
49339
49340 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
49341 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
49342 Date:   Wed Jun 18 11:03:57 2008 +0200
49343
49344     mpc8260: add fdt_fixup_ethernet support
49345
49346     Add support for updating mac-address and local-mac-address in fdt for
49347     all MPC8260 targets.
49348
49349     Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
49350
49351 commit f6a69559d64498a04e1e0b087a9b920e5775f866
49352 Author: Steven A. Falco <sfalco@harris.com>
49353 Date:   Thu Jun 12 13:24:42 2008 -0400
49354
49355     cmd_nvedit.c: clean up syntax highlighting
49356
49357     My text-editor (vim) has a bit of trouble syntax-highlighting the
49358     cmd_nvedit.c file, because it apparently does not parse C
49359     ifdef/else/endif. The following patch does not change the behavior of
49360     the code at all, but does allow the editor to properly
49361     syntax-highlight the file.
49362
49363     Signed-off-by: Steve Falco <sfalco@harris.com>
49364
49365 commit 75678c807a6272ecc5541eb32898c93887f08400
49366 Author: Steven A. Falco <sfalco@harris.com>
49367 Date:   Thu Jun 12 13:22:12 2008 -0400
49368
49369     Make setenv() return status
49370
49371     Currently, the setenv function does not return an error code.
49372     This patch allows to test for errors.
49373
49374     Signed-off-by: Steve Falco <sfalco@harris.com>
49375
49376 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
49377 Author: Kumar Gala <galak@kernel.crashing.org>
49378 Date:   Wed Jun 11 10:14:06 2008 -0500
49379
49380     PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
49381
49382     fls64, __ilog2_u64, ffs64 are variants that work on an u64,
49383     and fls is used to implement them.
49384
49385     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49386
49387 commit 83002a77cbdf383015ca384eff5fa31722d8e571
49388 Author: Magnus Lilja <lilja.magnus@gmail.com>
49389 Date:   Mon Jun 9 22:58:48 2008 +0200
49390
49391     i.MX31: Cleanup comments in lowlevel_init.S.
49392
49393     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
49394
49395 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
49396 Author: Ben Warren <biggerbadderben@gmail.com>
49397 Date:   Sun Jun 8 23:28:33 2008 -0700
49398
49399     Move conditional compilation of MPC8XXX SPI driver to Makefile
49400
49401     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49402
49403 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
49404 Author: Juergen Kilb <J.Kilb@gmx.de>
49405 Date:   Sun Jun 8 17:59:53 2008 +0200
49406
49407     i.MX31: fixed CTRL-C detection
49408
49409     The Register URXD contains status information in bits [15..8].
49410     With status bit 15 set, CTRL-C was reported as 0x8003 instead
49411     of 0x03. Therefore CTRL-C was not detected.
49412     To solve this, bits [15..8] were masked out now.
49413
49414     Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
49415     Acked-by: Felix Radensky <felix@embedded-sol.com>
49416
49417 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
49418 Author: Stefan Roese <sr@denx.de>
49419 Date:   Tue Jul 1 17:03:19 2008 +0200
49420
49421     ppc4xx: Fix 460EX/GT PCIe port initialization
49422
49423     This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
49424     configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
49425     this out.
49426
49427     Signed-off-by: Stefan Roese <sr@denx.de>
49428
49429 commit b571afde0295b007a45055ee49f8822c753a5651
49430 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49431 Date:   Sat Jun 7 12:29:52 2008 +0200
49432
49433     add SHA256 support
49434
49435     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49436     Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
49437
49438 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
49439 Author: Marian Balakowicz <m8@semihalf.com>
49440 Date:   Fri Jun 6 23:07:40 2008 +0200
49441
49442     Delay FIT format check on sector based devices
49443
49444     Global FIT image operations like format check cannot be performed on
49445     a first sector data, defer them to the point when whole FIT image was
49446     uploaded to a system RAM.
49447
49448     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
49449     Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
49450     NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
49451
49452 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
49453 Author: Dave Liu <r63238@freescale.com>
49454 Date:   Tue Jun 3 17:38:19 2008 +0800
49455
49456     sata: wait for device updating signature to host
49457
49458     The driver need wait for the device updating signature to host.
49459     If we don't wait for it, the driver can not detect the device(disk)
49460     when the system powers up.
49461
49462     Signed-off-by: Dave Liu <daveliu@freescale.com>
49463
49464 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
49465 Author: Stefan Roese <sr@denx.de>
49466 Date:   Sat Jun 28 14:56:17 2008 +0200
49467
49468     ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
49469
49470     This patch implements a fix provided by AMCC so that the lockup upon
49471     simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
49472     anymore:
49473
49474     Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
49475     (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
49476     USB 2.0 host and SATA.
49477
49478     This errata is not officially available yet. I'll update the comment
49479     to add the errata number later.
49480
49481     Signed-off-by: Stefan Roese <sr@denx.de>
49482
49483 commit 8b616edb118e37d05f6401389eaee1c636b22828
49484 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
49485 Date:   Mon Jun 2 16:42:19 2008 -0400
49486
49487     serial_pl010.c: add watchdog support
49488
49489     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
49490
49491 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
49492 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
49493 Date:   Mon Jun 2 16:40:08 2008 -0400
49494
49495     jffs2_1pass.c: add watchdog support
49496
49497     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
49498
49499 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
49500 Author: Sascha Laue <sascha.laue@liebherr.com>
49501 Date:   Fri May 30 09:48:14 2008 +0200
49502
49503     Configure DSP POST; add watchdog reset to diag command
49504
49505     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
49506
49507 commit f13526517859bf6b573e23ff47199e107d1009b5
49508 Author: Tor Krill <tor@excito.com>
49509 Date:   Thu May 29 10:40:17 2008 +0200
49510
49511     Add sata sil3114 support
49512
49513     Signed-off-by: Tor Krill <tor@excito.com>
49514
49515 commit e093a247628228100f405b6d7f6b1bfc16141938
49516 Author: Wolfgang Denk <wd@denx.de>
49517 Date:   Sat Jun 28 23:34:37 2008 +0200
49518
49519     Coding Style Cleanup
49520
49521     Signed-off-by: Wolfgang Denk <wd@denx.de>
49522
49523 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
49524 Author: Wolfgang Denk <wd@denx.de>
49525 Date:   Sat Jun 28 23:16:01 2008 +0200
49526
49527     Update CHANGELOG
49528
49529     Signed-off-by: Wolfgang Denk <wd@denx.de>
49530
49531 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
49532 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
49533 Date:   Wed May 21 13:58:41 2008 -0400
49534
49535     ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
49536
49537     This patch adds support for the Lyrtech SFF-SDR board,
49538     based on the TI DaVinci architecture (ARM926EJS).
49539
49540     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
49541     Signed-off-by: Philip Balister <philip@balister.org>
49542     Signed-off-by: Wolfgang Denk <wd@denx.de>
49543
49544 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
49545 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49546 Date:   Thu May 22 11:09:59 2008 +0200
49547
49548     MMC: Consolidate MMC/SD command definitions
49549
49550     This moves the MMC and SD Card command definitions from
49551     include/asm/arch/mmc.h into include/mmc.h. These definitions are
49552     given by the MMC and SD Card standards, not by any particular
49553     architecture.
49554
49555     There's a lot more room for consolidation in the MMC drivers which
49556     I'm hoping to get done eventually, but this patch is a start.
49557
49558     Compile-tested for all avr32 boards as well as lpc2292sodimm and
49559     lubbock. This should cover all three mmc drivers in the tree.
49560
49561     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49562
49563 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
49564 Author: Kyungmin Park <kmpark@infradead.org>
49565 Date:   Wed May 21 14:38:08 2008 +0900
49566
49567     Use better Ethernet timings for apollon board
49568
49569     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
49570
49571 commit 41c5eaa7253ed82bbae1eda5667755872c615164
49572 Author: Andy Fleming <afleming@freescale.com>
49573 Date:   Mon Jun 16 13:58:56 2008 -0500
49574
49575     Resize device tree to allow space for board changes and the chosen node
49576
49577     Current code requires that a compiled device tree have space added to the end to
49578     leave room for extra nodes added by board code (and the chosen node).  This
49579     requires that device tree creators anticipate how much space U-Boot will add to
49580     the tree, which is absurd.  Ideally, the code would resize and/or relocate the
49581     tree when it needed more space, but this would require a systemic change to the
49582     fdt code, which is non-trivial.  Instead, we resize the tree inside
49583     boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
49584     where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
49585
49586     Signed-off-by: Andy Fleming <afleming@freescale.com>
49587
49588 commit 7570a9941fc565922078679a72d246fe208d696d
49589 Author: Andy Fleming <afleming@freescale.com>
49590 Date:   Mon Jun 16 13:58:55 2008 -0500
49591
49592     Fix an underflow bug in __lmb_alloc_base
49593
49594     __lmb_alloc_base can underflow if it fails to find free space.  This was fixed
49595     in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc.  This patch
49596     merely updates __lmb_alloc_base to resemble the current version in Linux.
49597
49598     Signed-off-by: Andy Fleming <afleming@freescale.com>
49599
49600 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
49601 Author: Andy Fleming <afleming@freescale.com>
49602 Date:   Mon Jun 16 13:58:54 2008 -0500
49603
49604     Add lmb_free
49605
49606     lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
49607     lmb_reserve to temporarily reserve some memory.
49608
49609     Signed-off-by: Andy Fleming <afleming@freescale.com>
49610
49611 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
49612 Author: Andy Fleming <afleming@freescale.com>
49613 Date:   Mon Jun 16 13:58:53 2008 -0500
49614
49615     Add ALIGN() macro
49616
49617     ALIGN() returns the smallest aligned value greater than the passed
49618     in address or size.  Taken from Linux.
49619
49620     Signed-off-by: Andy Fleming <afleming@freescale.com>
49621
49622 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
49623 Author: Stefan Roese <sr@denx.de>
49624 Date:   Tue Jun 24 17:15:22 2008 +0200
49625
49626     ppc4xx: Fix compilation problems with phys_size_t
49627
49628     This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
49629     board specific files where it has been missing.
49630
49631     Signed-off-by: Stefan Roese <sr@denx.de>
49632
49633 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
49634 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49635 Date:   Mon May 19 12:26:38 2008 +0200
49636
49637     Conditionally add -fno-stack-protector to CFLAGS
49638
49639     When compile-testing on powerpc, I get errors like this:
49640
49641     net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
49642
49643     This seems to be because -fstack-protector is on by default, so
49644     let's explicitly disable it on all architectures that support the
49645     option.
49646
49647     The Ubuntu toolchain is affected by this problem, and according to
49648     Mike Frysinger, Gentoo has been running with SSP enabled for years.
49649     More and more distros are turning SSP on by default, so this problem
49650     is likely to get worse in the future.
49651
49652     Also, powerpc just happens to be one of the arches I do
49653     compile-testing on. There may be other arches affected by this too.
49654
49655     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49656
49657 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
49658 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49659 Date:   Sun May 18 19:09:52 2008 +0200
49660
49661     pcmcia/ti_pci1410a: Move compile condition to the Makefile
49662
49663     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49664
49665 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
49666 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49667 Date:   Sun May 18 19:09:51 2008 +0200
49668
49669     pxa_pcmcia: Move compile condition to the Makefile
49670
49671     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49672
49673 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
49674 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49675 Date:   Sun May 18 19:09:50 2008 +0200
49676
49677     marabun_pcmcia: Move compile condition to the Makefile
49678
49679     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49680
49681 commit 6a19c46cae43c16c528eddefae3db97134f1915d
49682 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
49683 Date:   Mon Jun 23 13:25:34 2008 +0200
49684
49685     fix non-working mvBL-M7
49686
49687     Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
49688
49689     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
49690     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49691
49692 commit 846f1574ddddeda2bc227655e687308695f41cdc
49693 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
49694 Date:   Mon Jun 23 11:40:56 2008 +0200
49695
49696     fix system config overwrite @ MPC834x and MPC8313
49697
49698     During 83xx setup the "System I/O configuration register high" gets
49699     overwritten with user defined value if CFG_SICRH is defined.
49700
49701     Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
49702     must keep their reset value regardless of configuration.
49703
49704     On my board (using RGMII) those bits are set after reset - yet it's
49705     unclear where they come from.
49706
49707     The patch keeps both bits on MPC834x and MPC8313.
49708
49709     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
49710     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49711
49712 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
49713 Author: Kim Phillips <kim.phillips@freescale.com>
49714 Date:   Tue Jun 17 17:45:27 2008 -0500
49715
49716     mpc83xx: move CPU_TYPE_ENTRY over to processor.h
49717
49718     to avoid this:
49719
49720     cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
49721     In file included from cpu.c:33:
49722     /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
49723
49724     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49725
49726 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
49727 Author: Stefan Roese <sr@denx.de>
49728 Date:   Mon Jun 23 11:15:09 2008 +0200
49729
49730     ppc4xx: Fix problem in gpio_config()
49731
49732     As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
49733     left by one. So the additional shift is bogus.
49734
49735     Signed-off-by: Stefan Roese <sr@denx.de>
49736
49737 commit 40777812316fc252c941665c0f60c148fd79d50f
49738 Author: Detlev Zundel <dzu@denx.de>
49739 Date:   Fri Jun 20 22:24:05 2008 +0200
49740
49741     fdt: Fix typo in variable name.
49742
49743     Signed-off-by: Detlev Zundel <dzu@denx.de>
49744
49745 commit 5f723a3b98c630bde33de74351f2121691fdef14
49746 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49747 Date:   Fri Jun 20 10:41:05 2008 +0200
49748
49749     avr32: Enable SPI flash support on ATNGW100
49750
49751     The ATNGW100 has 8MB DataFlash on board. Give users access to it through
49752     the new SPI flash framework.
49753
49754     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49755
49756 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
49757 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49758 Date:   Fri Jun 20 12:44:28 2008 +0200
49759
49760     avr32: Fix SPI portmux initialization
49761
49762     Use the new GPIO manipulation functions to set up the chip select lines,
49763     and make sure both busses use GPIO for chip select control.
49764
49765     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49766
49767 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
49768 Author: Peter Ma <pma@mediamatech.com>
49769 Date:   Sun Jun 1 22:59:24 2008 -0700
49770
49771     avr32: Add GPIO manipulation functions
49772
49773     Adds GPIO manipulation functions for AVR32 AP7 platform.
49774
49775     Signed-off-by: Peter Ma <pma@mediamatech.com>
49776     [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
49777     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49778
49779 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
49780 Author: Wolfgang Grandegger <wg@grandegger.com>
49781 Date:   Thu Jun 5 13:02:30 2008 +0200
49782
49783     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
49784
49785     This patch is based on the following patch sent a few minutes ago:
49786     "NAND FSL UPM: driver re-write using the hwcontrol callback"
49787     It is untested, of course. Anton, could you please give it a try.
49788
49789     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
49790     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
49791
49792 commit 96026d42fa4e646d28318c0a1438aac4b2017909
49793 Author: Anatolij Gustschin <agust@denx.de>
49794 Date:   Thu Jun 12 12:40:11 2008 +0200
49795
49796     Fix 4xx build issue
49797
49798     Building for 4xx doesn't work since commit 4dbdb768:
49799
49800     In file included from 4xx_pcie.c:28:
49801     include/asm/processor.h:971: error: expected ')' before 'ver'
49802     make[1]: *** [4xx_pcie.o] Error 1
49803
49804     This patch fixes the problem.
49805
49806     Signed-off-by: Anatolij Gustschin <agust@denx.de>
49807     Acked-by: Stefan Roese <sr@denx.de>
49808     Acked-by: Kumar Gala <galak@kernel.crashing.org>
49809
49810 commit a036b0443657fe0f4773786de9092251869f08ac
49811 Author: Kumar Gala <galak@kernel.crashing.org>
49812 Date:   Thu Jun 19 01:45:50 2008 -0500
49813
49814     MPC8610HPCD: Report board id, board version and fpga version.
49815
49816     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49817
49818 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
49819 Author: Kumar Gala <galak@kernel.crashing.org>
49820 Date:   Thu Jun 19 01:45:27 2008 -0500
49821
49822     MPC8641HPCN: Report board id, board version and fpga version.
49823
49824     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49825
49826 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
49827 Author: Stefan Roese <sr@denx.de>
49828 Date:   Mon Jun 16 10:40:02 2008 +0200
49829
49830     cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
49831
49832     This patch simplifies flash_toggle() (AMD commandset), which is used to
49833     detect if a FLASH device is still busy with erase/program operations. On
49834     800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
49835     did not detect the busy state reliably, resulting in non erased sectors
49836     etc. This patch now simplifies this function by "just" comparing the
49837     complete data-word instead of ANDing it with the command-word (0x40)
49838     before the compatison. It is done the same way in the Linux implementation
49839     chip_ready() in cfi_cmdset_0002.c.
49840
49841     Signed-off-by: Stefan Roese <sr@denx.de>
49842
49843 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
49844 Author: Philip Balister <philip@balister.org>
49845 Date:   Mon Jun 16 08:58:07 2008 -0400
49846
49847     NAND: Add missing declaration to non-redundant saveenv().
49848
49849     Signed-off-by: Scott Wood <scottwood@freescale.com>
49850
49851 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
49852 Author: Wolfgang Grandegger <wg@grandegger.com>
49853 Date:   Mon Jun 2 15:09:55 2008 +0200
49854
49855     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
49856
49857     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
49858     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
49859     Signed-off-by: Scott Wood <scottwood@freescale.com>
49860
49861 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
49862 Author: Stefan Roese <sr@denx.de>
49863 Date:   Tue Jun 10 15:34:11 2008 +0200
49864
49865     ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
49866
49867     This patch disables the square wave output of the M41T62 RTC used on
49868     Canyonlands & Glacier. Here the explanation:
49869
49870     The serial real-time clock part used in the design is an
49871     STMicro M41T62. This part has a full-time 32KHz square wave
49872     output that is connected to the TmrClk input to the
49873     processor. The default state for this square wave output is
49874     enabled so the output runs continuously when the board is
49875     powered normally and also from the battery. The TmrClk input
49876     to the processor goes to ground when the power is removed
49877     from the board/processor, and therefore the running square
49878     wave output is driving ground which drains the battery quickly.
49879
49880     Signed-off-by: Stefan Roese <sr@denx.de>
49881
49882 commit a94f22f08f280905926219e568568964cb9eeb9d
49883 Author: Andy Fleming <afleming@freescale.com>
49884 Date:   Wed Jun 11 18:10:20 2008 -0500
49885
49886     Fix build issue with string.h and linux/string.h
49887
49888     This commit:
49889     commit 338cc038461a6c7709c5b86fd9a240209338a1ae
49890     Author: Wolfgang Denk <wd@denx.de>
49891     Date:   Fri Jun 6 14:28:14 2008 +0200
49892
49893         tools/mkimage: fix compiler warnings on some systems.
49894
49895     Broke building on some systems, because the host's string.h was interfering
49896     with u-boot's linux/string.h.  It doesn't look like we need the u-boot one if
49897     we're building for the host, so now we only include when building inside
49898     u-boot.
49899
49900     Signed-off-by: Andy Fleming <afleming@freescale.com>
49901
49902 commit 9973e3c614721bbf169882ffc3be266a6611cd60
49903 Author: Becky Bruce <becky.bruce@freescale.com>
49904 Date:   Mon Jun 9 16:03:40 2008 -0500
49905
49906     Change initdram() return type to phys_size_t
49907
49908     This patch changes the return type of initdram() from long int to phys_size_t.
49909     This is required for a couple of reasons: long int limits the amount of dram
49910     to 2GB, and u-boot in general is moving over to phys_size_t to represent the
49911     size of physical memory.  phys_size_t is defined as an unsigned long on almost
49912     all current platforms.
49913
49914     This patch *only* changes the return type of the initdram function (in
49915     include/common.h, as well as in each board's implementation of initdram).  It
49916     does not actually modify the code inside the function on any of the platforms;
49917     platforms which wish to support more than 2GB of DRAM will need to modify
49918     their initdram() function code.
49919
49920     Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
49921     MPC8641HPCN.
49922
49923     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49924
49925 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
49926 Author: Becky Bruce <becky.bruce@freescale.com>
49927 Date:   Mon Jun 9 20:37:18 2008 -0500
49928
49929     Change lmb to use phys_size_t/phys_addr_t
49930
49931     This updates the lmb code to use phys_size_t
49932     and phys_addr_t instead of unsigned long.  Other code
49933     which interacts with this code, like getenv_bootm_size()
49934     is also updated.
49935
49936     Booted on MPC8641HPCN, build-tested ppc, arm, mips.
49937
49938     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49939
49940 commit 61b09fc2952dc636017df4e7970e3de132276ba1
49941 Author: Becky Bruce <becky.bruce@freescale.com>
49942 Date:   Mon Jun 9 20:37:17 2008 -0500
49943
49944     Change print_size to take phys_size_t
49945
49946     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49947
49948 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
49949 Author: Becky Bruce <becky.bruce@freescale.com>
49950 Date:   Mon Jun 9 20:37:16 2008 -0500
49951
49952     Change bd/gd memsize/ram_size to be phys_size_t.
49953
49954     Currently, both are defined as an unsigned long, but
49955     should be phys_size_t. This should result in no real change,
49956     since phys_size_t is currently an unsigned long for all the
49957     default configs.  Also add print_lnum to cmd_bdinfo to deal
49958     with the potentially wider memsize.
49959
49960     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49961
49962 commit ba04f7010958e88a8910f2a123fee53fdc72e013
49963 Author: Kumar Gala <galak@kernel.crashing.org>
49964 Date:   Tue Jun 10 16:16:02 2008 -0500
49965
49966     FSL LAW: Add new interface to use the last free LAW
49967
49968     LAWs have the concept of priority so its useful to be able to allocate
49969     the lowest (highest number) priority.  We will end up using this with the
49970     new DDR code.
49971
49972     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49973
49974 commit 859a86a25c569d3665ff413d1d923394b8a961f3
49975 Author: Kumar Gala <galak@kernel.crashing.org>
49976 Date:   Wed Jun 11 00:51:45 2008 -0500
49977
49978     85xx/86xx: Move to dynamic mgmt of LAWs
49979
49980     With the new LAW interface (set_next_law) we can move to letting the
49981     system allocate which LAWs are used for what purpose.  This makes life
49982     a bit easier going forward with the new DDR code.
49983
49984     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49985     Signed-off-by: Andy Fleming <afleming@freescale.com>
49986     Acked-by: Jon Loeliger <jdl@freescale.com>
49987     Acked-by: Becky Bruce <becky.bruce@freescale.com>
49988
49989 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
49990 Author: Kumar Gala <galak@kernel.crashing.org>
49991 Date:   Wed Jun 11 00:44:10 2008 -0500
49992
49993     FSL LAW: Keep track of LAW allocations
49994
49995     Make it so we keep track of which LAWs have allocated and provide
49996     a function (set_next_law) which can allocate a LAW for us if one is
49997     free.
49998
49999     In the future we will move to doing more "dynamic" LAW allocation
50000     since the majority of users dont really care about what LAW number
50001     they are at.
50002
50003     Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
50004
50005     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50006     Signed-off-by: Andy Fleming <afleming@freescale.com>
50007
50008 commit ddde74a159caa6e18b481fec01d40b885aebb566
50009 Author: Kumar Gala <galak@kernel.crashing.org>
50010 Date:   Mon Jun 9 22:31:57 2008 -0500
50011
50012     85xx: remove dummy board_early_init_f
50013
50014     A number of board ports have empty version of board_early_init_f
50015     for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
50016
50017     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50018
50019 commit 81e56e9af0d43712db8efb843606a8d62eab454f
50020 Author: Kumar Gala <galak@kernel.crashing.org>
50021 Date:   Mon Jun 9 18:55:38 2008 -0500
50022
50023     MPC8544DS: Update config.h
50024
50025     * Enable flash progress
50026     * remove CLEAR_LAW0 since we dont really use it
50027
50028     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50029
50030 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
50031 Author: Kumar Gala <galak@kernel.crashing.org>
50032 Date:   Mon Jun 9 13:37:24 2008 -0500
50033
50034     85xx: Remove unused and unconfigured memory test code.
50035
50036     Remove unused and unconfigured DDR test code from FSL 85xx boards.
50037     Besides, other common code exists.
50038
50039     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50040
50041 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
50042 Author: Sergei Poselenov <sposelenov@emcraft.com>
50043 Date:   Fri Jun 6 15:42:45 2008 +0200
50044
50045     Socrates: Added FPGA base address update in FDT.
50046
50047     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50048
50049 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
50050 Author: Sergei Poselenov <sposelenov@emcraft.com>
50051 Date:   Fri Jun 6 15:42:44 2008 +0200
50052
50053     Socrates: NAND support added. Changed the U-Boot base address and
50054
50055     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50056
50057 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
50058 Author: Sergei Poselenov <sposelenov@emcraft.com>
50059 Date:   Fri Jun 6 15:42:43 2008 +0200
50060
50061     NAND: Added support for 128-bit OOB, adapted
50062
50063     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50064
50065 commit 31ca0208612f2eb57690110d7c2815953650e47b
50066 Author: Sergei Poselenov <sposelenov@emcraft.com>
50067 Date:   Fri Jun 6 15:42:42 2008 +0200
50068
50069     Socrates: added missed file with UPMA configuration data.
50070
50071     Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
50072
50073 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
50074 Author: Sergei Poselenov <sposelenov@emcraft.com>
50075 Date:   Fri Jun 6 15:42:41 2008 +0200
50076
50077     Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
50078
50079     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50080
50081 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
50082 Author: Sergei Poselenov <sposelenov@emcraft.com>
50083 Date:   Fri Jun 6 15:42:40 2008 +0200
50084
50085     Added the upmconfig() function for 85xx.
50086
50087     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50088     Signed-off-by: Andy Fleming <afleming@freescale.com>
50089
50090 commit d39e68514ff943930ee692cff3fde03532eb7fec
50091 Author: Sergei Poselenov <sposelenov@emcraft.com>
50092 Date:   Fri Jun 6 15:42:39 2008 +0200
50093
50094     Socrates: config file cleanup.
50095
50096     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50097
50098 commit e8cc3f04b124f757af4528206e60d8eb715ae083
50099 Author: Wolfgang Grandegger <wg@grandegger.com>
50100 Date:   Thu Jun 5 13:12:10 2008 +0200
50101
50102     TQM85xx: Change memory map to support Flash memory > 128 MiB
50103
50104     Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
50105     memory. The current memory map only supports up to 128 MiB Flash.
50106     This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
50107     set, up to 1 GiB flash is supported. To achieve this, the memory
50108     map has to be adjusted in great parts (for example the CCSRBAR is
50109     moved from 0xE0000000 to 0xA0000000).
50110
50111     If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
50112     memory map also has to be considered in the kernel (changed
50113     CCSRBAR address, changed PCI IO base address, ...). Please use
50114     an appropriate Flat Device Tree blob (tqm8548.dtb).
50115
50116     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50117     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50118
50119 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
50120 Author: Wolfgang Grandegger <wg@grandegger.com>
50121 Date:   Thu Jun 5 13:12:09 2008 +0200
50122
50123     TQM85xx: NAND support via local bus UPMB
50124
50125     This patch adds support for NAND FLASH on the TQM8548. It is disabled by
50126     default and can be enabled for the TQM8548 modules. It is now based on
50127     the re-written FSL NAND UPM driver. A patch has been posted earlier today
50128     with the subject:
50129
50130     "NAND FSL UPM: driver re-write using the hwcontrol callback"
50131
50132     Note that the R/B pin is not supported by that module requiring to use
50133     the specified maximum delay time.
50134
50135     Note: With NAND support enabled the size of the U-Boot image exceeds
50136     256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
50137     doubling the image size :-(.
50138
50139     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
50140     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50141
50142 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
50143 Author: Wolfgang Grandegger <wg@grandegger.com>
50144 Date:   Thu Jun 5 13:12:08 2008 +0200
50145
50146     TQM8548: PCI express support
50147
50148     This patch adds support for PCI express cards. The board support
50149     now uses common FSL PCI init code, for both, PCI and PCIe on all
50150     TQM85xx modules.
50151
50152     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
50153     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50154
50155 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
50156 Author: Wolfgang Grandegger <wg@grandegger.com>
50157 Date:   Thu Jun 5 13:12:07 2008 +0200
50158
50159     TQM8548: Basic support for the TQM8548 modules
50160
50161     This patch adds basic support for the TQM8548 module from TQ-Components
50162     (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
50163     eTSEC 3 and 4
50164
50165     Furthermore Flash buffer write has been enabled to speed up output to
50166     the Flash by approx. a factor of 10.
50167
50168     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
50169     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50170
50171 commit 25991353204c78b094c3c1fec90182dcd607ab8f
50172 Author: Wolfgang Grandegger <wg@grandegger.com>
50173 Date:   Thu Jun 5 13:12:06 2008 +0200
50174
50175     TQM85xx: Support for Flat Device Tree
50176
50177     This patch adds support for Linux kernels using the Flat Device Tree.
50178     It also re-defines the default environment settings for booting Linux
50179     with the FDT blob.
50180
50181     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50182
50183 commit d9ee843d54c54776e1fdb86336ce554906a87331
50184 Author: Wolfgang Grandegger <wg@grandegger.com>
50185 Date:   Thu Jun 5 13:12:05 2008 +0200
50186
50187     TQM85xx: Support for Intel 82527 compatible CAN controller
50188
50189     This patch adds initialization of the UPMC RAM to support up to two
50190     Intel 82527 compatible CAN controller on the TQM85xx modules.
50191
50192     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
50193     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50194
50195 commit 518d5cfe72916323c746af1647764459914f555f
50196 Author: Wolfgang Grandegger <wg@grandegger.com>
50197 Date:   Thu Jun 5 13:12:04 2008 +0200
50198
50199     TQM85xx: Bugfix in the SDRAM initialisation
50200
50201     The CS0_BNDS register is now set according to the detected
50202     memory size.
50203
50204     Signed-off-by Martin Krause <martin.krause@tqs.de>
50205
50206 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
50207 Author: Wolfgang Grandegger <wg@grandegger.com>
50208 Date:   Thu Jun 5 13:12:03 2008 +0200
50209
50210     TQM85xx: Fix chip select configuration for second FLASH bank
50211
50212     This patch fixes the re-calculation of the automatic chip select
50213     configuration for boards with two populated FLASH banks.
50214
50215     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50216
50217 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
50218 Author: Wolfgang Grandegger <wg@grandegger.com>
50219 Date:   Thu Jun 5 13:12:02 2008 +0200
50220
50221     TQM85xx: Support for Spansion 'N' type flashes added
50222
50223     The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
50224     than the formerly used 'M' types (S29GLxxxM series), so the flash layout
50225     needs to be changed -> new start address of the environment. The macro
50226     definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
50227     defined for boards with 'N' type flashes.
50228
50229     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50230     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50231
50232 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
50233 Author: Wolfgang Grandegger <wg@grandegger.com>
50234 Date:   Thu Jun 5 13:12:01 2008 +0200
50235
50236     TQM85xx: Fix CPM port pin configuration
50237
50238     Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
50239     board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
50240     as serial interface anyway. Worse, on some board variants configuring the
50241     pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
50242
50243     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50244
50245 commit b99ba1679e8cd51b023e67098c89e606e47137d2
50246 Author: Wolfgang Grandegger <wg@grandegger.com>
50247 Date:   Thu Jun 5 13:12:00 2008 +0200
50248
50249     TQM85xx: Various coding style fixes
50250
50251     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50252
50253 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
50254 Author: Gerald Van Baren <vanbaren@cideas.com>
50255 Date:   Tue Jun 10 22:15:58 2008 -0400
50256
50257     libfdt: Move the working_fdt pointer to cmd_fdt.c
50258
50259     The working_fdt pointer was declared in common/fdt_support.c but was
50260     not used there.  Move it to common/cmd_fdt.c where it is used (it is
50261     also used in lib_ppc/bootm.c).
50262
50263     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50264
50265 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
50266 Author: Kim Phillips <kim.phillips@freescale.com>
50267 Date:   Tue Jun 10 11:06:17 2008 -0500
50268
50269     fdt: unshadow global working fdt variable
50270
50271     differentiate with local variables of the same name by renaming the
50272     global 'fdt' variable 'working_fdt'.
50273
50274     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50275
50276 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
50277 Author: Andy Fleming <afleming@freescale.com>
50278 Date:   Tue Jun 10 18:49:34 2008 -0500
50279
50280     socrates: Fix PCI clk fix patch
50281
50282     The submitted patch seems to have been more up-to-date, but an older patch was
50283     already in the repository.  This patch encompasses the differences
50284
50285     Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
50286
50287     Signed-off-by: Andy Fleming <afleming@freescale.com>
50288
50289 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
50290 Author: Wolfgang Grandegger <wg@grandegger.com>
50291 Date:   Thu Jun 5 13:02:29 2008 +0200
50292
50293     NAND FSL UPM: driver re-write using the hwcontrol callback
50294
50295     This is a re-write of the NAND FSL UPM driver using the more universal
50296     hwcontrol callback (instead of the cmdfunc callback). Here is a brief
50297     list of furher modifications:
50298
50299     - For the time being, the UPM setup writing the UPM array has been
50300       removed from the driver and must now be done by the board specific
50301       code.
50302
50303     - The bus width definition in "struct fsl_upm_nand" is now in bits to
50304       comply with the corresponding Linux driver and 8, 16 and 32 bit
50305       accesses are supported.
50306
50307     - chip->dev_read is only set if fun->dev_ready != NULL, which is
50308       required for boards not connecting the R/B pin.
50309
50310     - A few issue have been fixed with MxMR bit manipulation like in the
50311       corresponding Linux driver.
50312
50313     Note: I think the "io_addr" field of "struct fsl_upm" could be removed
50314           as well, because the address is already determined by
50315           "nand->IO_ADDR_[RW]", but I'm not 100% sure.
50316
50317     This patch has been tested on a TQM8548 modules with the NAND chip
50318     Micron MT29F8G08FABWP.
50319
50320     This patch is based on the following patches posted to this list a few
50321     minutes ago:
50322
50323       PPC: add accessor macros to clear and set bits in one shot
50324       83xx/85xx/86xx: add more MxMR local bus definitions
50325
50326     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50327     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50328
50329 commit 6beecfbb542992eede5831240cd58678274683a9
50330 Author: Wolfgang Grandegger <wg@grandegger.com>
50331 Date:   Thu Jun 5 13:11:59 2008 +0200
50332
50333     MPC85xx: Beautify boot output of L2 cache configuration
50334
50335     The boot output is now aligned poperly with other boot output
50336     lines, e.g.:
50337
50338       FLASH: 128 MB
50339       L2:    512 KB enabled
50340
50341     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50342
50343 commit 398415114f0a705163a14543e9fef03f734b1ffa
50344 Author: Wolfgang Grandegger <wg@grandegger.com>
50345 Date:   Wed Jun 4 12:45:22 2008 +0200
50346
50347     PPC: add accessor macros to clear and set bits in one shot
50348
50349     PPC: add accessor macros to clear and set bits in one shot
50350
50351     This patch adds macros from linux/include/asm-powerpc/io.h to clear and
50352     set bits in one shot using the in_be32, out_be32, etc. accessor functions.
50353     They are very handy to manipulate bits it I/O registers.
50354
50355     This patch is required for my forthcoming FSL NAND UPM driver re-write and
50356     the support for the TQM8548 module.
50357
50358     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50359
50360 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
50361 Author: Wolfgang Grandegger <wg@grandegger.com>
50362 Date:   Wed Jun 4 13:52:17 2008 +0200
50363
50364     TQM: move TQM boards to board/tqc
50365
50366     Move all TQM board directories to the vendor specific directory "tqc"
50367     for modules from TQ-Components GmbH (http://www.tqc.de).
50368
50369     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50370
50371 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
50372 Author: Wolfgang Grandegger <wg@grandegger.com>
50373 Date:   Mon Jun 2 12:09:30 2008 +0200
50374
50375     83xx/85xx/86xx: add more MxMR local bus definitions
50376
50377     83xx/85xx/86xx: add more MxMR local bus definitions
50378
50379     This patch adds more macro definitions for the UPM Machine Mode Registers
50380     They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
50381     common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
50382     required for my forthcoming FSL NAND UPM driver re-write and the support
50383     for the TQM8548 module.
50384
50385     This patch is based on the following two patches from Anton Vorontsov:
50386
50387     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
50388     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
50389
50390     I leave coding style violation fixes, code beautification and name
50391     corrections to somebody else ;-(.
50392
50393     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50394
50395 commit c8c5fc266e4499e283c293ccb972863156aa4134
50396 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
50397 Date:   Thu May 29 18:14:56 2008 +0400
50398
50399     83xx/85xx: further localbus cleanups
50400
50401     Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
50402     from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
50403
50404     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50405
50406 commit 42dbd667c88d496882d53e22656e89b654205492
50407 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
50408 Date:   Wed May 28 18:20:15 2008 +0400
50409
50410     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
50411
50412     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
50413     use it on MPC85xx and MPC86xx processors.
50414
50415     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50416
50417 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
50418 Author: Kumar Gala <galak@kernel.crashing.org>
50419 Date:   Thu May 29 11:22:06 2008 -0500
50420
50421     85xx: Add setting of cache props in the device tree.
50422
50423     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50424
50425 commit 4dbdb7681e243431530df0725627192a0c4aefda
50426 Author: Kumar Gala <galak@kernel.crashing.org>
50427 Date:   Tue Jun 10 16:53:46 2008 -0500
50428
50429     85xx: expose cpu identification
50430
50431     The current cpu identification code is used just to return the name
50432     of the processor at boot.  There are some other locations that the name
50433     is useful (device tree setup).  Expose the functionality to other bits
50434     of code.
50435
50436     Also, drop the 'E' suffix and add it on by looking at the SVR version
50437     when we print this out.  This is mainly to allow the most flexible use
50438     of the name.  The device tree code tends to not care about the 'E' suffix.
50439
50440     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50441
50442 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
50443 Author: Kim Phillips <kim.phillips@freescale.com>
50444 Date:   Tue Jun 10 13:25:24 2008 -0500
50445
50446     mpc83xx: MVBLM7: minor build fixups
50447
50448     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50449
50450 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
50451 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
50452 Date:   Tue Jun 10 09:14:05 2008 +0200
50453
50454     add MPC8343 based board mvBlueLYNX-M7 (board+make files)
50455
50456     Add MPC8343 based board mvBlueLYNX-M7.
50457     It's a single board stereo camera system.
50458     Please read doc/README.mvblm7 for details.
50459
50460     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
50461     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50462
50463 commit c005b93925ba49f07da2aa748527996d927e172f
50464 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
50465 Date:   Tue Jun 10 09:13:16 2008 +0200
50466
50467     add MPC8343 based board mvBlueLYNX-M7 (doc+config)
50468
50469     Add MPC8343 based board mvBlueLYNX-M7.
50470     It's a single board stereo camera system.
50471     Please read doc/README.mvblm7 for details.
50472
50473     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
50474     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50475
50476 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
50477 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
50478 Date:   Thu May 29 18:14:56 2008 +0400
50479
50480     83xx/85xx: further localbus cleanups
50481
50482     move the BRx_* and ORx_* left behind in mpc85xx.h
50483
50484     The same is needed for mpc8xx.h and mpc8260.h (defines are almost
50485     the same, just few differences which needs some attention though).
50486
50487     But the bad news for mpc8xx and mpc8260 is that there are a lot of users
50488     of these defines. So this cleanup I'll leave for the "better times".
50489
50490     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50491     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50492
50493 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
50494 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
50495 Date:   Wed May 28 18:20:15 2008 +0400
50496
50497     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
50498
50499     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
50500     use it on MPC85xx and MPC86xx processors.
50501
50502     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50503     Acked-by: Andy Fleming <afleming@freescale.com>
50504     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50505
50506 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
50507 Author: Tor Krill <tor@excito.com>
50508 Date:   Mon Jun 2 15:09:30 2008 +0200
50509
50510     Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
50511
50512     Signed-off-by: Tor Krill <tor@excito.com>
50513     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50514
50515 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
50516 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50517 Date:   Mon Jun 9 23:37:44 2008 +0900
50518
50519     net: Conditional COBJS inclusion of network drivers
50520
50521     Replace COBJS-y with appropriate driver config names.
50522
50523     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50524     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50525
50526 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
50527 Author: Gerald Van Baren <vanbaren@cideas.com>
50528 Date:   Mon Jun 9 21:02:17 2008 -0400
50529
50530     Use strncmp() for the fdt command
50531
50532     Cleaner than doing multiple conditionals on characters.
50533
50534     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50535
50536 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
50537 Author: Gerald Van Baren <vanbaren@cideas.com>
50538 Date:   Sat Jun 7 12:25:05 2008 -0400
50539
50540     The fdt boardsetup command criteria was not unique
50541
50542     It was checking just for "b", which is not unique with respect to the
50543     "boot" command.  Change to check for "boa"[rdsetup].
50544
50545     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50546
50547 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
50548 Author: David Gibson <david@gibson.dropbear.id.au>
50549 Date:   Tue May 20 17:19:11 2008 +1000
50550
50551     libfdt: Several cleanups to parameter checking
50552
50553     This patch makes a couple of small cleanups to parameter checking of
50554     libfdt functions.
50555
50556         - In several functions which take a node offset, we use an
50557     idiom involving fdt_next_tag() first to check that we have indeed been
50558     given a node offset.  This patch adds a helper function
50559     _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
50560
50561         - In fdt_rw.c in several places we have the expanded version
50562     of the RW_CHECK_HEADER() macro for no particular reason.  This patch
50563     replaces those instances with an invocation of the macro; that's what
50564     it's for.
50565
50566         - In fdt_sw.c we rename the check_header_sw() function to
50567     sw_check_header() to match the analgous function in fdt_rw.c, and we
50568     provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
50569     functions in fdt_rw.c
50570
50571     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
50572
50573 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
50574 Author: Gerald Van Baren <vanbaren@cideas.com>
50575 Date:   Tue Jun 3 20:34:45 2008 -0400
50576
50577     Remove the deprecated CONFIG_OF_FLAT_TREE
50578
50579     Use CONFIG_OF_LIBFDT instead to support flattened device trees.  It is
50580     cleaner, has better functionality, and is better supported.
50581
50582     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50583
50584 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
50585 Author: Gerald Van Baren <vanbaren@cideas.com>
50586 Date:   Tue Jun 3 20:26:29 2008 -0400
50587
50588     Change the stxxst to CONFIG_OF_LIBFDT
50589
50590     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
50591     to CONFIG_OF_LIBFDT.
50592
50593     WARNING: It appears that this board lost its ability to boot via a
50594     flattened device tree prior to this changeset.
50595
50596     WARNING: This conversion was untested because I do not have a board to
50597     test it on.
50598
50599     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50600
50601 commit 589c04271d129729a8b01391453851ab9cc4069c
50602 Author: Gerald Van Baren <vanbaren@cideas.com>
50603 Date:   Tue Jun 3 20:24:58 2008 -0400
50604
50605     Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
50606
50607     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
50608     to CONFIG_OF_LIBFDT.
50609
50610     WARNING: This conversion is untested because I do not have a board to
50611     test it on.
50612
50613     NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
50614     /aliases/ethernet1 property for the ethernet to work.
50615
50616     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50617
50618 commit ee1e35bede91debc8bff9b02f75574486033b652
50619 Author: Kumar Gala <galak@kernel.crashing.org>
50620 Date:   Thu May 29 01:21:24 2008 -0500
50621
50622     85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
50623
50624     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50625
50626 commit 3b9519fc50802436e417c839e69df7b2016cade5
50627 Author: Becky Bruce <becky.bruce@freescale.com>
50628 Date:   Wed May 14 13:10:04 2008 -0500
50629
50630     MPC85xx: Change traps.c to not reference non-addressable memory
50631
50632     Currently, END_OF_RAM is used by the trap code to determine if
50633     we should attempt to access the stack pointer or not. However,
50634     on systems with a lot of RAM, only a subset of the RAM is
50635     guaranteed to be mapped in and accessible.  Change END_OF_RAM
50636     to use get_effective_memsize() instead of using the raw ram
50637     size out of the bd.
50638
50639     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
50640
50641 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
50642 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50643 Date:   Mon Jun 9 13:39:57 2008 +0900
50644
50645     sh: Renesas Solutions SH7763RDP board support
50646
50647     SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
50648     In this patch, support SCIF, NOR Flash, and Ethernet.
50649
50650     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50651     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50652
50653 commit 60179098a95eaa972007d7ec58e4c1588029720f
50654 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50655 Date:   Fri Jun 6 16:24:13 2008 +0900
50656
50657     sh: Add support Renesas SH7763
50658
50659     Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
50660     This patch supprts CPU register's header file.
50661
50662     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50663     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50664
50665 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
50666 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50667 Date:   Fri Jun 6 16:16:08 2008 +0900
50668
50669     sh: SH7763 SCIF support
50670
50671     SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
50672     but only SCIF2 is different. This patch work all SCIF channel.
50673
50674     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50675     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50676
50677 commit 79b51ff8205f0354d5300570614c1d2db499679c
50678 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50679 Date:   Sat Jun 7 20:51:59 2008 +0900
50680
50681     [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
50682
50683     Also get rid of some #ifdefs in *.c files.
50684
50685     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50686
50687 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
50688 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50689 Date:   Sat Jun 7 20:51:56 2008 +0900
50690
50691     [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
50692
50693     CONFIG_SOC_AU1X00
50694
50695       Common Alchemy Au1x00 stuff. All Alchemy processor based machines
50696       need to have this config as a system type specifier.
50697
50698     CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
50699     CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
50700
50701       Machine type specifiers. Each port should have one of aboves.
50702
50703     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50704
50705 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
50706 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
50707 Date:   Fri May 30 16:05:28 2008 -0400
50708
50709     env_nand.c: Added bad block management for environment variables
50710
50711     Modified to check for bad blocks and to skipping over them when
50712     CFG_ENV_RANGE has been defined.
50713     CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
50714     flash block size.
50715
50716     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
50717     Signed-off-by: Scott Wood <scottwood@freescale.com>
50718
50719 commit 279726bd00558e80263d44581c44167625b7fb9a
50720 Author: Becky Bruce <becky.bruce@freescale.com>
50721 Date:   Wed May 14 13:09:58 2008 -0500
50722
50723     MPC86xx: Change traps.c to not reference non-addressable memory
50724
50725     Currently, END_OF_RAM is used by the trap code to determine if
50726     we should attempt to access the stack pointer or not. However,
50727     on systems with a lot of RAM, only a subset of the RAM is
50728     guaranteed to be mapped in and accessible.  Change END_OF_RAM
50729     to use get_effective_memsize() instead of using the raw ram
50730     size out of the bd to prevent us from trying to access
50731     non-mapped memory.
50732
50733     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
50734
50735 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
50736 Author: Wolfgang Denk <wd@denx.de>
50737 Date:   Fri Jun 6 14:28:14 2008 +0200
50738
50739     tools/mkimage: fix compiler warnings on some systems.
50740
50741     Signed-off-by: Wolfgang Denk <wd@denx.de>
50742
50743 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
50744 Author: Stefan Roese <sr@denx.de>
50745 Date:   Fri Jun 6 16:10:41 2008 +0200
50746
50747     ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
50748
50749     We use upper case letters for the AMCC processor defines (like
50750     CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
50751     not CONFIG_440SPe. This patch fixes the last misspelled config options.
50752
50753     Signed-off-by: Stefan Roese <sr@denx.de>
50754
50755 commit 72675dc6c06a48846d180106161d49dd714383cc
50756 Author: Stefan Roese <sr@denx.de>
50757 Date:   Fri Jun 6 15:55:21 2008 +0200
50758
50759     ppc4xx: Unify AMCC's board config files (part 3/3)
50760
50761     This patch series unifies the AMCC eval board ports by introducing
50762     a common include header for all AMCC eval boards:
50763
50764     include/configs/amcc-common.h
50765
50766     This header now includes all common configuration options/defines which
50767     are removed from the board specific headers.
50768
50769     The reason for this is ease of maintenance and unified look and feel
50770     of all AMCC boards.
50771
50772     Signed-off-by: Stefan Roese <sr@denx.de>
50773
50774 commit 490f204096d6e2c9940f67816f154a8125bab116
50775 Author: Stefan Roese <sr@denx.de>
50776 Date:   Fri Jun 6 15:55:03 2008 +0200
50777
50778     ppc4xx: Unify AMCC's board config files (part 2/3)
50779
50780     This patch series unifies the AMCC eval board ports by introducing
50781     a common include header for all AMCC eval boards:
50782
50783     include/configs/amcc-common.h
50784
50785     This header now includes all common configuration options/defines which
50786     are removed from the board specific headers.
50787
50788     The reason for this is ease of maintenance and unified look and feel
50789     of all AMCC boards.
50790
50791     Signed-off-by: Stefan Roese <sr@denx.de>
50792
50793 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
50794 Author: Stefan Roese <sr@denx.de>
50795 Date:   Fri Jun 6 15:54:31 2008 +0200
50796
50797     ppc4xx: Unify AMCC's board config files (part 1/3)
50798
50799     This patch series unifies the AMCC eval board ports by introducing
50800     a common include header for all AMCC eval boards:
50801
50802     include/configs/amcc-common.h
50803
50804     This header now includes all common configuration options/defines which
50805     are removed from the board specific headers.
50806
50807     The reason for this is ease of maintenance and unified look and feel
50808     of all AMCC boards.
50809
50810     Signed-off-by: Stefan Roese <sr@denx.de>
50811
50812 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
50813 Author: Remy Bohmer <linux@bohmer.net>
50814 Date:   Thu Jun 5 13:03:36 2008 +0200
50815
50816     DM9000 fix status check fail 0x6d error for trizeps board
50817
50818     According to the Application Notes of the DM9000, only the 2 bits 0:1 of
50819     the status byte need to be checked to identify a valid packet in the fifo
50820
50821     But, The several different Application Notes do not all speak the same
50822     language on these bits. They do not disagree, but only 1 Application Note
50823     noted explicitly that only these 2 bits need to be checked.
50824     Even the datasheets do not mention anything about these 2 bits.
50825
50826     Because the old code, and the kernel check the whole byte, I left this piece
50827     untouched.
50828
50829     However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
50830     it should work.
50831
50832     Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
50833     in the fifo) is much shorter now, compared to the older U-boot driver code,
50834     so that we can maybe run into a hardware condition now that was never seen
50835     before, or maybe was seen very unfrequently.
50836
50837     Additionaly added a cleanup of a stack variable.
50838
50839     Signed-off-by: Remy Bohmer <linux@bohmer.net>
50840     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50841
50842 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
50843 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50844 Date:   Thu Jun 5 22:29:00 2008 +0900
50845
50846     [MIPS] Update <asm/addrspace.h> header
50847
50848     - Fix traditional KSEG names
50849     - Replace PHYSADDR with CPHYSADDR
50850
50851     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50852
50853 commit f0d5a6f060d00358b85c62a921a423ea8df71184
50854 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50855 Date:   Thu Jun 5 22:29:00 2008 +0900
50856
50857     [MIPS] mips_config.mk: Misc fixes
50858
50859     - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
50860     - Modify comments
50861
50862     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50863
50864 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
50865 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50866 Date:   Thu Jun 5 22:29:00 2008 +0900
50867
50868     [MIPS] Kill unused <version.h> inclusions
50869
50870     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50871
50872 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
50873 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50874 Date:   Thu Jun 5 22:29:00 2008 +0900
50875
50876     [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
50877
50878     MIPS port has two problems in timer routines. One is now we assume CFG_HZ
50879     equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
50880     in the U-Boot system.
50881
50882     The other is we don't have a proper time management counter like timestamp
50883     other ARCHs have. We need the 32-bit millisecond clock counter.
50884
50885     This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
50886     32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
50887     of calculated CP0 counter cycles in a CFG_HZ.
50888
50889     STRATEGY:
50890
50891     * Fix improper CFG_HZ value to have 1000
50892
50893     * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
50894
50895     * timer_init: initialize timestamp and set up the first timer expiration.
50896       Note that we don't need to initialize CP0 count/compare registers here
50897       as they have been already zeroed out on the system reset. Leave them as
50898       they are.
50899
50900     * get_timer: calculate how many timestamps have been passed, then return
50901       base-relative timestamp. Make sure we can easily count missed timestamps
50902       regardless of CP0 count/compare value.
50903
50904     * get_ticks: return the current timestamp, that is get_timer(0).
50905
50906     Most parts are from good old Linux v2.6.16 kernel.
50907
50908     v2:
50909     - Remove FIXME comments as they turned out to be trivial.
50910     - Use CP0 compare register as a global variable for expirelo.
50911     - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
50912       instead.
50913
50914     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50915
50916 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
50917 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50918 Date:   Thu Jun 5 22:29:00 2008 +0900
50919
50920     [MIPS] lib_mips/time.c: Fix udelay
50921
50922     What we have to do is just to wait for given micro-seconds. No need to
50923     take into account current time, get_timer and CFG_HZ.
50924
50925     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50926
50927 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
50928 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50929 Date:   Thu Jun 5 22:28:59 2008 +0900
50930
50931     [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
50932
50933     We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
50934     This patch replaces mips_{compare,count}_set and mips_count_get with
50935     existing macros.
50936
50937     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50938
50939 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
50940 Author: Remy Bohmer <linux@bohmer.net>
50941 Date:   Tue Jun 3 15:48:17 2008 +0200
50942
50943     Get rid of annoying/superfluous bad-checksum warning message
50944
50945     U-boot can complain a lot about 'checksum bad' when it is attached to the network.
50946     It is annoying for ordinary users who start to doubt the network connection
50947     in general when they see messages like this.
50948
50949     This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
50950     than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
50951     now before checking the checksum.
50952
50953     Signed-off-by: Remy Bohmer <linux@bohmer.net>
50954     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50955
50956 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
50957 Author: Remy Bohmer <linux@bohmer.net>
50958 Date:   Wed Jun 4 10:47:25 2008 +0200
50959
50960     Fix order for reading rx-status registers in 32bit mode of DM9000
50961
50962     A last minute cleanup before submitting the DM9000A patch series yesterday introduced
50963     a bug in reading the rx-status registers in 32bit mode only.
50964     This patch repairs this.
50965
50966     Signed-off-by: Remy Bohmer <linux@bohmer.net>
50967     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50968
50969 commit 98291e2e689096420465074cce926b226d2e71b4
50970 Author: Remy Bohmer <linux@bohmer.net>
50971 Date:   Tue Jun 3 15:26:26 2008 +0200
50972
50973     DM9000: Some minor code cleanups
50974
50975     Some lines of the U-boot DM9000x driver are longer than 80 characters, or
50976     need some other minor cleanup.
50977
50978     Signed-off-by: Remy Bohmer <linux@bohmer.net>
50979     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50980
50981 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
50982 Author: Remy Bohmer <linux@bohmer.net>
50983 Date:   Tue Jun 3 15:26:25 2008 +0200
50984
50985     DM9000: Make driver work properly for DM9000A
50986
50987     The DM9000A network controller does not work with the U-boot DM9000x driver.
50988     Analysis showed that many incoming packets are lost.
50989
50990     The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
50991     check for a valid rx packet be done on the interrupt status register, not
50992     directly by performing the dummy read and the rx status check as is currently
50993     the case in the u-boot driver.
50994
50995     When the recommended poll is done as suggested the driver starts working
50996     correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
50997     can be more than 1 package in the fifo at the same time.
50998
50999     The driver must perform the rx-status check in a loop and read and handle all
51000     packages until there is no more left _after_ the interrupt RX flag is set.
51001
51002     This change has been tested with DM9000A, DM9000E, DM9000EP.
51003
51004     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51005     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51006
51007 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
51008 Author: Remy Bohmer <linux@bohmer.net>
51009 Date:   Tue Jun 3 15:26:24 2008 +0200
51010
51011     DM9000: Improve eth_reset() routine
51012
51013     According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
51014     reset procedure must be done twice to properly reset the DM9000 by means of software.
51015     This errata is not needed anymore for the DM9000A, but it does not bother it.
51016
51017     This change has been tested with DM9000A, DM9000E, DM9000EP.
51018
51019     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51020     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51021
51022 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
51023 Author: Remy Bohmer <linux@bohmer.net>
51024 Date:   Tue Jun 3 15:26:23 2008 +0200
51025
51026     DM9000: improve eth_send() routine
51027
51028     The eth_send routine of the U-boot DM9000x driver does not match the
51029     DM9000 or DM9000A application notes/programming guides.
51030
51031     This change improves the stability of the DM9000A network controller.
51032
51033     This change has been tested with DM9000A, DM9000E, DM9000EP.
51034
51035     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51036     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51037
51038 commit 134e266253c02a7832560da59d394989c4f64453
51039 Author: Remy Bohmer <linux@bohmer.net>
51040 Date:   Tue Jun 3 15:26:22 2008 +0200
51041
51042     DM9000: repair debug logging
51043
51044     It seems that the debugging code of the DM9000x driver in U-boot has not been
51045     compiled for a long time, because it cannot compile...
51046
51047     Also rearranged some loglines to get more useful info while debugging.
51048
51049     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51050     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51051
51052 commit a101361bfe23c120321e45d114c0603b8e0763e9
51053 Author: Remy Bohmer <linux@bohmer.net>
51054 Date:   Tue Jun 3 15:26:21 2008 +0200
51055
51056     DM9000: Add data bus-width auto detection.
51057
51058     The U-boot DM9000x driver contains a compile time bus-width definition for
51059     the databus connected to the network controller.
51060
51061     This compile check makes the code unclear, inflexible and is unneccessary.
51062     It can be asked to the network controller what its bus-width is by reading bits
51063     6 and 7 of the interrupt status register.
51064
51065     The linux kernel already uses a runtime mechanism to determine this bus-width,
51066     so the implementation below looks somewhat like that implementation.
51067
51068     This change has been tested with DM9000A, DM9000E, DM9000EP.
51069
51070     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51071     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51072
51073 commit 63a0afa0c32e5f4ea98a9439542870072437404d
51074 Author: Stefan Roese <sr@denx.de>
51075 Date:   Wed Jun 4 19:19:20 2008 +0200
51076
51077     ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
51078
51079     This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
51080     introduced by the commit:
51081
51082     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
51083
51084     With this patch SDRAM will get initialized again and booting from NAND
51085     is working again.
51086
51087     Signed-off-by: Stefan Roese <sr@denx.de>
51088     Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
51089
51090 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
51091 Author: Wolfgang Denk <wd@denx.de>
51092 Date:   Tue May 27 14:19:30 2008 +0200
51093
51094     Socrates: Fix PCI bus frequency report
51095
51096     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
51097
51098 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
51099 Author: Tor Krill <tor@excito.com>
51100 Date:   Thu May 29 11:10:30 2008 +0200
51101
51102     Fix incorrect switch for IF_TYPE in part.c
51103
51104     Use correct field in block_dev_desc_t when writing interface type in
51105     dev_print. Error introduced in 574b3195.
51106
51107     Also added fix from Martin Krause
51108
51109     Signed-off-by: Tor Krill <tor@excito.com>
51110
51111 commit b64b8a0bd310935b70af69ac970952f2b364ae56
51112 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
51113 Date:   Tue May 27 10:25:39 2008 +0200
51114
51115     Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
51116
51117     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
51118
51119 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
51120 Author: Peter Tyser <ptyser@xes-inc.com>
51121 Date:   Thu May 22 18:56:52 2008 -0500
51122
51123     Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
51124
51125     Removed unneeded command line history initialization.  Also, the original
51126     code would access the 'initted' variable before relocation to SDRAM
51127     which resulted in erratic behavior since the bss is not initialized when
51128     executing from flash.
51129
51130     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
51131
51132 commit 22f371b63038a4ecab04068877c1089e51a01ba1
51133 Author: Grant Erickson <gerickson@nuovations.com>
51134 Date:   Wed May 21 13:28:30 2008 -0700
51135
51136     PPC4xx: Simplified post_word_{load, store}
51137
51138     This patch simplifies post_word_{load,store} by using the preprocessor
51139     to eliminate redundant, copy-and-pasted code.
51140
51141     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
51142
51143 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
51144 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
51145 Date:   Wed May 7 21:25:33 2008 +0400
51146
51147     cfi_flash: enable M18 flash chips family support.
51148
51149     Added new command set ID. Buffered write command processing is changed
51150     in order to support M18 flash chips family.
51151
51152     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
51153     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
51154
51155 commit 93c56f212ccdadc182018f0769cb284426b88f1d
51156 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
51157 Date:   Wed May 7 21:24:44 2008 +0400
51158
51159     cfi_flash: support of long cmd in U-boot.
51160
51161     Some NOR flash chips needs support of commands with length grether than max
51162     value size of uchar. For example all M18 family chips use 0x1ff command in
51163     buffered write mode as value of program loops count.
51164
51165     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
51166     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
51167
51168 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
51169 Author: Stefan Roese <sr@denx.de>
51170 Date:   Fri May 16 11:06:06 2008 +0200
51171
51172     DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
51173
51174     On AD7414 the first value upon bootup is not read correctly.
51175     This is most likely because of the 800ms update time of the
51176     temp register in normal update mode. To get current values
51177     each time we issue the "dtt" command including upon powerup
51178     we switch into one-short mode.
51179
51180     This patch fixes the problem on AD7414 equipped boards (Sequoia,
51181     Canyonlands etc), that temp value printed in the bootup log was
51182     incorrect.
51183
51184     Signed-off-by: Stefan Roese <sr@denx.de>
51185
51186 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
51187 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51188 Date:   Fri May 30 16:55:06 2008 +0200
51189
51190     ppc4xx: Cleanup CPCI405 variant's config file
51191
51192     This patch removes some dead code from CPCI405 board's
51193     config files. JFFS2 support is also removed. It's not used and
51194     CPCI4052 does not build anymore without some size reduction.
51195
51196     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51197
51198 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
51199 Author: Kenneth Johansson <kenneth@southpole.se>
51200 Date:   Thu May 29 16:32:33 2008 +0200
51201
51202     Remove shell variable UNDEF_SYM.
51203
51204     UNDEF_SYM is a shell variable in the main Makefile used to force the
51205     linker to add all u-boot commands to the final image. It has no use here.
51206
51207     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
51208
51209 commit 8c66497e06bf803489c589df58ee591d71033274
51210 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51211 Date:   Fri May 16 11:10:35 2008 +0200
51212
51213     Add support for environment in SPI flash
51214
51215     This is pretty incomplete...it doesn't handle reading the environment
51216     before relocation, it doesn't support redundant environment, and it
51217     doesn't support embedded environment. But apart from that, it does
51218     seem to work.
51219
51220     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51221
51222 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
51223 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51224 Date:   Fri May 16 11:10:34 2008 +0200
51225
51226     SPI Flash: Add "sf" command
51227
51228     This adds a new command, "sf" which can be used to manipulate SPI
51229     flash. Currently, initialization, reading, writing and erasing is
51230     supported.
51231
51232     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51233
51234 commit d25ce7d24cc0f93881559f4009175ea305af65e8
51235 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51236 Date:   Fri May 16 11:10:33 2008 +0200
51237
51238     SPI Flash subsystem
51239
51240     This adds a new SPI flash subsystem.
51241
51242     Currently, only AT45 DataFlash in non-power-of-two mode is supported,
51243     but some preliminary support for other flash types is in place as
51244     well.
51245
51246     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51247
51248 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
51249 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
51250 Date:   Fri May 16 11:10:32 2008 +0200
51251
51252     atmel_spi: Driver for the Atmel SPI controller
51253
51254     This adds a driver for the SPI controller found on most AT91 and AVR32
51255     chips, implementing the new SPI API.
51256
51257     Changed in v4:
51258       - Update to new API
51259       - Handle zero-length transfers appropriately. The user may send a
51260         zero-length SPI transfer with SPI_XFER_END set in order to
51261         deactivate the chip select after a series of transfers with chip
51262         select active. This is useful e.g. when polling the status
51263         register of DataFlash.
51264
51265     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51266
51267 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
51268 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51269 Date:   Fri May 16 11:10:31 2008 +0200
51270
51271     SPI API improvements
51272
51273     This patch gets rid of the spi_chipsel table and adds a handful of new
51274     functions that makes the SPI layer cleaner and more flexible.
51275
51276     Instead of the spi_chipsel table, each board that wants to use SPI
51277     gets to implement three hooks:
51278       * spi_cs_activate(): Activates the chipselect for a given slave
51279       * spi_cs_deactivate(): Deactivates the chipselect for a given slave
51280       * spi_cs_is_valid(): Determines if the given bus/chipselect
51281         combination can be activated.
51282
51283     Not all drivers may need those extra functions however. If that's the
51284     case, the board code may just leave them out (assuming they know what
51285     the driver needs) or rely on the linker to strip them out (assuming
51286     --gc-sections is being used.)
51287
51288     To set up communication parameters for a given slave, the driver needs
51289     to call spi_setup_slave(). This returns a pointer to an opaque
51290     spi_slave struct which must be passed as a parameter to subsequent SPI
51291     calls. This struct can be freed by calling spi_free_slave(), but most
51292     driver probably don't want to do this.
51293
51294     Before starting one or more SPI transfers, the driver must call
51295     spi_claim_bus() to gain exclusive access to the SPI bus and initialize
51296     the hardware. When all transfers are done, the driver must call
51297     spi_release_bus() to make the bus available to others, and possibly
51298     shut down the SPI controller hardware.
51299
51300     spi_xfer() behaves mostly the same as before, but it now takes a
51301     spi_slave parameter instead of a spi_chipsel function pointer. It also
51302     got a new parameter, flags, which is used to specify chip select
51303     behaviour. This may be extended with other flags in the future.
51304
51305     This patch has been build-tested on all powerpc and arm boards
51306     involved. I have not tested NIOS since I don't have a toolchain for it
51307     installed, so I expect some breakage there even though I've tried
51308     fixing up everything I could find by visual inspection.
51309
51310     I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
51311     DataFlash drivers posted as a follow-up. I'd like some help testing
51312     other boards that use the existing SPI API.
51313
51314     But most of all, I'd like some comments on the new API. Is this stuff
51315     usable for everyone? If not, why?
51316
51317     Changed in v4:
51318       - Build fixes for various boards, drivers and commands
51319       - Provide common struct spi_slave definition that can be extended by
51320         drivers
51321       - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
51322       - Make default bus and mode build-time configurable
51323       - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
51324
51325     Changed in v3:
51326       - Add opaque struct spi_slave for controller-specific data associated
51327         with a slave.
51328       - Add spi_claim_bus() and spi_release_bus()
51329       - Add spi_free_slave()
51330       - spi_setup() is now called spi_setup_slave() and returns a
51331         struct spi_slave
51332       - soft_spi now supports four SPI modes (CPOL|CPHA)
51333       - Add bus parameter to spi_setup_slave()
51334       - Convert the new i.MX32 SPI driver
51335       - Convert the new MC13783 RTC driver
51336
51337     Changed in v2:
51338       - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
51339         new API.
51340
51341     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51342     Tested-by: Guennadi Liakhovetski <lg@denx.de>
51343
51344 commit 289011207d999b2e4085150d2aa30d547ad9b800
51345 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51346 Date:   Fri May 16 11:10:30 2008 +0200
51347
51348     Move definition of container_of() to common.h
51349
51350     AVR32 and AT91SAM9 both have their own identical definitions of
51351     container_of() taken from the Linux kernel. Move it to common.h so
51352     that all architectures can use it.
51353
51354     container_of() is already used by some drivers, and will be used
51355     extensively by the new and improved SPI API.
51356
51357     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51358
51359 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
51360 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51361 Date:   Fri May 16 11:08:11 2008 +0200
51362
51363     soft_i2c: Pull SDA high before reading
51364
51365     Spotted by Dean Capindale.
51366
51367     Systems that support open-drain GPIO properly are allowed provide an
51368     empty I2C_TRISTATE define. However, this means that we need to be
51369     careful not to drive SDA low when the slave is expected to respond.
51370
51371     This patch adds a missing I2C_SDA(1) to read_byte() required to
51372     tristate the SDA line on systems that support open-drain GPIO.
51373
51374     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51375
51376 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
51377 Author: Stefan Roese <sr@denx.de>
51378 Date:   Mon May 19 11:34:53 2008 +0200
51379
51380     ppc4xx: Remove implementations of testdram()
51381
51382     This patch removes the used testdram() implementations of the board
51383     that are maintained by myself.
51384
51385     Signed-off-by: Stefan Roese <sr@denx.de>
51386
51387 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
51388 Author: Stefan Roese <sr@denx.de>
51389 Date:   Mon Jun 2 17:37:28 2008 +0200
51390
51391     ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
51392
51393     Historically the 405 U-Boot port had a dram_init() call in early init
51394     stage. This function was still called from start.S and most of the time
51395     coded in assembler. This is not needed anymore (since a long time) and
51396     boards should implement the common initdram() function in C instead.
51397
51398     This patch now removed the dram_init() call from start.S and removes the
51399     empty implementations that are scattered through most of the 405 board
51400     ports. Some older board ports really implement this dram_init() though.
51401     These are:
51402
51403     csb272
51404     csb472
51405     ERIC
51406     EXBITGEN
51407     W7OLMC
51408     W7OLMG
51409
51410     I changed those boards to call this assembler dram_init() function now
51411     from their board specific initdram() instead. This *should* work, but please
51412     test again on those platforms. And it is perhaps a good idea that those
51413     boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
51414     some time. So further patches welcome here.
51415
51416     Signed-off-by: Stefan Roese <sr@denx.de>
51417
51418 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
51419 Author: Stefan Roese <sr@denx.de>
51420 Date:   Mon Jun 2 17:22:11 2008 +0200
51421
51422     ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
51423
51424     Signed-off-by: Stefan Roese <sr@denx.de>
51425
51426 commit 39b32be18cd33b53a84065edcd4e465165cc5564
51427 Author: Stefan Roese <sr@denx.de>
51428 Date:   Mon Jun 2 17:20:03 2008 +0200
51429
51430     ppc4xx: Fix common ECC generation code for 440GP style platforms
51431
51432     This patch makes the common 4xx ECC code really usable on 440GP style
51433     platforms.
51434
51435     Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
51436     compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
51437     we need to make some processor dependant defines used later on by the
51438     driver.
51439
51440     Signed-off-by: Stefan Roese <sr@denx.de>
51441
51442 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
51443 Author: Stefan Roese <sr@denx.de>
51444 Date:   Mon Jun 2 17:13:55 2008 +0200
51445
51446     ppc4xx: Change Kilauea to use the common DDR2 init function
51447
51448     This patch changes the kilauea and kilauea_nand (for NAND booting)
51449     board port to not use a board specific DDR2 init routine anymore. Now
51450     the common code from cpu/ppc4xx is used.
51451
51452     Thanks to Grant Erickson for all his basic work on this 405EX early
51453     bootup.
51454
51455     Signed-off-by: Stefan Roese <sr@denx.de>
51456
51457 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
51458 Author: Stefan Roese <sr@denx.de>
51459 Date:   Mon Jun 2 14:59:21 2008 +0200
51460
51461     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
51462
51463     This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
51464     ppc4xx related SDRAM/DDR/DDR2 controller defines.
51465
51466     Signed-off-by: Stefan Roese <sr@denx.de>
51467
51468 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
51469 Author: Stefan Roese <sr@denx.de>
51470 Date:   Mon Jun 2 14:57:41 2008 +0200
51471
51472     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
51473
51474     This patch removes all SDRAM related defines from the PPC4xx headers
51475     ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
51476     the same SDRAM controller as 440 systems do (like 405EX and 440SP).
51477
51478     It also introduces new defines for the equipped SDRAM controller based on
51479     which PPC variant is used. There new defines are:
51480
51481     used on 405GR/CR/EP and some Xilinx Virtex boards.
51482
51483     used on 440GP/GX/EP/GR.
51484
51485     used on 440EPx/GRx.
51486
51487     used on 405EX/r/440SP/SPe/460EX/GT.
51488
51489     Signed-off-by: Stefan Roese <sr@denx.de>
51490
51491 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
51492 Author: Stefan Roese <sr@denx.de>
51493 Date:   Mon Jun 2 14:35:44 2008 +0200
51494
51495     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
51496
51497     This patch consolidates the 405 and 440 parts of the NAND booting code
51498     selected via CONFIG_NAND_SPL. Now common code is used to initialize the
51499     SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
51500     Only *after* running from this location, nand_boot() is called.
51501
51502     Please note that the initsdram() call is now moved from nand_boot.c
51503     to start.S. I experienced problems with some boards like Kilauea
51504     (405EX), which don't have internal SRAM (OCM) and relocation needs to
51505     be done to SDRAM before the NAND controller can get accessed. When
51506     initdram() is called later on in nand_boot(), this can lead to problems
51507     with variables in the bss sections like nand_ecc_pos[].
51508
51509     Signed-off-by: Stefan Roese <sr@denx.de>
51510     Acked-by: Scott Wood <scottwood@freescale.com>
51511
51512 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
51513 Author: Grant Erickson <gerickson@nuovations.com>
51514 Date:   Thu May 22 14:44:24 2008 -0700
51515
51516     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
51517
51518     This patch (Part 2 of 2):
51519
51520     * Rolls up a suite of changes to enable correct primordial stack and
51521       global data handling when the data cache is used for such a purpose
51522       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
51523
51524     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
51525       eliminating redundant ECC initialization implementations and moving
51526       redundant SDRAM initialization out of board code into shared 4xx
51527       code.
51528
51529     * Enables MCSR visibility on the 405EX(r).
51530
51531     * Enables the use of the data cache for initial RAM on
51532       both AMCC's Kilauea and Makalu and removes a redundant
51533       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
51534
51535       - Removed, per Stefan Roese's request, defunct memory.c file for
51536         Makalu and rolled sdram_init from it into makalu.c.
51537
51538     With respect to the 4xx DDR initialization and ECC unification, there
51539     is certainly more work that can and should be done (file renaming,
51540     etc.). However, that can be handled at a later date on a second or
51541     third pass. As it stands, this patch moves things forward in an
51542     incremental yet positive way for those platforms that utilize this
51543     code and the features associated with it.
51544
51545     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
51546     Signed-off-by: Stefan Roese <sr@denx.de>
51547
51548 commit c821b5f120bedf73867513466412587c6912a8f8
51549 Author: Grant Erickson <gerickson@nuovations.com>
51550 Date:   Thu May 22 14:44:14 2008 -0700
51551
51552     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
51553
51554     This patch (Part 1 of 2):
51555
51556     * Rolls up a suite of changes to enable correct primordial stack and
51557       global data handling when the data cache is used for such a purpose
51558       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
51559
51560     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
51561       eliminating redundant ECC initialization implementations and moving
51562       redundant SDRAM initialization out of board code into shared 4xx
51563       code.
51564
51565     * Enables MCSR visibility on the 405EX(r).
51566
51567     * Enables the use of the data cache for initial RAM on
51568       both AMCC's Kilauea and Makalu and removes a redundant
51569       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
51570
51571       - Removed, per Stefan Roese's request, defunct memory.c file for
51572         Makalu and rolled sdram_init from it into makalu.c.
51573
51574     With respect to the 4xx DDR initialization and ECC unification, there
51575     is certainly more work that can and should be done (file renaming,
51576     etc.). However, that can be handled at a later date on a second or
51577     third pass. As it stands, this patch moves things forward in an
51578     incremental yet positive way for those platforms that utilize this
51579     code and the features associated with it.
51580
51581     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
51582     Signed-off-by: Stefan Roese <sr@denx.de>
51583
51584 commit a439680019e06171d4a5694b7992accce87f590e
51585 Author: Grant Erickson <gerickson@nuovations.com>
51586 Date:   Wed May 21 13:28:30 2008 -0700
51587
51588     PPC4xx: Simplified post_word_{load, store}
51589
51590     This patch simplifies post_word_{load,store} by using the preprocessor
51591     to eliminate redundant, copy-and-pasted code.
51592
51593     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
51594
51595 commit f979690ee337450b2030aba128f95b7a8d9881c0
51596 Author: Kumar Gala <galak@kernel.crashing.org>
51597 Date:   Thu May 15 15:13:08 2008 -0500
51598
51599     Fix warnings from gcc-4.3.0 build on a ppc host
51600
51601     * The cfi_flash.c memset fix actual allows the board to boot so there is
51602       a bit more going on here than just resolving warnings associated with
51603       uninitialized variables.
51604
51605     * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
51606       inline function 'ext2_find_next_zero_bit' which is not static
51607
51608     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51609
51610 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
51611 Author: Becky Bruce <becky.bruce@freescale.com>
51612 Date:   Wed May 14 13:09:51 2008 -0500
51613
51614     MPC512x: Change traps.c to not reference non-addressable memory
51615
51616     Currently, END_OF_RAM is used by the trap code to determine if
51617     we should attempt to access the stack pointer or not. However,
51618     on systems with a lot of RAM, only a subset of the RAM is
51619     guaranteed to be mapped in and accessible.  Change END_OF_RAM
51620     to use get_effective_memsize() instead of using the raw ram
51621     size out of the bd.
51622
51623     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
51624
51625 commit 81673e9ae14b771cd13faf19947192599cae3959
51626 Author: Kumar Gala <galak@kernel.crashing.org>
51627 Date:   Tue May 13 19:01:54 2008 -0500
51628
51629     Make sure common.h is the first include.
51630
51631     If common.h isn't first we can get CONFIG_ options defined in the
51632     board config file ignored.  This can cause an issue if any of those
51633     config options impact the size of types of data structures
51634     (eg CONFIG_PHYS_64BIT).
51635
51636     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51637
51638 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
51639 Author: Marian Balakowicz <m8@semihalf.com>
51640 Date:   Tue May 13 15:53:29 2008 +0200
51641
51642     Avoid initrd and logbuffer area overlaps
51643
51644     Add logbuffer to reserved LMB areas to prevent initrd allocation
51645     from overlaping with it.
51646
51647     Make sure to use correct logbuffer base address.
51648
51649     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
51650
51651 commit 6956d53d9934862507f83f0e3255dfd4662e7482
51652 Author: Sascha Laue <sascha.laue@liebherr.com>
51653 Date:   Tue May 13 13:29:54 2008 +0200
51654
51655     lwmon5: add memory-pattern-test to FPGA POST.
51656
51657 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
51658 Author: Becky Bruce <becky.bruce@freescale.com>
51659 Date:   Thu May 8 19:02:51 2008 -0500
51660
51661     PPC: 86xx Add bat registers to reginfo command
51662
51663     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
51664
51665 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
51666 Author: Becky Bruce <becky.bruce@freescale.com>
51667 Date:   Fri May 9 15:41:35 2008 -0500
51668
51669     PPC: Add print_bats() to lib_ppc/bat_rw.c
51670
51671     This function prints the values of all the BAT register
51672     pairs - I needed this for debug earlier this week; adding it to
51673     lib_ppc so others can use it (and add it to reginfo commands
51674     if so desired).
51675
51676     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
51677
51678 commit c148f24c15743a02e855636e6bed013bd121f7f2
51679 Author: Becky Bruce <becky.bruce@freescale.com>
51680 Date:   Thu May 15 21:29:04 2008 -0500
51681
51682     PPC: Change lib_ppc/bat_rw.c to use high bats
51683
51684     Currently, this code only deals with BATs 0-3, which makes
51685     it useless on systems that support BATs 4-7.  Add the
51686     support for these registers.
51687
51688     Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
51689
51690 commit 31d826722434931e1152a09d140187dcf72f8aac
51691 Author: Becky Bruce <becky.bruce@freescale.com>
51692 Date:   Thu May 8 19:02:12 2008 -0500
51693
51694     PPC: Create and use CONFIG_HIGH_BATS
51695
51696     Change all code that conditionally operates on high bat
51697     registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
51698     instead of the myriad ways this is done now.  Define the option
51699     for every config for which high bats are supported (and
51700     enabled by early boot, on parts where they're not always
51701     enabled)
51702
51703     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
51704
51705 commit aa3b8bf9c30065bb2ea852799d32db5020598495
51706 Author: Wolfgang Grandegger <wg@grandegger.com>
51707 Date:   Wed May 28 19:55:19 2008 +0200
51708
51709     E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
51710
51711     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
51712     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51713
51714 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
51715 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
51716 Date:   Wed May 28 13:06:25 2008 -0500
51717
51718     ColdFire: Add 10 base ethernet support for mcf5445x
51719
51720     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
51721     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51722
51723 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
51724 Author: Jason McMullan <mcmullan@netapp.com>
51725 Date:   Fri May 30 00:53:38 2008 +0900
51726
51727     mips: Add an 'include/asm/errno.h', like all other architectures
51728
51729     All other u-boot architectures have an include/asm/errno.h, so
51730     this change adds it to the mips include/asm-mips headers also.
51731
51732     Stolen from Linux 2.6.25.
51733
51734     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
51735
51736 commit e2ad8426624bac457acc6925b6ff408e9bf20466
51737 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51738 Date:   Fri May 30 00:53:38 2008 +0900
51739
51740     [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
51741
51742     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51743
51744 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
51745 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51746 Date:   Fri May 30 00:53:38 2008 +0900
51747
51748     [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
51749
51750     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51751
51752 commit bf462ae450a7f2eeeddc699ed345b391e3263540
51753 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51754 Date:   Fri May 30 00:53:37 2008 +0900
51755
51756     [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
51757
51758     No functional changes.
51759
51760     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51761
51762 commit 89a1550ec6b74452274a7a23127936e2c7eec711
51763 Author: Jason McMullan <mcmullan@netapp.com>
51764 Date:   Fri May 30 00:53:37 2008 +0900
51765
51766     mips: If CONFIG_CMD_SPI is defined, call spi_init()
51767
51768     The mips architecture currently does not call 'spi_init()' in the generic
51769     board initialization routine is CONFIG_CMD_SPI is defined.
51770
51771     This patch rectifies that problem.
51772
51773     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
51774     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51775
51776 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
51777 Author: Jason McMullan <mcmullan@netapp.com>
51778 Date:   Fri May 30 00:53:37 2008 +0900
51779
51780     [MIPS] lib_mips/board.c: Add nand_init
51781
51782     This patch adds the standard 'nand_init()' call to the mips generic
51783     'board_init_r()' call, bringing MIPS in line with the other architectures.
51784
51785     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
51786     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51787
51788 commit d6ac2ed893c2168738aee01579d6283af8d37045
51789 Author: Scott Wood <scottwood@freescale.com>
51790 Date:   Thu May 22 10:49:46 2008 -0500
51791
51792     Remove prototypes of nand_init() in favor of including nand.h.
51793
51794     Likewise with onenand_init().
51795
51796     Signed-off-by: Scott Wood <scottwood@freescale.com>
51797
51798 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
51799 Author: Scott Wood <scottwood@freescale.com>
51800 Date:   Thu May 22 10:49:00 2008 -0500
51801
51802     Make onenand_uboot.h self-sufficient.
51803
51804     Don't assume types are provided by previously included headers.
51805
51806     Signed-off-by: Scott Wood <scottwood@freescale.com>
51807
51808 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
51809 Author: Dirk Behme <dirk.behme@gmail.com>
51810 Date:   Wed Jan 16 14:26:59 2008 +0100
51811
51812     nand: Correct NAND erase percentage output
51813
51814     For NAND erase sizes smaller than one NAND erase block, erase
51815     percentage output becomes grater than 100% e.g.
51816
51817     -- cut --
51818       > nand info
51819     Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
51820       > nand erase 0x100000 0x2000
51821     NAND erase: device 0 offset 0x100000, size 0x2000
51822     Erasing at 0x100000 -- 200% complete.
51823     OK
51824       >
51825     -- cut --
51826
51827     Correct this and give user a warning that more is erased than specified:
51828
51829     -- cut --
51830       > nand erase 0x100000 0x2000
51831     NAND erase: device 0 offset 0x100000, size 0x2000
51832     Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
51833                Erasing 0x00004000 instead
51834     Erasing at 0x100000 -- 100% complete.
51835     OK
51836       >
51837     -- cut --
51838
51839     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
51840
51841 commit 5922db6c0948506be91e0de44e7a6863a18a417f
51842 Author: Stelian Pop <stelian@popies.net>
51843 Date:   Tue May 13 17:31:24 2008 +0200
51844
51845     Cleanup nand_info[] declaration.
51846
51847     The nand_info array is declared as extern in several .c files.
51848     Those days, nand.h contains a reference to the array, so there is
51849     no need to declare it elsewhere.
51850
51851     Signed-off-by: Stelian Pop <stelian@popies.net>
51852     Signed-off-by: Scott Wood <scottwood@freescale.com>
51853
51854 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
51855 Author: Scott Wood <scottwood@freescale.com>
51856 Date:   Mon May 19 09:30:43 2008 -0500
51857
51858     NAND: Provide a sane default for NAND_MAX_CHIPS.
51859
51860     This allows the header to be included regardless of whether a board's
51861     config file provides NAND-related defininitions.
51862
51863     Signed-off-by: Scott Wood <scottwood@freescale.com>
51864
51865 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
51866 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51867 Date:   Mon May 26 12:19:10 2008 +0200
51868
51869     avr32: Fix theoretical race in udelay()
51870
51871     If the specified delay is very short, the cycle counter may go past the
51872     "end" time we are waiting for before we get around to reading it.
51873
51874     Fix it by checking the different between the cycle count "now" and the
51875     cycle count at the beginning. This will work as long as the delay
51876     measured in number of cycles is below 2^31.
51877
51878     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51879
51880 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
51881 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51882 Date:   Wed May 21 13:01:09 2008 +0200
51883
51884     avr32: Compile atmel_mci.o conditionally
51885
51886     Remove #ifdef CONFIG_MMC from the source file and use conditional
51887     compilation in the Makefile instead.
51888
51889     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51890
51891 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
51892 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51893 Date:   Thu May 22 12:28:25 2008 +0200
51894
51895     avr32: Fix wrong error flags in atmel_mci driver
51896
51897     Make sure we check for CRC errors when sending commands that use CRC
51898     checking.
51899
51900     Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
51901     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51902
51903 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
51904 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51905 Date:   Wed May 21 11:10:59 2008 +0200
51906
51907     avr32: Fix two warnings in atmel_mci.c
51908
51909     The warnings are harmless but annoying. Let's fix them.
51910
51911     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51912
51913 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
51914 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51915 Date:   Mon May 19 11:36:28 2008 +0200
51916
51917     avr32: Rework SDRAM initialization code
51918
51919     This cleans up the SDRAM initialization and related code a bit, and
51920     allows faster booting.
51921
51922       * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
51923       * Remove memory test from sdram_init() and make caller responsible
51924         for verifying the SDRAM and determining its size.
51925       * Remove base_address member from struct sdram_config (was sdram_info)
51926       * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
51927       * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
51928
51929     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51930
51931 commit 95107b7c028806919630bf02c653aa8f4f867c94
51932 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51933 Date:   Mon May 19 11:27:37 2008 +0200
51934
51935     avr32: Do stricter stack checking in the exception handler
51936
51937     Don't do a stack dump if the stack pointer is outside the memory area
51938     reserved for stack.
51939
51940     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51941
51942 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
51943 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51944 Date:   Fri May 2 15:32:57 2008 +0200
51945
51946     avr32: Use the same entry point for reset and exception handling
51947
51948     Since the reset vector is always aligned to a very large boundary, we
51949     can save a couple of KB worth of alignment padding by placing the
51950     exception vectors at the same address.
51951
51952     Deciding which one it is is easy: If we're handling an exception, the
51953     CPU is in Exception mode. If we're starting up after reset, the CPU is
51954     in Supervisor mode. So this adds a very minimal overhead to the reset
51955     path (only executed once) and the exception handling path (normally
51956     never executed at all.)
51957
51958     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51959
51960 commit 0c16eed2189a190bd5655b33c029f809a9b31128
51961 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51962 Date:   Fri May 2 15:24:22 2008 +0200
51963
51964     avr32: Put memset in its own section
51965
51966     All C code is compiled with -ffunction-sections -fdata-sections.
51967     Assembly functions should get their own sections as well so that
51968     everything looks consistent.
51969
51970     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51971
51972 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
51973 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51974 Date:   Fri May 2 15:21:40 2008 +0200
51975
51976     avr32: Rename pm_init() as clk_init() and make SoC-specific
51977
51978     pm_init() was always more about clock initialization than anything
51979     else. Dealing with PLLs, clock gating and such is also inherently
51980     SoC-specific, so move it into a SoC-specific directory.
51981
51982     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51983
51984 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
51985 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51986 Date:   Wed Apr 30 16:15:57 2008 +0200
51987
51988     avr32: Use new-style Makefile for the at32ap platform
51989
51990     This makes it easier to avoid compiling certain files later.
51991
51992     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51993
51994 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
51995 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51996 Date:   Wed Apr 30 14:36:47 2008 +0200
51997
51998     avr32: Remove unused file cpu/at32ap/pm.c
51999
52000     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52001
52002 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
52003 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52004 Date:   Wed Apr 30 14:19:28 2008 +0200
52005
52006     avr32: Clean up the HMATRIX code
52007
52008     Rework the HMATRIX configuration interface so that it becomes easier
52009     to configure the HMATRIX for boards with special needs, and add new
52010     parts.
52011
52012     The HMATRIX header file has been split into a general,
52013     chip-independent part with register definitions, etc. and a
52014     chip-specific part with SFR bitfield definitions and master/slave
52015     identifiers.
52016
52017     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52018
52019 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
52020 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52021 Date:   Thu Nov 22 12:14:11 2007 +0100
52022
52023     avr32: Add support for the ATSTK1006 board
52024
52025     This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
52026     board. It's currently in production and will be available soon.
52027
52028     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52029
52030 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
52031 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52032 Date:   Tue Apr 29 12:53:05 2008 +0200
52033
52034     avr32: Get rid of the .flashprog section
52035
52036     The .flashprog section was only needed back when we were running
52037     directly from flash, and it's even more useless on NGW100 since it
52038     uses the CFI flash driver which never used this workaround in the
52039     first place.
52040
52041     Remove it on STK1000 as well, and get rid of all the associated code and
52042     annotations.
52043
52044     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52045
52046 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
52047 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52048 Date:   Wed Apr 30 13:09:56 2008 +0200
52049
52050     avr32: Use correct condition around macb clock accessors
52051
52052     get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
52053     the chip has a MACB controller, not when it has a USART.
52054
52055     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52056
52057 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
52058 Author: David Brownell <david-b@pacbell.net>
52059 Date:   Wed Apr 16 22:57:58 2008 -0700
52060
52061     avr32: Disable the AP7000 internal watchdog on startup
52062
52063     This patch forces the watchdog off in all cases.  That will at least
52064     get rid of the constant reboot cycle, though it won't let the watchdog
52065     actually run in the new kernels:  its probe() comes up with a polite
52066     warning.
52067
52068     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52069
52070 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
52071 Author: David Brownell <david-b@pacbell.net>
52072 Date:   Fri Feb 22 12:54:39 2008 -0800
52073
52074     avr32: stk1002 and ngw100 convergence
52075
52076     Make STK1002 and NGW100 boards act more alike:
52077       - STK boards can use as many arguments as NGW
52078       - STK boards don't need to manage FPGAs either
52079       - NGW commands should match STK ones
52080
52081     Also spell U-Boot right in prompts for STK1002 and NGW100.
52082
52083     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
52084     [haavard.skinnemoen@atmel.com: update STK100[34] as well]
52085     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52086
52087 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
52088 Author: Sergei Poselenov <sposelenov@emcraft.com>
52089 Date:   Tue May 27 13:47:00 2008 +0200
52090
52091     Socrates: Fix PCI bus frequency report
52092
52093     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52094
52095 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
52096 Author: Sergei Poselenov <sposelenov@emcraft.com>
52097 Date:   Tue May 27 11:49:13 2008 +0200
52098
52099     Socrates: Added USB support.
52100
52101     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52102
52103 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
52104 Author: Sergei Poselenov <sposelenov@emcraft.com>
52105 Date:   Tue May 27 11:35:02 2008 +0200
52106
52107     USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
52108
52109     In case of several PCI USB controllers on a board this variable
52110     specifys which controller to use.
52111     See doc/README.generic_usb_ohci for details.
52112
52113     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52114
52115 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
52116 Author: Sergei Poselenov <sposelenov@emcraft.com>
52117 Date:   Tue May 27 10:36:07 2008 +0200
52118
52119     Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
52120
52121     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52122
52123 commit 83e9d7a2614d4006b92690afa3390c291734267e
52124 Author: Sergei Poselenov <sposelenov@emcraft.com>
52125 Date:   Mon May 26 18:16:04 2008 +0200
52126
52127     Socrates: Config file cleanup.
52128
52129     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52130
52131 commit 602cac1389b755b223272f2328a47e6f8c240848
52132 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52133 Date:   Sat May 24 12:47:46 2008 +0200
52134
52135     MAKEALL: add at91 list
52136
52137     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52138
52139 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
52140 Author: Ron Madrid <ron_madrid@sbcglobal.net>
52141 Date:   Fri May 23 15:37:05 2008 -0700
52142
52143     Add Marvell 88E1118 support for TSEC
52144
52145     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
52146     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
52147
52148 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
52149 Author: Jens Gehrlein <sew_s@tqs.de>
52150 Date:   Mon May 5 14:06:11 2008 +0200
52151
52152     smc911x: add 16 bit support
52153
52154     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
52155     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
52156
52157 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
52158 Author: Christian Eggers <ceggers@gmx.de>
52159 Date:   Wed May 21 21:29:10 2008 +0200
52160
52161     Fix endianess conversion in usb_ohci.c
52162
52163     Sorry, I forgot this line:
52164
52165     Signed-off-by: Christian Eggers <ceggers@gmx.de>
52166
52167     I think this must be swapped (result may be equal).
52168
52169 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
52170 Author: Christian Eggers <ceggers@gmx.de>
52171 Date:   Wed May 21 22:12:00 2008 +0200
52172
52173     USB: replace old swap_ with proper endianess conversion macros
52174
52175     Signed-off-by: Christian Eggers <ceggers@gmx.de>
52176     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
52177
52178 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
52179 Author: Christian Eggers <ceggers@gmx.de>
52180 Date:   Wed May 21 21:29:10 2008 +0200
52181
52182     Fix endianess conversion in usb_ohci.c
52183
52184     Signed-off-by: Christian Eggers <ceggers@gmx.de>
52185     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
52186
52187 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
52188 Author: Sergei Poselenov <sposelenov@emcraft.com>
52189 Date:   Thu May 22 01:15:53 2008 +0200
52190
52191     USB: add support for multiple PCI OHCI controllers
52192
52193     Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
52194     In case of several PCI USB controllers on a board this variable
52195     specifys which controller to use.
52196
52197     Also add USB support for sokrates board.
52198
52199     See doc/README.generic_usb_ohci for details.
52200
52201     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52202     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
52203
52204 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
52205 Author: Wolfgang Denk <wd@denx.de>
52206 Date:   Wed May 21 16:56:08 2008 +0200
52207
52208     Fix some whitespace issues
52209
52210     introduced by 53677ef18 "Big white-space cleanup."
52211
52212     Signed-off-by: Wolfgang Denk <wd@denx.de>
52213
52214 commit 4416603aeb06861b468b06a981e52c3ff805db7b
52215 Author: York Sun <yorksun@freescale.com>
52216 Date:   Mon May 12 14:36:39 2008 -0500
52217
52218     Make ads5121 out-of-tree compiling safe
52219
52220     Reuse the existing DIU driver in board/freescale/common.
52221
52222     Signed-off-by: York Sun <yorksun@freescale.com>
52223
52224 commit 0e1bad47cd345c76c91a64caf41011e431b62599
52225 Author: York Sun <yorksun@freescale.com>
52226 Date:   Mon May 5 10:20:01 2008 -0500
52227
52228     Adding DIU support for Freescale 5121ADS
52229
52230     Add DIU and cfb console support to FSL 5121ADS board.
52231
52232     Use #define CONFIG_VIDEO in config file to enable fb console.
52233
52234     Signed-off-by: York Sun <yorksun@freescale.com>
52235
52236 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
52237 Author: York Sun <yorksun@freescale.com>
52238 Date:   Mon May 5 10:20:00 2008 -0500
52239
52240     Replace DPRINTF with debug
52241
52242     Remove DPRINTF macro and replace it with generic debug macro.
52243
52244     Signed-off-by: York Sun <yorksun@freescale.com>
52245
52246 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
52247 Author: York Sun <yorksun@freescale.com>
52248 Date:   Mon May 5 10:19:59 2008 -0500
52249
52250     Move pixel clock setting to board file
52251
52252     The clock divider has different format in 5121 and 8610. This patch moves it to
52253     board specific code.
52254
52255     Signed-off-by: York Sun <yorksun@freescale.com>
52256
52257 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
52258 Author: Wolfgang Denk <wd@denx.de>
52259 Date:   Tue May 20 16:00:29 2008 +0200
52260
52261     Big white-space cleanup.
52262
52263     This commit gets rid of a huge amount of silly white-space issues.
52264     Especially, all sequences of SPACEs followed by TAB characters get
52265     removed (unless they appear in print statements).
52266
52267     Also remove all embedded "vim:" and "vi:" statements which hide
52268     indentation problems.
52269
52270     Signed-off-by: Wolfgang Denk <wd@denx.de>
52271
52272 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
52273 Author: Sergei Poselenov <sposelenov@emcraft.com>
52274 Date:   Thu May 8 17:46:23 2008 +0200
52275
52276     socrates: fix second TSEC configuration (it is actually TSEC3)
52277
52278     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52279
52280 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
52281 Author: Sergei Poselenov <sposelenov@emcraft.com>
52282 Date:   Thu May 8 14:17:08 2008 +0200
52283
52284     Fixed reset for socrates
52285
52286     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52287
52288 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
52289 Author: Sergei Poselenov <sposelenov@emcraft.com>
52290 Date:   Wed May 7 15:10:49 2008 +0200
52291
52292     socrates: changes to support FDT
52293
52294     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52295     Signed-off-by: Wolfgang Denk <wd@denx.de>
52296
52297 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
52298 Author: Sergei Poselenov <sposelenov@emcraft.com>
52299 Date:   Wed Apr 30 11:42:50 2008 +0200
52300
52301     Initial support for "Socrates" board
52302
52303     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52304
52305 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
52306 Author: Yuri Tikhonov <yur@emcraft.com>
52307 Date:   Thu May 8 15:46:42 2008 +0200
52308
52309     POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
52310
52311     This way we become able to utilize the full post_log_word for POST
52312     activities (overwise, POST ECC, which has 0x8000 ID, could be
52313     erroneously treated as started in post_output_backlog() even if there
52314     was actually no POST ECC run (because of OCM POST failure, for
52315     example).
52316
52317     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52318
52319 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
52320 Author: Yuri Tikhonov <yur@emcraft.com>
52321 Date:   Thu May 8 15:46:02 2008 +0200
52322
52323     POST: mark OCM test as POST_STOP
52324
52325     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52326
52327 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
52328 Author: Yuri Tikhonov <yur@emcraft.com>
52329 Date:   Thu May 8 15:45:26 2008 +0200
52330
52331     POST: add POST_STOP flag
52332
52333     Don't run futher tests in case of a test fails that is marked as
52334     POST_STOP.
52335
52336     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52337     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52338
52339 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
52340 Author: Yuri Tikhonov <yur@emcraft.com>
52341 Date:   Thu May 8 15:44:16 2008 +0200
52342
52343     POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
52344
52345     Switch the OCM testid with the codec one. The reason is that current
52346     implementation requires the POST_ROM testid to fit into lower 16
52347     bits, and the codec test will never run with POST_ROM hopefully.
52348
52349     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52350
52351 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
52352 Author: Yuri Tikhonov <yur@emcraft.com>
52353 Date:   Thu May 8 15:43:28 2008 +0200
52354
52355     lwmon5: enable OCM post test on lwmon5 board
52356
52357     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52358
52359 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
52360 Author: Yuri Tikhonov <yur@emcraft.com>
52361 Date:   Thu May 8 15:42:47 2008 +0200
52362
52363     POST: OCM test added.
52364
52365     Added OCM test to POST layer. This version runs before all other tests
52366     but doesn't yet interrupt post sequence on failure.
52367
52368     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52369     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52370
52371 commit 6891260bdd935a382c95d9fa333922b0dfded68a
52372 Author: Yuri Tikhonov <yur@emcraft.com>
52373 Date:   Thu May 8 15:40:39 2008 +0200
52374
52375     POST: typo fix
52376
52377     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52378
52379 commit 727f63334676e760877d43bfb8f0e9331ac8b101
52380 Author: Hebbar <gururajakr@sanyo.co.in>
52381 Date:   Tue May 20 02:16:36 2008 -0700
52382
52383     common/usb.c: fix incorrect escape sequence
52384
52385     Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
52386
52387 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
52388 Author: York Sun <yorksun@freescale.com>
52389 Date:   Thu May 15 15:26:27 2008 -0500
52390
52391     Fix 8313ERDB board configuration
52392
52393     Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
52394     Correct TSEC1 vs TSEC2 assignment.
52395     Define ETHADDR and ETH1ADDR always.
52396
52397     Signed-off-by: York Sun <yorksun@freescale.com>
52398     Signed-off-by: Timur Tabi <timur@freescale.com>
52399
52400 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
52401 Author: Jon Loeliger <jdl@freescale.com>
52402 Date:   Mon May 19 09:47:25 2008 -0500
52403
52404     mpc86xx: Removed unused and unconfigured memory test code.
52405
52406     Besides, other common code exists.
52407
52408     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52409
52410 commit 180a90abdae72587c0f679edf8991455e559440d
52411 Author: Wolfgang Denk <wd@denx.de>
52412 Date:   Mon May 19 12:47:11 2008 +0200
52413
52414     Release v1.3.3
52415
52416     Update CHANGELOG for release.
52417
52418     Signed-off-by: Wolfgang Denk <wd@denx.de>
52419
52420 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
52421 Author: Stefan Roese <sr@denx.de>
52422 Date:   Mon May 19 07:14:38 2008 +0200
52423
52424     ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
52425
52426     When SATA is selected (via jumper J6) we need to disable the first PCIe
52427     node in the device tree, so that Linux doesn't initialize it. Otherwise
52428     the Linux SATA driver will fail to detect the devices.
52429
52430     The same goes the other way around too. So if PCIe is selected we need
52431     to disable the SATA node in the device tree.
52432
52433     This is because PCIe port 0 and SATA on 460EX share the same pins
52434     (multiplexed) and we have to configure in U-Boot which peripheral is
52435     enabled.
52436
52437     Signed-off-by: Stefan Roese <sr@denx.de>
52438
52439 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
52440 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52441 Date:   Sun May 18 19:09:58 2008 +0200
52442
52443     i386: Fix multiple definitions of __show_boot_progress
52444
52445     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52446
52447 commit 311f3446930c1e64c12026c1cfd00500b05be52d
52448 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52449 Date:   Sun May 18 19:09:57 2008 +0200
52450
52451     sc530_spunk: add missing SOBJS entry
52452
52453     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52454
52455 commit a559317143b4f95927b08cd388707e6f077e95fa
52456 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52457 Date:   Sun May 18 19:09:56 2008 +0200
52458
52459     sc520_spunk: Fix flash
52460
52461     flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
52462     flash.c:398: error: label at end of compound statement
52463
52464     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52465
52466 commit 91f221317af64191ee8caf303ea9305943158691
52467 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52468 Date:   Sun May 18 19:09:49 2008 +0200
52469
52470     drivers/pcmcia: add missing i82365
52471
52472     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52473
52474 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
52475 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52476 Date:   Sun May 18 19:09:47 2008 +0200
52477
52478     i386/bootm: remove unused var
52479
52480     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52481
52482 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
52483 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52484 Date:   Sun May 18 19:09:45 2008 +0200
52485
52486     example/gitignore: update with all generated examples
52487
52488     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52489
52490 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
52491 Author: Wolfgang Denk <wd@denx.de>
52492 Date:   Thu May 15 00:42:45 2008 +0200
52493
52494     TQM8272: fix out-of-tree building
52495
52496     ...and add to MAKEALL script
52497
52498     Signed-off-by: Wolfgang Denk <wd@denx.de>
52499
52500 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
52501 Author: Wolfgang Denk <wd@denx.de>
52502 Date:   Wed May 14 23:34:53 2008 +0200
52503
52504     environment: fix bug introduced by commit a8409f4f1ac8
52505
52506     env_get_char is not a function, but a pointer to one.
52507
52508     Signed-off-by: Wolfgang Denk <wd@denx.de>
52509
52510 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
52511 Author: Gary Jennejohn <garyj@denx.de>
52512 Date:   Wed May 14 13:39:22 2008 +0200
52513
52514     ppc4xx: QUAD100HD: Allow the environment to be put into flash.
52515
52516     After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect.  Also
52517     use a redundant environment.
52518
52519     Signed-off-by: Gary Jennejohn <garyj@denx.de>
52520
52521 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
52522 Author: Wolfgang Denk <wd@denx.de>
52523 Date:   Wed May 14 13:55:30 2008 +0200
52524
52525     Fix config files for out-of-tree building
52526
52527     Several board/<...>/config.mk files include dynamically built (by
52528     the Makefile) config files but used the wrong file name of
52529         $(TOPDIR)/board/$(BOARDDIR)/config.tmp
52530     instead if the correct
52531         $(OBJTREE)/board/$(BOARDDIR)/config.tmp
52532
52533     The bug is nasty because the build result is correct for the (normal)
52534     in-tree builds, and because 'sinclude' is used no errors get raised
52535     even for out-of-tree build tests. But out-of-tree builds use an
52536     incomplete and thus usually incorrect configuration...
52537
52538     Signed-off-by: Wolfgang Denk <wd@denx.de>
52539
52540 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
52541 Author: Stefan Roese <sr@denx.de>
52542 Date:   Wed May 14 13:40:03 2008 +0200
52543
52544     ppc4xx: Fix bogus Canyonlands config.mk
52545
52546     This patch fixes the canyonlands config.mk file to enable correct
52547     out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
52548
52549     Signed-off-by: Stefan Roese <sr@denx.de>
52550
52551 commit fdd1247a66d788a3446244f6fde9955a93c26322
52552 Author: Stefan Roese <sr@denx.de>
52553 Date:   Wed May 14 10:32:32 2008 +0200
52554
52555     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
52556
52557     Canyonlands has a file ddr2_fixed.c which needs special treatment when
52558     building in separate directory. It has to be linked to build directory
52559     otherwise it is not seen.
52560
52561     Signed-off-by: Stefan Roese <sr@denx.de>
52562
52563 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
52564 Author: Wolfgang Denk <wd@denx.de>
52565 Date:   Wed May 14 12:22:49 2008 +0200
52566
52567     environment: cleanup prototype declarations of env functions.
52568
52569     Signed-off-by: Wolfgang Denk <wd@denx.de>
52570
52571 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
52572 Author: Wolfgang Denk <wd@denx.de>
52573 Date:   Wed May 14 12:21:48 2008 +0200
52574
52575     linkstation_HGLAN: Fix out of tree building.
52576
52577     Signed-off-by: Wolfgang Denk <wd@denx.de>
52578
52579 commit 085551c05ca09e6c491ea11a1c6727a36776a545
52580 Author: Stefan Roese <sr@denx.de>
52581 Date:   Wed May 14 10:32:32 2008 +0200
52582
52583     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
52584
52585     Canyonlands has a file ddr2_fixed.c which needs special treatment when
52586     building in separate directory. It has to be linked to build directory
52587     otherwise it is not seen.
52588
52589     Signed-off-by: Stefan Roese <sr@denx.de>
52590
52591 commit 1510b82d50615f344e89d42533e8224cce067dc0
52592 Author: Wolfgang Denk <wd@denx.de>
52593 Date:   Tue May 13 23:15:52 2008 +0200
52594
52595     Makefile: fix "error: version_autogenerated.h: No such file or directory"
52596
52597     Signed-off-by: Wolfgang Denk <wd@denx.de>
52598
52599 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
52600 Author: Stelian Pop <stelian@popies.net>
52601 Date:   Tue May 13 17:31:24 2008 +0200
52602
52603     Cleanup nand_info[] declaration.
52604
52605     The nand_info array is declared as extern in several .c files.
52606     Those days, nand.h contains a reference to the array, so there is
52607     no need to declare it elsewhere.
52608
52609     Signed-off-by: Stelian Pop <stelian@popies.net>
52610     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52611
52612 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
52613 Author: Stefan Roese <sr@denx.de>
52614 Date:   Tue May 13 20:22:01 2008 +0200
52615
52616     ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
52617
52618     Signed-off-by: Stefan Roese <sr@denx.de>
52619
52620 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
52621 Author: Wolfgang Denk <wd@denx.de>
52622 Date:   Mon May 12 01:11:21 2008 +0200
52623
52624     Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
52625
52626     This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
52627     which broke many PowerPC boards.
52628
52629 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
52630 Author: Wolfgang Denk <wd@denx.de>
52631 Date:   Mon May 12 00:56:28 2008 +0200
52632
52633     Revert "Avoid initrd and logbuffer area overlaps"
52634
52635     This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
52636     which breaks building on all PPC boards that don't use a log buffer.
52637
52638 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
52639 Author: Nick Spence <nick.spence@freescale.com>
52640 Date:   Sat May 10 14:02:04 2008 -0700
52641
52642     Fix offset calculation for multi-type legacy images.
52643
52644     Calculation of tail was incorrect when size % 4 == 0.
52645
52646     New code removes the conditional and does the same thing but with arithmetic
52647
52648     Signed-off-by: Nick Spence <nick.spence@freescale.com>
52649
52650 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
52651 Author: Wolfgang Denk <wd@denx.de>
52652 Date:   Mon May 12 00:40:58 2008 +0200
52653
52654     Revert "Change env_get_char from a global function ptr to a function."
52655
52656     This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
52657     which is known to break booting from dataflash and NAND.
52658
52659 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
52660 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52661 Date:   Sun May 11 23:13:57 2008 +0200
52662
52663     API: remove duplicate syscall check
52664
52665     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52666
52667 commit 67e3beb52c320b0a31cf030716c99392cde2d532
52668 Author: Stelian Pop <stelian@popies.net>
52669 Date:   Fri May 9 21:46:51 2008 +0200
52670
52671     AT91: Cleanup unused config header file definitions.
52672
52673     CONFIG_ENV_OVERWRITE is commented out in the config header files,
52674     so let's cleanup the files by removing the whole definition.
52675
52676     Signed-off-by: Stelian Pop <stelian@popies.net>
52677     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52678
52679 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
52680 Author: Stelian Pop <stelian@popies.net>
52681 Date:   Thu May 8 14:52:34 2008 +0200
52682
52683     Support AT91CAP9 revC CPUs
52684
52685     The AT91CAP9 revC CPU has a few differences over the previous,
52686     revB CPU which was distributed in small quantities only (revA was
52687     an internal Atmel product only).
52688
52689     The revC silicon needs a special initialisation sequence to
52690     switch from the internal (imprecise) RC oscillator to the
52691     external 32k clock.
52692
52693     Signed-off-by: Stelian Pop <stelian@popies.net>
52694     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52695
52696 commit 098b7b4b441b12c2a64dd517930f43c793542759
52697 Author: Stelian Pop <stelian@popies.net>
52698 Date:   Thu May 8 14:52:33 2008 +0200
52699
52700     Use custom logo for Atmel boards
52701
52702     This patch adds a custom vendor logo for the Atmel AT91 boards.
52703
52704     Signed-off-by: Stelian Pop <stelian@popies.net>
52705     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52706
52707 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
52708 Author: Stelian Pop <stelian@popies.net>
52709 Date:   Thu May 8 14:52:32 2008 +0200
52710
52711     AT91SAM9RLEK: hook up the ATMEL LCD driver
52712
52713     This patch makes the necessary adaptations (PIO configurations and
52714     defines in config header file) to hook up the Atmel LCD driver to the
52715     AT91SAM9RLEK board.
52716
52717     Signed-off-by: Stelian Pop <stelian@popies.net>
52718     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52719
52720 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
52721 Author: Stelian Pop <stelian@popies.net>
52722 Date:   Thu May 8 14:52:31 2008 +0200
52723
52724     AT91SAM9263EK: hook up the ATMEL LCD driver
52725
52726     This patch makes the necessary adaptations (PIO configurations and
52727     defines in config header file) to hook up the Atmel LCD driver to the
52728     AT91SAM9263EK board.
52729
52730     Signed-off-by: Stelian Pop <stelian@popies.net>
52731     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52732
52733 commit 820f2a958325061a446115f3035e48e4726b3390
52734 Author: Stelian Pop <stelian@popies.net>
52735 Date:   Thu May 8 14:52:30 2008 +0200
52736
52737     AT91SAM9261EK: hook up the ATMEL LCD driver
52738
52739     This patch makes the necessary adaptations (PIO configurations and
52740     defines in config header file) to hook up the Atmel LCD driver to the
52741     AT91SAM9261EK board.
52742
52743     Signed-off-by: Stelian Pop <stelian@popies.net>
52744     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52745
52746 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
52747 Author: Stelian Pop <stelian@popies.net>
52748 Date:   Thu May 8 14:52:29 2008 +0200
52749
52750     AT91CAP9ADK: hook up the ATMEL LCD driver
52751
52752     This patch makes the necessary adaptations (PIO configurations and
52753     defines in config header file) to hook up the Atmel LCD driver to the
52754     AT91CAP9ADK board.
52755
52756     Signed-off-by: Stelian Pop <stelian@popies.net>
52757     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52758
52759 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
52760 Author: Stelian Pop <stelian@popies.net>
52761 Date:   Fri May 9 21:57:18 2008 +0200
52762
52763     Add ATMEL LCD driver
52764
52765     This patch adds support for the ATMEL LCDC driver which is used on some
52766     AT91 and AVR platforms.
52767
52768     Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
52769     AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
52770
52771     Signed-off-by: Stelian Pop <stelian@popies.net>
52772     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52773
52774 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
52775 Author: Stelian Pop <stelian@popies.net>
52776 Date:   Thu May 8 18:52:25 2008 +0200
52777
52778     AT91SAM9RLEK support
52779
52780     This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
52781     board.
52782
52783     Signed-off-by: Stelian Pop <stelian@popies.net>
52784     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52785
52786 commit 8e429b3eee23927c1222679f6b6f53667b21595c
52787 Author: Stelian Pop <stelian@popies.net>
52788 Date:   Thu May 8 18:52:23 2008 +0200
52789
52790     AT91SAM9263EK support
52791
52792     This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
52793     board.
52794
52795     Signed-off-by: Stelian Pop <stelian@popies.net>
52796     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52797
52798 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
52799 Author: Stelian Pop <stelian@popies.net>
52800 Date:   Thu May 8 20:52:22 2008 +0200
52801
52802     AT91SAM9261EK support
52803
52804     This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
52805     board.
52806
52807     Signed-off-by: Stelian Pop <stelian@popies.net>
52808     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52809
52810 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
52811 Author: Stelian Pop <stelian@popies.net>
52812 Date:   Thu May 8 20:52:21 2008 +0200
52813
52814     AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
52815
52816     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
52817     in order to cope with the changes in DataFlash partitionning scheme
52818     (cset c3a60cb3).
52819
52820     Signed-off-by: Stelian Pop <stelian@popies.net>
52821     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52822
52823 commit 96996ac25d5222611a8888968db6e53a6d3726da
52824 Author: Stelian Pop <stelian@popies.net>
52825 Date:   Thu May 8 20:52:20 2008 +0200
52826
52827     AT91SAM9260EK: Normalize BOOTARGS
52828
52829     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
52830     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
52831     variable.
52832
52833     Signed-off-by: Stelian Pop <stelian@popies.net>
52834     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52835
52836 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
52837 Author: Stelian Pop <stelian@popies.net>
52838 Date:   Thu May 8 20:52:19 2008 +0200
52839
52840     AT91SAM9260EK: Normalize SPI timings
52841
52842     This patch changes the SPI timings to closely match the ones
52843     used by the Linux kernel and the Atmel's own bootstrap project.
52844
52845     Signed-off-by: Stelian Pop <stelian@popies.net>
52846     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52847
52848 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
52849 Author: Stelian Pop <stelian@popies.net>
52850 Date:   Thu May 8 20:52:18 2008 +0200
52851
52852     AT91SAM9260EK: Handle 8 or 16 bit NAND
52853
52854     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
52855     makes the support configurable in the board config header file
52856     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
52857
52858     Signed-off-by: Stelian Pop <stelian@popies.net>
52859     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52860
52861 commit ab52640fc01624e208424e527af0b7b3a5a65a12
52862 Author: Stelian Pop <stelian@popies.net>
52863 Date:   Thu May 8 20:52:17 2008 +0200
52864
52865     AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
52866
52867     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
52868     in order to cope with the changes in DataFlash partitionning scheme
52869     (cset c3a60cb3).
52870
52871     Signed-off-by: Stelian Pop <stelian@popies.net>
52872     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52873
52874 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
52875 Author: Stelian Pop <stelian@popies.net>
52876 Date:   Thu May 8 20:52:16 2008 +0200
52877
52878     AT91CAP9ADK: Normalize BOOTARGS
52879
52880     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
52881     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
52882     variable.
52883
52884     Signed-off-by: Stelian Pop <stelian@popies.net>
52885     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52886
52887 commit 93da48b910511911ce110656e17ed733c8ac4c45
52888 Author: Stelian Pop <stelian@popies.net>
52889 Date:   Thu May 8 20:52:15 2008 +0200
52890
52891     AT91CAP9ADK: Normalize SPI timings
52892
52893     This patch changes the SPI timings to closely match the ones
52894     used by the Linux kernel and the Atmel's own bootstrap project.
52895
52896     Signed-off-by: Stelian Pop <stelian@popies.net>
52897     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52898
52899 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
52900 Author: Stelian Pop <stelian@popies.net>
52901 Date:   Thu May 8 20:52:14 2008 +0200
52902
52903     AT91CAP9ADK: Handle 8 or 16 bit NAND
52904
52905     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
52906     makes the support configurable in the board config header file
52907     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
52908
52909     Signed-off-by: Stelian Pop <stelian@popies.net>
52910     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52911
52912 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
52913 Author: Stelian Pop <stelian@popies.net>
52914 Date:   Thu May 8 20:52:13 2008 +0200
52915
52916     Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
52917
52918     All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
52919     below avoids the duplication of u-boot.lds by putting the file in the
52920     cpu directory instead of the board one.
52921
52922     Signed-off-by: Stelian Pop <stelian@popies.net>
52923     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52924
52925 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
52926 Author: Stelian Pop <stelian@popies.net>
52927 Date:   Thu May 8 20:52:12 2008 +0200
52928
52929     Add proper copyright notices in Atmel boards Makefiles
52930
52931     The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
52932     copyright notice. This patch adds the missing pieces.
52933
52934     Signed-off-by: Stelian Pop <stelian@popies.net>
52935     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52936
52937 commit e817a042cef6164bf26fee86f90326f2ec9e6745
52938 Author: Stelian Pop <stelian@popies.net>
52939 Date:   Thu May 8 20:52:11 2008 +0200
52940
52941     Add copyright information in Atmel boards partition.c
52942
52943     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
52944     the new created files. This patch fixes the problem.
52945
52946     Signed-off-by: Stelian Pop <stelian@popies.net>
52947     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52948
52949 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
52950 Author: Stelian Pop <stelian@popies.net>
52951 Date:   Thu May 8 20:52:10 2008 +0200
52952
52953     Update origin and copyright information in arch-at91sam9 header files
52954
52955     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
52956     copied from the Linux kernel sources. This patch explicitly specifies
52957     this origin for all the copied headers, and for those missing copyright
52958     information, adds it.
52959
52960     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
52961     in the latest kernel sources by 'at91sam9_smc.h'.
52962
52963     The copyright information has been confirmed by the AT91 Linux kernel
52964     maintainer, Andrew Victor <avictor.za@gmail.com>.
52965
52966     Signed-off-by: Stelian Pop <stelian@popies.net>
52967     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52968
52969 commit 79dd1712689d6a5031d7cbff54957049680751c7
52970 Author: Markus Klotzbücher <mk@denx.de>
52971 Date:   Thu May 8 16:00:55 2008 +0200
52972
52973     ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
52974
52975     When using dhcp/bootp the "netmask" environment variable is not set
52976     because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
52977     desireable, so the following patch adds this this option to the board
52978     config.
52979
52980     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
52981     Signed-off-by: Stefan Roese <sr@denx.de>
52982
52983 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
52984 Author: Stefan Roese <sr@denx.de>
52985 Date:   Sat May 10 10:30:36 2008 +0200
52986
52987     ppc4xx: Update Makalu defconfig to use device-tree booting as default
52988
52989     This patch reworks the default environment on Makalu. Now "net_nfs" for
52990     example uses the device-tree style booting formerly know as "net_nfs_fdt".
52991     Also the addresses in RAM were changed because of the new image booting
52992     support, which check for image overwriting. So the addresses needed to
52993     get adjusted.
52994
52995     Signed-off-by: Stefan Roese <sr@denx.de>
52996
52997 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
52998 Author: Becky Bruce <bgill@freescale.com>
52999 Date:   Wed May 7 13:28:16 2008 -0500
53000
53001     PPC: fix map_physmem build warning
53002
53003     map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
53004     enabled.  This quiets the warning.
53005
53006     Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
53007
53008 commit 36f32675f40292002ee1fed252c180a43022d2d4
53009 Author: Becky Bruce <bgill@freescale.com>
53010 Date:   Wed May 7 13:24:57 2008 -0500
53011
53012     Update pci code to use phys_addr_t
53013
53014     Physical addrs need to be represented by phys_addr_t, not
53015     unsigned long.  Otherwise, systems that use CONFIG_PHYS_64BIT
53016     are going to fail mightily.
53017
53018     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
53019
53020 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
53021 Author: Nick Spence <nick.spence@freescale.com>
53022 Date:   Thu May 8 22:32:22 2008 -0700
53023
53024     Support legacy multi-type images without FDT section.
53025
53026     This patch enables legacy multi-type images containing only a Linux kernel
53027     and root file system to be loaded, maintaining compatibility with previous
53028     versions of u-boot.
53029
53030     This is required when using old image files such as a Linux 2.4 kernel /
53031     filesystem.
53032
53033     Signed-off-by: Nick Spence <nick.spence@freescale.com>
53034     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53035
53036 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
53037 Author: Wolfgang Denk <wd@denx.de>
53038 Date:   Sat May 10 00:38:02 2008 +0200
53039
53040     Update CHANGELOG.
53041
53042     Signed-off-by: Wolfgang Denk <wd@denx.de>
53043
53044 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
53045 Author: Wolfgang Denk <wd@denx.de>
53046 Date:   Sat May 10 00:36:09 2008 +0200
53047
53048     post/cpu/ppc4xx/Makefile: line length cleanup
53049
53050     Signed-off-by: Wolfgang Denk <wd@denx.de>
53051
53052 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
53053 Author: Stelian Pop <stelian@popies.net>
53054 Date:   Thu May 8 22:52:09 2008 +0200
53055
53056     Fix @ -> <at> substitution
53057
53058     When applying the AT91CAP9 patches upstream, something transformed
53059     the '@' character into the ' <at> ' sequence.
53060
53061     The patch below restores the original form in all the places where
53062     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
53063     were copied from AT91CAP9, and a couple of other files where the
53064     ' <at> ' sequence was present).
53065
53066     Signed-off-by: Stelian Pop <stelian@popies.net>
53067
53068 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
53069 Author: Stelian Pop <stelian@popies.net>
53070 Date:   Thu May 8 22:52:10 2008 +0200
53071
53072     Update origin and copyright information in arch-at91sam9 header files
53073
53074     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
53075     copied from the Linux kernel sources. This patch explicitly specifies
53076     this origin for all the copied headers, and for those missing copyright
53077     information, adds it.
53078
53079     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
53080     in the latest kernel sources by 'at91sam9_smc.h'.
53081
53082     The copyright information has been confirmed by the AT91 Linux kernel
53083     maintainer, Andrew Victor <avictor.za@gmail.com>.
53084
53085     Signed-off-by: Stelian Pop <stelian@popies.net>
53086
53087 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
53088 Author: Stelian Pop <stelian@popies.net>
53089 Date:   Thu May 8 22:52:11 2008 +0200
53090
53091     Add copyright information in Atmel boards partition.c
53092
53093     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
53094     the new created files. This patch fixes the problem.
53095
53096     Signed-off-by: Stelian Pop <stelian@popies.net>
53097
53098 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
53099 Author: Guennadi Liakhovetski <lg@denx.de>
53100 Date:   Thu May 8 10:09:27 2008 +0200
53101
53102     mx31ads: fix 32kHz clock handling
53103
53104     According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
53105     oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
53106     Also fix a typo when verifying a jumper configuration. While at it, make
53107     two needlessly global functions static.
53108
53109     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
53110
53111 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
53112 Author: Marian Balakowicz <m8@semihalf.com>
53113 Date:   Wed May 7 13:10:04 2008 +0200
53114
53115     Avoid initrd and logbuffer area overlaps
53116
53117     Add logbuffer to reserved LMB areas to prevent initrd allocation
53118     from overlaping with it.
53119
53120     Make sure to use correct logbuffer base address.
53121
53122     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53123
53124 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
53125 Author: Marian Balakowicz <m8@semihalf.com>
53126 Date:   Wed May 7 13:08:54 2008 +0200
53127
53128     ppc: Cleanup get_effective_memsize() use
53129
53130     Removed duplicated effective memory size calculation code.
53131
53132     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53133
53134 commit 273c37d843d5b581090378016cd12dd9c586907b
53135 Author: Marian Balakowicz <m8@semihalf.com>
53136 Date:   Wed May 7 09:03:53 2008 +0200
53137
53138     Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
53139
53140     Recent modifcations to LOGBUFFER handling code were incorrecly
53141     introduced to fit_check_kernel() routine during
53142     "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
53143     commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
53144
53145     This patch cleans up this merge issue.
53146
53147     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53148
53149 commit bc11756daff89a3de09ca80adac962b88cf06e6e
53150 Author: Grant Erickson <gerickson@nuovations.com>
53151 Date:   Tue May 6 20:16:15 2008 -0700
53152
53153     Propagate Error Status to the Shell on fw_printenv Errors
53154
53155     Changed implementation such that fw_printenv returns failure status
53156     when one or more specified variables do not exist or when incorrect
53157     command syntax is used.
53158
53159     This aids scripting fw_printenv such that the script can key of the
53160     return status rather than relying on standard error "scraping".
53161
53162     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
53163     Signed-off-by: Wolfgang Denk <wd@denx.de>
53164
53165 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
53166 Author: Grant Erickson <gerickson@nuovations.com>
53167 Date:   Tue May 6 16:18:00 2008 -0700
53168
53169     Fix Compilation Errors with 'tools/env/fw_printenv'
53170
53171     In the current top-of-tree, 1.3.3.-rc2, the optional tool
53172     'tools/env/fw_printenv' fails to compile for two reasons:
53173
53174     1) The header watchdog.h cannot be found.
53175     2) The header zlib.h is picked up from the tool chain rather than the
53176        project causing a prototype conflict for crc32.
53177
53178     This patch addresses both of these issues.
53179
53180     Platforms Tested On:
53181     - AMCC "Kilauea"
53182
53183     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
53184
53185 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
53186 Author: James Yang <James.Yang@freescale.com>
53187 Date:   Mon May 5 10:22:53 2008 -0500
53188
53189     Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
53190
53191     When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
53192     work before relocating to RAM because command history is written into
53193     a global array that is not writable before relocation.  This patch
53194     defers to the no-editing and no-history code in readline_into_buffer()
53195     if it is called before relocation.
53196
53197     Signed-off-by: James Yang <James.Yang@freescale.com>
53198     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53199
53200 commit 726c0f1e5f108dccea052965123b95837d2bd402
53201 Author: Detlev Zundel <dzu@denx.de>
53202 Date:   Mon May 5 16:11:22 2008 +0200
53203
53204     cosmetic: Adjust coding style for switch statements to be consistent
53205
53206     Signed-off-by: Detlev Zundel <dzu@denx.de>
53207
53208 commit 574b319512b13e10800f0045e39b993f4ca25e42
53209 Author: Detlev Zundel <dzu@denx.de>
53210 Date:   Mon May 5 16:11:21 2008 +0200
53211
53212     Fix disk type output in disk/part.c
53213
53214     Signed-off-by: Detlev Zundel <dzu@denx.de>
53215
53216 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
53217 Author: Vlad Lungu <vlad.lungu@windriver.com>
53218 Date:   Mon May 5 14:20:03 2008 +0300
53219
53220     Mail address change, documentation modified
53221
53222     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
53223
53224 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
53225 Author: Michal Simek <monstr@monstr.eu>
53226 Date:   Sun May 4 15:42:41 2008 +0200
53227
53228     microblaze: Repare intc handling
53229
53230     Signed-off-by: Michal Simek <monstr@monstr.eu>
53231
53232 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
53233 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53234 Date:   Sun May 4 15:17:52 2008 +0200
53235
53236     include/gitignore: update to all architectures
53237
53238     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53239
53240 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
53241 Author: Marcel Ziswiler <marcel@ziswiler.com>
53242 Date:   Mon May 5 02:12:06 2008 +0200
53243
53244     ide: Remove spurious second include of io.h
53245
53246     Removed the second include, with all the #ifdef around as suggested by Wolfgang.
53247
53248     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
53249
53250 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
53251 Author: Adrian Filipi <adrian.filipi@eurotech.com>
53252 Date:   Tue May 6 16:46:37 2008 -0400
53253
53254     Fix some typos
53255
53256     This patch fixes three typos.
53257     The first is a repetition of CONFIG_CMD_BSP.
53258     The second makes the #endif comment match its #if.
53259     The third is a spelling error.
53260
53261     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
53262
53263 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
53264 Author: Grant Erickson <gerickson@nuovations.com>
53265 Date:   Sun May 4 16:45:01 2008 -0700
53266
53267     Recognize 'powerpc' As an Alias for IH_ARCH_PPC
53268
53269     Add support for the recognition of 'powerpc' as an alias for the PowerPC
53270     architecture type since Linux is already trending in that direction,
53271     preferring 'powerpc' to 'ppc'.
53272
53273     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
53274
53275 commit f5a24259190c388c2527bdc49fee34577d862cc7
53276 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
53277 Date:   Fri May 2 13:35:15 2008 -0700
53278
53279     7450 and 86xx L2 cache invalidate bug corrections
53280
53281     The 7610 and related parts have an L2IP bit in the L2CR that is
53282     monitored to signal when the L2 cache invalidate is complete whereas the
53283     7450 and related parts utilize L2I for this purpose. However, the
53284     current code does not account for this difference. Additionally the 86xx
53285     L2 cache invalidate code used an "andi" instruction where an "andis"
53286     instruction should have been used.
53287
53288     This patch addresses both of these bugs.
53289
53290     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
53291     Acked-By: Jon Loeliger <jdl@freescale.com>
53292
53293 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
53294 Author: Wolfgang Denk <wd@denx.de>
53295 Date:   Fri May 9 10:16:13 2008 +0200
53296
53297     Avoid infinite loop "Generating include/autoconf.mk"
53298
53299     Fix a bogus circular dependency that caused an infinite loop of
53300     "Generating include/autoconf.mk" again and again.
53301
53302     Signed-off-by: Wolfgang Denk <wd@denx.de>
53303
53304 commit 567fb852178dbf59529d7301620a3f3732a4b02d
53305 Author: Stelian Pop <stelian@popies.net>
53306 Date:   Thu May 8 22:52:09 2008 +0200
53307
53308     Fix @ -> <at> substitution
53309
53310     When applying the AT91CAP9 patches upstream, something transformed
53311     the '@' character into the ' <at> ' sequence.
53312
53313     The patch below restores the original form in all the places where
53314     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
53315     were copied from AT91CAP9, and a couple of other files where the
53316     ' <at> ' sequence was present).
53317
53318     Signed-off-by: Stelian Pop <stelian@popies.net>
53319     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53320
53321 commit 73ccb3410a0785593cda7aee455dfc51f790e281
53322 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
53323 Date:   Mon Apr 28 14:04:32 2008 +0200
53324
53325     ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
53326
53327     Signed-off-by: Gary Jennejohn <garyj@denx.de>
53328     Signed-off-by: Stefan Roese <sr@denx.de>
53329
53330 commit ef2642625cbfb1c3695e3478d08ae515052a4950
53331 Author: Stefan Roese <sr@denx.de>
53332 Date:   Thu May 8 11:10:46 2008 +0200
53333
53334     ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
53335
53336     Signed-off-by: Stefan Roese <sr@denx.de>
53337
53338 commit a00eccfebc954ad9485161efeca7d9aaf626d530
53339 Author: Stefan Roese <sr@denx.de>
53340 Date:   Thu May 8 11:05:15 2008 +0200
53341
53342     ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
53343
53344     This patch adds fdt (flattened device tree) support to all remaining AMCC
53345     eval boards. Most newer boards already support device tree. With this patch,
53346     all AMCC boards now enable device tree passing from U-Boot to Linux
53347     arch/powerpc kernels.
53348
53349     Signed-off-by: Stefan Roese <sr@denx.de>
53350
53351 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
53352 Author: Stefan Roese <sr@denx.de>
53353 Date:   Thu May 8 11:01:09 2008 +0200
53354
53355     ppc4xx: Add weak default ft_board_setup() routine
53356
53357     This patch adds a default ft_board_setup() routine to the 4xx fdt code.
53358     This routine is defined as weak and can be overwritten by a board specific
53359     one if needed.
53360
53361     Signed-off-by: Stefan Roese <sr@denx.de>
53362
53363 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
53364 Author: Stefan Roese <sr@denx.de>
53365 Date:   Thu May 8 10:48:58 2008 +0200
53366
53367     ppc4xx: acadia: Add fdt support and fix section overlap problem
53368
53369     This patch adds fdt (flattened device tree) support to the AMCC
53370     Acadia eval board. This increases the image size and it doesn't
53371     fit anymore into 256kByte. Since we didn't want to remove features
53372     from the configuration, we decided to increase the U-Boot image size
53373     (add one flash sector).
53374
53375     Also changed the default environment definition to make it
53376     independent of such changes.
53377
53378     Signed-off-by: Stefan Roese <sr@denx.de>
53379
53380 commit 4adb3023de75bc150f088c8935db340930ad38c8
53381 Author: Ira Snyder <iws@ovro.caltech.edu>
53382 Date:   Tue Apr 29 11:18:54 2008 -0700
53383
53384     ppc4xx: Add device tree support to AMCC Yosemite
53385
53386     Add support for booting with a device tree blob. This is needed to boot
53387     ARCH=powerpc kernels. Also add support for setting the eth0 mac address
53388     via the ethaddr variable.
53389
53390     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
53391     Signed-off-by: Stefan Roese <sr@denx.de>
53392
53393 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
53394 Author: Dave Mitchell <dmitchell@amcc.com>
53395 Date:   Wed May 7 09:00:23 2008 -0700
53396
53397     ppc4xx: Fix typos in 460GT/EX FBDV array
53398
53399     Corrected two typos in the 460GT/EX FBDV array.
53400
53401     Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
53402     Signed-off-by: Stefan Roese <sr@denx.de>
53403
53404 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
53405 Author: Andy Fleming <afleming@freescale.com>
53406 Date:   Wed May 7 16:54:31 2008 -0500
53407
53408     85xx: Limit CPU2 workaround to parts that have the errata
53409
53410     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
53411     Signed-off-by: Andy Fleming <afleming@freescale.com>
53412
53413 commit a5fe514e8ace564300d2c1d73846ddff49654243
53414 Author: Lee Nipper <lee.nipper@freescale.com>
53415 Date:   Fri Apr 25 15:44:45 2008 -0500
53416
53417     mpc83xx: system performance settings for MPC8349EMDS.
53418
53419     These same settings are used on MPC8349ITX, and
53420     improve performance on MPC8349EMDS.
53421
53422     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
53423     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53424
53425 commit 49387dba910e485640b575e920ee463b7e611dc3
53426 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53427 Date:   Tue May 6 13:22:52 2008 +0900
53428
53429     [MIPS] cpu/mips/cache.S: Fix build warning
53430
53431     Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
53432     warns illegal global symbol references by bal (and jal also) instruction.
53433     This does not happen with the latest binutils v2.18.
53434
53435     Here's an example on gth2_config:
53436
53437     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
53438     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
53439     c -EB -c -o cache.o cache.S
53440     cache.S: Assembler messages:
53441     cache.S:243: Warning: Pretending global symbol used as branch target is local.
53442     cache.S:250: Warning: Pretending global symbol used as branch target is local.
53443
53444     In principle, gas might be sensitive to global symbol references in PIC
53445     code because they should be processed through GOT (global offset table).
53446     But if `bal' instruction is used, it results in PC-based offset jump.
53447     This is the cause of this warning.
53448
53449     In practice, we know it doesn't matter whether PC-based reference or GOT-
53450     based. As for this case, both will work before/after relocation. But let's
53451     fix the code.
53452
53453     This patch explicitly sets up a target address, then jump there.
53454     Here's an example of disassembled code with/without this patch.
53455
53456      90000668:       1485ffef        bne     a0,a1,90000628 <mips_cache_reset+0x20>
53457      9000066c:       ac80fffc        sw      zero,-4(a0)
53458      90000670:       01402821        move    a1,t2
53459     -90000674:       0411ffba        bal     90000560 <mips_init_icache>
53460     -90000678:       01803021        move    a2,t4
53461     -9000067c:       01602821        move    a1,t3
53462     -90000680:       0411ffcc        bal     900005b4 <mips_init_dcache>
53463     -90000684:       01a03021        move    a2,t5
53464     -90000688:       03000008        jr      t8
53465     -9000068c:       00000000        nop
53466     +90000674:       01803021        move    a2,t4
53467     +90000678:       8f8f83ec        lw      t7,-31764(gp)
53468     +9000067c:       01e0f809        jalr    t7
53469     +90000680:       00000000        nop
53470     +90000684:       01602821        move    a1,t3
53471     +90000688:       01a03021        move    a2,t5
53472     +9000068c:       8f8f81e0        lw      t7,-32288(gp)
53473     +90000690:       01e0f809        jalr    t7
53474     +90000694:       00000000        nop
53475     +90000698:       03000008        jr      t8
53476     +9000069c:       00000000        nop
53477
53478     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53479
53480 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
53481 Author: Vlad Lungu <vlad.lungu@windriver.com>
53482 Date:   Mon May 5 14:04:00 2008 +0300
53483
53484     Allow building mips versions with ELDK 3.1.1
53485
53486     .gpword works only with local symbols on certain binutils versions
53487
53488     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
53489
53490 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
53491 Author: Wolfgang Denk <wd@denx.de>
53492 Date:   Mon May 5 12:52:36 2008 +0200
53493
53494     MAKEALL: add inka4x0 board
53495
53496     Signed-off-by: Wolfgang Denk <wd@denx.de>
53497
53498 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
53499 Author: Wolfgang Denk <wd@denx.de>
53500 Date:   Sun May 4 21:34:23 2008 +0200
53501
53502     kb9202 board: fix build problem.
53503
53504     Signed-off-by: Wolfgang Denk <wd@denx.de>
53505
53506 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
53507 Author: Wolfgang Denk <wd@denx.de>
53508 Date:   Sun May 4 12:10:33 2008 +0200
53509
53510     Prepare for v1.3.3-rc3
53511
53512     Update ChNAGELOG, minor white space cleanup.
53513
53514     Signed-off-by: Wolfgang Denk <wd@denx.de>
53515
53516 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
53517 Author: Wolfgang Denk <wd@denx.de>
53518 Date:   Sun May 4 00:35:15 2008 +0200
53519
53520     drivers/net/tsec.c: Fix typo.
53521
53522     Signed-off-by: Wolfgang Denk <wd@denx.de>
53523
53524 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
53525 Author: Mike Frysinger <vapier@gentoo.org>
53526 Date:   Fri May 2 21:45:12 2008 -0400
53527
53528     version_autogenerated.h: use printf rather than echo -n
53529
53530     Some systems are dumb and do not implement the -n flag to echo (like OS X).
53531     Convert the Makefile to use printf as this should work everywhere.
53532
53533     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53534     Signed-off-by: Wolfgang Denk <wd@denx.de>
53535
53536 commit 4acc2a108ad0a669165924704a6cb083f9138242
53537 Author: Mike Frysinger <vapier@gentoo.org>
53538 Date:   Fri May 2 18:17:50 2008 -0400
53539
53540     fix building when saveenv is disabled in some setups
53541
53542     If you enable environment in the flash, but disable the embedded
53543     option, and you disable the saveenv command, then the #if nested
53544     logic will trigger a compile failure:
53545     env_flash.c: In function 'env_relocate_spec':
53546     env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
53547     The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
53548
53549     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53550
53551 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
53552 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
53553 Date:   Fri May 2 16:10:04 2008 -0400
53554
53555     SBC8548: fix address mask to allow 64M flash
53556
53557     Fix incorrect mask to enable all 64MB of onboard flash.
53558     Previously U-Boot incorrectly mapped only 8MB of flash, this
53559     patch correctly maps all the available flash.
53560
53561     Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
53562
53563 commit 3648085c464c8c22ef76fab006ca4344d3796124
53564 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53565 Date:   Fri May 2 19:48:56 2008 +0200
53566
53567     qemu_mips: add README
53568
53569     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53570
53571 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
53572 Author: Marcel Ziswiler <marcel@ziswiler.com>
53573 Date:   Fri May 2 02:35:59 2008 +0200
53574
53575     Fix misspelled comment
53576
53577     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
53578
53579 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
53580 Author: Mike Frysinger <vapier@gentoo.org>
53581 Date:   Thu May 1 04:13:05 2008 -0400
53582
53583     mkimage: make mmap() checks consistent
53584
53585     The mmap() related code is full of inconsistent casts/constants when
53586     it comes to error checking, and may break when building on some
53587     systems (like ones that do not implicitly define the caddr_t type).
53588     Let's just avoid the whole mess by writing the code nice and clean in
53589     the first place.
53590
53591     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53592
53593 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
53594 Author: Marcel Ziswiler <marcel@ziswiler.com>
53595 Date:   Thu May 1 09:05:34 2008 +0200
53596
53597     Fix defined but not used build warning
53598
53599     - warning: 'srom' defined but not used
53600
53601     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
53602
53603 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
53604 Author: Marcel Ziswiler <marcel@ziswiler.com>
53605 Date:   Thu May 1 09:05:26 2008 +0200
53606
53607     Fix implicit declaration build warnings
53608
53609     - warning: implicit declaration of function â€˜serial_initialize’
53610
53611     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
53612
53613 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
53614 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
53615 Date:   Tue Apr 29 19:18:32 2008 +0200
53616
53617     TSEC: add config options for VSC8601 RGMII PHY
53618
53619     The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
53620     and Tx clock lines. They are configured using 2 bits in extended
53621     register 0x17.
53622     Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
53623     been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
53624
53625     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
53626     Acked-by: Andy Fleming <afleming@freescale.com>
53627     Acked-by: Ben Warren <biggerbadderben@gmail.com>
53628     --
53629
53630      drivers/net/tsec.c |    6 ++++++
53631      drivers/net/tsec.h |    3 +++
53632      2 files changed, 9 insertions(+), 0 deletions(-)
53633
53634 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
53635 Author: Wolfgang Denk <wd@denx.de>
53636 Date:   Sat May 3 23:07:15 2008 +0200
53637
53638     Revert "ColdFire: Get information from the correct GCC"
53639
53640     This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
53641     (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
53642
53643 commit c4e5f52a58d278eebb87f476e353972c5dacea40
53644 Author: Wolfgang Denk <wd@denx.de>
53645 Date:   Sat May 3 22:25:00 2008 +0200
53646
53647     config.mk: use correct (cross) compiler
53648
53649     Some config.mk files reference $(CC) to test for specific tool chain
53650     features, so make sure $(CC) gets set before including any such
53651     config files.
53652
53653     This patch replaces commit b7166e05a5 ("ColdFire: Get information from
53654     the correct GCC").
53655
53656     Signed-off-by: Wolfgang Denk <wd@denx.de>
53657
53658 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
53659 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53660 Date:   Thu May 1 02:13:44 2008 +0200
53661
53662     pxa: fix previous definition on cpu init
53663
53664     start.S:183:1: warning: "ICMR" redefined
53665     In file included from start.S:33:
53666     include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
53667     start.S:187:1: warning: "RCSR" redefined
53668     ...
53669
53670     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53671
53672 commit 6d12e697de794d700767f22f950e3026ccf4daf6
53673 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53674 Date:   Thu May 1 02:13:43 2008 +0200
53675
53676     pxa: fix pcmcia operation on 'i' may be undefined
53677
53678     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53679     Signed-off-by: Wolfgang Denk <wd@denx.de>
53680
53681 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
53682 Author: Kumar Gala <galak@kernel.crashing.org>
53683 Date:   Wed Apr 30 16:24:35 2008 -0500
53684
53685     MPC8610HPCD: Drop -O2 from the build flags
53686
53687     Make the flags use -Os like all other boards
53688
53689     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53690
53691 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
53692 Author: Stefan Roese <sr@denx.de>
53693 Date:   Wed Apr 30 15:50:39 2008 +0200
53694
53695     RTC: Fix month offset by one problem in M41T62 RTC driver
53696
53697     This patch fixes a problem with the month being read and written
53698     incorrectly (offset by one). This only gets visible by also using
53699     the Linux driver (rtc-m41t80).
53700
53701     Tested on AMCC Canyonlands.
53702
53703     Signed-off-by: Stefan Roese <sr@denx.de>
53704
53705 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
53706 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53707 Date:   Sat May 3 13:51:44 2008 +0900
53708
53709     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
53710
53711     Current trick to pick up GNU assembler minor version uses a dot(.) as a
53712     delimiter, and take the second field to obtain minor version number. But
53713     as can be expected, this doesn't work with a version string which has
53714     dots more than needs.
53715
53716     Here's an example:
53717
53718     $ mips-linux-gnu-as --version | grep 'GNU assembler'
53719     GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
53720     $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
53721     2-129) 2
53722     $
53723
53724     This patch restricts the version format to 2.XX.XX... This will work
53725     in most cases.
53726
53727     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
53728     2.18.50.20080215
53729     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
53730     18
53731     $
53732
53733     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53734
53735 commit ea638951acead7f1086c908c0b9f086beab82a22
53736 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53737 Date:   Sat May 3 13:51:28 2008 +0900
53738
53739     [MIPS] cpu/mips/cache.S: Add dcache_enable
53740
53741     Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
53742     "allow ports to override bootelf behavior") requires ports to have this
53743     function.
53744
53745     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53746     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53747
53748 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
53749 Author: Wolfgang Denk <wd@denx.de>
53750 Date:   Thu May 1 21:30:16 2008 +0200
53751
53752     onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
53753
53754     Onenand needs a version of memcpy() which performs 16 bit accesses
53755     only; make sure the name does not conflict with the standard
53756     function.
53757
53758     Signed-off-by: Wolfgang Denk <wd@denx.de>
53759
53760 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
53761 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53762 Date:   Wed Apr 30 22:38:17 2008 +0200
53763
53764     cmd_nand: fix warning: str2long ncompatible pointer type
53765
53766     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53767
53768 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
53769 Author: Timur Tabi <timur@freescale.com>
53770 Date:   Fri Apr 4 11:16:11 2008 -0500
53771
53772     Fix calculation of I2C clock for some 86xx chips
53773
53774     Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
53775     There is no pattern that can be used to determine which chips use which
53776     frequency, so the only way to determine is to look up the actual SOC
53777     designation and use the right value for that SOC.
53778
53779     Signed-off-by: Timur Tabi <timur@freescale.com>
53780
53781 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
53782 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
53783 Date:   Wed Apr 30 12:11:19 2008 -0500
53784
53785     ColdFire: Fix ethernet hang issue for mcf547x_8x
53786
53787     The ethernet hang is caused by receiving buffer in DRAM is not
53788     yet ready due to access cycles require longer time in DRAM.
53789     Relocate DMA buffer descriptors from DRAM to internal SRAM.
53790
53791     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
53792
53793 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
53794 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
53795 Date:   Wed Apr 30 12:10:47 2008 -0500
53796
53797     ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
53798
53799     Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
53800     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
53801
53802 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
53803 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
53804 Date:   Wed Apr 30 12:10:23 2008 -0500
53805
53806     ColdFire: Get information from the correct GCC
53807
53808     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
53809     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
53810
53811 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
53812 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
53813 Date:   Wed Apr 30 18:02:59 2008 +0200
53814
53815     Fix warning in env_nand.c if compiled for DaVinci Schmoogie
53816
53817     Fix warnings
53818
53819     nv_nand.c: In function 'saveenv':
53820     env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
53821     env_nand.c: In function 'env_relocate_spec':
53822     env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
53823
53824     if compiled for davinci_schmoogie_config.
53825
53826     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
53827     Ack by: Sergey Kubushyn <ksi@koi8.net>
53828
53829 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
53830 Author: Anatolij Gustschin <agust@denx.de>
53831 Date:   Wed Apr 30 13:34:40 2008 +0200
53832
53833     Fix warnings while compiling net/net.c for MPC8610HPCD board
53834
53835     MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
53836     causing overriding default -Os option. New gcc (ver. 4.2.2)
53837     produces warnings while compiling net/net.c file with -O2
53838     option. The patch is an attempt to fix this.
53839
53840     Signed-off-by: Anatolij Gustschin <agust@denx.de>
53841
53842 commit 58b575e575c25fdf8c88141e145db201f3092149
53843 Author: Sascha Laue <Sascha.Laue@gmx.biz>
53844 Date:   Wed Apr 30 15:23:38 2008 +0200
53845
53846     lwmon5: fix offset error in sysmon0 POST
53847
53848     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
53849     Signed-off-by: Wolfgang Denk <wd@denx.de>
53850
53851 commit e7419b243a373de4ee042f7d4f45f66de787240d
53852 Author: Sascha Laue <Sascha.Laue@gmx.biz>
53853 Date:   Wed Apr 30 15:16:35 2008 +0200
53854
53855     lwmon5: fix manual merge error in POST
53856
53857     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
53858
53859 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
53860 Author: Wolfgang Denk <wd@denx.de>
53861 Date:   Wed Apr 30 17:46:26 2008 +0200
53862
53863     cmd_nand.c: fix another 'incompatible pointer type' warning.
53864
53865     Signed-off-by: Wolfgang Denk <wd@denx.de>
53866
53867 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
53868 Author: Wolfgang Denk <wd@denx.de>
53869 Date:   Wed Apr 30 17:25:07 2008 +0200
53870
53871     Makefile: fix parallel builds
53872
53873     This problem shows up with parallel builds only; it results in
53874     somewhat cryptic error messages like
53875
53876         $ JOBS=-j6 MAKEALL netstar
53877         Configuring for netstar board...
53878         arm-linux-ld: cannot find -lgeneric
53879         make[1]: *** [eeprom.srec] Error 1
53880
53881     A few boards (like netstar and voiceblue) need some libraries for
53882     building; however, the board Makefile does not contain any such
53883     dependencies which may cause problems with parallel builds. Adding
53884     such dependencies is difficult as we would also have to provide build
53885     rules, which already exist in the respective library Makefiles.
53886
53887     To solve this, we make sure that all libraries get built before the
53888     board code.
53889
53890     Signed-off-by: Wolfgang Denk <wd@denx.de>
53891
53892 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
53893 Author: Stefan Roese <sr@denx.de>
53894 Date:   Wed Apr 30 14:51:36 2008 +0200
53895
53896     ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
53897
53898     This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
53899     used for NAND booting to match the values needed for the new 512MB
53900     DIMM modules shipped with the productions boards:
53901
53902     Crucial: CT6464AC667.8FB
53903
53904     Signed-off-by: Stefan Roese <sr@denx.de>
53905
53906 commit ea9202a659dc75996facf1475f1866a19a9d3129
53907 Author: Stefan Roese <sr@denx.de>
53908 Date:   Wed Apr 30 10:49:43 2008 +0200
53909
53910     ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
53911
53912     This patch fixes a problem with DIMMs that have 8 banks. Now the
53913     MCIF0_MBxCF register will be setup correctly for this setup too.
53914
53915     This was noticed with the 512MB DIMM on Canyonlands/Glacier.
53916
53917     Signed-off-by: Stefan Roese <sr@denx.de>
53918
53919 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
53920 Author: Wolfgang Denk <wd@denx.de>
53921 Date:   Tue Apr 29 23:41:06 2008 +0200
53922
53923     Prepare v1.3.3-rc2, again.
53924
53925     Signed-off-by: Wolfgang Denk <wd@denx.de>
53926
53927 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
53928 Author: Wolfgang Denk <wd@denx.de>
53929 Date:   Tue Apr 29 23:35:24 2008 +0200
53930
53931     Prepare v1.3.3-rc2
53932
53933     Signed-off-by: Wolfgang Denk <wd@denx.de>
53934
53935 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
53936 Author: Wolfgang Denk <wd@denx.de>
53937 Date:   Tue Apr 29 23:32:20 2008 +0200
53938
53939     common/env_nand.c: fix one more incompatible pointer type issue
53940
53941     Signed-off-by: Wolfgang Denk <wd@denx.de>
53942
53943 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
53944 Author: Wolfgang Denk <wd@denx.de>
53945 Date:   Tue Apr 29 21:33:08 2008 +0200
53946
53947     post/board/lwmon5/sysmon.c: fix manual merge error.
53948
53949     Signed-off-by: Wolfgang Denk <wd@denx.de>
53950
53951 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
53952 Author: Kumar Gala <galak@kernel.crashing.org>
53953 Date:   Tue Apr 29 12:54:59 2008 -0500
53954
53955     85xx: Add -mno-spe to e500/85xx builds
53956
53957     Newer gcc's might be configured to enable autovectorization by default.
53958     If we happen to build with one of those compilers we will get SPE
53959     instructions in random code.
53960
53961     -mno-spe disables the compiler for automatically generating SPE
53962     instructions without our knowledge.
53963
53964     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53965
53966 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
53967 Author: Kumar Gala <galak@kernel.crashing.org>
53968 Date:   Tue Apr 29 10:18:34 2008 -0500
53969
53970     Update .gitignore for zlib.h
53971
53972     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53973
53974 commit 45239cf4152109caa925145ccd433529902df887
53975 Author: Kumar Gala <galak@kernel.crashing.org>
53976 Date:   Tue Apr 29 10:27:08 2008 -0500
53977
53978     85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
53979
53980     All the 85xx and 86xx UM describe the register as timing_cfg_3
53981     not as ext_refrec.
53982
53983     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53984
53985 commit ef7d30b14394e4c4a153118f5845760cadada02a
53986 Author: Kumar Gala <galak@kernel.crashing.org>
53987 Date:   Tue Apr 29 10:28:34 2008 -0500
53988
53989     85xx/86xx: Rename DDR init address and init extended address register
53990
53991     Rename init_addr and init_ext_addr to match the docs between
53992     85xx and 86xx.  Both now use 'init_addr' and 'init_ext_addr'.
53993
53994     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53995
53996 commit cf6cc014270549684873a5972d2595052c468cb6
53997 Author: Kumar Gala <galak@kernel.crashing.org>
53998 Date:   Mon Apr 28 02:24:04 2008 -0500
53999
54000     85xx: Additional fixes and cleanup of MP code
54001
54002     * adjust __spin_table alignment to match ePAPR v0.94 spec
54003     * loop over all cpus when determing who is up.  This fixes an issue if
54004       the "boot cpu" isn't core0.  The "boot cpu" will already be in the
54005       cpu_up_mask so there is no harm
54006     * Added some protection in the code to ensure proper behavior.  These
54007       changes are explicitly needed but don't hurt:
54008       - Added eieio to ensure the "hot word" of the table is written after
54009         all other table updates have occurred.
54010       - Added isync to ensure we don't prefetch loading of table entries
54011         until we a released
54012
54013     These issues we raised by Dave Liu.
54014
54015     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54016
54017 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
54018 Author: Yuri Tikhonov <yur@emcraft.com>
54019 Date:   Tue Apr 29 15:06:41 2008 +0200
54020
54021     lwmon5: minor clean-up to include/configs/lwmon5.h
54022
54023     LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
54024     the CFG_DSPIC_TEST_ADDR definition more readable.
54025
54026     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54027
54028 commit f4c4d21a885ccc222fd0acdf653b683249e85117
54029 Author: Stefan Roese <sr@denx.de>
54030 Date:   Tue Apr 29 16:08:05 2008 +0200
54031
54032     ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
54033
54034     Signed-off-by: Stefan Roese <sr@denx.de>
54035
54036 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
54037 Author: Yuri Tikhonov <yur@emcraft.com>
54038 Date:   Tue Apr 29 13:32:45 2008 +0200
54039
54040     ppc flush_cache: add watch-dog triggering into the loops.
54041
54042     Some boards (e.g. lwmon5) need rather a frequent watch-dog
54043     kicking. Since the time it takes for the flush_cache() function
54044     to complete its job depends on the size of data being flushed, one
54045     may encounter watch-dog resets on such boards when, for example,
54046     download big files over ethernet.
54047
54048     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54049
54050 commit cab99d6f3281ab6784feccf98b9b425daa58418a
54051 Author: Stefan Roese <sr@denx.de>
54052 Date:   Tue Apr 29 14:44:54 2008 +0200
54053
54054     ppc4xx: Fix compilation warning in denali_spd_ddr2.c
54055
54056     Signed-off-by: Stefan Roese <sr@denx.de>
54057
54058 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
54059 Author: Stefan Roese <sr@denx.de>
54060 Date:   Tue Apr 29 14:12:07 2008 +0200
54061
54062     ppc4xx: Fix Katmai CFG_MONITOR_LEN
54063
54064     Signed-off-by: Stefan Roese <sr@denx.de>
54065
54066 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
54067 Author: Stefan Roese <sr@denx.de>
54068 Date:   Tue Apr 29 13:57:07 2008 +0200
54069
54070     ppc4xx: Complete remove bogus dflush()
54071
54072     Since the current dflush() implementation is know to have some problems
54073     (as seem on lwmon5 ECC init) this patch removes it completely and replaces
54074     it by using clean_dcache_range().
54075
54076     Tested on Katmai with ECC DIMM.
54077
54078     Signed-off-by: Stefan Roese <sr@denx.de>
54079
54080 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
54081 Author: Stefan Roese <sr@denx.de>
54082 Date:   Tue Apr 29 13:36:51 2008 +0200
54083
54084     ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
54085
54086     As it seems the "old" ECC initialization routine by using dflush() didn't
54087     write all lines in the dcache back to memory on lwmon5. This could lead
54088     to ECC error upon Linux booting. This patch changes the program_ecc()
54089     routine to now use clean_dcache_range() instead of dflush().
54090     clean_dcache_range() uses dcbst which is exactly what we want in this
54091     case.
54092
54093     Since dflush() is known is cause problems, this routine will be
54094     removed completely and replaced by clean_dcache_range() with an
54095     additional patch.
54096
54097     Signed-off-by: Stefan Roese <sr@denx.de>
54098
54099 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
54100 Author: Yuri Tikhonov <yur@emcraft.com>
54101 Date:   Mon Apr 28 18:19:34 2008 +0200
54102
54103     POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
54104
54105     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54106
54107 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
54108 Author: Markus Brunner <super.firetwister@googlemail.com>
54109 Date:   Mon Apr 28 08:47:47 2008 +0200
54110
54111     ppc4xx: Fixup ebc clock in FDT for 405GP/EP
54112
54113     On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
54114     and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
54115     doesn't exist.
54116
54117     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
54118
54119 commit 2ef7503a593c77a80c2a054011970227c4b62774
54120 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54121 Date:   Thu Apr 24 07:57:17 2008 +0200
54122
54123     NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
54124
54125     Move non-inlied functions into specific drivers file
54126     Set get_prom as weak
54127
54128     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54129     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
54130     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
54131
54132 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
54133 Author: Guennadi Liakhovetski <lg@denx.de>
54134 Date:   Thu Apr 3 17:04:19 2008 +0200
54135
54136     net: make ARP timeout configurable
54137
54138     Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
54139     On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
54140     to the boards get lost, which typically are ARP replies. By configuring
54141     the timeout to a lower value we significantly improve the first network
54142     transfer time on this board. The timeout is specified in milliseconds,
54143     later internally it is converted to deciseconds, because it has to be
54144     converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
54145     different boards.
54146
54147     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
54148     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
54149
54150 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
54151 Author: Guennadi Liakhovetski <lg@denx.de>
54152 Date:   Thu Apr 3 13:36:18 2008 +0200
54153
54154     minor cs8900 driver clean up
54155
54156     Remove a redundant register definition, clean up some coding style
54157     violations.
54158
54159     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
54160     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
54161
54162 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
54163 Author: Wolfgang Denk <wd@denx.de>
54164 Date:   Mon Apr 28 22:01:04 2008 +0200
54165
54166     jffs2_1pass.c: fix incompatible pointer type warning
54167
54168     Signed-off-by: Wolfgang Denk <wd@denx.de>
54169
54170 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
54171 Author: Sascha Laue <Sascha.Laue@gmx.biz>
54172 Date:   Tue Apr 1 10:10:18 2008 +0200
54173
54174     lwmon5: update dsPIC POST spezification
54175
54176     The specification for the lwmon5 board dsPIC POST got changed.
54177     Also add defines for the temperatures  and voltages.
54178
54179     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
54180
54181 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
54182 Author: Sascha Laue <Sascha.Laue@gmx.biz>
54183 Date:   Tue Apr 1 15:13:03 2008 +0200
54184
54185     Fix watchdog POST for lwmon5
54186
54187     If the hardware watchdog detects a voltage error, the watchdog sets
54188     GPIO62 to low. The watchdog POST has to detect this low level.
54189
54190     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
54191     Signed-off-by: Wolfgang Denk <wd@denx.de>
54192
54193 commit dd5748bcd669f46aeb6686c1b341323843738ccc
54194 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54195 Date:   Mon Apr 28 14:37:14 2008 +0200
54196
54197     rtl8169: fix compiler warnings
54198
54199     Fix multiple compiler warnings related to argument type mismatch.
54200
54201     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54202
54203 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
54204 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54205 Date:   Mon Apr 28 14:36:06 2008 +0200
54206
54207     IDE: fix compiler warnings
54208
54209     The IDE driver can use 32-bit addresses in LBA mode, in which case it
54210     spits multiple warnings during compilation. Fix them.
54211
54212     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54213
54214 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
54215 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54216 Date:   Mon Apr 28 14:35:57 2008 +0200
54217
54218     LinkStation: fix compiler warning, add a maintainer
54219
54220     out_8 wants a pointer to an unsigned as the first argument. Add a
54221     maintainer for Linkstation boards.
54222
54223     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54224
54225 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
54226 Author: Wolfgang Denk <wd@denx.de>
54227 Date:   Mon Apr 28 14:55:12 2008 +0200
54228
54229     cmd_nand.c: fix "differ in signedness" problem
54230
54231     Signed-off-by: Wolfgang Denk <wd@denx.de>
54232
54233 commit f2c288a35341ad02ac03b1563d786763c9c8f159
54234 Author: Wolfgang Denk <wd@denx.de>
54235 Date:   Mon Apr 28 12:48:47 2008 +0200
54236
54237     pcnet.c: fix a merge issue
54238
54239     Signed-off-by: Wolfgang Denk <wd@denx.de>
54240
54241 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
54242 Author: Wolfgang Denk <wd@denx.de>
54243 Date:   Mon Apr 28 12:08:18 2008 +0200
54244
54245     NAND: fix some strict-aliasing compiler warnings
54246
54247     Signed-off-by: Wolfgang Denk <wd@denx.de>
54248
54249 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
54250 Author: Stefan Roese <sr@denx.de>
54251 Date:   Mon Apr 28 11:37:14 2008 +0200
54252
54253     ppc4xx: Fix compile warning of hcu4 board
54254
54255     Signed-off-by: Stefan Roese <sr@denx.de>
54256
54257 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
54258 Author: Wolfgang Denk <wd@denx.de>
54259 Date:   Mon Apr 28 11:31:23 2008 +0200
54260
54261     MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
54262
54263     Signed-off-by: Wolfgang Denk <wd@denx.de>
54264
54265 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
54266 Author: Guennadi Liakhovetski <lg@denx.de>
54267 Date:   Mon Apr 28 00:25:32 2008 +0200
54268
54269     mx31ads: fix loadaddr environment variable define
54270
54271     Arithmetic expressions do not get evaluated under stringification. Remove
54272     default network configuration, add DHCP command support. Thanks to Felix
54273     Radensky for reporting.
54274
54275     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
54276
54277 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
54278 Author: Wolfgang Denk <wd@denx.de>
54279 Date:   Mon Apr 28 10:55:24 2008 +0200
54280
54281     katmai: fix section overlap problem
54282
54283     Since we didn't want to remove features from the configuration, we
54284     decided to increase the U-Boot image size (add one flash sector).
54285
54286     Also changed the default environment definition to make it
54287     independent of such changes.
54288
54289     Signed-off-by: Wolfgang Denk <wd@denx.de>
54290     Acked-by: Stefan Roese <sr@denx.de>
54291
54292 commit 941d696d25624e3cc65ebf924199541acf52d74e
54293 Author: Wolfgang Denk <wd@denx.de>
54294 Date:   Mon Apr 28 10:55:24 2008 +0200
54295
54296     katmai: fix section overlap problem
54297
54298     Since we didn't want to remove features from the configuration, we
54299     decided to increase the U-Boot image size (add one flash sector).
54300
54301     Also changed the default environment definition to make it
54302     independent of such changes.
54303
54304     Signed-off-by: Wolfgang Denk <wd@denx.de>
54305     Acked-by: Stefan Roese <sr@denx.de>
54306
54307 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
54308 Author: Kumar Gala <galak@kernel.crashing.org>
54309 Date:   Sat Apr 26 11:44:44 2008 -0500
54310
54311     post: Fix building with O=
54312
54313     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54314
54315 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
54316 Author: Wolfgang Denk <wd@denx.de>
54317 Date:   Sat Apr 26 01:55:00 2008 +0200
54318
54319     Prepare v1.3.3-rc1
54320
54321     Signed-off-by: Wolfgang Denk <wd@denx.de>
54322
54323 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
54324 Author: Wolfgang Denk <wd@denx.de>
54325 Date:   Sat Apr 26 01:25:39 2008 +0200
54326
54327     post/Makefile: make sure to use the correct flags
54328
54329     ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
54330     messages to be printed.
54331
54332     Signed-off-by: Wolfgang Denk <wd@denx.de>
54333
54334 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
54335 Author: Wolfgang Denk <wd@denx.de>
54336 Date:   Sat Apr 26 00:34:42 2008 +0200
54337
54338     Coding Style cleanup, update CHANGELOG
54339
54340     Signed-off-by: Wolfgang Denk <wd@denx.de>
54341
54342 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
54343 Author: Magnus Lilja <lilja.magnus@gmail.com>
54344 Date:   Sun Apr 20 10:38:12 2008 +0200
54345
54346     i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
54347
54348     This patch enables SPI and MC13783/RTC support for the Litekit board.
54349
54350     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
54351
54352 commit f97abbfb47d9e407354e157cae3f6369e460cd37
54353 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
54354 Date:   Fri Apr 25 01:08:32 2008 -0500
54355
54356     MPC8544DS: decode pcie3 end-point configuration correctly.
54357
54358     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54359     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54360
54361 commit 292188e15523c165c4269403fdcd33c26d89176e
54362 Author: Roy Zang <tie-fei.zang@freescale.com>
54363 Date:   Fri Apr 25 00:55:09 2008 -0500
54364
54365     MPC8544DS: Removes the unknown flash message information
54366
54367     This patch removes the unknown flash message information:
54368     '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
54369     This unknown flash message is caused by PromJet.
54370     Some of the board user is unhappy with this information.
54371
54372     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
54373     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54374
54375 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
54376 Author: Kim Phillips <kim.phillips@freescale.com>
54377 Date:   Thu Apr 24 14:07:38 2008 -0500
54378
54379     mpc83xx: bump loadaddr over fdtaddr to 0x500000
54380
54381     this seems as a good compromise between human memory, typing,
54382     and last but not least, to accommodate for current and future kernel bloat.
54383
54384     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54385     Acked-by: Dave Liu <daveliu@freescale.com>
54386
54387 commit be5a7190265a34d968578ff266549c60f6f57654
54388 Author: Dave Liu <r63238@freescale.com>
54389 Date:   Tue Apr 15 13:12:23 2008 +0800
54390
54391     mpc83xx: clean up the readme for 83xx boards
54392
54393     1. correct the typo
54394     2. correct the memory map for 837xerdb board
54395
54396     Signed-off-by: Dave Liu <daveliu@freescale.com>
54397
54398 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
54399 Author: Dave Liu <r63238@freescale.com>
54400 Date:   Tue Apr 15 13:11:11 2008 +0800
54401
54402     mpc83xx: remove the unused CPM's stuff
54403
54404     The MPC83xx family never have CPM block, so remove it from 83xx.
54405
54406     Signed-off-by: Dave Liu <daveliu@freescale.com>
54407
54408 commit c63ad6325a8ac0097a54b418a3288926b0484b18
54409 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54410 Date:   Fri Apr 18 16:29:40 2008 +0200
54411
54412     cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
54413
54414     This patch adds a configurable flash auto protection list that can be used
54415     to make U-Boot protect flash regions in flash_init().
54416
54417     The idea has been discussed on the u-boot mailing list starting
54418     on Nov 18th, 2007.
54419
54420     Even this patch brings a new feature it is used as a bugfix for 4xx
54421     platforms where flash_init() does not completely protect the
54422     monitor's flash range in all situations.
54423
54424     U-Boot protects the flash range from CFG_MONITOR_BASE to
54425     (CFG_MONITOR_BASE + monitor_flash_len  - 1) by default. This does not
54426     include the reset vector at 0xfffffffc.
54427
54428     Example:
54429     #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
54430
54431     This config option will auto protect the last 512k of flash that
54432     contains the bootloader on board like APC405 and PMC405.
54433
54434     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54435
54436 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
54437 Author: Stefan Roese <sr@denx.de>
54438 Date:   Fri Apr 25 13:59:03 2008 +0200
54439
54440     ppc4xx: Remove double defines in lwmon5.h
54441
54442     introduced with latest lwmon5/POST merge
54443
54444     Signed-off-by: Stefan Roese <sr@denx.de>
54445
54446 commit 7590378fb9c686709492ceb142825cd058255956
54447 Author: Bartlomiej Sieka <tur@semihalf.com>
54448 Date:   Fri Apr 25 13:54:02 2008 +0200
54449
54450     Use watchdog-aware functions when calculating hashes of images - take two
54451
54452     Some files didn't get updated properly with the "Use watchdog-aware
54453     functions when calculating hashes of images" commit, this commit
54454     fixes this.
54455
54456     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54457     Signed-off-by: Wolfgang Denk <wd@denx.de>
54458
54459 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
54460 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54461 Date:   Fri Apr 25 12:01:39 2008 +0200
54462
54463     ppc4xx: Add bootcount limit handling for APC405 boards
54464
54465     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54466
54467 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
54468 Author: Bartlomiej Sieka <tur@semihalf.com>
54469 Date:   Fri Apr 25 12:10:09 2008 +0200
54470
54471     Use watchdog-aware functions when calculating hashes of images
54472
54473     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54474
54475 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
54476 Author: Wolfgang Denk <wd@denx.de>
54477 Date:   Fri Apr 25 12:44:08 2008 +0200
54478
54479     USB: fix more GCC 4.2.x aliasing warnings
54480
54481     Signed-off-by: Wolfgang Denk <wd@denx.de>
54482     Acked-by: Markus Klotzbuecher <mk@denx.de>
54483
54484 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
54485 Author: Wolfgang Denk <wd@denx.de>
54486 Date:   Fri Apr 25 12:41:53 2008 +0200
54487
54488     lib_generic/crc32.c: add missing #include <watchdog.h>
54489
54490     Signed-off-by: Wolfgang Denk <wd@denx.de>
54491
54492 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
54493 Author: Wolfgang Denk <wd@denx.de>
54494 Date:   Fri Apr 25 11:52:21 2008 +0200
54495
54496     lib_generic/crc32.c: fix compile problem
54497
54498     Signed-off-by: Wolfgang Denk <wd@denx.de>
54499
54500 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
54501 Author: Stefan Roese <sr@denx.de>
54502 Date:   Tue Apr 22 12:20:32 2008 +0200
54503
54504     ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
54505
54506     The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
54507     environment variable will now get passed to the Linux kernel by setting
54508     the device_type property of the PCIe device tree node. For normal root-
54509     complex configuration it will keep its defaults value of "pci" and for
54510     endpoint configuration it will get changed to "pci-endpoint".
54511
54512     Signed-off-by: Stefan Roese <sr@denx.de>
54513
54514 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
54515 Author: Yuri Tikhonov <yur@emcraft.com>
54516 Date:   Thu Apr 24 10:30:53 2008 +0200
54517
54518     lwmon5: watchdog POST fix
54519
54520     Use the GPT0_MASKx registers as the temporary storage for watch-dog
54521     timer POST test instead of GPT0_COMPx. The latter
54522     (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
54523
54524     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
54525     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54526
54527 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
54528 Author: Kim Phillips <kim.phillips@freescale.com>
54529 Date:   Mon Apr 21 18:10:14 2008 -0500
54530
54531     lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
54532
54533     This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
54534     proven problematic getting right from the start at least on 83xx and
54535     4xx.
54536
54537     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54538
54539 commit a99715b8ebfc500f3f40e01b36b64d473938443d
54540 Author: Detlev Zundel <dzu@denx.de>
54541 Date:   Fri Apr 18 14:50:01 2008 +0200
54542
54543     Realining some header definitions.
54544
54545     Signed-off-by: Detlev Zundel <dzu@denx.de>
54546
54547 commit 4acbc6c7f993cae409c424615415a3e76820f13d
54548 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54549 Date:   Thu Apr 24 07:57:16 2008 +0200
54550
54551     NE2000: coding style cleanup
54552
54553     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54554
54555 commit b4aff1ffaf7120032c653357c007faa14f74d29d
54556 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54557 Date:   Wed Apr 23 00:11:47 2008 +0900
54558
54559     qemu-mips.h: Add CFI support
54560
54561     CONFIG_ENV_OVERWRITE is also added.
54562
54563     This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
54564
54565     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54566     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54567
54568 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
54569 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54570 Date:   Tue Apr 22 22:47:27 2008 +0900
54571
54572     doc/README.mips: Add MIPS notes
54573
54574     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54575
54576 commit 215b01bba8bc662d35f72b084700b192d367dfb4
54577 Author: Bartlomiej Sieka <tur@semihalf.com>
54578 Date:   Tue Apr 22 12:27:56 2008 +0200
54579
54580     Add support for calculating hashes with watchdog triggering
54581
54582     Implement watchodg-aware variants of hash calculation functions:
54583     - crc32_wd()
54584     - md5_wd()
54585     - sha1_csum_wd()
54586     The above functions calculate the hash of the input buffer in chunks,
54587     triggering the watchdog after processing each chunk. The chunk size
54588     is given as a function call parameter.
54589
54590     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54591
54592 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
54593 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54594 Date:   Wed Apr 23 11:02:12 2008 +0900
54595
54596     qemu-mips: Cleanup whitespace, indentation, etc.
54597
54598     No functional change.
54599
54600     This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
54601     Then I re-created from scratch, and changed more lines than the original.
54602
54603     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54604     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54605
54606 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
54607 Author: Vlad Lungu <vlad@comsys.ro>
54608 Date:   Wed Oct 10 23:02:09 2007 +0300
54609
54610     Fixed pcnet io_base
54611
54612     Bus and phys address are not always the same
54613
54614     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
54615
54616 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
54617 Author: Wolfgang Denk <wd@denx.de>
54618 Date:   Thu Apr 24 23:44:26 2008 +0200
54619
54620     drivers/net/pcnet.c: Coding Style cleanup.
54621
54622     Signed-off-by: Wolfgang Denk <wd@denx.de>
54623
54624 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
54625 Author: Vlad Lungu <vlad@comsys.ro>
54626 Date:   Wed Oct 10 23:04:23 2007 +0300
54627
54628     Added Am79C970A chip id to pcnet
54629
54630     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
54631
54632 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
54633 Author: Magnus Lilja <lilja.magnus@gmail.com>
54634 Date:   Sun Apr 20 10:35:03 2008 +0200
54635
54636     i.MX31: Fix architecture numbers for ADS and Litekit boards
54637
54638     Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
54639
54640     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
54641
54642 commit e7ae84d6c7288790e88639f57cb60daf89c11369
54643 Author: Magnus Lilja <lilja.magnus@gmail.com>
54644 Date:   Sun Apr 20 10:36:36 2008 +0200
54645
54646     i.MX31: Use symbolic names for Litekit membases.
54647
54648     Use symbolic names instead of hard coded addresses for Litekit membases.
54649
54650     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
54651
54652 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
54653 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54654 Date:   Sat Apr 19 17:59:20 2008 +0200
54655
54656     Fix show_boot_progress prototype
54657
54658     in commit fad634071 "make show_boot_progress () weak."
54659     show_boot_progress is supposed to be declared as weak but declared as
54660     inline instead.
54661
54662     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54663
54664 commit edbed247a14d70b94958010f736621212285de91
54665 Author: Bartlomiej Sieka <tur@semihalf.com>
54666 Date:   Fri Apr 18 12:39:23 2008 +0200
54667
54668     Memory footprint optimizations
54669
54670     As suggested by Wolfgang Denk:
54671     - image printing functions:
54672       - remove wrappers
54673       - remove indentation prefix from functions' signatures
54674     - merge getenv_verify and getenv_autostart into one parametrized function
54675
54676     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54677
54678 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
54679 Author: Guennadi Liakhovetski <lg@denx.de>
54680 Date:   Tue Apr 15 13:33:11 2008 +0200
54681
54682     MX31ADS environment variable update, spi and rtc support
54683
54684     Update MX31ADS default environment to better match the flash layout and
54685     the memory map, support SPI and RTC.
54686
54687     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
54688
54689 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
54690 Author: Kumar Gala <galak@kernel.crashing.org>
54691 Date:   Mon Apr 21 09:28:36 2008 -0500
54692
54693     85xx: Round up frequency calculations to get reasonable output
54694
54695     eg. because of rounding error we can get 799Mhz instead of 800Mhz.
54696
54697     Introduced DIV_ROUND_UP and roundup taken from linux kernel.
54698
54699     Signed-off-by: Dejan Minic <minic@freescale.com>
54700     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
54701     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54702     Acked-by: Andy Fleming <afleming@freescale.com>
54703
54704 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
54705 Author: Kumar Gala <galak@kernel.crashing.org>
54706 Date:   Wed Apr 23 16:58:04 2008 -0500
54707
54708     fsl_pci: Only modify registers if we have them
54709
54710     pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
54711
54712     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54713
54714 commit 83fe32334337def160b302aa9d152d808bfcc68e
54715 Author: Markus Klotzbücher <mk@denx.de>
54716 Date:   Wed Apr 23 10:57:33 2008 +0200
54717
54718     USB: remove a cpu bug workaround for an unsupported architecture.
54719
54720     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
54721
54722 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
54723 Author: Markus Klotzbücher <mk@denx.de>
54724 Date:   Wed Apr 23 10:53:23 2008 +0200
54725
54726     USB: fix those pesky aliasing warnings issued by gcc-4.2
54727
54728     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
54729     Signed-off-by: Detlev Zundel <dzu@denx.de>
54730
54731 commit 89cdab788f3716b335fefb60b836ebcf975aceab
54732 Author: Mike Frysinger <vapier@gentoo.org>
54733 Date:   Mon Mar 31 11:02:01 2008 -0400
54734
54735     crc32: use uint32_t rather than unsigned long
54736
54737     The envcrc.c does sizeof(unsigned long) when calculating the crc, but
54738     this is done with the build toolchain instead of the target tool
54739     chain, so if the build is a 64bit system but the target is 32bits,
54740     the size will obviously be wrong. This converts all unsigned long
54741     stuff related to crc32 to uint32_t types. Compile tested only: output
54742     of ./tools/envcrc when run on a 32bit build system matches that of a
54743     64bit build system.
54744
54745     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
54746     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54747
54748 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
54749 Author: Dirk Behme <dirk.behme@googlemail.com>
54750 Date:   Wed Mar 26 09:53:29 2008 +0100
54751
54752     ARM: Davinci: Fix DM644x timer overflow handling and cleanup
54753
54754     Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
54755
54756     Changes:
54757
54758     - Remove *_masked() functions as noted by Wolfgang
54759
54760     - Adapt register naming to recent TI spec (sprue26, March 2007)
54761
54762     - Fix reset_timer() handling
54763
54764     - 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.
54765
54766     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
54767
54768     - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
54769
54770     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
54771
54772     Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
54773
54774     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
54775     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
54776
54777 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
54778 Author: Sergei Poselenov <sposelenov@emcraft.com>
54779 Date:   Wed Apr 9 16:09:41 2008 +0200
54780
54781     Added watchdog triggering calls in the "mtest" test function.
54782
54783     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
54784
54785 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
54786 Author: Yuri Tikhonov <yur@emcraft.com>
54787 Date:   Sun Apr 6 19:19:14 2008 +0200
54788
54789     lwmon5 watchdog: limit trigger rate
54790
54791     Limit the rate of h/w watch-dog triggering on the LWMON5 board by
54792     the CONFIG_WD_MAX_RATE value.
54793
54794     Note that an earlier version of this patch which used microseconds
54795     instead of ticks dis not work. The problem was that we used
54796     usec2ticks() to convert microseconds into ticks. usec2ticks() uses
54797     get_tbclk(), which in turn calls get_sys_info(). It turns out that
54798     this function does a lot of prolonged operations (like divisions)
54799     which take too much time so we do not trigger the watchdog in time,
54800     and it resets the system.
54801
54802     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54803
54804 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
54805 Author: Yuri Tikhonov <yur@emcraft.com>
54806 Date:   Mon Mar 31 10:51:37 2008 +0200
54807
54808     POST: move CONFIG_POST to Makefiles
54809
54810     Introduce the new logical option CONFIG_HAS_POST which is set when the
54811     platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
54812     to determine should the POST libs be compiled for the selected target
54813     platform, or not.
54814
54815     To avoid breaking u-boot linking process, the empty post/libpost.a file is
54816     created for platforms which do not have POSTs.
54817
54818     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54819     Signed-off-by: Wolfgang Denk <wd@denx.de>
54820
54821 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
54822 Author: Yuri Tikhonov <yur@emcraft.com>
54823 Date:   Mon Mar 31 10:49:34 2008 +0200
54824
54825     POST: preparations for moving CONFIG_POST to Makefiles
54826
54827     Remove CONFIG_POST ifdefs from the post/ source files.
54828
54829     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54830     Signed-off-by: Wolfgang Denk <wd@denx.de>
54831
54832 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
54833 Author: Stefan Roese <sr@denx.de>
54834 Date:   Tue Apr 22 14:14:20 2008 +0200
54835
54836     ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
54837
54838     This patch fixes the Canyonlands and Glacier default environment to better
54839     fit to the arch/powerpc device-tree kernels. The variables dealing with
54840     arch/ppc booting are removed, since these boards are supported only in
54841     arch/powerpc. Glacier uses the same config file as Canyonlands.
54842
54843     Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
54844
54845     Signed-off-by: Stefan Roese <sr@denx.de>
54846
54847 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
54848 Author: Stefan Roese <sr@denx.de>
54849 Date:   Tue Apr 22 14:06:42 2008 +0200
54850
54851     ppc4xx: Small coding style cleanup for the latest esd patches
54852
54853     Signed-off-by: Stefan Roese <sr@denx.de>
54854
54855 commit 79941d63bc03aed8c48d7602f18217cc200ee931
54856 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54857 Date:   Mon Apr 21 18:01:07 2008 +0200
54858
54859     ppc4xx: Update CPU strapping for PMC440 boards
54860
54861     This patch removes the temporary 'test' strapping option
54862     of the sbe command. The '667' strapping option now uses
54863     a PLB/PCI divider of 3.
54864
54865     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54866
54867 commit f00cf3193a6635355b121e90debb2f54e777e7da
54868 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54869 Date:   Mon Apr 21 14:42:21 2008 +0200
54870
54871     ppc4xx: Remove unused APC405 strataflash driver
54872
54873     The APC405 board support has been migrated to use the common
54874     CFI flash driver.
54875
54876     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54877
54878 commit 1c686676a86473bbd92151f0544e109413f6ed06
54879 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54880 Date:   Mon Apr 21 14:42:17 2008 +0200
54881
54882     ppc4xx: Update APC405 configuration
54883
54884     - enable esd's auto_update mechanism
54885     - support alternative flash layout on rev. 1.8 boards
54886     - update default environment
54887     - use common CFI flash driver
54888     - coding style cleanup
54889
54890     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54891
54892 commit 0b9872515a521bf7866dc24b85ddce708e60d702
54893 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54894 Date:   Mon Apr 21 14:42:11 2008 +0200
54895
54896     ppc4xx: Update APC405 board support
54897
54898     - enable esd's auto_update mechanism
54899     - fix LCD support on latest hardware revision (uses other LCD controller)
54900     - support alternative flash layout on rev. 1.8 boards
54901     - coding style cleanup
54902
54903     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54904
54905 commit 83975d02e225e231960784972e7820a8b303756b
54906 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54907 Date:   Mon Apr 21 14:42:06 2008 +0200
54908
54909     ppc4xx: update esd's common auto_update code for 405 boards
54910
54911     - Coding style cleanup (long lines)
54912     - improve handling of protected flash regions
54913     - remove dead code
54914
54915     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54916
54917 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
54918 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54919 Date:   Mon Apr 21 14:41:59 2008 +0200
54920
54921     ppc4xx: Update esd's common LCD code for 405 boards
54922
54923     - Coding style cleanup (long lines)
54924     - Add s1d13505 support
54925     - Make some functions return a result code instead of void
54926
54927     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54928
54929 commit dea68189424c3f1242427a8146a3861bf093173c
54930 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54931 Date:   Mon Apr 21 11:36:55 2008 +0200
54932
54933     ppc4xx: Update FPGA image for APC405 boards
54934
54935     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54936
54937 commit 2a05b152924acfcec3b037693329e517e6d3578f
54938 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54939 Date:   Mon Apr 21 11:36:08 2008 +0200
54940
54941     ppc4xx: Update bootlogo for APC405 boards
54942
54943     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54944
54945 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
54946 Author: Stefan Roese <sr@denx.de>
54947 Date:   Fri Apr 18 16:41:31 2008 +0200
54948
54949     ppc4xx: Add dcache_enable() for 440
54950
54951     dcache_enable() was missing for 440 and the patch
54952     017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
54953     "] behavior uses this function.
54954
54955     Note: Currently the cache handling functions like
54956     d/icache_disable/enable() are NOP's on 440. This may be changed in the
54957     future.
54958
54959     Signed-off-by: Stefan Roese <sr@denx.de>
54960
54961 commit a49e0d177a0749614b316ec847fb623f09c82c07
54962 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54963 Date:   Mon Apr 21 11:19:04 2008 +0200
54964
54965     video: Add missing free for logo memory
54966
54967     This patch adds two missing free()s.
54968
54969     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54970
54971 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
54972 Author: Troy Kisky <troy.kisky@boundarydevices.com>
54973 Date:   Mon Sep 24 16:41:43 2007 -0700
54974
54975     PATCH - Fix oob data copied into supplied buffer
54976
54977     This patch correctly sets the oobavail variable
54978     and fixes a bug where the oob data was not valid when
54979     there where multiple groups in oobfree.
54980
54981     First segment fixes a typo
54982     Second segment fixes a bug where oob data may be copied incorrectly.
54983     Third segment adds an error message when exiting due to write protect.
54984     Forth segment fixes a bug where oobavail may be set incorrectly.
54985
54986     Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
54987
54988 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
54989 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54990 Date:   Fri Apr 18 17:24:32 2008 +0200
54991
54992     ppc4xx: Fix sys_get_info() for 405GP(r)
54993
54994     This patch assigns the correct EBC clock for 405GP(r) CPUs
54995     to PPC4xx_SYS_INFO structure. Without this patch U-Boot
54996     uses an uninitialized EBC clock in its startup message.
54997
54998     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54999
55000 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
55001 Author: Wolfgang Denk <wd@denx.de>
55002 Date:   Sun Apr 20 15:39:38 2008 -0700
55003
55004     Makefile: remove nand_spl/System.map when cleaning up.
55005
55006 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
55007 Author: Wolfgang Denk <wd@denx.de>
55008 Date:   Sun Apr 20 15:35:52 2008 -0700
55009
55010     MAKEALL: sort entries / lists.
55011
55012     Signed-off-by: Wolfgang Denk <wd@denx.de>
55013
55014 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
55015 Author: Kumar Gala <galak@kernel.crashing.org>
55016 Date:   Fri Apr 18 11:29:01 2008 -0500
55017
55018     85xx: Fix size of cpu-release-addr property
55019
55020     The cpu-release-addr is defined as always being a 64-bit quanity regardless
55021     if we are running on a 32-bit or 64-bit machine.
55022
55023 commit 88353a985109562a639b2f8a0c90d77011bfe374
55024 Author: Timur Tabi <timur@freescale.com>
55025 Date:   Fri Apr 4 11:15:58 2008 -0500
55026
55027     Fix calculation of I2C clock for some 85xx chips
55028
55029     Some 85xx chips use CCB as the base clock for the I2C.  Some use CCB/2, and
55030     some use CCB/3.  There is no pattern that can be used to determine which
55031     chips use which frequency, so the only way to determine is to look up the
55032     actual SOC designation and use the right value for that SOC.
55033
55034     Update immap_85xx.h to include the GUTS PORDEVSR2 register.
55035
55036     Signed-off-by: Timur Tabi <timur@freescale.com>
55037
55038 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
55039 Author: Wolfgang Denk <wd@denx.de>
55040 Date:   Fri Apr 18 11:44:27 2008 -0700
55041
55042     Fix build breakage casued by commit c0559be371b2
55043
55044         Change env_get_char from a global function ptr to a function.
55045
55046     Signed-off-by: Wolfgang Denk <wd@denx.de>
55047
55048 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
55049 Author: Wolfgang Denk <wd@denx.de>
55050 Date:   Fri Apr 18 10:53:41 2008 -0700
55051
55052     Coding Style cleanup, update CHANGELOG.
55053
55054     Signed-off-by: Wolfgang Denk <wd@denx.de>
55055
55056 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
55057 Author: Mike Frysinger <vapier@gentoo.org>
55058 Date:   Tue Apr 8 14:00:57 2008 -0400
55059
55060     Add support for u-boot in svn and localversion-* files
55061
55062     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55063
55064 commit d23ff6827decf121461fbc5622612fd7effe207e
55065 Author: Guennadi Liakhovetski <lg@denx.de>
55066 Date:   Thu Apr 3 17:04:22 2008 +0200
55067
55068     MX31ADS network and flash updates
55069
55070     This patch allows U-Boot to use buffered writes to the Spansion NOR
55071     flash installed on this board, and eliminates long delays in network
55072     transfers after the board startup.
55073
55074     Also modify flash layout to embed main and redundant environment
55075     blocks in the U-Boot image.
55076
55077     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55078
55079 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
55080 Author: Guennadi Liakhovetski <lg@denx.de>
55081 Date:   Mon Apr 14 10:53:12 2008 +0200
55082
55083     Support for the MX31ADS evaluation board from Freescale
55084
55085     This patch adds support for the MX31ADS evaluation board from Freescale,
55086     initialization code is copied from RedBoot sources, also provided by
55087     Freescale.
55088
55089     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55090
55091 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
55092 Author: Stefan Roese <sr@denx.de>
55093 Date:   Tue Apr 8 10:33:29 2008 +0200
55094
55095     ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
55096
55097     Signed-off-by: Stefan Roese <sr@denx.de>
55098
55099 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
55100 Author: Stefan Roese <sr@denx.de>
55101 Date:   Tue Apr 8 10:33:28 2008 +0200
55102
55103     ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
55104
55105     Signed-off-by: Stefan Roese <sr@denx.de>
55106
55107 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
55108 Author: Stefan Roese <sr@denx.de>
55109 Date:   Tue Apr 8 10:33:27 2008 +0200
55110
55111     ppc4xx: Add Glacier NAND booting target
55112
55113     Signed-off-by: Stefan Roese <sr@denx.de>
55114
55115 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
55116 Author: Stefan Roese <sr@denx.de>
55117 Date:   Tue Apr 8 10:31:00 2008 +0200
55118
55119     nand_spl: Update nand_spl to support 2k page size NAND devices
55120
55121     This patch adds support for booting from 2k page sized NAND device
55122     (e.g. Micron 29F2G08AAC).
55123
55124     Tested on AMCC Canyonlands.
55125
55126     Signed-off-by: Stefan Roese <sr@denx.de>
55127
55128 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
55129 Author: Anatolij Gustschin <agust@denx.de>
55130 Date:   Thu Apr 17 18:18:00 2008 +0200
55131
55132     Fix crash on sequoia in ppc_4xx_eth_init
55133
55134     Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
55135     with cache enabled (TLB Parity exeption). This patch
55136     fixes the problem.
55137
55138     Signed-off-by: Anatolij Gustschin <agust@denx.de>
55139
55140 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
55141 Author: Anatolij Gustschin <agust@denx.de>
55142 Date:   Thu Apr 17 18:15:27 2008 +0200
55143
55144     ppc4xx: Fix crash on sequoia with cache enabled
55145
55146     Currently U-Boot crashes on sequoia board in CPU POST if
55147     cache is enabled (CONFIG_4xx_DCACHE defined). The cache
55148     won't be disabled by change_tlb before CPU POST because
55149     there is an insufficient adress range check since
55150     CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
55151     this problem.
55152
55153     Signed-off-by: Anatolij Gustschin <agust@denx.de>
55154
55155 commit 43c509254fab375c49936498da944658117ed07c
55156 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
55157 Date:   Thu Apr 17 23:35:13 2008 +0900
55158
55159     Use jr as register jump instruction
55160
55161     Current assembler codes are inconsistent in the way of register jump
55162     instruction usage; some use jr, some use j. Of course GNU as allows both
55163     usages, but as can be expected from `Jump Register' the mnemonic `jr' is
55164     more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
55165     at all.
55166
55167     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
55168
55169 commit 7ce63709828d37b08866e537339a169bd0db2bd3
55170 Author: Guennadi Liakhovetski <lg@denx.de>
55171 Date:   Tue Apr 15 14:15:30 2008 +0200
55172
55173     RTC driver for MC13783
55174
55175     MC13783 is a multifunction IS with an SPI interface to the host. This
55176     driver handles the RTC controller in this chip.
55177
55178     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55179
55180 commit 38254f45b0b412332726c90d3184ad47479fcffb
55181 Author: Guennadi Liakhovetski <lg@denx.de>
55182 Date:   Tue Apr 15 14:14:25 2008 +0200
55183
55184     New i.MX31 SPI driver
55185
55186     This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
55187     only implemented and tested on i.MX31, can with a modified register layout
55188     and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
55189     controllers too.
55190
55191     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55192
55193 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
55194 Author: Magnus Lilja <lilja.magnus@gmail.com>
55195 Date:   Tue Apr 15 19:09:10 2008 +0200
55196
55197     Fix name of i.MX31 boards in config file header
55198
55199     Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
55200
55201     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
55202
55203 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
55204 Author: Mike Frysinger <vapier@gentoo.org>
55205 Date:   Sun Apr 13 19:42:19 2008 -0400
55206
55207     allow ports to override go behavior
55208
55209     Split the arch-specific logic out of the common go code and into a dedicated
55210     weak function called do_go_exec() that lives in cpu directories.  This will
55211     need review from i386/nios people to make sure I didn't break them.
55212
55213 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
55214 Author: Mike Frysinger <vapier@gentoo.org>
55215 Date:   Sun Apr 13 19:42:18 2008 -0400
55216
55217     allow ports to override bootelf behavior
55218
55219     Change the bootelf setup function into a dedicated weak function called
55220     do_bootelf_exec.  This way ports can control the behavior however they
55221     like before/after calling the ELF entry point.
55222
55223 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
55224 Author: Ulf Samuelsson <ulf@atmel.com>
55225 Date:   Sat Apr 12 20:56:03 2008 +0200
55226
55227     Reorder ARM boards in Makefile
55228
55229     Rearrange ARM boards in Makefile so that ARM926EJ-S boards
55230     are no longer under ARM92xT header.
55231
55232     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
55233     Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55234
55235 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
55236 Author: Ulf Samuelsson <ulf@atmel.com>
55237 Date:   Sat Apr 12 20:29:44 2008 +0200
55238
55239     Clean up dataflash partitioning
55240
55241     This patch removes the board dependent parts from
55242     "drivers/mtd/dataflash.c".
55243     Each board relying on this, will have the appropriate
55244     code in a new file, "partition.c" in the board directory.
55245     board Makefiles updated to use the file.
55246
55247     The dataflash partitions are aligned on sector/page boundaries.
55248
55249     The CONFIG_NEW_DF_PARTITION was used to create named partitions
55250     This is now the default operation, and the CONFIG variable is removed.
55251
55252     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
55253
55254 commit 51ecde946fec511a16346e498204ca10ad71080d
55255 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55256 Date:   Sat Apr 12 14:08:45 2008 +0200
55257
55258     gitignore: udpate stgit generated and .patch file
55259
55260     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55261
55262 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
55263 Author: Wolfgang Denk <wd@denx.de>
55264 Date:   Fri Apr 18 00:15:36 2008 -0700
55265
55266     Get rid of redundant copy of renamed header file.
55267
55268     Signed-off-by: Wolfgang Denk <wd@denx.de>
55269
55270 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
55271 Author: Vlad Lungu <vlad@comsys.ro>
55272 Date:   Fri Apr 11 21:20:14 2008 +0300
55273
55274     Fix dependency generation for older gcc versions
55275
55276      With gcc 3.3.3 at least, compilation fails with
55277
55278     Generating include/autoconf.mk
55279     gcc: compilation of header file requested
55280     make: *** [include/autoconf.mk] Error 1
55281
55282     since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
55283
55284     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
55285
55286 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
55287 Author: Marian Balakowicz <m8@semihalf.com>
55288 Date:   Fri Apr 11 11:07:49 2008 +0200
55289
55290     Restore the ability to continue booting after legacy image overwrite
55291
55292     Before new uImage code was merged, bootm code allowed for the kernel image to
55293     get overwritten during decompresion. new uImage introduced a check for image
55294     overwrites and refused to boot the image that got overwritten. This patch
55295     restores the old behavior. It also adds a warning when the image overwriten is
55296     a multi-image file, because in such case accessing componentes other than the
55297     first one will fail.
55298
55299     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55300
55301 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
55302 Author: Marian Balakowicz <m8@semihalf.com>
55303 Date:   Fri Apr 11 11:07:43 2008 +0200
55304
55305     ppc: Fix ftd_blob variable init when processing raw blob
55306
55307     Set fdt_blob variable before its value is printed out.
55308
55309     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55310
55311 commit 3d36be030043cd841a2551d00a395135e363a64b
55312 Author: Jason Wessel <jason.wessel@windriver.com>
55313 Date:   Thu Apr 10 14:30:16 2008 -0500
55314
55315     Remove all the search paths from the .lds files.
55316
55317     The cross compiler is responsible for providing the correct libraries
55318     and the logic to find the linking libraries.
55319
55320     Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
55321
55322 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
55323 Author: Bartlomiej Sieka <tur@semihalf.com>
55324 Date:   Mon Apr 14 15:44:16 2008 +0200
55325
55326     Boot-related documentation update
55327
55328     - document 'bootm_low' and 'bootm_size' environment variables
55329     - update inaccurate CFG_BOOTMAPSZ entry
55330
55331     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
55332
55333 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
55334 Author: Guennadi Liakhovetski <lg@denx.de>
55335 Date:   Wed Apr 9 17:34:08 2008 +0200
55336
55337     Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
55338
55339     Restore logic reverted by commit
55340
55341     commit 80767a6cead9990d9e77e62be947843c2c72f469
55342     Author: Peter Pearse <peter.pearse@arm.com>
55343     Date:   Wed Sep 5 16:04:41 2007 +0100
55344
55345         Changed API name to coloured_led.h
55346         Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
55347         Tidied other cpu/arm920t/start.S code
55348
55349     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55350
55351 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
55352 Author: Mike Frysinger <vapier@gentoo.org>
55353 Date:   Tue Apr 8 10:24:24 2008 -0400
55354
55355     Remove conflicting NAND ID
55356
55357     There are two NAND entries with ID 0xDC and this obviously causes problems.
55358     In the kernel, they punted the first entry, so we should do the same.
55359
55360     See this upstream e-mail for more info:
55361     http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
55362
55363     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
55364     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55365
55366 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
55367 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55368 Date:   Tue Apr 8 16:20:35 2008 +0900
55369
55370     cpu/mips/cpu.c: Fix flush_cache bug
55371
55372     Cache operations have to take line address (addr), not start_addr.
55373     I noticed this bug when debugging ping failure.
55374
55375     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55376
55377 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
55378 Author: Martin Krause <martin.krause@tqs.de>
55379 Date:   Thu Apr 3 14:29:01 2008 +0200
55380
55381     TQM5200: fix default IDE reset level
55382
55383     Before the first call of ide_reset(), the level of the IDE reset
55384     signal on the TQM5200 is low (reset asserted). This patch sets the
55385     default value to high (reset not asserted).
55386
55387     Currently this patch fixes no real problem, but it is cleaner to
55388     assert the reset signal only on demand, and not permanently.
55389
55390     Signed-off-by: Martin Krause <martin.krause@tqs.de>
55391
55392 commit c61e033d6e8abb7b4060ee36060961e1399f6079
55393 Author: Detlev Zundel <dzu@denx.de>
55394 Date:   Thu Apr 3 14:18:48 2008 +0200
55395
55396     mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
55397
55398     Signed-off-by: Detlev Zundel <dzu@denx.de>
55399
55400 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
55401 Author: Detlev Zundel <dzu@denx.de>
55402 Date:   Thu Apr 3 14:18:47 2008 +0200
55403
55404     mgcoge, mgsuv: rename 'addcon' to 'addcons'
55405
55406     The latter name with 13 users is already established, so we will use
55407     that.
55408
55409     Signed-off-by: Detlev Zundel <dzu@denx.de>
55410
55411 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
55412 Author: Martin Krause <martin.krause@tqs.de>
55413 Date:   Thu Apr 3 13:37:56 2008 +0200
55414
55415     IDE: fix bug in reset sequence
55416
55417     According to the ata (ata5) specification the RESET- signal
55418     shall be asserted for at least 25 us. Without this patch,
55419     the RESET- signal is asserted on some boards for only < 1 us
55420     (e. g. on the TQM5200). This patch adds a general delay of
55421     25 us to the RESET- signal.
55422
55423     Without this patch a Platinum 4 GiB CF card is not recognised
55424     properly on boards with a TQM5200 (STK52xx, TB5200).
55425
55426     Signed-off-by: Martin Krause <martin.krause@tqs.de>
55427
55428 commit 813bea96a960916c72b4a3a7df840151529c26ce
55429 Author: Sascha Laue <Sascha.Laue@gmx.biz>
55430 Date:   Thu Apr 3 14:43:11 2008 +0200
55431
55432     lwmon5: disable CONFIG_ZERO_BOOTDELAY
55433
55434     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
55435
55436 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
55437 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55438 Date:   Wed Apr 2 08:03:58 2008 +0200
55439
55440     ds174x: Fix warning on return in rtc_get and rtc_set functions
55441
55442     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55443
55444 commit a253b38bf50c85227c33ca0febc870ee49d1588e
55445 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55446 Date:   Wed Apr 2 08:03:57 2008 +0200
55447
55448     cmd_log.c: Fix assignment differ in signedness
55449
55450     In function 'logbuff_init_ptrs':
55451     cmd_log.c:79: warning: pointer targets in assignment differ in signedness
55452
55453     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55454
55455 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
55456 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
55457 Date:   Wed Apr 2 11:04:43 2008 +0530
55458
55459     Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
55460
55461     Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
55462
55463 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
55464 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55465 Date:   Tue Apr 1 14:07:10 2008 +0200
55466
55467     s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
55468
55469     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55470
55471 commit c08fb3ea36d19b1640b7906264581e9105534399
55472 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55473 Date:   Tue Apr 15 10:24:14 2008 +0200
55474
55475     Additional PCI IDs for IDE and network controllers
55476
55477     These PCI IDs are required by the Linkstation platforms.
55478
55479     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55480
55481 commit c0559be371b2a64b1a817088c3308688e2182f93
55482 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
55483 Date:   Mon Apr 14 23:01:50 2008 +0200
55484
55485     Change env_get_char from a global function ptr to a function.
55486
55487     This avoids an early global data reference.
55488
55489     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
55490
55491 commit 3e0f331c05d72f140715c1e9fca991927e44d422
55492 Author: Guennadi Liakhovetski <lg@denx.de>
55493 Date:   Tue Apr 29 12:35:08 2008 +0000
55494
55495     Clean up smsc911x driver
55496
55497     Replace direct register address derefencing with accessor functions.
55498     Restrict explicitly 32-bit bus-width, extend affected configurations
55499     respectively.
55500
55501     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55502     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
55503
55504 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
55505 Author: Sascha Hauer <s.hauer@pengutronix.de>
55506 Date:   Tue Apr 15 00:08:20 2008 -0400
55507
55508     This patch adds a driver for the following smsc network controllers:
55509     LAN9115
55510     LAN9116
55511     LAN9117
55512     LAN9215
55513     LAN9216
55514     LAN9217
55515
55516     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
55517     Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
55518     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
55519
55520 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
55521 Author: Sascha Laue <Sascha.Laue@gmx.biz>
55522 Date:   Tue Apr 1 15:13:03 2008 +0200
55523
55524     Fix watchdog POST for lwmon5
55525
55526     If the hardware watchdog detects a voltage error, the watchdog sets
55527     GPIO62 to low. The watchdog POST has to detect this low level.
55528
55529     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
55530
55531 commit 24b448448a917e52806f82660a5c9d47608894fb
55532 Author: Dave Liu <r63238@freescale.com>
55533 Date:   Tue Apr 1 15:22:11 2008 +0800
55534
55535     ata: update the libata.h from ata.h of linux kernel
55536
55537     Current libata.h of u-boot is out of sync from linux kernel,
55538     this patch make it be consistent with linux kernel.
55539
55540     Signed-off-by: Dave Liu <daveliu@freescale.com>
55541     Signed-off-by: Tor Krill <tor@excito.com>
55542
55543 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
55544 Author: Kumar Gala <galak@kernel.crashing.org>
55545 Date:   Mon Mar 31 11:59:27 2008 -0500
55546
55547     Allow use of ARCH=powerpc when building
55548
55549     The linux kernel is now mostly ARCH=powerpc, so to make life easier
55550     allow use to use ARCH=powerpc and convert it to ARCH=ppc.
55551
55552     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55553
55554 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
55555 Author: Kyungmin Park <kmpark@infradead.org>
55556 Date:   Mon Mar 31 10:40:54 2008 +0900
55557
55558     Add apollon board MAINTAINERS entry
55559
55560     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55561
55562 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
55563 Author: Kyungmin Park <kmpark@infradead.org>
55564 Date:   Mon Mar 31 10:40:36 2008 +0900
55565
55566     Fix OneNAND read
55567
55568     It should access with 16-bit instead of 8-bit
55569
55570     Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
55571
55572     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55573
55574 commit a9da2b41079d230db3a5641625311983f85ce1fb
55575 Author: Kyungmin Park <kmpark@infradead.org>
55576 Date:   Mon Mar 31 10:40:19 2008 +0900
55577
55578     Fix OneNAND erase command
55579
55580     It mis-calculates the block address.
55581     Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
55582
55583     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55584
55585 commit 61525f2ffa156665a66908fda47dbf29d65ea579
55586 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55587 Date:   Mon Mar 31 01:32:15 2008 +0200
55588
55589     Support for LinkStation / KuroBox HD and HG PPC models
55590
55591     This patch is based on the port by Mihai Georgian (see linkstation.c for
55592     Copyright information) and implements support for LinkStation / KuroBox HD
55593     and HG PPC models from Buffalo Technology, whereby HD is deactivated at
55594     the moment, pending network driver fixing.
55595
55596     Notice to users: this is pretty much a barebone port. Support for network
55597     on HG models is already in the U-Boot mainline, but you might also want
55598     patches to switch fan / phy modes depending on the negotiated ethernet
55599     parameters. This patch also doesn't support console switching, booting EM
55600     mode, Buffalo specific ext2 magic number. So, if you want to use any of
55601     those, you need additional patches. Otherwise this patche provides a fully
55602     functional u-boot with a network console on your system.
55603
55604     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55605
55606 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
55607 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55608 Date:   Sun Mar 30 01:22:13 2008 -0500
55609
55610     Add CONFIG_MII_INIT support to related boards
55611
55612     Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
55613     cmd_init.c. Add CONFIG_MII_INIT to board configuration files
55614     that use mii_init() in cmd_init.c.
55615
55616     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55617     Acked-by: Ben Warren <biggerbadderben@gmail.com>
55618
55619 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
55620 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55621 Date:   Sun Mar 30 01:19:06 2008 -0500
55622
55623     Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
55624
55625     Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
55626     CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
55627
55628     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55629
55630 commit e99ccb488181d012248c6be30b2093e950319fc5
55631 Author: Kumar Gala <galak@kernel.crashing.org>
55632 Date:   Thu Mar 27 11:46:38 2008 -0500
55633
55634     Introduce phys_size_t and move phys_addr_t into asm/types.h
55635
55636     Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
55637     that have larger physical addresses like 44x, 85xx, and 86xx.
55638
55639     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55640
55641 commit 20a14a42a25f72e379f38460b8a8484667536795
55642 Author: Andy Fleming <afleming@freescale.com>
55643 Date:   Wed Apr 2 16:19:07 2008 -0500
55644
55645     Rename include/md5.h to include/u-boot/md5.h
55646
55647     Some systems have md5.h installed in /usr/include/. This isn't the
55648     desired file (we want the one in include/md5.h). This will avoid the
55649     conflict. This fixes the host tools building problem by creating a new
55650     directory for U-Boot specific header files.
55651
55652     [Patch by Andy Fleming, modified to use separate directory by Wolfgang
55653     Denk]
55654
55655     Signed-off-by: Wolfgang Denk <wd@denx.de>
55656     Signed-off-by: Andy Fleming <afleming@freescale.com>
55657     Acked-by: Timur Tabi <timur@freescale.com>
55658
55659 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
55660 Author: Dave Liu <r63238@freescale.com>
55661 Date:   Thu Mar 27 18:51:17 2008 +0800
55662
55663     drivers: code clean up
55664
55665     Signed-off-by: Dave Liu <daveliu@freescale.com>
55666
55667 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
55668 Author: Dave Liu <r63238@freescale.com>
55669 Date:   Thu Mar 27 18:50:41 2008 +0800
55670
55671     drivers: clean up the ata_piix.h
55672
55673     Signed-off-by: Dave Liu <daveliu@freescale.com>
55674
55675 commit e8f7ba404f1409606962815ecc955a06984b08b3
55676 Author: Dave Liu <r63238@freescale.com>
55677 Date:   Thu Mar 27 18:49:56 2008 +0800
55678
55679     doc: english polishing for README.sata
55680
55681     according to gvb's suggestion, polishing for the doc.
55682
55683     Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
55684     Signed-off-by: Dave Liu <daveliu@freescale.com>
55685
55686 commit 3e3f766a5274d204780460e1879723b565296d34
55687 Author: Kumar Gala <galak@kernel.crashing.org>
55688 Date:   Wed Mar 26 18:53:28 2008 -0500
55689
55690     Fix warnings introduced by I2C bus speed setting patch
55691
55692     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55693
55694 commit 3c735e7437150e8615f26930c7819db85634276d
55695 Author: eran liberty <eran.liberty@gmail.com>
55696 Date:   Thu Mar 27 00:50:49 2008 +0100
55697
55698     Altera Stratix II support
55699
55700     Adds Support for Altera's Stratix II.
55701
55702     Within your board specific init file you will have to call
55703
55704     1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
55705     2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
55706
55707     Altera_desc* contines (for example):
55708         {
55709          Altera_StratixII,      /* part type */
55710          passive_serial,        /* interface type */
55711          1,                     /* bytes of data part can accept */
55712          (void *)(&funcs),      /* interface function table */
55713          0L,                    /* base interface address */
55714          0                      /* implementation specific cookie */
55715          }
55716
55717     funcs is the interface. It is of type altera_board_specific_func.
55718     It looks like this:
55719     altera_board_specific_func func = {
55720         pre_fn,
55721         config_fn,
55722         status_fn,
55723         done_fn,
55724         clk_fn,
55725         data_fn,
55726         abort_fn,
55727         post_fn,
55728     };
55729
55730     you will have to implement these functions, which is usually bit
55731     banging some gpio.
55732
55733     Signed-off-by: Eran Liberty <liberty@extricom.com>
55734
55735 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
55736 Author: Wolfgang Denk <wd@denx.de>
55737 Date:   Sun Apr 13 14:32:54 2008 -0700
55738
55739     Update CHANGELOG
55740
55741     Signed-off-by: Wolfgang Denk <wd@denx.de>
55742
55743 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
55744 Author: Sascha Hauer <s.hauer@pengutronix.de>
55745 Date:   Wed Mar 26 20:41:17 2008 +0100
55746
55747     Phytec Phycore-i.MX31 support
55748
55749     This patch adds support for the Phytec Phycore-i.MX31 board
55750
55751     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
55752     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55753
55754 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
55755 Author: Sascha Hauer <s.hauer@pengutronix.de>
55756 Date:   Wed Mar 26 20:41:09 2008 +0100
55757
55758     mx31 litekit support
55759
55760     This patch adds support for the mx31 litekit board
55761
55762     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
55763     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55764
55765 commit cdace0661208754a53019ea0dc7b803a040e0939
55766 Author: Sascha Hauer <s.hauer@pengutronix.de>
55767 Date:   Wed Mar 26 20:40:49 2008 +0100
55768
55769     add an i2c driver for mx31
55770
55771     This patch adds an i2c driver for Freescale i.MX processors
55772
55773     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
55774     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55775
55776 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
55777 Author: Sascha Hauer <s.hauer@pengutronix.de>
55778 Date:   Wed Mar 26 20:40:42 2008 +0100
55779
55780     core support for Freescale mx31
55781
55782     This patch adds the core support for Freescale mx31
55783
55784     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
55785     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55786
55787 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
55788 Author: Wolfgang Denk <wd@denx.de>
55789 Date:   Sun Apr 13 14:19:23 2008 -0700
55790
55791     Fix compile error
55792
55793     ...as suggested by Peter Pearse
55794
55795     Signed-off-by: Wolfgang Denk <wd@denx.de>
55796
55797 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
55798 Author: Sascha Hauer <s.hauer@pengutronix.de>
55799 Date:   Wed Mar 26 20:40:36 2008 +0100
55800
55801     Separate omap24xx specific code from arm1136
55802
55803     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
55804     to cpu/arm1136/omap24xx.
55805
55806     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
55807     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55808
55809 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
55810 Author: Mike Frysinger <vapier@gentoo.org>
55811 Date:   Tue Jan 29 18:21:05 2008 -0500
55812
55813     disable caches before booting an app for Blackfin apps
55814
55815     It isn't generally save to execute applications outside of U-Boot with caches
55816     enabled due to the way the Blackfin processor handles caches (requires
55817     software assistance).  This patch disables caches before booting an ELF or
55818     just booting raw code.  The previous discussion on the patch was that we
55819     wanted to use weaks instead, but that proved to not be feasible when multiple
55820     symbols are involved, which puts us back at the ifdef solution.  I've
55821     minimized the ugliness by moving the setup step outside of the main function.
55822
55823     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55824
55825 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
55826 Author: Wolfgang Denk <wd@denx.de>
55827 Date:   Sun Apr 13 10:03:54 2008 -0700
55828
55829     ppc: Get rid of unused machine type definitions
55830
55831     Signed-off-by: Wolfgang Denk <wd@denx.de>
55832
55833 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
55834 Author: Wolfgang Denk <wd@denx.de>
55835 Date:   Sun Apr 13 09:59:26 2008 -0700
55836
55837     Coding Style cleanup; update CHANGELOG
55838
55839     Signed-off-by: Wolfgang Denk <wd@denx.de>
55840
55841 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
55842 Author: Larry Johnson <lrj@acm.org>
55843 Date:   Thu Feb 21 13:58:11 2008 -0500
55844
55845     LM73 bug fix for negative temperatures and cleanup
55846
55847     When the LM73 temperature sensor measures a temperature below 0 C, the
55848     current driver does not perform sign extension, so the result returned is
55849     512 C too high.  This patch fixes the problem, and does general cleanup
55850     of the code.
55851
55852     Signed-off-by: Larry Johnson <lrj@acm.org>
55853
55854 commit 96ef831f713289afba19da0c8f905e99da2b23e0
55855 Author: Guennadi Liakhovetski <lg@denx.de>
55856 Date:   Thu Apr 3 13:36:02 2008 +0200
55857
55858     cfi_flash: Support buffered writes on non-standard Spansion NOR flash
55859
55860     Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
55861     series require different addresses for buffered write commands. Define a
55862     configuration option to support buffered writes on those chips. A more
55863     elegant solution would be to automatically detect those chips by parsing
55864     their CFI records, but that would require introduction of a fixup table
55865     into the cfi_flash driver.
55866
55867     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55868
55869 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
55870 Author: Lee Nipper <lee.nipper@freescale.com>
55871 Date:   Thu Apr 10 09:35:06 2008 -0500
55872
55873     mpc83xx: Update DIMM data bus width test to support 40-bit width
55874
55875     32-bit wide ECC memory modules report 40-bit width.
55876     Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
55877
55878     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
55879     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55880
55881 commit 5fb5a689d822ca61e814bd523fc930af335242fa
55882 Author: Dave Liu <r63238@freescale.com>
55883 Date:   Mon Mar 31 17:05:12 2008 +0800
55884
55885     mpc83xx: Fix the bug of serdes initialization
55886
55887     Currently the serdes will not be initializated due to the
55888     partid's error.
55889
55890     Signed-off-by: Dave Liu <daveliu@freescale.com>
55891     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55892
55893 commit 2000784818f043db7ca60e2846a72d097766b894
55894 Author: Dave Liu <r63238@freescale.com>
55895 Date:   Thu Apr 3 16:28:29 2008 +0800
55896
55897     mpc83xx: Fix the SATA clock setting of 837x targets
55898
55899     Currently the SATA controller clock is configured as CSB clock,
55900     usually the CSB clock is 400/333/266MHz.
55901
55902     However, The SATA IP block is only guaranteed to operate up to
55903     200 MHz as stated in the HW spec.
55904
55905     The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
55906
55907     This patch makes the SATA clock as half of CSB clock.
55908
55909     Signed-off-by: Dave Liu <daveliu@freescale.com>
55910     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55911
55912 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
55913 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55914 Date:   Wed Apr 2 13:41:21 2008 +0200
55915
55916     mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
55917
55918     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55919     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55920
55921 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
55922 Author: Kumar Gala <galak@kernel.crashing.org>
55923 Date:   Wed Apr 9 04:20:57 2008 -0500
55924
55925     85xx: Fix detection of MP cpu spin up
55926
55927     We were looking at the wrong memory offset to determine of a secondary
55928     cpu had been spun up or not.  Also added a warning message if the
55929     all the secondary cpus we expect don't spin up.
55930
55931     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55932
55933 commit f3e04bdc3f360c66801a9048956e61e41a16edba
55934 Author: Kumar Gala <galak@kernel.crashing.org>
55935 Date:   Tue Apr 8 10:45:50 2008 -0500
55936
55937     85xx: Use SVR_SOC_VER instead of SVR_VER
55938
55939     The recent change introduced by 'Update SVR numbers to expand support'
55940     now requires that we use SVR_SOC_VER instead of SVR_VER if we want
55941     to compare against a particular processor id.
55942
55943     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55944
55945 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
55946 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
55947 Date:   Fri Apr 11 10:00:35 2008 -0400
55948
55949     ppc4xx: Fix power mgt definitions for PPC440
55950
55951     Corrected DCR addresses of PPC440EP power management registers.
55952
55953     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
55954
55955 commit 950a392464e616b4590bc4501be46e2d7d162dea
55956 Author: Wolfgang Denk <wd@denx.de>
55957 Date:   Fri Apr 11 15:11:26 2008 +0200
55958
55959     Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
55960
55961     Reverting became necessary after it turned out that the patches in
55962     the u-boot-arm repo were modified, and in some cases corrupted.
55963
55964     This reverts the following commits:
55965
55966         066bebd6353e33af3adefc3404560871699e9961
55967         7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
55968         c88ae20580b2b01487b4cdcc8b2a113f551aee36
55969         a147e56f03871bba4f05058d5e04ce7deb010b04
55970         d6674e0e2a6a1f033945f78838566210d3f28c95
55971         8c8463cce44d849e37744749b32d38e1dfb12e50
55972         c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
55973         8bf69d81782619187933a605f1a95ee1d069478d
55974         8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
55975         a574a73852a527779234e73e17e7597fd8128882
55976         1377b5583a48021d983e1fd565f7d40c89e84d63
55977         1704dc20917b4f71e373e2c888497ee666d40380
55978
55979     Signed-off-by: Wolfgang Denk <wd@denx.de>
55980
55981 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
55982 Author: Stefan Roese <sr@denx.de>
55983 Date:   Fri Apr 11 07:02:29 2008 +0200
55984
55985     ppc4xx: Update Kilauea defconfig to use device-tree booting as default
55986
55987     This patch reworks the default environment on Kilauea/Haleakala. Now
55988     "net_nfs" for exmaple uses the device-tree style booting formerly know
55989     as "net_nfs_fdt". Also the addresses in RAM were changed because of the
55990     new image booting support, which check for image overwriting. So the
55991     addresses needed togeet adjusted.
55992
55993     Signed-off-by: Stefan Roese <sr@denx.de>
55994
55995 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
55996 Author: Stefan Roese <sr@denx.de>
55997 Date:   Wed Apr 9 11:58:02 2008 +0200
55998
55999     ppc4xx: Fix Canyonlands default environment to work with new image support
56000
56001     Since the new image support checks for image overwriting, the default
56002     environment needs to get adjusted to use correct addresses.
56003
56004     Signed-off-by: Stefan Roese <sr@denx.de>
56005
56006 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
56007 Author: Stefan Roese <sr@denx.de>
56008 Date:   Wed Apr 9 11:54:11 2008 +0200
56009
56010     ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
56011
56012     The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
56013     closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
56014     on 4xx systems _start currently cannot be used for this calculation.
56015     So revert back to the original version for now.
56016
56017     Signed-off-by: Stefan Roese <sr@denx.de>
56018
56019 commit f91374f65eae8b42cac329e06ba1c54728278efb
56020 Author: Michal Simek <monstr@monstr.eu>
56021 Date:   Fri Mar 28 12:49:52 2008 +0100
56022
56023     microblaze: Sort microblaze boards in MAKEALL script
56024
56025 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
56026 Author: Michal Simek <monstr@monstr.eu>
56027 Date:   Fri Mar 28 11:58:45 2008 +0100
56028
56029     microblaze: clean microblaze_config.mk
56030
56031     FLAGS are generated by U-BOOT generator.
56032     Board specific FLAGS are in board directory
56033
56034     Signed-off-by: Michal Simek <monstr@monstr.eu>
56035
56036 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
56037 Author: Michal Simek <monstr@monstr.eu>
56038 Date:   Fri Mar 28 12:47:19 2008 +0100
56039
56040     microblaze: xupv2p fix config file for supporting FDT
56041
56042 commit 188dc16b189143573b1ed90e584bf866d75cdd12
56043 Author: Michal Simek <monstr@monstr.eu>
56044 Date:   Fri Mar 28 11:53:02 2008 +0100
56045
56046     microblaze: ml401 fix config file for supporting FDT
56047
56048     Signed-off-by: Michal Simek <monstr@monstr.eu>
56049
56050 commit 4c6a6f02e239236261333759997eeaf86b30b54c
56051 Author: Michal Simek <monstr@monstr.eu>
56052 Date:   Fri Mar 28 11:22:48 2008 +0100
56053
56054     microblaze: ml401 - add ifdef for GPIO
56055
56056     Signed-off-by: Michal Simek <monstr@monstr.eu>
56057
56058 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
56059 Author: Michal Simek <monstr@monstr.eu>
56060 Date:   Fri Mar 28 12:13:03 2008 +0100
56061
56062     microblaze: clean uart16550 and uartlite handling
56063
56064     Signed-off-by: Michal Simek <monstr@monstr.eu>
56065
56066 commit 0b20f250877441460fb79d72192954abe8498834
56067 Author: Michal Simek <monstr@monstr.eu>
56068 Date:   Fri Mar 28 11:08:31 2008 +0100
56069
56070     microblaze: Add Emaclite driver to Makefile
56071
56072     Signed-off-by: Michal Simek <monstr@monstr.eu>
56073
56074 commit 868cde5310f88234b774878e4f06e79df10a88b3
56075 Author: Michal Simek <monstr@monstr.eu>
56076 Date:   Fri Mar 28 11:08:01 2008 +0100
56077
56078     microblaze: Add Emac driver to Makefile
56079
56080     Signed-off-by: Michal Simek <monstr@monstr.eu>
56081
56082 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
56083 Author: Michal Simek <monstr@monstr.eu>
56084 Date:   Fri Mar 28 12:42:29 2008 +0100
56085
56086     microblaze: add Emac ethernet driver
56087
56088 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
56089 Author: Michal Simek <monstr@monstr.eu>
56090 Date:   Fri Mar 28 12:41:56 2008 +0100
56091
56092     microblaze: add Emaclite ethernet driver
56093
56094 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
56095 Author: Michal Simek <monstr@monstr.eu>
56096 Date:   Fri Mar 28 11:04:01 2008 +0100
56097
56098     microblaze: ML401 and XUPV2P remove emac and emaclite reference
56099
56100     Signed-off-by: Michal Simek <monstr@monstr.eu>
56101
56102 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
56103 Author: Michal Simek <monstr@monstr.eu>
56104 Date:   Fri Mar 28 10:59:32 2008 +0100
56105
56106     microblaze: remove old setting for emac driver
56107
56108     Signed-off-by: Michal Simek <monstr@monstr.eu>
56109
56110 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
56111 Author: Michal Simek <monstr@monstr.eu>
56112 Date:   Fri Mar 28 10:58:15 2008 +0100
56113
56114     microblaze: Clean Makefile from ancient emac driver
56115
56116     Signed-off-by: Michal Simek <monstr@monstr.eu>
56117
56118 commit ab68f921d9c741830f721c3d879c13a0c5597183
56119 Author: Daniel Hellstrom <daniel@gaisler.com>
56120 Date:   Fri Mar 28 10:20:43 2008 +0100
56121
56122     SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
56123
56124     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56125
56126 commit 6ed8a43a19bb0275501bc286007daafa923552cf
56127 Author: Daniel Hellstrom <daniel@gaisler.com>
56128 Date:   Wed Mar 26 23:38:48 2008 +0100
56129
56130     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.
56131
56132     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56133
56134 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
56135 Author: Daniel Hellstrom <daniel@gaisler.com>
56136 Date:   Wed Mar 26 23:34:47 2008 +0100
56137
56138     SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
56139
56140     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56141
56142 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
56143 Author: Daniel Hellstrom <daniel@gaisler.com>
56144 Date:   Fri Mar 28 10:06:52 2008 +0100
56145
56146     SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
56147
56148     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56149
56150 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
56151 Author: Daniel Hellstrom <daniel@gaisler.com>
56152 Date:   Wed Mar 26 23:26:48 2008 +0100
56153
56154     SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
56155
56156     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56157
56158 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
56159 Author: Daniel Hellstrom <daniel@gaisler.com>
56160 Date:   Fri Mar 28 10:00:33 2008 +0100
56161
56162     SPARC: Added support for SPARC LEON2 SOC Processor.
56163
56164     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56165
56166 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
56167 Author: Daniel Hellstrom <daniel@gaisler.com>
56168 Date:   Wed Mar 26 23:00:38 2008 +0100
56169
56170     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.
56171
56172     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56173
56174 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
56175 Author: Daniel Hellstrom <daniel@gaisler.com>
56176 Date:   Wed Mar 26 22:51:29 2008 +0100
56177
56178     SPARC: Added support for SPARC LEON3 SOC processor.
56179
56180     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56181
56182 commit bf3d8b31169546fcddb4737391e1893fb12d033a
56183 Author: Daniel Hellstrom <daniel@gaisler.com>
56184 Date:   Fri Mar 28 08:29:26 2008 +0100
56185
56186     SPARC: added SPARC support for new uimage in common code.
56187
56188     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56189
56190 commit 00ab32c85405a4fe65fd4128243086210fc90a21
56191 Author: Daniel Hellstrom <daniel@gaisler.com>
56192 Date:   Wed Mar 26 22:36:03 2008 +0100
56193
56194     SPARC: added SPARC board information to the command bdinfo.
56195
56196     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56197
56198 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
56199 Author: Daniel Hellstrom <daniel@gaisler.com>
56200 Date:   Fri Mar 28 09:47:00 2008 +0100
56201
56202     SPARC: Added generic support for SPARC architecture.
56203
56204     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56205
56206 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
56207 Author: Stefan Roese <sr@denx.de>
56208 Date:   Thu Apr 3 14:50:34 2008 +0200
56209
56210     ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
56211
56212     This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
56213     has 2 RGMII instances and we need to configure the 2nd RGMII instance
56214     for the EMAC2+3 channels.
56215
56216     Signed-off-by: Stefan Roese <sr@denx.de>
56217
56218 commit c2a545ce33b26d80337f80b533828839249fb1c9
56219 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56220 Date:   Wed Apr 2 08:03:56 2008 +0200
56221
56222     MPC8xx: Fix libfdt support introduced in commit 77ff7b74
56223
56224     fdt.c: In function 'ft_cpu_setup':
56225     fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
56226     fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
56227     fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
56228     fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
56229
56230     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56231
56232 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
56233 Author: Andy Fleming <afleming@freescale.com>
56234 Date:   Mon Mar 31 20:45:56 2008 -0500
56235
56236     Fix fdt set command to conform to dts spec
56237
56238     The fdt set command was treating properties specified as <00> and <0011>
56239     as byte streams, rather than as an array of cells.  As we already have
56240     syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
56241     we should use the <> syntax to describe arrays of cells, which are always
56242     32-bits per element.  If we imagine this likely (IMHO) scenario:
56243
56244     > fdt set /ethernet-phy@1 reg <1>
56245
56246     With the old code, this would create a bad fdt, since the reg cell would be
56247     made to be one byte in length.  But the cell must be 4 bytes, so this would
56248     break mysteriously.
56249
56250     Also, the dts spec calls for constants inside the angle brackets (<>)
56251     to conform to C constant standards as they pertain to base.
56252     Take this scenario:
56253
56254     > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
56255
56256     The old fdt command would complain that it couldn't parse that.  Or, if you
56257     wanted to specify that a certain clock ran at 33 MHz, you'd be required to
56258     do this:
56259
56260     > fdt set /mydev clock <1f78a40>
56261
56262     Whereas the new code will accept decimal numbers.
56263
56264     While I was in there, I extended the fdt command parser to handle property
56265     strings which are split across multiple arguments:
56266
56267     > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
56268     > fdt p /ethernet@f00
56269     ethernet@f00 {
56270         interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
56271     };
56272
56273     Lastly, the fdt print code was rearranged slightly to print arrays of cells
56274     if the length of the property is a multiple of 4 bytes, and to not print
56275     leading zeros.
56276
56277     Signed-off-by: Andy Fleming <afleming@freescale.com>
56278
56279 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
56280 Author: Stefan Roese <sr@denx.de>
56281 Date:   Wed Apr 2 08:39:33 2008 +0200
56282
56283     ppc4xx: Canyonlands: Init SATA/PCIe port correctly
56284
56285     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
56286     interface. This usage can be configured with the jumper J6. This patch
56287     correctly configures the SATA/PCIe PHY for SATA usage when this jumper
56288     is installed.
56289
56290     Signed-off-by: Stefan Roese <sr@denx.de>
56291
56292 commit 6fe2946f198481254a6ee9600d7456b8316a4083
56293 Author: Kim Phillips <kim.phillips@freescale.com>
56294 Date:   Fri Mar 28 17:37:49 2008 -0500
56295
56296     remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
56297
56298     finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
56299     "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
56300     started.
56301
56302     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56303
56304 commit b5873f1732b92a25690e1513b90dfb0d644f6697
56305 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56306 Date:   Tue Apr 1 07:30:51 2008 +0200
56307
56308     dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
56309
56310     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56311
56312 commit 2d934ea51f276522b532f870a820e844ff480b5b
56313 Author: Tor Krill <tor@excito.com>
56314 Date:   Fri Mar 28 15:29:45 2008 +0100
56315
56316     Add Vitesse 8601 support to TSEC driver
56317
56318     Add phy_info for Vitesse VSC8601.
56319     Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
56320
56321     Signed-off-by: Tor Krill <tor@excito.com>
56322     Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
56323     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56324
56325 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
56326 Author: Daniel Hellstrom <daniel@gaisler.com>
56327 Date:   Mon Mar 31 14:25:00 2008 +0000
56328
56329     SPARC: added SMC91111 driver in and out macros for LEON processors.
56330
56331     This patch makes SPARC/LEON processors able to read and write
56332     to the SMC91111 chip using the chip external I/O bus of the memory
56333     controller. This patchs defines the standard in and out macros
56334     expected by the SMC9111 driver.
56335
56336     To access that I/O bus one must set up the memory controller
56337     (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
56338     up this correctly when the other MCTRL parameters are set up. It
56339     can be set up from the board configuration header file.
56340
56341     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56342     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56343
56344 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
56345 Author: Stelian Pop <stelian@popies.net>
56346 Date:   Wed Mar 26 18:52:34 2008 +0100
56347
56348     Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
56349
56350     Signed-off-by: Stelian Pop <stelian@popies.net>
56351
56352 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
56353 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56354 Date:   Mon Mar 31 21:31:04 2008 +0200
56355
56356     AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
56357
56358     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56359
56360 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
56361 Author: Stelian Pop <stelian@popies.net>
56362 Date:   Wed Mar 26 18:52:33 2008 +0100
56363
56364     Add support for AT91SAM9260EK
56365
56366     Support for booting from internal DataFlash, external DataFlash card
56367     or NAND flash is available.
56368
56369     Signed-off-by: Stelian Pop <stelian@popies.net>
56370
56371 commit 1762f13b4aab88b685b1722f17dada247945624b
56372 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56373 Date:   Mon Mar 31 21:20:49 2008 +0200
56374
56375     AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
56376
56377     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56378
56379 commit 761712188b353494defb2b644491ff73d0daaa6f
56380 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56381 Date:   Mon Mar 31 21:12:17 2008 +0200
56382
56383     AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
56384
56385     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56386
56387 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
56388 Author: Stelian Pop <stelian@popies.net>
56389 Date:   Wed Mar 26 20:52:32 2008 +0100
56390
56391     Port AT91CAP9 to the new headers
56392
56393     Adapt the existing AT91CAP9 code to the new headers and APIs.
56394
56395     Signed-off-by: Stelian Pop <stelian@popies.net>
56396
56397 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
56398 Author: Stelian Pop <stelian@popies.net>
56399 Date:   Wed Mar 26 19:52:31 2008 +0100
56400
56401     Finish header files reworking
56402
56403     Replace AT91CAP9.h file with several splitted header files coming
56404     from the Linux kernel.
56405
56406     This is part 2 of the replacement: more header imports and edits.
56407
56408     Signed-off-by: Stelian Pop <stelian@popies.net>
56409
56410 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
56411 Author: Stelian Pop <stelian@popies.net>
56412 Date:   Wed Mar 26 19:52:30 2008 +0100
56413
56414     Import several header files from Linux
56415
56416     Replace AT91CAP9.h file with several splitted header files coming
56417     from the Linux kernel.
56418
56419     This is part 1 of the replacement: pristine header files import.
56420
56421     Signed-off-by: Stelian Pop <stelian@popies.net>
56422
56423 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
56424 Author: Stelian Pop <stelian@popies.net>
56425 Date:   Wed Mar 26 20:52:28 2008 +0100
56426
56427     Move at91cap9 specific files to at91sam9 directory
56428
56429     AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
56430     common infrastructure can be used. Let this infrastructure be
56431     named after the AT91SAM9 family, and move the existing AT91CAP9
56432     files to the new place.
56433
56434     Signed-off-by: Stelian Pop <stelian@popies.net>
56435
56436 commit 61106a565870ff503f92b251b94bd7afef889a04
56437 Author: Stelian Pop <stelian@popies.net>
56438 Date:   Wed Mar 26 21:52:27 2008 +0100
56439
56440     Use timer_init() instead of board supplied interrupt_init()
56441
56442     The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
56443     the board, so use timer_init() instead of interrupt_init().
56444
56445     Signed-off-by: Stelian Pop <stelian@popies.net>
56446
56447 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
56448 Author: Stelian Pop <stelian@popies.net>
56449 Date:   Wed Mar 26 21:52:36 2008 +0100
56450
56451     Cleanup DataFlash partition handling
56452
56453     DataFlash partition information has become a mess. This patch
56454     defines a single partition scheme for Atmel DataFlashes. This partition
56455     scheme will be used by all AT91CAP9 and AT91SAM9 boards.
56456
56457     Signed-off-by: Stelian Pop <stelian@popies.net>
56458
56459 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
56460 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56461 Date:   Fri Mar 28 08:47:45 2008 -0500
56462
56463     ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
56464
56465     When the version_string function in start.S is not 4-byte align,
56466     it will cause the compiler generates "unaligned opcodes detected
56467     in executable segment". This issue affects all ColdFire CPUs.
56468     By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
56469     it is not aligned.
56470
56471     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56472     Acked-by: John Rigby <jrigby@freescale.com>
56473
56474 commit bae61eefe15b4d454060a7140e49ae58322be803
56475 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56476 Date:   Tue Mar 25 15:41:15 2008 -0500
56477
56478     ColdFire: Add dspi and serial flash support for MCF5445x
56479
56480     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56481     Acked-by: John Rigby <jrigby@freescale.com>
56482
56483 commit 48ead7a7a922fceaf494e352abfab8216a41b417
56484 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56485 Date:   Tue Mar 18 17:37:01 2008 -0500
56486
56487     ColdFire: Remove R5200 board
56488
56489     This board never went into production
56490
56491     Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
56492     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56493     Acked-by: John Rigby <jrigby@freescale.com>
56494
56495 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
56496 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
56497 Date:   Thu Jan 24 14:02:32 2008 -0600
56498
56499     ColdFire: Added M5275EVB support.
56500
56501     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
56502     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56503     Acked-by: John Rigby <jrigby@freescale.com>
56504
56505 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
56506 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
56507 Date:   Mon Feb 4 15:38:20 2008 -0600
56508
56509     ColdFire: Added MCF5275 cpu support.
56510
56511     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
56512     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56513     Acked-by: John Rigby <jrigby@freescale.com>
56514
56515 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
56516 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56517 Date:   Mon Mar 17 12:14:11 2008 -0500
56518
56519     ColdFire: Define bootdelay in configuration file for M52277EVB
56520
56521     Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
56522     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56523     Acked-by: John Rigby <jrigby@freescale.com>
56524
56525 commit 77878f16cedee17161ff2336990970fffc6cea35
56526 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56527 Date:   Mon Mar 17 12:09:07 2008 -0500
56528
56529     ColdFire: Fix second memory Chipselect for M5475EVB
56530
56531     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56532     Acked-by: John Rigby <jrigby@freescale.com>
56533
56534 commit 43d60642395a550956cb21d287c8cfa563913d28
56535 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56536 Date:   Thu Mar 13 14:26:32 2008 -0500
56537
56538     ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
56539
56540     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56541     Acked-by: John Rigby <jrigby@freescale.com>
56542
56543 commit eb14ebe813a0cb5d47905228da446a5ad692473b
56544 Author: Larry Johnson <lrj@acm.org>
56545 Date:   Sun Mar 30 20:33:04 2008 -0500
56546
56547     ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
56548
56549     Signed-off-by: Larry Johnson <lrj@acm.org>
56550
56551 commit 02e3892021112f21067d9ed1d04ae4182725ba52
56552 Author: Stefan Roese <sr@denx.de>
56553 Date:   Mon Mar 31 12:20:48 2008 +0200
56554
56555     ppc4xx: Small whitespace fix of esd patches
56556
56557     Signed-off-by: Stefan Roese <sr@denx.de>
56558
56559 commit 034394abb524785047c815f00dde8cdbdc1593c5
56560 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56561 Date:   Sun Mar 30 18:52:44 2008 +0200
56562
56563     ppc4xx: Cleanup PMC440 board support
56564
56565     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56566
56567 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
56568 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56569 Date:   Sun Mar 30 18:52:06 2008 +0200
56570
56571     ppc4xx: Add ptm configuration variables for PMC440
56572
56573     Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
56574     environment variables.
56575
56576     Cleanup pci_target_init.
56577
56578     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56579
56580 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
56581 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56582 Date:   Sun Mar 30 18:01:15 2008 +0200
56583
56584     ppc4xx: Minor updates for DU440 boards
56585
56586     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56587
56588 commit d5bffeb868d6b4d462f558dac43011027b6644b7
56589 Author: Mike Frysinger <vapier@gentoo.org>
56590 Date:   Tue Feb 19 00:54:20 2008 -0500
56591
56592     Blackfin: cleanup and overhaul common board init functions
56593
56594     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56595
56596 commit b86b3416f874358acaf07519e7620cdb2145f75b
56597 Author: Mike Frysinger <vapier@gentoo.org>
56598 Date:   Tue Feb 19 00:50:58 2008 -0500
56599
56600     Blackfin: cleanup lib_blackfin/cache.c
56601
56602     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56603
56604 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
56605 Author: Mike Frysinger <vapier@gentoo.org>
56606 Date:   Sun Mar 30 15:46:13 2008 -0400
56607
56608     Blackfin: unify cpu and boot modes
56609
56610     All of the duplicated code for Blackfin processors and boot modes have been
56611     unified.  After all, the core is the same for all processors, just the
56612     peripheral set differs (which gets handled in the drivers).
56613
56614     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56615
56616 commit 880cc4381ea8360248cddcdf87a64566745a5724
56617 Author: Stelian Pop <stelian@popies.net>
56618 Date:   Wed Mar 26 22:52:35 2008 +0100
56619
56620     Fix CFG_NO_FLASH compilation.
56621
56622     Many Atmel boards have no "real" (NOR) flash on board, and rely only
56623     on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
56624     be present in a board configuration file, while still enabling flash
56625     commands like 'flinfo', 'protect', etc.
56626
56627     Signed-off-by: Stelian Pop <stelian@popies.net>
56628
56629 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
56630 Author: Mike Frysinger <vapier@gentoo.org>
56631 Date:   Tue Feb 19 00:58:13 2008 -0500
56632
56633     Blackfin: BF537-stamp: cleanup spi flash driver
56634
56635     This punts the old spi flash driver for a new/generalized one until the
56636     common one can be integrated.
56637
56638     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56639
56640 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
56641 Author: Ben Warren <biggerbadderben@gmail.com>
56642 Date:   Sun Mar 30 11:34:34 2008 -0400
56643
56644     Fix macro typo in common/cmd_mii.c
56645
56646     This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206.  I
56647     actually applied the wrong patch.
56648
56649     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56650
56651 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
56652 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56653 Date:   Sun Mar 30 16:39:53 2008 +0200
56654
56655     use correct at91rm9200 register name in m501sk board
56656
56657     This fixes a naming bug for at91rm9200 lowlevel init code:
56658     NOR boot flash is on chipselect 0, not chipselect 2.  This
56659     makes code use the register name from chip datasheets.
56660
56661     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56662
56663 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
56664 Author: David Brownell <david-b@pacbell.net>
56665 Date:   Fri Jan 18 12:55:00 2008 -0800
56666
56667     use correct at91rm9200 register name
56668
56669     This fixes a naming bug for at91rm9200 lowlevel init code:
56670     NOR boot flash is on chipselect 0, not chipselect 2.  This
56671     makes code use the register name from chip datasheets.
56672
56673     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
56674
56675 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
56676 Author: David Brownell <david-b@pacbell.net>
56677 Date:   Fri Jan 18 12:45:45 2008 -0800
56678
56679     add missing ARM boards to MAKEALL
56680
56681     Add some missing ARM boards to MAKEALL.  These build correctly,
56682     unlike several of the boards already listed.
56683
56684     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
56685
56686 commit 066bebd6353e33af3adefc3404560871699e9961
56687 Author: Peter Pearse <peter.pearse@arm.com>
56688 Date:   Sun Mar 30 11:34:09 2008 +0100
56689
56690     Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
56691     to prevent compilation error.
56692
56693     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
56694
56695 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
56696 Author: Guennadi Liakhovetski <[lg@denx.de]>
56697 Date:   Sun Mar 30 11:32:30 2008 +0100
56698
56699     Support for the MX31ADS evaluation board from Freescale
56700
56701     This patch adds support for the MX31ADS evaluation board from Freescale,
56702     initialization code is copied from RedBoot sources, also provided by Freescale.
56703
56704     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56705
56706 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
56707 Author: Sascha Hauer <s.hauer@pengutronix.de>
56708 Date:   Sun Mar 30 11:32:27 2008 +0100
56709
56710     Phytec Phycore-i.MX31 support
56711
56712     This patch adds support for the Phytec Phycore-i.MX31 board
56713
56714     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56715     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56716
56717 commit a147e56f03871bba4f05058d5e04ce7deb010b04
56718 Author: Sascha Hauer <s.hauer@pengutronix.de>
56719 Date:   Sun Mar 30 11:32:24 2008 +0100
56720
56721     mx31 litekit support
56722
56723     This patch adds support for the mx31 litekit board
56724
56725     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56726     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56727
56728 commit d6674e0e2a6a1f033945f78838566210d3f28c95
56729 Author: Sascha Hauer <s.hauer@pengutronix.de>
56730 Date:   Sun Mar 30 11:32:21 2008 +0100
56731
56732     add SMSC LAN9x1x Network driver
56733
56734     This patch adds a driver for the following smsc network controllers:
56735     LAN9115
56736     LAN9116
56737     LAN9117
56738     LAN9215
56739     LAN9216
56740     LAN9217
56741
56742     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56743     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56744
56745 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
56746 Author: Sascha Hauer <s.hauer@pengutronix.de>
56747 Date:   Sun Mar 30 11:32:16 2008 +0100
56748
56749     add an i2c driver for mx31
56750
56751     This patch adds an i2c driver for Freescale i.MX processors
56752
56753     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56754     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56755
56756 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
56757 Author: Sascha Hauer <s.hauer@pengutronix.de>
56758 Date:   Sun Mar 30 11:30:43 2008 +0100
56759
56760     core support for Freescale mx31
56761
56762     This patch adds the core support for Freescale mx31
56763
56764     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56765     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56766
56767 commit 8bf69d81782619187933a605f1a95ee1d069478d
56768 Author: Sascha Hauer <s.hauer@pengutronix.de>
56769 Date:   Sun Mar 30 11:28:46 2008 +0100
56770
56771     Separate omap24xx specific code from arm1136
56772
56773     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
56774
56775     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56776     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56777
56778 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
56779 Author: Peter Pearse <peter.pearse@arm.com>
56780 Date:   Sun Mar 30 11:23:05 2008 +0100
56781
56782     Add pmdra into MAKEALL
56783
56784     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
56785
56786 commit a574a73852a527779234e73e17e7597fd8128882
56787 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
56788 Date:   Sun Mar 30 11:21:58 2008 +0100
56789
56790     Adds support for the Prodrive PMDRA board, based on a DM6441
56791
56792     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
56793
56794 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
56795 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
56796 Date:   Sun Mar 30 11:11:34 2008 +0100
56797
56798     Removes all board specific code from the arch. part for DM644x (DaVinci) boards
56799
56800     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
56801
56802 commit 1704dc20917b4f71e373e2c888497ee666d40380
56803 Author: Dirk Behme <dirk.behme@gmail.com>
56804 Date:   Sun Mar 30 11:09:01 2008 +0100
56805
56806     - Remove *_masked() functions as noted by Wolfgang
56807     - Adapt register naming to recent TI spec (sprue26, March 2007)
56808     - Fix reset_timer() handling
56809     - As reported by Pieter [1] the overflow fix introduced a
56810     delay of factor 16 (e.g 2 seconds became 32). While the
56811     overflow fix is basically okay, it missed to divide udelay by
56812     16, too. Fix this.
56813     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
56814     - Remove software division of timer count value (DIV(x)
56815     macro) and do it in hardware (TIM_CLK_DIV).
56816     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
56817     and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
56818     the hints & testing!
56819
56820     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
56821
56822     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
56823
56824 commit ac3315c26e143c31680750c9c13f027efbcc887e
56825 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
56826 Date:   Thu Mar 6 16:45:44 2008 +0100
56827
56828     new PHY @ e1000 - 2nd try
56829
56830     Add 82541ER device with latest integrated IGP2 PHY.
56831     Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
56832
56833     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
56834     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56835
56836 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
56837 Author: Daniel Hellstrom <daniel@gaisler.com>
56838 Date:   Fri Mar 28 20:22:53 2008 +0100
56839
56840     SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
56841
56842     GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
56843     a debug link (EDCL). The GRETH core is documented in GRIP.pdf
56844     available at www.gaisler.com.
56845
56846     If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
56847     offloading etc.) can be determined by a bit in the control register.
56848     The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
56849
56850     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56851     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56852
56853 commit 233a8bcd94997f3f345833a3b82e836222f2a206
56854 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
56855 Date:   Mon Mar 17 17:08:22 2008 -0500
56856
56857     Add CONFIG_MII_INIT in cmd_mii.c
56858
56859     Provide common configuration in do_mii() to execute mii_init()
56860     for all cpu architectures
56861
56862     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56863     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56864
56865 commit f605479de2deb11e834f31dfdb0af107c86aced6
56866 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
56867 Date:   Mon Mar 17 17:08:16 2008 -0500
56868
56869     ColdFire: Fix FEC transmit issue for MCF5275
56870
56871     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56872     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56873
56874 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
56875 Author: Aras Vaichas <arasv@magtech.com.au>
56876 Date:   Wed Mar 26 09:43:57 2008 +1100
56877
56878     DHCP request fix for Windows Server 2003
56879
56880     Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
56881     delay before sending "DHCP Request" in net/bootp.c. Required to overcome
56882     interoperability problems with Windows Server 200x DHCP server when U-Boot
56883     client responds too fast for server to handle.
56884
56885     Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
56886     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56887
56888 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
56889 Author: Daniel Hellstrom <daniel@gaisler.com>
56890 Date:   Fri Mar 28 20:40:19 2008 +0100
56891
56892     MTD/CFI: flash_read64 is defined a weak function (for SPARC)
56893
56894     SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
56895     SPARC CPUs implement flash_read64 which calls __raw_readq.
56896
56897     For current SPARC architectures (LEON2 and LEON3) each read from the
56898     FLASH must lead to a cache miss. This is because FLASH can not be set
56899     non-cacheable since program code resides there, and alternatively disabling
56900     cache is poor from performance view, or doing a cache flush between each
56901     read is even poorer.
56902
56903     Forcing a cache miss on a SPARC is done by a special instruction "lda" -
56904     load alternative space, the alternative space number (ASI) is processor
56905     implementation spcific and can be found by including <asm/processor.h>.
56906
56907     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56908
56909 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
56910 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
56911 Date:   Fri Mar 28 15:41:25 2008 +0100
56912
56913     Make MPC83xx one step closer to full relocation.
56914
56915     Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
56916     and use GOT relative reference.
56917
56918     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
56919     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56920
56921 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
56922 Author: Michael Barkowski <michael.barkowski@freescale.com>
56923 Date:   Thu Mar 27 14:34:43 2008 -0400
56924
56925     mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
56926
56927     This patch fixes eeprom page size so that you can now write more than
56928     64 bytes at a time.
56929
56930     It also makes the board take MAC addresses, if found, from EEPROM.
56931
56932     User should place up to 4 addresses at offset 0x7f00, for
56933     eth{,1,2,3}addr.  Any unused addresses should be zero.  This group of
56934     four six-byte values should have it's CRC at the end.  crc32 and
56935     eeprom commands can be used to accomplish this.
56936
56937     If CRC fails, MAC addresses come from the environment.  If CRC
56938     succeeds, the environment is overwritten at startup.
56939
56940     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
56941     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56942
56943 commit 8f325cff31f6e745e6540014b131b9a97f61944c
56944 Author: Michael Barkowski <michael.barkowski@freescale.com>
56945 Date:   Fri Mar 28 15:15:38 2008 -0400
56946
56947     mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
56948
56949     Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
56950     controller on the PCI bus in Linux on the MPC8323ERDB.
56951
56952     This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
56953     config file.
56954
56955     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
56956     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56957
56958 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
56959 Author: Kim Phillips <kim.phillips@freescale.com>
56960 Date:   Fri Mar 28 10:19:07 2008 -0500
56961
56962     mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
56963
56964     in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
56965     85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
56966     and processor ID display.  Add REVID_{MAJ,MIN}OR macros to make
56967     REVID dependent code simpler.  Also added PARTID_NO_E and IS_E_PROCESSOR
56968     convenience macros.
56969
56970     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56971
56972 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
56973 Author: Kim Phillips <kim.phillips@freescale.com>
56974 Date:   Fri Mar 28 10:18:53 2008 -0500
56975
56976     mpc83xx: display ddr frequency in board_add_ram_info banner
56977
56978     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56979
56980 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
56981 Author: Kim Phillips <kim.phillips@freescale.com>
56982 Date:   Fri Mar 28 10:18:40 2008 -0500
56983
56984     mpc83xx: unreinvent mem_clk
56985
56986     delete ddr_clk and use mem_clk instead.  Rename other ddr_*_clk to
56987     mem_*_clk for consistency's sake.
56988
56989     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56990
56991 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
56992 Author: Kim Phillips <kim.phillips@freescale.com>
56993 Date:   Fri Mar 28 14:31:23 2008 -0500
56994
56995     mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
56996
56997     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56998
56999 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
57000 Author: Dave Liu <r63238@freescale.com>
57001 Date:   Wed Mar 26 22:57:19 2008 +0800
57002
57003     mpc83xx: enable the SATA interface on mpc837xemds board
57004
57005     Enable the first two SATA interfaces on MPC837xEMDS board,
57006     The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
57007
57008     Signed-off-by: Dave Liu <daveliu@freescale.com>
57009     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57010
57011 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
57012 Author: Dave Liu <r63238@freescale.com>
57013 Date:   Wed Mar 26 22:56:36 2008 +0800
57014
57015     mpc83xx: initialize serdes for MPC837xEMDS boards
57016
57017     This patch is stolen from Anton Vorontsov's patch
57018     for mpc837xerdb boards.
57019
57020     The reference clk and xcorevdd voltage of serdes1/2
57021     is same between mpc837xemds and mpc837xerdb.
57022
57023     8377E: LYNX1- 2 SATA        LYNX2- 2 PCIE
57024     8378E: LYNX1- 2 SGMII       LYNX2- 2 PCIE
57025     8379E: LYNX1- 2 SATA        LYNX2- 2 SATA
57026
57027     Signed-off-by: Dave Liu <daveliu@freescale.com>
57028     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57029
57030 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
57031 Author: Stefan Roese <sr@denx.de>
57032 Date:   Fri Mar 28 14:09:04 2008 +0100
57033
57034     ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
57035
57036     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
57037     interface. This usage can be configured with the jumper J6. This patch
57038     displays the current configuration upon bootup and changes the PCIe
57039     init loop, to only initialize the availabel PCIe slots.
57040
57041     Signed-off-by: Stefan Roese <sr@denx.de>
57042
57043 commit 90447ecbbac8572457b6d8903073ac3f120995ba
57044 Author: Tor Krill <tor@excito.com>
57045 Date:   Fri Mar 28 11:29:10 2008 +0100
57046
57047     MTD/CFI: Add support for 16bit legacy AMD flash
57048
57049     Add entry for 512Kx16 AMD flash to jedec_table.
57050     Read out 16bit device id if chipwidth is 16bit.
57051     Fixed coding style after Stefans feedback
57052
57053     Signed-off-by: Tor Krill <tor@excito.com>
57054
57055 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
57056 Author: Stefan Roese <sr@denx.de>
57057 Date:   Fri Mar 28 11:02:53 2008 +0100
57058
57059     ppc: Small change to CFG_MEM_TOP_HIDE description
57060
57061     Signed-off-by: Stefan Roese <sr@denx.de>
57062
57063 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
57064 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57065 Date:   Thu Mar 27 15:44:12 2008 +0900
57066
57067     sh: Add support stat structure and stat.h
57068
57069     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57070
57071 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
57072 Author: Mark Jonas <toertel@gmail.com>
57073 Date:   Sat Mar 22 19:27:52 2008 +0100
57074
57075     sh: Removed warning when compiling drivers/serial/serial_sh.c.
57076
57077     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
57078     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57079
57080 commit f309fa38929ffba71230c02330ffa42f4bba6333
57081 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57082 Date:   Wed Mar 12 18:02:57 2008 +0900
57083
57084     sh: Remove disable_ctrlc function from R7780MP
57085
57086     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57087
57088 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
57089 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57090 Date:   Wed Mar 12 17:55:15 2008 +0900
57091
57092     sh: Add maintainer of R7780MP to MAINTAINER file
57093
57094     Update MAINTAINER entry for R7780MP. And fix maintainer's name.
57095
57096     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57097
57098 commit f5e2466f7baa887a7df0c536333eea8231333497
57099 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57100 Date:   Tue Mar 25 17:11:24 2008 +0900
57101
57102     sh: Add support Renesas Solutions R2D plus board
57103
57104     R2D plus is SH reference board used with SH7751R.
57105     This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
57106     one PCI bus, VGA, and two Ethernet controller.
57107
57108     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57109
57110 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
57111 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57112 Date:   Wed Mar 12 12:15:29 2008 +0900
57113
57114     sh: Add support SH4 cache control
57115
57116     Add support SH4 cache control and flash_cache function
57117
57118     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57119
57120 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
57121 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57122 Date:   Mon Mar 24 01:53:01 2008 +0900
57123
57124     sh: Add support PCI host driver for SH7751/SH7751R
57125
57126     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57127
57128 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
57129 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57130 Date:   Mon Mar 24 02:11:26 2008 +0900
57131
57132     sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
57133
57134     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57135
57136 commit 566933278101c144d75361ea682678a326c1290d
57137 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57138 Date:   Wed Mar 12 12:10:28 2008 +0900
57139
57140     sh: Add support SuperH SH7751/SH7751R
57141
57142     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57143
57144 commit 3313e0e26224fc9a0c445124f3455058c696df84
57145 Author: Mark Jonas <toertel@gmail.com>
57146 Date:   Mon Mar 10 11:37:10 2008 +0100
57147
57148     sh: Added support for SH7720 based board MPR2.
57149
57150     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
57151     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57152
57153 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
57154 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57155 Date:   Thu Mar 6 14:05:53 2008 +0900
57156
57157     sh: Fix receive FIFO level register of SH4A
57158
57159     Receive FIFO level register is different in SH4A.
57160     Because register is different, cannot occasionally receive data.
57161
57162     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57163
57164 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
57165 Author: Yusuke Goda <goda.yusuke@renesas.com>
57166 Date:   Tue Mar 11 12:55:12 2008 +0900
57167
57168     sh: Add support Renesas Solutions R7780MP
57169
57170     Renesas Solutions R7780MP is a reference board on SH7780.
57171     This board has serial, 10/100 base Ethernet deivice, CF slot
57172     and VGA devices. This board can set extension board.
57173     Extension board has 10/100/1000 base Ethernet device, PCI slot,
57174     S-ATA, iDVR slot.
57175
57176     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
57177     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57178
57179 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
57180 Author: Yusuke Goda <goda.yusuke@renesas.com>
57181 Date:   Wed Mar 5 14:30:02 2008 +0900
57182
57183     sh: Add support PCI of SuperH and SH7780
57184
57185     This patch add support PCI of SuperH base code and SH7780 specific code.
57186
57187     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
57188     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57189
57190 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
57191 Author: Yusuke Goda <goda.yusuke@renesas.com>
57192 Date:   Wed Mar 5 14:23:26 2008 +0900
57193
57194     sh: Add support SH7780
57195
57196     SH7780 is CPU of Renesas Technology.
57197     This CPU has
57198      - CPU clock 400MHz
57199      - PCI support
57200      - DDR-SDRAM controller
57201      - etc ...
57202
57203     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
57204     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57205
57206 commit c2042f5952a686c414031309b8f244513bf578f0
57207 Author: goda.yusuke <goda.yusuke@renesas.com>
57208 Date:   Fri Jan 25 20:46:36 2008 +0900
57209
57210     sh: Add support Renesas Solutions Migo-R board
57211
57212     Migo-R is a board based on SH7722 and has may devices.
57213     In this patch, supported SCIF, NOR flash and Ethernet.
57214
57215     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
57216     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57217
57218 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
57219 Author: Bartlomiej Sieka <tur@semihalf.com>
57220 Date:   Thu Mar 27 15:06:40 2008 +0100
57221
57222     Fix host tool build breakage, take two
57223
57224     Revert commit 87c8431f and fix build breakage so that the build continues
57225     to work on FC systems.
57226
57227     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
57228
57229 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
57230 Author: Stefan Roese <sr@denx.de>
57231 Date:   Wed Mar 19 09:36:47 2008 +0100
57232
57233     ppc4xx: Enable ECC on LWMON5
57234
57235     Since all ECC related problems seem to be resolved on LWMON5, this patch
57236     now enables ECC support.
57237
57238     We have to write the ECC bytes by zeroing and flushing in smaller
57239     steps, since the whole 256MByte takes too long for the external
57240     watchdog.
57241
57242     Signed-off-by: Stefan Roese <sr@denx.de>
57243
57244 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
57245 Author: Larry Johnson <lrj@acm.org>
57246 Date:   Mon Mar 17 11:10:35 2008 -0500
57247
57248     ppc4xx: Updates to Korat-specific code
57249
57250     This patch contains updates for changes for the Korat PPC440EPx board.
57251     These changes include:
57252
57253     (1) Support for "permanent" and "upgradable" copies of U-Boot, as
57254     described in the new "doc/README.korat" file;
57255
57256     (2) a new memory map for the registers in the board's CPLD;
57257
57258     (3) a revised format for manufacturer's data in serial EEPROM; and
57259
57260     (4) changes to track updates to U-Boot for the Sequoia board.
57261
57262     Signed-off-by: Larry Johnson <lrj@acm.org>
57263
57264 commit f766cdf89b3a2a7634b8c5869f606150e332036c
57265 Author: Markus Brunner <super.firetwister@gmail.com>
57266 Date:   Thu Mar 27 10:46:25 2008 +0100
57267
57268     ppc4xx: PPC405EP Set EMAC noise filter bits
57269
57270     This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
57271     which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
57272     disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
57273
57274     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
57275     Signed-off-by: Stefan Roese <sr@denx.de>
57276
57277 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
57278 Author: Mike Nuss <mike@terascala.com>
57279 Date:   Wed Feb 20 11:54:20 2008 -0500
57280
57281     ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
57282
57283     On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
57284     after startup to change the speed of the clocks. This patch adds the
57285     option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
57286     initialization code will reconfigure the PLL to run the system with a CPU
57287     frequency of 667MHz and PLB frequency of 166MHz, without the need for an
57288     external EEPROM.
57289
57290     Signed-off-by: Mike Nuss <mike@terascala.com>
57291     Acked-by: Stefan Roese <sr@denx.de>
57292
57293 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
57294 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
57295 Date:   Thu Mar 27 09:12:40 2008 +0100
57296
57297     new-image: Fix host tool build breakage
57298
57299     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
57300
57301 commit 6fb4b640562a10daff0dbe537638d511b5b48650
57302 Author: Stefan Roese <sr@denx.de>
57303 Date:   Thu Mar 27 10:24:03 2008 +0100
57304
57305     ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
57306
57307     Signed-off-by: Stefan Roese <sr@denx.de>
57308
57309 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
57310 Author: Stefan Roese <sr@denx.de>
57311 Date:   Wed Mar 19 10:23:43 2008 +0100
57312
57313     ppc4xx: Add fdt support to Prodrive alpr
57314
57315     Since this board will probably be ported to arch/powerpc in the
57316     near future, we add device tree support now. This way we are
57317     "ready" for arch/powerpc from now on.
57318
57319     Signed-off-by: Stefan Roese <sr@denx.de>
57320
57321 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
57322 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
57323 Date:   Mon Mar 17 09:27:56 2008 +0100
57324
57325     ppc4xx: Enable cache support on the ALPR board
57326
57327     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
57328
57329 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
57330 Author: Stefan Roese <sr@denx.de>
57331 Date:   Wed Mar 26 10:14:11 2008 +0100
57332
57333     ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
57334
57335     If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
57336     memory area will get subtracted from the top (end) of ram and won't get
57337     "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
57338     should gets passed the now "corrected" memory size and won't touch it
57339     either. This should work for arch/ppc and arch/powerpc. Only Linux board
57340     ports in arch/powerpc with bootwrapper support, which recalculate the
57341     memory size from the SDRAM controller setup, will have to get fixed
57342     in Linux additionally.
57343
57344     This patch enables this config option on some PPC440EPx boards as a workaround
57345     for the CHIP 11 errata. Here the description from the AMCC documentation:
57346
57347     CHIP_11: End of memory range area restricted access.
57348     Category: 3
57349
57350     Overview:
57351     The 440EPx DDR controller does not acknowledge any
57352     transaction which is determined to be crossing over the
57353     end-of-memory-range boundary, even if the starting address is
57354     within valid memory space. Any such transaction from any PLB4
57355     master will result in a PLB time-out on PLB4 bus.
57356
57357     Impact:
57358     In case of such misaligned bursts, PLB4 masters will not
57359     retrieve any data at all, just the available data up to the
57360     end of memory, especially the 440 CPU. For example, if a CPU
57361     instruction required an operand located in memory within the
57362     last 7 words of memory, the DCU master would burst read 8
57363     words to update the data cache and cross over the
57364     end-of-memory-range boundary. Such a DCU read would not be
57365     answered by the DDR controller, resulting in a PLB4 time-out
57366     and ultimately in a Machine Check interrupt. The data would
57367     be inaccessible to the CPU.
57368
57369     Workaround:
57370     Forbid any application to access the last 256 bytes of DDR
57371     memory. For example, make your operating system believe that
57372     the last 256 bytes of DDR memory are absent. AMCC has a patch
57373     that does this, available for Linux.
57374
57375     This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
57376     lwmon5, korat, sequoia
57377
57378     The other remaining 440EPx board were intentionally not included
57379     since it is not clear to me, if they use the end of ram for some
57380     other purpose. This is unclear, since these boards have CONFIG_PRAM
57381     defined and even comments like this:
57382
57383     PMC440.h:
57384     /* esd expects pram at end of physical memory.
57385      * So no logbuffer at the moment.
57386      */
57387
57388     It is strongly recommended to not use the last 256 bytes on those
57389     boards too. Patches from the board maintainers are welcome.
57390
57391     Signed-off-by: Stefan Roese <sr@denx.de>
57392
57393 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
57394 Author: Stefan Roese <sr@denx.de>
57395 Date:   Thu Mar 27 10:09:05 2008 +0100
57396
57397     ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
57398
57399     Signed-off-by: Stefan Roese <sr@denx.de>
57400
57401 commit d56a3ce179688cde61073a3690e21703d68fafd7
57402 Author: Stefan Roese <sr@denx.de>
57403 Date:   Tue Mar 25 17:51:13 2008 +0100
57404
57405     ppc4xx: Correctly pass phyiscal FLASH base address into dtb
57406
57407     The routine ft_board_setup() configures the EBC NOR mappings for the
57408     Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
57409     0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
57410     problem, we need to pass the corrected address here too.
57411
57412     Signed-off-by: Stefan Roese <sr@denx.de>
57413
57414 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
57415 Author: Stefan Roese <sr@denx.de>
57416 Date:   Wed Mar 19 16:35:12 2008 +0100
57417
57418     ppc4xx: Fix compilation warning in 4xx_enet.c
57419
57420     Signed-off-by: Stefan Roese <sr@denx.de>
57421
57422 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
57423 Author: Stefan Roese <sr@denx.de>
57424 Date:   Wed Mar 19 16:20:49 2008 +0100
57425
57426     ppc4xx: Add AMCC Glacier 406GT eval board support
57427
57428     This patch adds support for the AMCC Glacier 460GT eval board.
57429     The main difference to the Canyonlands board are listed here:
57430
57431     - 4 ethernet ports instead of 2
57432     - no SATA port
57433     - no USB port
57434
57435     Currently EMAC2+3 are not working. This will be fixed in a later
57436     release.
57437
57438     Signed-off-by: Stefan Roese <sr@denx.de>
57439
57440 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
57441 Author: Stefan Roese <sr@denx.de>
57442 Date:   Thu Mar 27 08:47:26 2008 +0100
57443
57444     ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
57445
57446     Signed-off-by: Stefan Roese <sr@denx.de>
57447
57448 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
57449 Author: Anatolij Gustschin <agust@denx.de>
57450 Date:   Wed Mar 26 21:05:43 2008 +0100
57451
57452     Fix out of tree building issue
57453
57454     Currently U-Boot building in some external directory
57455     doesn't work. This patch tries to fix the problem.
57456
57457     Signed-off-by: Anatolij Gustschin <agust@denx.de>
57458
57459 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
57460 Author: Anatolij Gustschin <agust@denx.de>
57461 Date:   Wed Mar 26 18:13:33 2008 +0100
57462
57463     README: update documentation (availability, links, etc.)
57464
57465     Fix typo in README
57466
57467     Signed-off-by: Anatolij Gustschin <agust@denx.de>
57468
57469 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
57470 Author: Anatolij Gustschin <agust@denx.de>
57471 Date:   Wed Mar 26 17:47:44 2008 +0100
57472
57473     Fix compilation error in cmd_usb.c
57474
57475     This patch fixes compilation error
57476     cmd_usb.c: In function 'do_usb':
57477     cmd_usb.c:552: error: void value not ignored as it ought to be
57478
57479     Signed-off-by: Anatolij Gustschin <agust@denx.de>
57480
57481 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
57482 Author: Timur Tabi <timur@freescale.com>
57483 Date:   Fri Mar 14 17:45:29 2008 -0500
57484
57485     Add support for setting the I2C bus speed in fsl_i2c.c
57486
57487     Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
57488     the I2C bus speed.  Current 8[356]xx boards define the CFG_I2C_SPEED macro,
57489     but fsl_i2c.c ignores it and uses conservative value when programming the
57490     I2C bus speed.
57491
57492     Signed-off-by: Timur Tabi <timur@freescale.com>
57493     Acked-by: Andy Fleming <afleming@freescale.com>
57494
57495 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
57496 Author: Wolfgang Denk <wd@denx.de>
57497 Date:   Thu Mar 27 00:03:57 2008 +0100
57498
57499     Coding style cleanup, update CHANGELOG
57500
57501     Signed-off-by: Wolfgang Denk <wd@denx.de>
57502
57503 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
57504 Author: Dave Liu <r63238@freescale.com>
57505 Date:   Wed Mar 26 22:55:32 2008 +0800
57506
57507     drivers: add the support for Freescale SATA controller
57508
57509     Add the Freescale on-chip SATA controller driver to u-boot,
57510     The SATA controller is used on the 837x and 8315 targets,
57511     The driver can be used to load kernel, fs and dtb.
57512
57513     The features list:
57514     - 1.5/3 Gbps link speed
57515     - LBA48, LBA28 support
57516     - DMA and FPDMA support
57517     - Two ports support
57518
57519     Signed-off-by: Dave Liu <daveliu@freescale.com>
57520
57521 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
57522 Author: Dave Liu <r63238@freescale.com>
57523 Date:   Wed Mar 26 22:54:44 2008 +0800
57524
57525     ata: add the readme for SATA command line
57526
57527     Signed-off-by: Dave Liu <daveliu@freescale.com>
57528
57529 commit cd54081cd479e542fc399b8a40651ff11a1ad849
57530 Author: Dave Liu <r63238@freescale.com>
57531 Date:   Wed Mar 26 22:53:24 2008 +0800
57532
57533     ata: enable the sata initialize on boot up
57534
57535     Signed-off-by: Dave Liu <daveliu@freescale.com>
57536
57537 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
57538 Author: Dave Liu <r63238@freescale.com>
57539 Date:   Wed Mar 26 22:52:36 2008 +0800
57540
57541     ata: add the fis struct for SATA
57542
57543     Signed-off-by: Dave Liu <daveliu@freescale.com>
57544
57545 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
57546 Author: Dave Liu <r63238@freescale.com>
57547 Date:   Wed Mar 26 22:51:44 2008 +0800
57548
57549     ata: add the libata support
57550
57551     add simple libata support in u-boot
57552
57553     Signed-off-by: Dave Liu <daveliu@freescale.com>
57554
57555 commit 8e9bb43429e50df55fa41932cbe65841ff579220
57556 Author: Dave Liu <r63238@freescale.com>
57557 Date:   Wed Mar 26 22:50:45 2008 +0800
57558
57559     ata: make the ata_piix driver using new SATA framework
57560
57561     original ata_piix driver is using IDE framework, not real
57562     SATA framework. For now, the ata_piix driver is only used
57563     by x86 sc520_cdp board. This patch makes the ata_piix driver
57564     use the new SATA framework, so
57565
57566     - remove the duplicated command stuff
57567     - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
57568     - add the CONFIG_CMD_SATA define to sc520_cdp.h
57569
57570     Signed-off-by: Dave Liu <daveliu@freescale.com>
57571
57572 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
57573 Author: Dave Liu <r63238@freescale.com>
57574 Date:   Wed Mar 26 22:49:44 2008 +0800
57575
57576     ata: add the support for SATA framework
57577
57578     - add the SATA framework
57579     - add the SATA command line
57580
57581     Signed-off-by: Dave Liu <daveliu@freescale.com>
57582
57583 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
57584 Author: Dave Liu <r63238@freescale.com>
57585 Date:   Wed Mar 26 22:48:18 2008 +0800
57586
57587     ata: merge the header of ata_piix driver
57588
57589     move the sata.h from include/ to drivers/block/ata_piix.h
57590
57591     Signed-off-by: Dave Liu <daveliu@freescale.com>
57592
57593 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
57594 Author: Dave Liu <r63238@freescale.com>
57595 Date:   Wed Mar 26 22:47:06 2008 +0800
57596
57597     ata: merge the ata_piix driver
57598
57599     move the cmd_sata.c from common/ to drivers/ata_piix.c,
57600     the cmd_sata.c have some part of ata_piix controller drivers.
57601     consolidate the driver to have better framework.
57602
57603     Signed-off-by: Dave Liu <daveliu@freescale.com>
57604
57605 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
57606 Author: Markus Klotzbuecher <mk@denx.de>
57607 Date:   Wed Mar 26 18:26:43 2008 +0100
57608
57609     USB, Storage: fix a bug introduced in commit
57610     f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
57611     to only print only information on one storage device, but not for
57612     multiple.
57613
57614     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
57615
57616 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
57617 Author: Anatolij Gustschin <agust@denx.de>
57618 Date:   Wed Mar 26 17:47:44 2008 +0100
57619
57620     Fix compilation error in cmd_usb.c
57621
57622     This patch fixes compilation error
57623     cmd_usb.c: In function 'do_usb':
57624     cmd_usb.c:552: error: void value not ignored as it ought to be
57625
57626     Signed-off-by: Anatolij Gustschin <agust@denx.de>
57627     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
57628
57629 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
57630 Author: Kumar Gala <galak@kernel.crashing.org>
57631 Date:   Wed Mar 26 08:53:53 2008 -0500
57632
57633     85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
57634
57635     Provide a board_lmb_reserve helper function to ensure we reserve
57636     the page of memory we are using for the boot page translation code.
57637
57638     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57639
57640 commit 79679d80021ab095e639e250ca472fe526da02e2
57641 Author: Kumar Gala <galak@kernel.crashing.org>
57642 Date:   Wed Mar 26 08:34:25 2008 -0500
57643
57644     85xx: Update multicore boot mechanism to ePAPR v0.81 spec
57645
57646     The following changes are needed to be inline with ePAPR v0.81:
57647
57648     * r4, r5 and now always set to 0 on boot release
57649     * r7 is used to pass the size of the initial map area (IMA)
57650     * EPAPR_MAGIC value changed for book-e processors
57651     * changes in the spin table layout
57652     * spin table supports a 64-bit physical release address
57653
57654     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57655
57656 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
57657 Author: Jon Loeliger <jdl@freescale.com>
57658 Date:   Wed Mar 19 15:02:07 2008 -0500
57659
57660     FSL: Clean up board/freescale/common/Makefile
57661
57662     Each file that can be built here now follows some
57663     CONFIG_ option so that they are appropriately built
57664     or not, as needed.  And CONFIG_ defines were added
57665     to various board config files to make sure that happens.
57666
57667     The other board/freescale/*/Makefiles no longer need
57668     to reach up and over into ../common to build their
57669     individually needed files any more.
57670
57671     Boards that are CDS specific were renamed with cds_ prefix.
57672
57673     Signed-off-by: Jon Loeliger <jdl@freescale.com>
57674
57675 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
57676 Author: Kumar Gala <galak@kernel.crashing.org>
57677 Date:   Wed Feb 27 22:00:27 2008 -0600
57678
57679     85xx: Fix merge duplication
57680
57681     ft_fixup_cpu() got duplicated in some merge snafu.  Remove the duplicate.
57682
57683     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57684
57685 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
57686 Author: James Yang <James.Yang@freescale.com>
57687 Date:   Tue Feb 12 16:35:07 2008 -0600
57688
57689     85xx: Expand CCSR space with more DDR controller registers.
57690
57691     Signed-off-by: James Yang <James.Yang@freescale.com>
57692     Signed-off-by: Jon Loeliger <jdl@freescale.com>
57693     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57694
57695 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
57696 Author: James Yang <James.Yang@freescale.com>
57697 Date:   Fri Feb 8 18:05:08 2008 -0600
57698
57699     85xx: Speed up get_ddr_freq() and get_bus_freq()
57700
57701     get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
57702     called.  However, get_sys_info() recalculates extraneous information when
57703     called each time.  Have get_ddr_freq() and get_bus_freq() return memoized
57704     values from global_data instead.
57705
57706     Signed-off-by: James Yang <James.Yang@freescale.com>
57707     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57708
57709 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
57710 Author: James Yang <James.Yang@freescale.com>
57711 Date:   Fri Feb 8 16:46:27 2008 -0600
57712
57713     85xx: Show DDR memory data rate in addition to the memory clock frequency.
57714
57715     Show the DDR memory data rate in addition to the memory clock
57716     frequency.  For DDR/DDR2 memories the memory data rate is 2x the
57717     memory clock.
57718
57719     Signed-off-by: James Yang <James.Yang@freescale.com>
57720     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57721
57722 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
57723 Author: James Yang <James.Yang@freescale.com>
57724 Date:   Fri Feb 8 16:44:53 2008 -0600
57725
57726     85xx: get_tbclk() speed up and rounding fix
57727
57728     Speed up get_tbclk() by referencing pre-computed bus clock
57729     frequency value from global data instead of sys_info_t.  Fix
57730     rounding of result to nearest; previously it was rounding
57731     upwards.
57732
57733     Signed-off-by: James Yang <James.Yang@freescale.com>
57734     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57735
57736 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
57737 Author: Andy Fleming <afleming@freescale.com>
57738 Date:   Wed Feb 6 01:19:40 2008 -0600
57739
57740     Update SVR numbers to expand support
57741
57742     FSL has taken to using SVR[16:23] as an SOC sub-version field.  This
57743     is used to distinguish certain variants within an SOC family.  To
57744     account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
57745     constants to reflect the larger value.  We also add SVR numbers for all
57746     of the current variants.  Finally, to make things neater, rather than
57747     use an enormous switch statement to print out the CPU type, we create
57748     and array of SVR/name pairs (using a macro), and print out the CPU name
57749     that matches the SVR SOC version.
57750
57751     Signed-off-by: Andy Fleming <afleming@freescale.com>
57752
57753 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
57754 Author: Andy Fleming <afleming@freescale.com>
57755 Date:   Wed Feb 6 01:12:57 2008 -0600
57756
57757     Add the Freescale PCI device IDs
57758
57759     Signed-off-by: Andy Fleming <afleming@freescale.com>
57760
57761 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
57762 Author: Kumar Gala <galak@kernel.crashing.org>
57763 Date:   Thu Feb 14 11:04:23 2008 -0600
57764
57765     85xx: Added support for multicore boot mechanism
57766
57767     Added the cpu command that provides a generic mechanism to get status,
57768     reset, and release secondary cores in multicore processors.
57769
57770     Added support for using the ePAPR defined spin-table mechanism on 85xx.
57771
57772     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57773     Signed-off-by: Andy Fleming <afleming@freescale.com>
57774
57775 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
57776 Author: Kumar Gala <galak@kernel.crashing.org>
57777 Date:   Thu Jan 17 16:48:33 2008 -0600
57778
57779     85xx: Added support for multicore boot mechanism
57780
57781     Added the cpu command that provides a generic mechanism to get status,
57782     reset, and release secondary cores in multicore processors.
57783
57784     Added support for using the ePAPR defined spin-table mechanism on 85xx.
57785
57786     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57787
57788 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
57789 Author: Kumar Gala <galak@kernel.crashing.org>
57790 Date:   Wed Jan 30 14:55:14 2008 -0600
57791
57792     85xx: Add the concept of CFG_CCSRBAR_PHYS
57793
57794     When we go to 36-bit physical addresses we need to keep the concept of
57795     the physical CCSRBAR address seperate from the virtual one.
57796
57797     For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
57798
57799     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57800
57801 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
57802 Author: Wolfgang Denk <wd@denx.de>
57803 Date:   Wed Mar 26 15:38:47 2008 +0100
57804
57805     Coding style cleanup.
57806
57807     Signed-off-by: Wolfgang Denk <wd@denx.de>
57808
57809 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
57810 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57811 Date:   Wed Mar 26 13:02:13 2008 +0100
57812
57813     Add CFG_RTC_DS1337_NOOSC to turn off OSC output
57814
57815     The default settings for RTC DS1337 keeps the OSC
57816     output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
57817     turn it off.
57818
57819     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57820
57821 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
57822 Author: Wolfgang Denk <wd@denx.de>
57823 Date:   Wed Mar 26 11:48:46 2008 +0100
57824
57825     Cleanup coding style, update CHANGELOG
57826
57827     Signed-off-by: Wolfgang Denk <wd@denx.de>
57828
57829 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
57830 Author: Wolfgang Denk <wd@denx.de>
57831 Date:   Wed Mar 26 10:40:12 2008 +0100
57832
57833     README: update documentation (availability, links, etc.)
57834
57835     Signed-off-by: Wolfgang Denk <wd@denx.de>
57836
57837 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
57838 Author: Aras Vaichas <arasv@magtech.com.au>
57839 Date:   Tue Mar 25 12:09:07 2008 +1100
57840
57841     USB Storage, add meaningful return value
57842
57843     This patch changes the "usb storage" command to return success if it
57844     finds a USB storage device, otherwise it returns error.
57845
57846     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
57847
57848 commit 18e69a35efbb078403db0c0063986470dad7d082
57849 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57850 Date:   Fri Mar 14 23:20:18 2008 +0300
57851
57852     83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
57853
57854     Linux understands "host" (default), "peripheral" and "otg" (broken).
57855     Though, U-Boot doesn't restrict dr_mode variable to these values (think
57856     of renames in future).
57857
57858     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
57859     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57860
57861 commit c7604783b236e368f225efb7b3efb418fe20b404
57862 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57863 Date:   Fri Mar 14 23:20:30 2008 +0300
57864
57865     tsec: fix link detection for the RTL8211B PHY
57866
57867     RTL8211B sets link state register after autonegotiation complete,
57868     so with bootdelay=0 RTL8211B will report lack of the link.
57869
57870     To fix this, we should wait for aneg to complete, even if the
57871     link is currently down.
57872
57873     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
57874     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57875
57876 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
57877 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57878 Date:   Mon Mar 24 20:47:09 2008 +0300
57879
57880     mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
57881
57882     device_type = "soc" is being deprecated, newer device trees will use
57883     "fsl,soc" and/or "fsl,immr" for the soc nodes.
57884
57885     This patch also adds clock-frequency property for soc nodes (the same
57886     value as bus-frequency).
57887
57888     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
57889
57890 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
57891 Author: Joe D'Abbraccio <ljd015@freescale.com>
57892 Date:   Mon Mar 24 13:00:59 2008 -0400
57893
57894     Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
57895
57896     With the original value of 1/2 clock cycle delay, the system ran relatively
57897     stable except when we run benchmarks that are intensive users of memory.
57898     When I run samba connected disk with a HDBENCH test, the system locks-up
57899     or reboots sporadically.
57900
57901     Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
57902
57903 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
57904 Author: Scott Wood <scottwood@freescale.com>
57905 Date:   Mon Mar 24 12:44:13 2008 -0500
57906
57907     mpc83xx: Set PCI I/O bus-address base to zero.
57908
57909     The device trees for these boards describe PCI I/O as starting from
57910     address zero from the device's perspective.
57911
57912     Placing I/O elsewhere may cause problems with certain PCI boards, and may
57913     cause problems with Linux.
57914
57915     Signed-off-by: Scott Wood <scottwood@freescale.com>
57916
57917 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
57918 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57919 Date:   Mon Mar 24 20:47:05 2008 +0300
57920
57921     mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
57922
57923     At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
57924     This patch fixes "system time drifting" problem.
57925
57926     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
57927
57928 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
57929 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57930 Date:   Mon Mar 24 20:47:02 2008 +0300
57931
57932     mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
57933
57934     This is needed to update /choosen/linux,stdout-path properly.
57935
57936     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
57937
57938 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
57939 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57940 Date:   Mon Mar 24 20:47:00 2008 +0300
57941
57942     mpc83xx: MPC8360E-RDK: add dhcp command
57943
57944     Plus modify environment to use it and remove bootfile env variable,
57945     it is internal and CONFIG_BOOTFILE is used for these purposes.
57946
57947     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
57948
57949 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
57950 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57951 Date:   Mon Mar 24 20:46:57 2008 +0300
57952
57953     mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
57954
57955     Current DDR setup easily causes memory corruption, this patch fixes it.
57956
57957     Also fix TIMING_CFG0_MRS_CYC definition.
57958
57959     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
57960
57961 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
57962 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57963 Date:   Mon Mar 24 20:46:53 2008 +0300
57964
57965     mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
57966
57967     This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
57968     controller and FHCI (QE USB).
57969
57970     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
57971
57972 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
57973 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57974 Date:   Mon Mar 24 20:46:51 2008 +0300
57975
57976     mpc83xx: MPC8360E-RDK: add support for NAND
57977
57978     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
57979
57980 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
57981 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57982 Date:   Mon Mar 24 20:46:46 2008 +0300
57983
57984     mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
57985
57986     This is needed for BCM PHYs to work on this board.
57987
57988     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
57989
57990 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
57991 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57992 Date:   Mon Mar 24 20:46:34 2008 +0300
57993
57994     uec: add support for Broadcom BCM5481 Gigabit PHY
57995
57996     This patch adds basic support for Broadcom BCM5481 PHY.
57997
57998     RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
57999     Peter Barada <peterb@logicpd.com>.
58000
58001     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58002
58003 commit 6a600c3a1876bc203445df4f0fd6b12648259666
58004 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58005 Date:   Mon Mar 24 20:46:28 2008 +0300
58006
58007     uec: add support for RGMII_RXID interface mode
58008
58009     PHY drivers will use it to setup software delay between RXD and RXC
58010     signals.
58011
58012     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58013
58014 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
58015 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58016 Date:   Mon Mar 24 20:46:24 2008 +0300
58017
58018     uec: add support for gbit mii status readings
58019
58020     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58021
58022 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
58023 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58024 Date:   Mon Mar 24 17:40:47 2008 +0300
58025
58026     83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
58027
58028     This is primarily for the early console support.
58029
58030     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58031
58032 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
58033 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58034 Date:   Mon Mar 24 17:40:43 2008 +0300
58035
58036     83xx: initialize serdes for MPC837XRDB boards
58037
58038     On the MPC8377ERDB: 2 SATA and 2 PCI-E.
58039     On the MPC8378ERDB: 2 PCI-E
58040     On the MPC8379ERDB: 4 SATA
58041
58042     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58043
58044 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
58045 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58046 Date:   Mon Mar 24 17:40:32 2008 +0300
58047
58048     83xx: serdes setup routines
58049
58050     This patch adds few routines to configure serdes on 837x targets.
58051
58052     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58053
58054 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
58055 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58056 Date:   Mon Mar 24 17:40:27 2008 +0300
58057
58058     83xx: split COBJS onto separate lines
58059
58060     ..plus get rid of some #ifdefs in the .c files.
58061
58062     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58063
58064 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
58065 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58066 Date:   Mon Mar 24 17:40:23 2008 +0300
58067
58068     83xx: nand support for MPC837XRDB boards
58069
58070     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58071
58072 commit 82e45a204190593e8613145a928f998fb8c909c4
58073 Author: Jerry Van Baren <gvb.uboot@gmail.com>
58074 Date:   Tue Mar 18 21:44:41 2008 -0400
58075
58076     Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
58077
58078     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
58079     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58080
58081 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
58082 Author: Michael Barkowski <michael.barkowski@freescale.com>
58083 Date:   Thu Mar 20 13:15:39 2008 -0400
58084
58085     mpc8323erdb: remove RTC and add EEPROM
58086
58087     There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
58088
58089     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
58090     Acked-by: Kim Phillips <kim.phillips@freescale.com>
58091
58092 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
58093 Author: Michael Barkowski <michael.barkowski@freescale.com>
58094 Date:   Thu Mar 20 13:15:34 2008 -0400
58095
58096     mpc8323erdb: Improve the system performance
58097
58098     The following changes are based on kernel UCC ethernet performance:
58099
58100     1.  Make the CSB bus pipeline depth as 4, and enable the repeat mode
58101     2.  Optimize transactions between QE and CSB.  Added CFG_SPCR_OPT
58102         switch to enable this setting.
58103
58104     The following changes are based on the App Note AN3369 and
58105     verified to improve memory latency using LMbench:
58106
58107     3.  CS0_CONFIG[AP_n_EN] is changed from 1 to 0
58108     4.  CS0_CONFIG[ODT_WR_CONFIG] set to 1.  Was a reserved setting
58109         previously.
58110     5.  TIMING_CFG_1[WRREC] is changed from 3clks to 2clks  (based on
58111         Twr=15ns, and this was already the setting in DDR_MODE)
58112     6.  TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
58113         Trp=15ns)
58114     7.  TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
58115         Tras=40ns)
58116     8.  TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
58117         Trcd=15ns)
58118     9.  TIMING_CFG_1[REFREC] changed from 21 clks to 11clks.  (based on
58119         Trfc=75ns)
58120     10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks.  (based
58121         on Tfaw=50ns)
58122     11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
58123         on CL=3 and WL=2).
58124
58125     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
58126     Acked-by: Kim Phillips <kim.phillips@freescale.com>
58127
58128 commit fc549c871f43933396a5b3e21d897023d4b31b8d
58129 Author: Michael Barkowski <michael.barkowski@freescale.com>
58130 Date:   Thu Mar 20 13:15:28 2008 -0400
58131
58132     mpc8323erdb: use readable DDR config macros
58133
58134     Use available shift/mask macros to define DDR configuration.
58135
58136     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
58137     Acked-by: Kim Phillips <kim.phillips@freescale.com>
58138
58139 commit 89c7784ed90ba50301eec521144f95111e472906
58140 Author: Timur Tabi <timur@freescale.com>
58141 Date:   Fri Feb 8 13:15:55 2008 -0600
58142
58143     83xx: Add Vitesse VSC7385 firmware uploading
58144
58145     Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
58146     the Vitesse VSC7385 firmware.  Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
58147     Cleaned up the board header files to make selecting the VSC7385 easier to
58148     control.
58149
58150     Signed-off-by: Timur Tabi <timur@freescale.com>
58151     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58152
58153 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
58154 Author: Timur Tabi <timur@freescale.com>
58155 Date:   Fri Feb 8 13:15:54 2008 -0600
58156
58157     NET: Add Vitesse VSC7385 firmware uploading
58158
58159     The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
58160     and other boards.  A small firwmare must be uploaded to its on-board memory
58161     before it can be enabled.  This patch adds the code which uploads firmware
58162     (but not the firmware itself).
58163
58164     Previously, this feature was provided by a U-Boot application that was
58165     made available only on Freescale BSPs.  The VSC7385 firmware must still
58166     be obtained separately, but at least there is no longer a need for a separate
58167     application.
58168
58169     Signed-off-by: Timur Tabi <timur@freescale.com>
58170     Acked-by: Ben Warren <biggerbadderben@gmail.com>
58171
58172 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
58173 Author: Wolfgang Denk <wd@denx.de>
58174 Date:   Wed Mar 26 00:52:10 2008 +0100
58175
58176     Coding Style cleanyp; update CHANGELOG
58177
58178     Signed-off-by: Wolfgang Denk <wd@denx.de>
58179
58180 commit 43ddd9c820fec44816188f53346b464e20b3142d
58181 Author: Jerry Van Baren <gvb.uboot@gmail.com>
58182 Date:   Sat Mar 22 14:23:49 2008 -0400
58183
58184     Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
58185
58186     These defines embedded the u-boot env variables and/or the bd_t structure
58187     in the fdt blob.  The conclusion of discussion on the u-boot email list
58188     was that embedding these in the fdt blob is not useful: there are better
58189     ways of passing the data (in fact, the fdt blob itself replaces the
58190     bd_t struct).
58191
58192     The only board that enables these is the stxxtc and they don't appear
58193     to be used by linux.
58194
58195     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
58196     Acked-by: Kim Phillips <kim.phillips@freescale.com>
58197
58198 commit 22ed2285743359fd1fe73e411dff914b2256e68f
58199 Author: Stefan Roese <sr@denx.de>
58200 Date:   Mon Mar 17 10:49:25 2008 +0100
58201
58202     rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
58203
58204     Signed-off-by: Stefan Roese <sr@denx.de>
58205
58206 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
58207 Author: Kyungmin Park <kmpark@infradead.org>
58208 Date:   Mon Mar 17 08:54:06 2008 +0900
58209
58210     Add Flex-OneNAND booting support
58211
58212     Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
58213     using a NOR Flash interface. This on-chip integration enables system designers
58214     to reduce external system logic and use high-density NAND Flash
58215     in applications that would otherwise have to use more NOR components.
58216
58217     Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
58218     in more flexible way. While MLC area of Flex-OneNAND can be used to store data
58219     that require low reliability and high density, SLC area of Flex-OneNAND
58220     to store data that need high reliability and high performance. Flex-OneNAND
58221     can let users take advantage of storing these two different types of data
58222     into one chip, which is making Flex-OneNAND more cost- and space-effective.
58223
58224     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
58225
58226 commit c512389cc4a10253249271ff6c887c6dab1f0db2
58227 Author: André Schwarz <andre.schwarz@matrix-vision.de>
58228 Date:   Thu Mar 13 13:50:52 2008 +0100
58229
58230     MPC5200: support setup without FEC
58231
58232     Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
58233     defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
58234
58235     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
58236     Acked-by: Grant Likely <grant.likely@secretlab.ca>
58237
58238 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
58239 Author: Jon Loeliger <jdl@freescale.com>
58240 Date:   Wed Mar 5 18:05:46 2008 -0600
58241
58242     FSL: Move board/mpc8266ads under board/freescale
58243
58244     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58245
58246 commit 7f1d846e5c5754449c286587d099d85246062772
58247 Author: Jon Loeliger <jdl@freescale.com>
58248 Date:   Wed Mar 5 18:05:47 2008 -0600
58249
58250     FSL: Move board/mpc7448hpc2 under board/freescale
58251
58252     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58253
58254 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
58255 Author: Jon Loeliger <jdl@freescale.com>
58256 Date:   Wed Mar 5 18:05:45 2008 -0600
58257
58258     FSL: Move board/mpc8260ads under board/freescale
58259
58260     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58261
58262 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
58263 Author: goda.yusuke <goda.yusuke@renesas.com>
58264 Date:   Wed Mar 5 17:08:33 2008 +0900
58265
58266     net: Add support AX88796L ethernet device
58267
58268     AX88796L is device of NE2000 compatible.
58269     This patch support AX88796L ethernet device.
58270
58271     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
58272     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58273
58274 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
58275 Author: Wolfgang Denk <wd@denx.de>
58276 Date:   Tue Mar 25 22:50:41 2008 +0100
58277
58278     ne2000 driver: change #ifdef to Makefile conditional compilation
58279
58280     Signed-off-by: Wolfgang Denk <wd@denx.de>
58281
58282 commit e710185aae90c64d39c2d453e40e58ceefe4f250
58283 Author: goda.yusuke <goda.yusuke@renesas.com>
58284 Date:   Wed Mar 5 17:08:20 2008 +0900
58285
58286     net: Divided code of NE2000 ethernet driver
58287
58288     There are more devices of the NE2000 base.
58289     A present code is difficult for us to support more devices.
58290     To support more NE2000 clone devices, separated the function.
58291
58292     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
58293     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58294
58295 commit 395bce4f59a507a60a475f7ee46bed47de9482df
58296 Author: Mike Frysinger <vapier@gentoo.org>
58297 Date:   Sun Feb 24 23:58:13 2008 -0500
58298
58299     net/Blackfin: move on-chip MAC driver into drivers/net/
58300
58301     The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
58302     directory, but it is not board specific, so relocate it to the drivers dir
58303     so that other Blackfin ports can utilize it.
58304
58305     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
58306
58307 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
58308 Author: Mike Frysinger <vapier@gentoo.org>
58309 Date:   Sun Feb 24 23:52:35 2008 -0500
58310
58311     smc91111: use SSYNC() rather than asm(ssync) for Blackfin
58312
58313     Since the "ssync" instruction may have hardware anomalies associated with
58314     it, have the smc91111 driver use the SSYNC macro rather than invoking it
58315     directly.  We workaround all the anomalies via this macro.
58316
58317     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
58318
58319 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
58320 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
58321 Date:   Sun Feb 17 22:57:47 2008 +0000
58322
58323     8xx: Update OF support on 8xx
58324
58325     This patch does some shifting around of OF support on 8xx.
58326
58327     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
58328
58329 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
58330 Author: Kumar Gala <galak@kernel.crashing.org>
58331 Date:   Fri Feb 15 15:16:18 2008 -0600
58332
58333     ppc: Allow boards to specify how much memory they can map
58334
58335     For historical reasons we limited the stack to 256M because some boards
58336     could only map that much via BATS.  However newer boards are capable of
58337     mapping more memory (for example 85xx is capble of doing up to 2G).
58338
58339     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58340
58341 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
58342 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
58343 Date:   Fri Feb 15 01:05:58 2008 +0000
58344
58345     8xx : Add OF support to Adder875 board port - resubmit
58346
58347     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
58348
58349 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
58350 Author: Kumar Gala <galak@kernel.crashing.org>
58351 Date:   Thu Feb 14 20:44:42 2008 -0600
58352
58353     Add setexpr command
58354
58355     Add a simple expr style command that will set an env variable as the result
58356     of the command.  This allows us to do simple math in shell.  The following
58357     operations are supported: &, |, ^, +, -, *, /.
58358
58359     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58360
58361 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
58362 Author: Jon Loeliger <jdl@freescale.com>
58363 Date:   Wed Mar 5 17:27:48 2008 -0600
58364
58365     FSL: Move board/mpc7448hpc2 under board/freescale
58366
58367     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58368
58369 commit 449c703374a8868453425e15da7e2f76221b72e4
58370 Author: Jon Loeliger <jdl@freescale.com>
58371 Date:   Wed Mar 5 17:21:43 2008 -0600
58372
58373     FSL: Move board/mpc8266ads under board/freescale
58374
58375     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58376
58377 commit 5863577989ad689427bb750107e9a75f1c1645d2
58378 Author: Jon Loeliger <jdl@freescale.com>
58379 Date:   Wed Mar 5 16:41:41 2008 -0600
58380
58381     FSL: Move board/mpc8260ads under board/freescale
58382
58383     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58384
58385 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
58386 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58387 Date:   Tue Mar 25 21:30:08 2008 +0900
58388
58389     [MIPS] Move gth2_config from ARM section to MIPS
58390
58391     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58392
58393 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
58394 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58395 Date:   Tue Mar 25 21:30:07 2008 +0900
58396
58397     [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
58398
58399     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58400
58401 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
58402 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58403 Date:   Tue Mar 25 21:30:07 2008 +0900
58404
58405     [MIPS] Fix dcache_status()
58406
58407     You can't judge UNCACHED by Config.K0 LSB.
58408
58409     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58410
58411 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
58412 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58413 Date:   Tue Mar 25 21:30:07 2008 +0900
58414
58415     [MIPS] Introduce _machine_restart
58416
58417     Handles machine specific functions by using weak functions.
58418
58419     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58420
58421 commit decaba6f5cf386d569ac3997bebb871b966c6b18
58422 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58423 Date:   Tue Mar 25 21:30:07 2008 +0900
58424
58425     [MIPS] Cleanup CP0 Status initialization
58426
58427     Add setup_c0_status from Linux. For the moment we disable interrupts, set
58428     CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
58429     reset-time configuration and will work well across most processors.
58430
58431     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58432
58433 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
58434 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58435 Date:   Tue Mar 25 21:30:07 2008 +0900
58436
58437     [MIPS] Initialize CP0 Cause before setting up CP0 Status register
58438
58439     Without this change, we'll be suffering from deffered WATCH exception
58440     once Status.EXL is cleared. Make sure Cause.WP is cleared.
58441
58442     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58443
58444 commit 26138623230ca2bad3c78e05a65527ea70c8b688
58445 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58446 Date:   Tue Mar 25 21:30:07 2008 +0900
58447
58448     [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
58449
58450     Move things to appropriate place.
58451
58452     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58453
58454 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
58455 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58456 Date:   Tue Mar 25 21:30:06 2008 +0900
58457
58458     [MIPS] Implement flush_cache()
58459
58460     We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
58461     don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
58462     function is used not only in U-Boot specfic programs but also at loading
58463     target binaries.
58464
58465     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58466
58467 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
58468 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58469 Date:   Tue Mar 25 21:30:06 2008 +0900
58470
58471     [MIPS] Fix I-/D-cache initialization loops
58472
58473     Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
58474     again per a loop for I-cache initialization. But according to 'See MIPS
58475     Run', we're encouraged to use three separate loops rather than combining
58476     them *for both I- and D-cache*. This patch tries to fix this.
58477
58478     In accordance with fixing above, mips_init_[id]cache are separated from
58479     mips_cache_reset(), and rewrite cache loops are completely rewritten with
58480     useful macros.
58481
58482     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58483
58484 commit 1898840797c7f50799377bd5b285a8a93a82c419
58485 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58486 Date:   Tue Mar 25 21:30:06 2008 +0900
58487
58488     [MIPS] Replace memory clearance code with f_fill64
58489
58490     This routine fills memory with zero by 64 bytes, and is 64-bit capable.
58491
58492     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58493
58494 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
58495 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58496 Date:   Tue Mar 25 21:30:06 2008 +0900
58497
58498     [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
58499
58500     This patch replaces the current function definitions with NESTED, LEAF
58501     and END macro. They specify some more additional information about the
58502     function; an alignment of symbol, type of symbol, stack frame usage, etc.
58503     These information explicitly tells the assembler and the debugger about
58504     the types of code we want to generate.
58505
58506     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58507
58508 commit 282223a607c611425fa33f5428f8eae6636972bb
58509 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58510 Date:   Tue Mar 25 11:43:17 2008 +0900
58511
58512     [MIPS] asm headers' updates
58513
58514     Make some asm headers adjusted to the latest Linux kernel.
58515
58516     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58517
58518 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
58519 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58520 Date:   Tue Mar 25 11:39:29 2008 +0900
58521
58522     [MIPS] Request for the 'mips_cache_lock()' removal
58523
58524     The initial intension of having mips_cache_lock() was to use the cache
58525     as memory for temporary stack use so that a C environment can be set up
58526     as early as possible.
58527
58528     But now mips_cache_lock() follow lowlevel_init(). We've already have the
58529     real memory initilaized at this point, therefore we could/should use it.
58530     No reason to lock at all.
58531
58532     Other problems:
58533
58534     Cache locking is not consistent across MIPS implementaions. Some imple-
58535     mentations don't support locking at all. The style of locking varies -
58536     some support per line locking, others per way, etc. Some parts use bits
58537     in status registers instead of cache ops. Current mips_cache_lock() is
58538     not necessarily general-purpose.
58539
58540     And this is worthy of special mention; once U-Boot/MIPS locks the lines,
58541     they are never get unlocked, so the code relies on whatever gets loaded
58542     after U-Boot to re-initialize the cache and clear the locks. We're sup-
58543     posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
58544     but leave the situation as it is for a long time.
58545
58546     For these reasons, I proposed the removal of mips_cache_lock() from the
58547     global start-up code.
58548
58549     This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
58550     *things have changed*. If he wants the same behavior as before, he needs
58551     to have CFG_INIT_RAM_LOCK_MIPS in his config file.
58552
58553     If we don't have any regression report through several releases, then
58554     we'll remove codes entirely.
58555
58556     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58557     Acked-by: Andrew Dyer <amdyer@gmail.com>
58558
58559 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
58560 Author: Yuri Tikhonov <yur@emcraft.com>
58561 Date:   Mon Mar 24 11:30:54 2008 +0100
58562
58563     lwmon5 SYSMON POST: fix backlight control
58564
58565     If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
58566     run on the board, then the SYSMON POST controls the display backlight
58567     (doesn't switch backlight ON if POST FAILED, and does switch the
58568     backlight ON if PASSED).
58569
58570     If not, then the video driver controls the display backlight (just
58571     switch ON the backlight upon initialization).
58572
58573     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58574
58575 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
58576 Author: Yuri Tikhonov <yur@emcraft.com>
58577 Date:   Mon Mar 24 11:29:14 2008 +0100
58578
58579     lwmon5 SYSMON POST: fix handling of negative temperatures
58580
58581     Fix errors in the LWMON5 Sysmon POST for negative temperatures.
58582
58583     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58584
58585 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
58586 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58587 Date:   Fri Mar 7 16:04:25 2008 +0900
58588
58589     pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
58590
58591     In current source code, when the device number of PCI is 0, process PCI
58592     bridge without fail. However, when the device number is 0, it is not PCI
58593     always bridge. There are times when device of PCI allocates.
58594
58595     When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
58596     use this patch.
58597
58598     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58599     Acked-by: Stefan Roese <sr@denx.de>
58600
58601 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
58602 Author: Yuri Tikhonov <yur@emcraft.com>
58603 Date:   Fri Mar 21 09:18:40 2008 +0100
58604
58605     LWMON5: fix dsPIC POST
58606
58607     Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
58608
58609     Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
58610
58611 commit 388b82fddc7c05596f3f615f190da0448227dc82
58612 Author: Bartlomiej Sieka <tur@semihalf.com>
58613 Date:   Thu Mar 20 23:23:13 2008 +0100
58614
58615     [new uImage] Enable new uImage support for the pcs440ep board.
58616
58617     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58618
58619 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
58620 Author: Bartlomiej Sieka <tur@semihalf.com>
58621 Date:   Thu Mar 20 23:23:13 2008 +0100
58622
58623     [new uImage] Do not compile new uImage format support by default
58624
58625     Disable default building of new uImage format support in preparation
58626     for merge with the master. Support for new format can be enabled on
58627     a per-board basis, by defining the following in the board's config file:
58628
58629     #define CONFIG_FIT             1
58630     #define CONFIG_OF_LIBFDT       1
58631
58632     This can be optionally defined to give more verbose output:
58633
58634     #define CONFIG_FIT_VERBOSE     1 /* enable fit_format_{error,warning}() */
58635
58636     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58637
58638 commit dafaede8a46c7159310239e036c93e31c6374487
58639 Author: Bartlomiej Sieka <tur@semihalf.com>
58640 Date:   Thu Mar 20 23:20:31 2008 +0100
58641
58642     [new uImage] Disable debuging output in preparation for merge with master
58643
58644     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58645
58646 commit fbe7a155027beacebaee9b32e1ada781fe924bca
58647 Author: Bartlomiej Sieka <tur@semihalf.com>
58648 Date:   Thu Mar 20 19:38:45 2008 +0100
58649
58650     [new uImage] Compilation and new uImage handling fixes for imxtract
58651
58652     Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
58653     include/config_cmd_default.h. Fix few warnings and handling of new format
58654     images.
58655
58656     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58657
58658 commit 36cc8cbb3379d5166f882641123521735c469f92
58659 Author: Bartlomiej Sieka <tur@semihalf.com>
58660 Date:   Thu Mar 20 23:10:19 2008 +0100
58661
58662     [new uImage] Fix autoscr command used with new uImage format
58663
58664     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58665
58666 commit 43142e817f0597be412e7cbe19413f5532eafa5d
58667 Author: Bartlomiej Sieka <tur@semihalf.com>
58668 Date:   Thu Mar 20 23:10:19 2008 +0100
58669
58670     [new uImage] Fix *.its files location in documentation
58671
58672     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58673
58674 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
58675 Author: Wolfgang Denk <wd@denx.de>
58676 Date:   Thu Mar 20 22:01:38 2008 +0100
58677
58678     lwmon5 POST: remove unreachable code
58679
58680     plus some coding style cleanup
58681
58682     Signed-off-by: Wolfgang Denk <wd@denx.de>
58683
58684 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
58685 Author: Yuri Tikhonov <yur@emcraft.com>
58686 Date:   Thu Mar 20 17:56:04 2008 +0300
58687
58688     LWMON5: POST RTC fix
58689
58690     Modify the RTC API to provide one a status for the time reported by
58691     the rtc_get() function:
58692       0 - a reliable time is guaranteed,
58693     < 0 - a reliable time isn't guaranteed (power fault, clock issues,
58694           and so on).
58695
58696     The RTC chip drivers are responsible for providing this info if the
58697     corresponding chip supports such functionality. If not - always
58698     report that the time is reliable.
58699
58700     The POST RTC test was modified to detect the RTC faults utilizing
58701     this new rtc_get() feature.
58702
58703     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58704
58705 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
58706 Author: Martin Krause <martin.krause@tqs.de>
58707 Date:   Wed Mar 19 14:25:14 2008 +0100
58708
58709     TQM5200B: update MTD partition layout
58710
58711     - insert partition for dtb blob to TQM5200B MTD layout
58712     - set env variables dependent on the configured board
58713       (TQM5200 or TQM5200B)
58714
58715     Signed-off-by: Martin Krause <martin.krause@tqs.de>
58716
58717 commit f0105727d132f56a21fa3ed8b162309cca6cac44
58718 Author: Stefan Roese <sr@denx.de>
58719 Date:   Wed Mar 19 07:09:26 2008 +0100
58720
58721     CFI: Small cleanup for FLASH_SHOW_PROGRESS
58722
58723     With this patch we don't need that many #ifdef's in the code. It moves
58724     the subtraction into the macro and defines a NOP-macro when
58725     CONFIG_FLASH_SHOW_PROGRESS is not defined.
58726
58727     Signed-off-by: Stefan Roese <sr@denx.de>
58728     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
58729
58730 commit 9a042e9ca512beaaa2cb450274313fc477141241
58731 Author: Jerry Van Baren <gvb.uboot@gmail.com>
58732 Date:   Sat Mar 8 13:48:01 2008 -0500
58733
58734     Flash programming progress countdown.
58735
58736     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
58737
58738 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
58739 Author: Bartlomiej Sieka <tur@semihalf.com>
58740 Date:   Wed Mar 19 10:00:06 2008 +0100
58741
58742     [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
58743
58744     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58745
58746 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
58747 Author: David Gibson <david@gibson.dropbear.id.au>
58748 Date:   Mon Feb 18 18:09:04 2008 +1100
58749
58750     libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
58751
58752     Since fdt_node_offset_by_compatible() was converted to the new
58753     fdt_next_node() iterator, a chunk of initialization code became
58754     redundant, but was not removed by oversight.  This patch cleans it up.
58755
58756     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
58757
58758 commit d0ccb9b140b472039732de102fc14597eedb14df
58759 Author: David Gibson <david@gibson.dropbear.id.au>
58760 Date:   Mon Feb 18 18:06:31 2008 +1100
58761
58762     libfdt: Trivial cleanup for CHECK_HEADER)
58763
58764     Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
58765     However, there are a handful of functions (fdt_move, rw_check_header,
58766     fdt_open_into) from other files which could also use it (currently
58767     they open-code something more-or-less identical).  Therefore, this
58768     patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
58769     places.
58770
58771     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
58772
58773 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
58774 Author: Kumar Gala <galak@kernel.crashing.org>
58775 Date:   Wed Feb 20 14:32:36 2008 -0600
58776
58777     Fix fdt boardsetup command parsing
58778
58779     The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
58780
58781     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58782
58783 commit 804887e6001e2f00bea11431bf34d6d472512cda
58784 Author: Kumar Gala <galak@kernel.crashing.org>
58785 Date:   Fri Feb 15 03:34:36 2008 -0600
58786
58787     Add sub-commands to fdt
58788
58789     fdt header                          - Display header info
58790     fdt bootcpu <id>                    - Set boot cpuid
58791     fdt memory <addr> <size>            - Add/Update memory node
58792     fdt rsvmem print                    - Show current mem reserves
58793     fdt rsvmem add <addr> <size>        - Add a mem reserve
58794     fdt rsvmem delete <index>           - Delete a mem reserves
58795
58796     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58797
58798 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
58799 Author: David Gibson <david@gibson.dropbear.id.au>
58800 Date:   Thu Feb 14 16:50:34 2008 +1100
58801
58802     libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
58803
58804     fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
58805     node which has NOP tags interspersed with its properties.  In this
58806     case fdt_add_subnode_namelen() will put the new subnode before the
58807     first NOP tag, even if there are properties after it, which will
58808     result in an invalid blob.
58809
58810     This patch fixes the bug, and adds a testcase for it.
58811
58812     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
58813
58814 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
58815 Author: David Gibson <david@gibson.dropbear.id.au>
58816 Date:   Tue Feb 12 11:58:31 2008 +1100
58817
58818     libfdt: Add and use a node iteration helper function.
58819
58820     This patch adds an fdt_next_node() function which can be used to
58821     iterate through nodes of the tree while keeping track of depth.  This
58822     function is used to simplify the iteration code in a lot of other
58823     functions, and is also exported for use by library users.
58824
58825     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
58826
58827 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
58828 Author: David Gibson <david@gibson.dropbear.id.au>
58829 Date:   Fri Jan 11 14:55:05 2008 +1100
58830
58831     libfdt: Add fdt_set_name() function
58832
58833     This patch adds an fdt_set_name() function to libfdt, mirroring
58834     fdt_get_name().  This is a r/w function which alters the name of a
58835     given device tree node.
58836
58837     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
58838
58839 commit 23e20aa6488e6c0622496549861bfdc74108debe
58840 Author: Yuri Tikhonov <yur@pollux.denx.de>
58841 Date:   Tue Mar 18 13:33:30 2008 +0100
58842
58843     lwmon5: Fix register test logic to match the specific GDC h/w.
58844
58845     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58846     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58847
58848 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
58849 Author: Yuri Tikhonov <yur@pollux.denx.de>
58850 Date:   Tue Mar 18 13:27:57 2008 +0100
58851
58852     Fix backlight in the lwmon5 POST.
58853
58854     Backlight was switched on even when temperature was too low.
58855
58856     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58857     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58858
58859 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
58860 Author: Yuri Tikhonov <yur@pollux.denx.de>
58861 Date:   Wed Feb 6 18:48:36 2008 +0100
58862
58863     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).
58864
58865      To enable this, alternative, configuration the U-Boot board configuration
58866     file for lwmon5 includes the definitions of alternative addresses for header
58867     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
58868
58869      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
58870     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
58871     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
58872
58873     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58874
58875 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
58876 Author: Yuri Tikhonov <yur@pollux.denx.de>
58877 Date:   Mon Feb 4 17:11:53 2008 +0100
58878
58879     Add support for the lwmon5 board reset via GPIO58.
58880
58881     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58882     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58883
58884 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
58885 Author: Yuri Tikhonov <yur@pollux.denx.de>
58886 Date:   Mon Feb 4 17:09:55 2008 +0100
58887
58888     Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
58889
58890     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58891     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58892
58893 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
58894 Author: Yuri Tikhonov <yur@pollux.denx.de>
58895 Date:   Mon Feb 4 14:11:03 2008 +0100
58896
58897     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.
58898
58899     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58900     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58901
58902 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
58903 Author: Yuri Tikhonov <yur@pollux.denx.de>
58904 Date:   Mon Feb 4 14:10:42 2008 +0100
58905
58906     The patch adds new POST tests for the Lwmon5 board. These are:
58907
58908     * External Watchdog test;
58909     * dsPIC tests;
58910     * FPGA test;
58911     * GDC test;
58912     * Sysmon tests.
58913
58914     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58915     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58916
58917 commit c2ed33efbfff5767bca236828e021c55fd547b6c
58918 Author: Yuri Tikhonov <yur@pollux.denx.de>
58919 Date:   Mon Feb 4 14:10:01 2008 +0100
58920
58921     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
58922
58923     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58924
58925 commit 3a5d1e7f1309998791702b2a559e3126781746b9
58926 Author: Yuri Tikhonov <yur@pollux.denx.de>
58927 Date:   Tue Mar 18 13:33:30 2008 +0100
58928
58929     lwmon5: Fix register test logic to match the specific GDC h/w.
58930
58931     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58932     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58933
58934 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
58935 Author: Yuri Tikhonov <yur@pollux.denx.de>
58936 Date:   Tue Mar 18 13:27:57 2008 +0100
58937
58938     Fix backlight in the lwmon5 POST.
58939
58940     Backlight was switcehd on even when temperature was too low.
58941
58942     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58943     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58944
58945 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
58946 Author: Yuri Tikhonov <yur@pollux.denx.de>
58947 Date:   Wed Feb 6 18:48:36 2008 +0100
58948
58949      The patch introduces the alternative configuration of the log buffer for
58950     the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
58951     the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
58952     PPC440EPX_GPT0_COMP5).
58953
58954      To enable this, alternative, configuration the U-Boot board configuration
58955     file for lwmon5 includes the definitions of alternative addresses for header
58956     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
58957
58958      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
58959     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
58960     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
58961
58962     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58963
58964 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
58965 Author: Yuri Tikhonov <yur@pollux.denx.de>
58966 Date:   Mon Feb 4 17:11:53 2008 +0100
58967
58968     Add support for the lwmon5 board reset via GPIO58.
58969
58970     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58971     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58972
58973 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
58974 Author: Yuri Tikhonov <yur@pollux.denx.de>
58975 Date:   Mon Feb 4 17:09:55 2008 +0100
58976
58977     Some fixes to dspic, fpga, and gdc post tests for lwmon5.
58978     Disable external watch-dog for now.
58979
58980     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58981     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58982
58983 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
58984 Author: Yuri Tikhonov <yur@pollux.denx.de>
58985 Date:   Mon Feb 4 14:11:03 2008 +0100
58986
58987     The patch introduces the CRITICAL feature of POST tests. If the test
58988     marked as POST_CRITICAL fails then the alternative, post_critical,
58989     boot-command is used. If this command is not defined then U-Boot
58990     enters into interactive mode.
58991
58992     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
58993     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58994
58995 commit 65b20dcefc89618193fa51947968dada91e4c778
58996 Author: Yuri Tikhonov <yur@pollux.denx.de>
58997 Date:   Mon Feb 4 14:10:42 2008 +0100
58998
58999     The patch adds new POST tests for the Lwmon5 board.
59000     These are:
59001
59002     * External Watchdog test;
59003     * dsPIC tests;
59004     * FPGA test;
59005     * GDC test;
59006     * Sysmon tests.
59007
59008     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59009     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59010
59011 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
59012 Author: Yuri Tikhonov <yur@pollux.denx.de>
59013 Date:   Mon Feb 4 14:10:01 2008 +0100
59014
59015     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
59016
59017     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59018
59019 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
59020 Author: Wolfgang Denk <wd@denx.de>
59021 Date:   Tue Mar 18 17:35:51 2008 +0100
59022
59023     HMI1001: fix compile problem.
59024
59025     Signed-off-by: Wolfgang Denk <wd@denx.de>
59026
59027 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
59028 Author: Mike Frysinger <vapier@gentoo.org>
59029 Date:   Mon Feb 18 05:32:30 2008 -0500
59030
59031     Blackfin: BF537-stamp: drop board-specific flash driver for CFI
59032
59033     The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
59034     for the board specific driver at all.  Just use the common CFI driver.
59035
59036     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59037
59038 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
59039 Author: Mike Frysinger <vapier@gentoo.org>
59040 Date:   Tue Feb 19 00:36:14 2008 -0500
59041
59042     Blackfin: add proper ELF markings to some assembly functions
59043
59044     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59045
59046 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
59047 Author: Mike Frysinger <vapier@gentoo.org>
59048 Date:   Tue Feb 19 00:35:17 2008 -0500
59049
59050     Blackfin: new cplbinfo command for viewing cplb tables
59051
59052     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59053
59054 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
59055 Author: Mike Frysinger <vapier@gentoo.org>
59056 Date:   Mon Feb 18 05:37:51 2008 -0500
59057
59058     Blackfin: update MAINTAINERS list
59059
59060     Add maintainer information for the Blackfin boards.
59061
59062     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59063
59064 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
59065 Author: Mike Frysinger <vapier@gentoo.org>
59066 Date:   Mon Feb 18 05:26:48 2008 -0500
59067
59068     Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
59069
59070     Stop tying things to the processor that should be tied to other defines and
59071     change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
59072     system to select the -mcpu option.
59073
59074     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59075
59076 commit 86a20fb920bd198105acf7b1191117f566d637ed
59077 Author: Mike Frysinger <vapier@gentoo.org>
59078 Date:   Sat Feb 16 07:40:36 2008 -0500
59079
59080     Blackfin: move bootldr command to common code
59081
59082     This moves the Blackfin-common bootldr command out of the BF537-STAMP
59083     specific board directory and into the common directory so that all Blackfin
59084     boards may utilize it.
59085
59086     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59087
59088 commit decbe029b2a9d3333d02c433389b1c821eea96d7
59089 Author: Heiko Schocher <hs@denx.de>
59090 Date:   Fri Mar 14 11:05:20 2008 +0100
59091
59092     mgcoge: update configuration
59093
59094     Fix configuration for mgcoge board
59095
59096     Signed-off-by: Heiko Schocher <hs@denx.de>
59097
59098 commit c136724cda0219c49f1d4b346f00da29b14fdf14
59099 Author: Wolfgang Denk <wd@denx.de>
59100 Date:   Sun Mar 16 01:22:59 2008 +0100
59101
59102     drivers/rtc/Makefile: keep list sorted
59103
59104     Signed-off-by: Wolfgang Denk <wd@denx.de>
59105
59106 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
59107 Author: Tor Krill <tor@excito.com>
59108 Date:   Sat Mar 15 15:40:26 2008 +0100
59109
59110     Add support for Intersil isl1208 RTC
59111
59112     Signed-off-by: Tor Krill <tor@excito.com>
59113
59114 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
59115 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59116 Date:   Sat Mar 15 17:36:41 2008 +0100
59117
59118     cramfs: Fix ifdef
59119
59120     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59121
59122 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
59123 Author: Wolfgang Denk <wd@denx.de>
59124 Date:   Sun Mar 16 01:12:58 2008 +0100
59125
59126     Conding style cleanup
59127
59128     Signed-off-by: Wolfgang Denk <wd@denx.de>
59129
59130 commit 41712b4e8c95dff23354bcd620e1f9477160c190
59131 Author: Stefan Roese <sr@denx.de>
59132 Date:   Wed Mar 5 12:31:53 2008 +0100
59133
59134     ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
59135
59136     This patch adds USB OHCI support to the Canyonlands board port. It also
59137     enables EXT2 support.
59138
59139     Signed-off-by: Stefan Roese <sr@denx.de>
59140
59141 commit 2596f5b9d353ff3e4387a3325d05740f16958038
59142 Author: Stefan Roese <sr@denx.de>
59143 Date:   Wed Mar 5 12:29:32 2008 +0100
59144
59145     usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
59146
59147     This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
59148     way a board just needs to define this new option to enable the "force
59149     NoPowerSwitching mode" instead of adding new CPU/architecture defines
59150     to the USB source itself.
59151
59152     This new option will be used first with the new AMCC 460EX Canyonlands
59153     board port, which will be posted in a few days.
59154
59155     This patch also fixes a small compilation problem when DEBUG is enabled.
59156
59157     Signed-off-by: Stefan Roese <sr@denx.de>
59158
59159 commit 71665ebf88408ff2acb762af47989fd4365b321a
59160 Author: Stefan Roese <sr@denx.de>
59161 Date:   Mon Mar 3 17:27:02 2008 +0100
59162
59163     ppc4xx: Add Canyonlands NAND booting support
59164
59165     460EX doesn't support a fixed bootstrap option to boot from 512 byte page
59166     NAND devices. The only bootstrap option for NAND booting is option F for
59167     2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
59168     EEPROM needs to be programmed accordingly.
59169
59170     This patch adds basic NAND booting support for the AMCC Canyonlands aval
59171     board and also adds support to the "bootstrap" command, to enable NAND
59172     booting I2C setting.
59173
59174     Tested with 512 byte page NAND device (32MByte) on Canyonlands.
59175
59176     Signed-off-by: Stefan Roese <sr@denx.de>
59177
59178 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
59179 Author: Stefan Roese <sr@denx.de>
59180 Date:   Tue Mar 11 16:53:00 2008 +0100
59181
59182     ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
59183
59184     This patch adds support for the AMCC Canyonlands 460EX evaluation
59185     board.
59186
59187     Signed-off-by: Stefan Roese <sr@denx.de>
59188
59189 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
59190 Author: Stefan Roese <sr@denx.de>
59191 Date:   Tue Mar 11 16:52:24 2008 +0100
59192
59193     ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
59194
59195     This patch adds support for the AMCC Canyonlands 460EX evaluation
59196     board.
59197
59198     Signed-off-by: Stefan Roese <sr@denx.de>
59199
59200 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
59201 Author: Stefan Roese <sr@denx.de>
59202 Date:   Tue Mar 11 16:51:17 2008 +0100
59203
59204     ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
59205
59206     This patch adds support for the AMCC Canyonlands 460EX evaluation
59207     board.
59208
59209     Signed-off-by: Stefan Roese <sr@denx.de>
59210
59211 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
59212 Author: Stefan Roese <sr@denx.de>
59213 Date:   Tue Mar 11 15:11:43 2008 +0100
59214
59215     ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
59216
59217     This patch adds basic support for the AMCC 460EX/460GT PPC's.
59218
59219     Signed-off-by: Stefan Roese <sr@denx.de>
59220
59221 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
59222 Author: Stefan Roese <sr@denx.de>
59223 Date:   Tue Mar 11 15:11:18 2008 +0100
59224
59225     ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
59226
59227     This patch adds basic support for the AMCC 460EX/460GT PPC's.
59228
59229     Signed-off-by: Stefan Roese <sr@denx.de>
59230
59231 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
59232 Author: Stefan Roese <sr@denx.de>
59233 Date:   Tue Mar 11 15:07:10 2008 +0100
59234
59235     ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
59236
59237     This patch adds basic support for the AMCC 460EX/460GT PPC's.
59238
59239     Signed-off-by: Stefan Roese <sr@denx.de>
59240
59241 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
59242 Author: Stefan Roese <sr@denx.de>
59243 Date:   Tue Mar 11 15:05:50 2008 +0100
59244
59245     ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
59246
59247     This patch adds basic support for the AMCC 460EX/460GT PPC's.
59248
59249     Signed-off-by: Stefan Roese <sr@denx.de>
59250
59251 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
59252 Author: Stefan Roese <sr@denx.de>
59253 Date:   Tue Mar 11 15:05:26 2008 +0100
59254
59255     ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
59256
59257     This patch adds basic support for the AMCC 460EX/460GT PPC's.
59258
59259     Signed-off-by: Stefan Roese <sr@denx.de>
59260
59261 commit 56e410178375d9f20be25fb24e180974f0ae120b
59262 Author: Stefan Roese <sr@denx.de>
59263 Date:   Tue Feb 19 22:07:57 2008 +0100
59264
59265     ppc4xx: interrupt.c reworked
59266
59267     This patch is a rework of the 4xx interrupt handling done while
59268     adding the 460EX/GT support. Interrupts are needed on 4xx for the
59269     EMAC driver.
59270
59271     Signed-off-by: Stefan Roese <sr@denx.de>
59272
59273 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
59274 Author: Stefan Roese <sr@denx.de>
59275 Date:   Tue Feb 19 22:01:57 2008 +0100
59276
59277     ppc4xx: program_tlb now uses 64bit physical addess
59278
59279     This patch changes the physical addess parameter from 32bit to 64bit.
59280     This is needed for 36bit 4xx platforms to access areas located
59281     beyond the 4GB border, like SoC peripherals (EBC etc.).
59282
59283     Signed-off-by: Stefan Roese <sr@denx.de>
59284
59285 commit c3307fa186af85771924c434997089b8104c0a46
59286 Author: Stefan Roese <sr@denx.de>
59287 Date:   Tue Feb 19 21:58:25 2008 +0100
59288
59289     ppc4xx: miiphy.c reworked
59290
59291     While adding the 460EX/GT support I reworked the 4xx miiphy code. It
59292     badly neede some cleanup.
59293
59294     Signed-off-by: Stefan Roese <sr@denx.de>
59295
59296 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
59297 Author: Stefan Roese <sr@denx.de>
59298 Date:   Tue Feb 19 16:21:49 2008 +0100
59299
59300     rtc: Add M41T62 support
59301
59302     This patch add support for the STM M41T62 RTC. It is used and tested
59303     on the AMCC Canyonlands 406EX platform.
59304
59305     Signed-off-by: Stefan Roese <sr@denx.de>
59306
59307 commit 217d383e201adc7f2271145ae345ea5eae2b7170
59308 Author: Niklaus Giger <niklaus.giger@netstal.com>
59309 Date:   Mon Feb 25 18:46:43 2008 +0100
59310
59311     ppc4xx: Add 405GPr based MCU25 board specific files
59312
59313     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59314
59315 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
59316 Author: Niklaus Giger <niklaus.giger@netstal.com>
59317 Date:   Mon Feb 25 18:46:42 2008 +0100
59318
59319     ppc4xx: Add 405GPr based MCU25 board config file
59320
59321     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59322
59323 commit b05f35436b733a240559e77e46bed8439665ecc5
59324 Author: Niklaus Giger <niklaus.giger@netstal.com>
59325 Date:   Mon Feb 25 18:46:41 2008 +0100
59326
59327     ppc4xx: Add 405GPr based MCU25 board. Global files
59328
59329     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59330
59331 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
59332 Author: Niklaus Giger <niklaus.giger@netstal.com>
59333 Date:   Mon Feb 25 18:37:02 2008 +0100
59334
59335     ppc4xx: HCU4/5. remove obsolete hcu_flash.c
59336
59337     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59338
59339 commit a079494853cc2bfeddb26673219db0b4b2b31566
59340 Author: Niklaus Giger <niklaus.giger@netstal.com>
59341 Date:   Mon Feb 25 18:37:01 2008 +0100
59342
59343     ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
59344
59345     Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
59346     the FLASH_CFI_LEGACY et al. config options.
59347
59348     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59349
59350 commit e4170e5a50c8110f792bc37472833ae669d69951
59351 Author: Stefan Roese <sr@denx.de>
59352 Date:   Tue Mar 11 13:52:25 2008 +0100
59353
59354     ppc4xx: Fix comment in 405EX DDR2 init code
59355
59356     Signed-off-by: Stefan Roese <sr@denx.de>
59357
59358 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
59359 Author: Bartlomiej Sieka <tur@semihalf.com>
59360 Date:   Fri Mar 14 16:22:34 2008 +0100
59361
59362     Add MD5 support to the new uImage format
59363
59364     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
59365
59366 commit 0ede0c383530a418cf98be9122371a86573cd0db
59367 Author: Bartlomiej Sieka <tur@semihalf.com>
59368 Date:   Fri Mar 14 16:22:34 2008 +0100
59369
59370     Add the MD5 algorithm
59371
59372     MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
59373     calculated using the md5() function -- see include/md5.h for details.
59374
59375     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
59376
59377 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
59378 Author: Wolfgang Denk <wd@denx.de>
59379 Date:   Fri Mar 14 16:04:54 2008 +0100
59380
59381     tools/setlocalversion: use a git-describe-ish format
59382
59383     Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
59384     where 'nnnnn' is the number of commits since the last tag (i.e.,
59385     1.3.2-rc3).  This makes it much easier to recognize "newer" versions
59386     and to see how much has been changed since the referenced tag.
59387
59388     Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
59389
59390     Signed-off-by: Wolfgang Denk <wd@denx.de>
59391
59392 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
59393 Author: Wolfgang Denk <wd@denx.de>
59394 Date:   Thu Mar 13 14:32:03 2008 +0100
59395
59396     HMI1001: add support for MPC5200 Rev. B processors.
59397
59398     Signed-off-by: Wolfgang Denk <wd@denx.de>
59399
59400 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
59401 Author: Wolfgang Denk <wd@denx.de>
59402 Date:   Thu Mar 13 14:29:49 2008 +0100
59403
59404     TQM5200: remove dead code
59405
59406     This board never used a MGT5100 processor.
59407
59408     Signed-off-by: Wolfgang Denk <wd@denx.de>
59409
59410 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
59411 Author: Marian Balakowicz <m8@semihalf.com>
59412 Date:   Wed Mar 12 12:14:15 2008 +0100
59413
59414     [new uImage] Fix build issue on ARM
59415
59416     ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
59417
59418     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
59419
59420 commit 3310c549a73a949430bfda90876df7552a1dab0c
59421 Author: Marian Balakowicz <m8@semihalf.com>
59422 Date:   Wed Mar 12 12:13:13 2008 +0100
59423
59424     [new uImage] Add new uImage format documentation and examples
59425
59426     Create doc/uImage.FIT documentation directory with the following files:
59427     - command_syntax_extensions.txt : extended command syntax description
59428     - howto.txt                     : short usage howto
59429     - source_file_format.txt        : internal new uImage format description
59430
59431     Add example image source files:
59432     - kernel.its
59433     - kernel_fdt.its
59434     - multi.its
59435
59436     Update README appropriately.
59437
59438     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59439     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
59440
59441 commit 1ec73761d2e247078f4520a265d463e8b73391a2
59442 Author: Marian Balakowicz <m8@semihalf.com>
59443 Date:   Wed Mar 12 10:35:52 2008 +0100
59444
59445     [new uImage] Fix definition of common bootm_headers_t fields
59446
59447     verify, autostart and lmb fields are used regardless of CONFIG_FIT
59448     setting, move their definitions to common section.
59449
59450     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59451
59452 commit 1d1cb4270edc6a99276834064069717f9782c491
59453 Author: Marian Balakowicz <m8@semihalf.com>
59454 Date:   Wed Mar 12 10:35:51 2008 +0100
59455
59456     [new uImage] Fix build problems on trab board
59457
59458     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59459
59460 commit f773bea8e11f4a11c388dcee956b2444203e6b65
59461 Author: Marian Balakowicz <m8@semihalf.com>
59462 Date:   Wed Mar 12 10:35:46 2008 +0100
59463
59464     [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
59465
59466     Save FIT configuration provied in the first bootm argument and use it
59467     when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
59468     arguments are not specified.
59469
59470     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59471
59472 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
59473 Author: Marian Balakowicz <m8@semihalf.com>
59474 Date:   Wed Mar 12 10:33:01 2008 +0100
59475
59476     [new uImage] More verbose kernel image uncompress error message
59477
59478     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59479
59480 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
59481 Author: Marian Balakowicz <m8@semihalf.com>
59482 Date:   Wed Mar 12 10:33:01 2008 +0100
59483
59484     [new uImage] Use show_boot_progress() for new uImage format
59485
59486     This patch allocates a set of show_boot_progress() IDs for new uImage format
59487     and adds show_boot_progress() calls in new uImage format handling code.
59488
59489     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59490
59491 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
59492 Author: Marian Balakowicz <m8@semihalf.com>
59493 Date:   Wed Mar 12 10:33:01 2008 +0100
59494
59495     [new uImage] Add new uImage fromat support to fpga command
59496
59497     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59498
59499 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
59500 Author: Marian Balakowicz <m8@semihalf.com>
59501 Date:   Wed Mar 12 10:33:01 2008 +0100
59502
59503     [new uImage] Add new uImage format handling to other bootm related commands
59504
59505     Updated commands:
59506
59507     docboot  - cmd_doc.c
59508     fdcboot  - cmd_fdc.c
59509     diskboot - cmd_ide.c
59510     nboot    - cmd_nand.c
59511     scsiboot - cmd_scsi.c
59512     usbboot  - cmd_usb.c
59513
59514     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59515
59516 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
59517 Author: Marian Balakowicz <m8@semihalf.com>
59518 Date:   Wed Mar 12 10:33:00 2008 +0100
59519
59520     [new uImage] Add new uImage format support to imgextract command
59521
59522     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59523
59524 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
59525 Author: Marian Balakowicz <m8@semihalf.com>
59526 Date:   Wed Mar 12 10:33:00 2008 +0100
59527
59528     [new uImage] Add new uImage format support to autoscript routine
59529
59530     autoscript() routine is updated to accept second argument, which
59531     is only used for FIT images and provides a FIT subimage unit name.
59532
59533     autoscript() routine callers must now pass two arguments. For
59534     non-interactive use (like in cmd_load.c, cmd_net.c), new environment
59535     variable 'autoscript_uname' is introduced and used as a FIT
59536     subimage unit name source.
59537
59538     autoscript command accepts extended syntax of the addr argument:
59539     addr:<subimg_uname>
59540
59541     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59542
59543 commit cd7c596e9f561dbbc17b717277438aee78cde14f
59544 Author: Marian Balakowicz <m8@semihalf.com>
59545 Date:   Wed Mar 12 10:33:00 2008 +0100
59546
59547     [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
59548
59549     This patch updates architecture specific implementations of
59550     do_bootm_linux() adding new uImage format handling for
59551     operations like get kernel entry point address, get kernel
59552     image data start address.
59553
59554     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59555
59556 commit 3dfe110149311425919e6d6a14b561b4207498f1
59557 Author: Marian Balakowicz <m8@semihalf.com>
59558 Date:   Wed Mar 12 10:32:59 2008 +0100
59559
59560     [new uImage] Add node offsets for FIT images listed in struct bootm_headers
59561
59562     This patch adds new node offset fields to struct bootm_headers
59563     and updates bootm_headers processing code to make use of them.
59564     Saved node offsets allow to avoid repeating fit_image_get_node() calls.
59565
59566     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59567
59568 commit bc8ed486b125452ba3bd8344f052f437329150c5
59569 Author: Marian Balakowicz <m8@semihalf.com>
59570 Date:   Wed Mar 12 10:32:53 2008 +0100
59571
59572     [new uImage] ppc: Add new uImage format support to FDT handling routines
59573
59574     Support for new (FIT) format uImages is added to powerpc specific
59575     boot_get_fdt() routine which now recognizes, sanity checks FIT image
59576     and is able to access data sections of the requested component image.
59577
59578     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59579
59580 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
59581 Author: Marian Balakowicz <m8@semihalf.com>
59582 Date:   Wed Mar 12 10:14:57 2008 +0100
59583
59584     [new uImage] Re-enable interrupts for non automatic booting
59585
59586     Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
59587     environment variable is not set to 'yes'.
59588
59589     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59590
59591 commit d985c8498c4e47095820da97aa722381d39172c5
59592 Author: Marian Balakowicz <m8@semihalf.com>
59593 Date:   Wed Mar 12 10:14:38 2008 +0100
59594
59595     [new uImage] Remove unnecessary arguments passed to ramdisk routines
59596
59597     boot_get_ramdisk() and image_get_ramdisk() do not need all
59598     cmdtp, flag, argc and argv arguments. Simplify routines definition.
59599
59600     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59601
59602 commit c87796483bc7c2900470dc747c367f602577608d
59603 Author: Marian Balakowicz <m8@semihalf.com>
59604 Date:   Wed Mar 12 10:12:37 2008 +0100
59605
59606     [new uImage] Add new uImage format support for ramdisk handling
59607
59608     This patch updates boot_get_ramdisk() routine adding format
59609     verification and handling for new (FIT) uImages.
59610
59611     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59612
59613 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
59614 Author: Marian Balakowicz <m8@semihalf.com>
59615 Date:   Wed Mar 12 10:01:05 2008 +0100
59616
59617     [new uImage] Add new uImage format support for kernel booting
59618
59619     New format uImages are recognized by the bootm command,
59620     validity of specified kernel component image is checked and
59621     its data section located and used for further processing
59622     (uncompress, load, etc.)
59623
59624     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59625
59626 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
59627 Author: Marian Balakowicz <m8@semihalf.com>
59628 Date:   Tue Mar 11 12:35:20 2008 +0100
59629
59630     [new uImage] Add new uImage format support for imls and iminfo commands
59631
59632     imls and iminfo can now recognize nad print out contents of the new (FIT)
59633     format uImages.
59634
59635     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59636
59637 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
59638 Author: Bartlomiej Sieka <tur@semihalf.com>
59639 Date:   Tue Mar 11 12:34:47 2008 +0100
59640
59641     [new uImage] Add support for new uImage format to mkimage tool
59642
59643     Support for the new uImage format (FIT) is added to mkimage tool.
59644     Commandline syntax is appropriately extended:
59645
59646     mkimage [-D dtc_options] -f fit-image.its fit-image
59647
59648     mkimage (together with dtc) takes fit-image.its and referenced therein
59649     binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
59650     final image that can be transferred to the target (e.g., via tftp) and then
59651     booted using the bootm command in U-Boot.
59652
59653     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
59654
59655 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
59656 Author: Marian Balakowicz <m8@semihalf.com>
59657 Date:   Mon Mar 10 17:53:49 2008 +0100
59658
59659     [new uImage] Make node unit names const in struct bootm_headers
59660
59661     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59662
59663 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
59664 Author: Marian Balakowicz <m8@semihalf.com>
59665 Date:   Fri Feb 29 21:24:06 2008 +0100
59666
59667     [new uImage] New uImage low-level API
59668
59669     Add FDT-based functions for handling new format component images,
59670     configurations, node operations, property get/set, etc.
59671
59672     fit_        - routines handling global new format uImage operations
59673                   like get/set top level property, process all nodes, etc.
59674     fit_image_  - routines handling component images subnodes
59675     fit_conf_   - routines handling configurations node
59676
59677     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
59678     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59679
59680 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
59681 Author: Wolfgang Denk <wd@denx.de>
59682 Date:   Sun Mar 9 16:20:02 2008 +0100
59683
59684     Release v1.3.2
59685
59686     Update CHANGELOG for release.
59687
59688     Signed-off-by: Wolfgang Denk <wd@denx.de>
59689
59690 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
59691 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59692 Date:   Sun Mar 9 14:52:11 2008 +0100
59693
59694     SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
59695
59696     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59697     Signed-off-by: Wolfgang Denk <wd@denx.de>
59698
59699 commit db695b78515ddb88a2d4f3357c120345efbf59ec
59700 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59701 Date:   Sun Mar 9 10:44:01 2008 +0100
59702
59703     scb9328: Fix flash warning: type qualifiers ignored on function return type
59704
59705     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59706
59707 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
59708 Author: Wolfgang Denk <wd@denx.de>
59709 Date:   Sun Mar 9 10:50:41 2008 +0100
59710
59711     esd/common/fpga.c: fix indentation.
59712
59713     Signed-off-by: Wolfgang Denk <wd@denx.de>
59714
59715 commit cc3843e36453e2b8db65d7e56de938ba045016a0
59716 Author: Wolfgang Denk <wd@denx.de>
59717 Date:   Sun Mar 9 10:33:31 2008 +0100
59718
59719     common/kgdb.c: fix 'dereferencing type-punned pointer' warning
59720
59721     and get rid of a couple of unneeded casts.
59722
59723     Signed-off-by: Wolfgang Denk <wd@denx.de>
59724
59725 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
59726 Author: Wolfgang Denk <wd@denx.de>
59727 Date:   Sun Mar 9 10:09:53 2008 +0100
59728
59729     esd/common/fpga.c: fix 'assignment of read-only location' error
59730
59731     Signed-off-by: Wolfgang Denk <wd@denx.de>
59732
59733 commit c6fe4dabac066e8758345d249032768496983a3e
59734 Author: Wolfgang Denk <wd@denx.de>
59735 Date:   Sun Mar 9 02:13:19 2008 +0100
59736
59737     Makefile: make build silently again.
59738
59739     Signed-off-by: Wolfgang Denk <wd@denx.de>
59740
59741 commit 76babc86576f092573599334c85ec543fdbc6015
59742 Author: Wolfgang Denk <wd@denx.de>
59743 Date:   Sun Mar 9 02:07:49 2008 +0100
59744
59745     m501sk: Fix out of tree building
59746
59747     Signed-off-by: Wolfgang Denk <wd@denx.de>
59748
59749 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
59750 Author: Wolfgang Denk <wd@denx.de>
59751 Date:   Sun Mar 9 00:06:09 2008 +0100
59752
59753     ADS5121: fix out of tree build
59754
59755     and simplify Makefile a bit.
59756
59757     Signed-off-by: Wolfgang Denk <wd@denx.de>
59758
59759 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
59760 Author: Wolfgang Denk <wd@denx.de>
59761 Date:   Sat Mar 8 22:35:31 2008 +0100
59762
59763     Release v1.3.2
59764
59765     Signed-off-by: Wolfgang Denk <wd@denx.de>
59766
59767 commit 78a90f827df74520e939c794fc7413dace21c4db
59768 Author: Wolfgang Denk <wd@denx.de>
59769 Date:   Sat Mar 8 22:35:04 2008 +0100
59770
59771     Update CHANGELOG
59772
59773     Signed-off-by: Wolfgang Denk <wd@denx.de>
59774
59775 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
59776 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59777 Date:   Sat Mar 8 21:30:04 2008 +0100
59778
59779     esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
59780
59781     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59782
59783 commit d75469d48c05795144f4b8ba76addbb4920a7bba
59784 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
59785 Date:   Sat Mar 8 09:25:49 2008 +0900
59786
59787     net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
59788
59789     When rtl_recv() of rtl8169 is called, OWNbit of status register
59790     is not enable occasionally.
59791     rtl_recv() doesn't work normally when the driver doesn't do
59792     appropriate processing.
59793     This patch fix this problem.
59794
59795     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
59796
59797 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
59798 Author: Heiko Schocher <hs@denx.de>
59799 Date:   Fri Mar 7 08:15:28 2008 +0100
59800
59801     mgsuvd: update board configuration
59802
59803     initialize the UPIOx controller.
59804
59805     Signed-off-by: Heiko Schocher <hs@denx.de>
59806
59807 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
59808 Author: Heiko Schocher <hs@denx.de>
59809 Date:   Fri Mar 7 08:13:41 2008 +0100
59810
59811     mgcoge: update board configuration
59812
59813     add support for the config Flash.
59814     initialize the UPIOx controller.
59815
59816     Signed-off-by: Heiko Schocher <hs@denx.de>
59817
59818 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
59819 Author: Kim Phillips <kim.phillips@freescale.com>
59820 Date:   Fri Mar 7 12:27:31 2008 -0600
59821
59822     mpc83xx: make dtb basename file references equal those of linux
59823
59824     the dts file basenames were updated in linux - this helps avoid
59825     inadvertently loading any old dtbs laying around.
59826
59827     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59828
59829 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
59830 Author: Kim Phillips <kim.phillips@freescale.com>
59831 Date:   Wed Feb 27 16:08:22 2008 -0600
59832
59833     net: uec_phy: actually increment the timeout counter
59834
59835     allow u-boot to recover (and, e.g., switch to another interface) in the
59836     case where a PHY does not report autonegotiation is complete within its
59837     two second timeout value.
59838
59839     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59840
59841 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
59842 Author: Markus Brunner <super.firetwister@googlemail.com>
59843 Date:   Wed Mar 5 21:38:12 2008 +0100
59844
59845     fix taihu soft spi_read
59846
59847     The taihu board used gpio_read_out_bit which reads the output register and not
59848     the pin state.
59849
59850     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
59851
59852 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
59853 Author: Stefan Roese <sr@denx.de>
59854 Date:   Fri Mar 7 08:01:43 2008 +0100
59855
59856     ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
59857
59858     Signed-off-by: Stefan Roese <sr@denx.de>
59859
59860 commit bd4458cb47abecabd406b1210457be96c69fc49d
59861 Author: Dave Liu <r63238@freescale.com>
59862 Date:   Tue Mar 4 16:59:22 2008 +0800
59863
59864     837xEMDS: Improve the system performance
59865
59866     1. Make the CSB bus pipeline depth as 4, and enable
59867        the repeat mode;
59868     2. Raise the eTSEC emergency priority;
59869     3. Use the highest IP blocks clock.
59870
59871     Signed-off-by: Dave Liu <daveliu@freescale.com>
59872
59873 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
59874 Author: Detlev Zundel <dzu@denx.de>
59875 Date:   Thu Mar 6 16:45:53 2008 +0100
59876
59877     Replace "run load; run update" with conditionalized "run load update".
59878
59879     The latter version stops when "run load" fails for whatever reasons
59880     rendering the combination *a lot* more secure.
59881
59882     Signed-off-by: Detlev Zundel <dzu@denx.de>
59883
59884 commit 6bc113886d7d316df1a4e459bec8baf027518551
59885 Author: Stefan Roese <sr@denx.de>
59886 Date:   Tue Mar 4 17:40:41 2008 +0100
59887
59888     net: Print error message upon net usage when no ethernet-interface is found
59889
59890     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
59891     defined. Then no ethernet interface is available but a simple "tftp"
59892     command will return without any error message which is quite confusing.
59893
59894     Signed-off-by: Stefan Roese <sr@denx.de>
59895
59896 commit a30a549a3553032d809e0356306b62de0b125901
59897 Author: Jon Loeliger <jdl@freescale.com>
59898 Date:   Tue Mar 4 10:03:03 2008 -0600
59899
59900     Remove erroneous or extra spd.h #includers.
59901
59902     Many of the spd.h #includers don't need it,
59903     and wanted to have spd_sdram() declared instead.
59904     Since they didn't get that, some also had open
59905     coded extern declarations of it instead or as well.
59906     Fix it all up by using spd_sdram.h where needed.
59907
59908     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59909
59910 commit a4475386cef14af3fd88f0518b688e755669486d
59911 Author: Wolfgang Denk <wd@denx.de>
59912 Date:   Tue Mar 4 17:41:28 2008 +0100
59913
59914     PCS440EP: fix build problems (redundant #define)
59915
59916     Signed-off-by: Wolfgang Denk <wd@denx.de>
59917
59918 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
59919 Author: Stefan Roese <sr@denx.de>
59920 Date:   Tue Mar 4 17:39:25 2008 +0100
59921
59922     net: Print error message upon net usage when no ethernet-interface is found
59923
59924     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
59925     defined. Then no ethernet interface is available but a simple "tftp"
59926     command will return without any error message which is quite confusing.
59927
59928     Signed-off-by: Stefan Roese <sr@denx.de>
59929
59930 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
59931 Author: Wolfgang Denk <wd@denx.de>
59932 Date:   Tue Mar 4 17:38:50 2008 +0100
59933
59934     W7OLMC/W7OLMG: fix build problems (redundant #define)
59935
59936     Signed-off-by: Wolfgang Denk <wd@denx.de>
59937
59938 commit f9301e1cda296245ba052d7b08321199c3d0af9d
59939 Author: Wolfgang Denk <wd@denx.de>
59940 Date:   Tue Mar 4 14:58:31 2008 +0100
59941
59942     Makefile: fix problem with out-of-tree builds introduced by 5013c09f
59943
59944     Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
59945     problem for out-of-tree builds which caused "make clean" to fail.
59946
59947     Signed-off-by: Wolfgang Denk <wd@denx.de>
59948
59949 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
59950 Author: Wolfgang Denk <wd@denx.de>
59951 Date:   Tue Mar 4 11:58:26 2008 +0100
59952
59953     examples/Makefile: build "hello_world" on 8xx, too.
59954
59955     Signed-off-by: Wolfgang Denk <wd@denx.de>
59956
59957 commit 74eb0222594fd23aafdf168e60e872814eea8b62
59958 Author: Mike Nuss <mike@terascala.com>
59959 Date:   Mon Mar 3 15:27:05 2008 -0500
59960
59961     PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
59962
59963     Every now and then a Sequoia board (or equivalent hardware) had
59964     problems connecting to a Gigabit capable network interface.
59965
59966     There were differences in the PHY setup between Linux and U-Boot.
59967
59968     This patch fixes the problem. Apparently "remote fault" is being set,
59969     which signals to some devices (on the other end of the cable) that a
59970     fault has occurred, while other devices ignore it. I believe the RF bit
59971     was causing the issue, but I removed T4 also, to match up with Linux.
59972
59973     Signed-off-by: Mike Nuss <mike@terascala.com>
59974
59975 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
59976 Author: Timur Tabi <timur@freescale.com>
59977 Date:   Mon Mar 3 09:58:52 2008 -0600
59978
59979     fix QE firmware uploading limit
59980
59981     Fix a typo in qe_upload_firmware() that prevented uploading firmware on
59982     systems with more than one RISC core.
59983
59984     Signed-off-by: Timur Tabi <timur@freescale.com>
59985
59986 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
59987 Author: Bernhard Nemec <bnemec@ganssloser.com>
59988 Date:   Mon Mar 3 11:57:23 2008 +0000
59989
59990     Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
59991
59992     Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
59993     see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
59994
59995     Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
59996
59997 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
59998 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
59999 Date:   Mon Mar 3 10:39:13 2008 +0200
60000
60001     fix copy from ram to dataflash
60002
60003     If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
60004     routines instead of dataflash. This is because it checks "if source
60005     address is not dataflash" instead of target address.
60006
60007     Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
60008
60009 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
60010 Author: Wolfgang Denk <wd@denx.de>
60011 Date:   Mon Mar 3 12:16:44 2008 +0100
60012
60013     Fix quoting problem (preboot setting) in many board config files.
60014
60015     Signed-off-by: Wolfgang Denk <wd@denx.de>
60016
60017 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
60018 Author: Wolfgang Denk <wd@denx.de>
60019 Date:   Mon Mar 3 12:36:49 2008 +0100
60020
60021     ADS5121: Fix default environment.
60022
60023     Signed-off-by: Wolfgang Denk <wd@denx.de>
60024
60025 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
60026 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60027 Date:   Sun Mar 2 16:12:31 2008 +0100
60028
60029     Makefile: Fix missing unconfig and mkconfig use
60030
60031     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60032
60033 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
60034 Author: michael <trimarchi@gandalf.sssup.it>
60035 Date:   Sun Mar 2 23:33:46 2008 +0100
60036
60037     Fix checking fat32 cluster size.
60038
60039     This fixes the cluster size tests in the FAT32 file system.
60040     The current implementation of VFAT support doesn't work if the
60041     referred cluster has an offset > 16bit representation, causing
60042     "fatload" and "fatls" commands etc. to fail.
60043
60044     Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
60045
60046 commit 661bad63a076a96c39c64f136915f146725af92b
60047 Author: Wolfgang Denk <wd@denx.de>
60048 Date:   Sun Mar 2 22:57:23 2008 +0100
60049
60050     Prepare v1.3.2-rc2 release candidate
60051
60052     Signed-off-by: Wolfgang Denk <wd@denx.de>
60053
60054 commit 76957cb3d621bf664311908e5962e151c633c285
60055 Author: Stefan Roese <sr@denx.de>
60056 Date:   Sat Mar 1 12:11:40 2008 +0100
60057
60058     ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
60059
60060     The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
60061     currently 4k/2k is configured. This patch fixes this issue.
60062
60063     Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
60064
60065     Signed-off-by: Stefan Roese <sr@denx.de>
60066
60067 commit 118978c8eb43803e2794233922df4249fa278b83
60068 Author: Woodruff, Richard <r-woodruff2@ti.com>
60069 Date:   Fri Feb 29 17:34:35 2008 -0600
60070
60071     Fix alignment error on ARM for modules
60072
60073     Fix alignment fault on ARM when running modules.  With out an explicit
60074     linker file gcc4.2.1 will half word align __bss_start's value.  The word
60075     dereference will crash hello_world.
60076
60077     signed-off-by Richard Woodruff <r-woodruff2@ti.com>
60078
60079 commit ce1120dd703e6f12c59e4eba9962356a0300b832
60080 Author: Dave Liu <r63238@freescale.com>
60081 Date:   Fri Feb 29 17:45:31 2008 +0800
60082
60083     fs: Fix ext2 read issue
60084
60085     The ext2 aligned process will corrupt the key
60086     data struct, the patch fix this.
60087
60088     Signed-off-by: Dave Liu <daveliu@freescale.com>
60089
60090 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
60091 Author: Wolfgang Denk <wd@denx.de>
60092 Date:   Sun Mar 2 22:45:33 2008 +0100
60093
60094     Makefile: cleanup "clean" target
60095
60096     Make sure CDPATH settings cannot interfere.
60097     Update CHANGELOG.
60098
60099     Signed-off-by: Wolfgang Denk <wd@denx.de>
60100
60101 commit ffda586fc1373243c9794babde69500f6293a8d8
60102 Author: Li Yang <leoli@freescale.com>
60103 Date:   Fri Feb 29 11:46:05 2008 +0800
60104
60105     add cscope build target
60106
60107     Add cscope build target to generate cscope database for code browsing.
60108
60109     Signed-off-by: Li Yang <leoli@freescale.com>
60110
60111 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
60112 Author: Kim Phillips <kim.phillips@freescale.com>
60113 Date:   Wed Feb 27 15:06:39 2008 -0600
60114
60115     net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
60116
60117     erratum 5.6 states the autoneg completion bit is functional only if the
60118     autoneg bit is asserted.
60119
60120     This fixes any secondarily-issued networking commands on non-gigabit
60121     links on the mpc8360 mds board.
60122
60123     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60124
60125 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
60126 Author: John Rigby <jrigby@freescale.com>
60127 Date:   Tue Feb 26 09:38:14 2008 -0700
60128
60129     MPC5121e ADS PCI support take 3
60130
60131     Adds PCI support for MPC5121
60132
60133     Tested with drivers/net/rtl8139.c
60134
60135     Support is conditional since PCI on old silicon does not work.
60136
60137     ads5121_PCI_config turns on PCI
60138
60139     In this version, condition compilation of PCI code has been moved
60140     from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
60141     suggested by Jean-Christophe PLAGNIOL-VILLARD
60142
60143     Signed-off-by: John Rigby <jrigby@freescale.com>
60144
60145 commit 44b4dbed4133f657705b7c5193209da9978243a7
60146 Author: Anatolij Gustschin <agust@denx.de>
60147 Date:   Mon Feb 25 23:53:07 2008 +0100
60148
60149     Fix warnings while compilation of post/drivers/memory.c
60150
60151     Fix warnings while compilation with new gcc in eldk-4.2
60152
60153     Signed-off-by: Anatolij Gustschin <agust@denx.de>
60154
60155 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
60156 Author: Anatolij Gustschin <agust@denx.de>
60157 Date:   Mon Feb 25 20:54:04 2008 +0100
60158
60159     ppc4xx: Fix problem in 4xx_enet.c driver
60160
60161     U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
60162     enabled. To reproduce the problem ensure that 'ethrotate'
60163     environment variable isn't set to "no" and then run
60164     "tftp 200000 not_existent_file".
60165     This patch tries to fix the issue.
60166
60167     Signed-off-by: Anatolij Gustschin <agust@denx.de>
60168
60169 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
60170 Author: Anatolij Gustschin <agust@denx.de>
60171 Date:   Mon Feb 25 20:04:20 2008 +0100
60172
60173     POST: Disable cache while SPR POST
60174
60175     Currently (since commit b2e2142c) u-boot crashes on
60176     sequoia board while SPR test if CONFIG_4xx_DCACHE is
60177     enabled. This patch disables the cache while SPR test.
60178
60179     Signed-off-by: Anatolij Gustschin <agust@denx.de>
60180
60181 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
60182 Author: Martin Krause <martin.krause@tqs.de>
60183 Date:   Mon Feb 25 17:52:40 2008 +0100
60184
60185     TQM5200: use automatic fdt memory fixup (part 2)
60186
60187     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
60188     TB5200 and TB5200_B to fixup the /memory node with the memory values
60189     detected by U-Boot.
60190
60191     Signed-off-by: Martin Krause <martin.krause@tqs.de>
60192
60193 commit 44ceec253ea941b301abf4b079d52324def69d92
60194 Author: Martin Krause <martin.krause@tqs.de>
60195 Date:   Mon Feb 25 15:17:05 2008 +0100
60196
60197     TQM5200: use automatic fdt memory fixup
60198
60199     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
60200     TB5200 and TB5200_B to fixup the /memory node with the memory values
60201     detected by U-Boot.
60202
60203     Signed-off-by: Martin Krause <martin.krause@tqs.de>
60204
60205 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
60206 Author: Martin Krause <martin.krause@tqs.de>
60207 Date:   Mon Feb 25 13:27:52 2008 +0100
60208
60209     TQM5200: fix bug in SDRAM initialization code
60210
60211     This patch fixes a bug in the SDRAM initialization code for the
60212     TQM5200. The hi_addr bit is now set correctly. Without this patch
60213     the hi_addr bit is always set to 1, if the second SDRAM bank is
60214     not populated.
60215
60216     For other MPC5200 boards a correspondig patch has already been applied
60217     some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
60218
60219     Signed-off-by: Martin Krause <martin.krause@tqs.de>
60220     --
60221     Forget the first patch please. I confused flash with SDRAM in
60222     the comment ...
60223
60224 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
60225 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60226 Date:   Mon Feb 25 00:03:12 2008 +0100
60227
60228     mx1fs2/flash: Fix multiple compiler warnings
60229
60230     "pointer targets in assignment differ in signedness"
60231
60232     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60233
60234 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
60235 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60236 Date:   Mon Feb 25 00:03:11 2008 +0100
60237
60238     arm-imx: Fix register definitions
60239
60240     Sync register definitions with linux
60241
60242     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60243
60244 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
60245 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60246 Date:   Mon Feb 25 00:03:10 2008 +0100
60247
60248     actua1/actua2/actua3: Fix multiple unused variable warnings
60249
60250     - actua1:
60251         actux1.c: In function 'checkboard':
60252         actux1.c:92: warning: unused variable 'revision'
60253
60254     - actua2:
60255         actux2.c: In function 'checkboard':
60256         actux2.c:100: warning: unused variable 's'
60257         actux2.c:99: warning: unused variable 'revision'
60258         actux2.c: In function 'reset_phy':
60259         actux2.c:130: warning: unused variable 'i'
60260
60261     - actua3:
60262         actux3.c: In function 'checkboard':
60263         actux3.c:114: warning: unused variable 'revision'
60264
60265     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60266
60267 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
60268 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60269 Date:   Sun Feb 24 11:44:29 2008 +0900
60270
60271     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
60272
60273     The previous patch was lacking of i386, microblaze, nios and nios2. This
60274     patch tries to fix them.
60275
60276     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60277
60278 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
60279 Author: Marian Balakowicz <m8@semihalf.com>
60280 Date:   Fri Feb 29 22:22:46 2008 +0100
60281
60282     [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
60283
60284     Do not use global fdt blob pointer, calculate blob size from routine
60285     argument blob pointer.
60286
60287     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60288
60289 commit d1cc52879c8966507dad9fb575481e6d3985e64e
60290 Author: David Gibson <david@gibson.dropbear.id.au>
60291 Date:   Tue Feb 12 00:58:31 2008 +1100
60292
60293     libfdt: Add and use a node iteration helper function.
60294
60295     This patch adds an fdt_next_node() function which can be used to
60296     iterate through nodes of the tree while keeping track of depth.  This
60297     function is used to simplify the iteration code in a lot of other
60298     functions, and is also exported for use by library users.
60299
60300     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
60301
60302 commit 8cf30809a82902a471866d2f07725ce3b8a22291
60303 Author: Bartlomiej Sieka <tur@semihalf.com>
60304 Date:   Fri Feb 29 16:00:24 2008 +0100
60305
60306     [new uImage] Add libfdt support to mkimage
60307
60308     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
60309
60310 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
60311 Author: Bartlomiej Sieka <tur@semihalf.com>
60312 Date:   Fri Feb 29 16:00:23 2008 +0100
60313
60314     [new uImage] Add sha1.o object to mkimage binary build
60315
60316     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
60317
60318 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
60319 Author: Marian Balakowicz <m8@semihalf.com>
60320 Date:   Fri Feb 29 16:00:06 2008 +0100
60321
60322     [new uImage] Fix component handling for legacy multi component images
60323
60324     Use uint32_t when accessing size table in image_multi_count() and
60325     image_multi_getimg() for multi component images.
60326
60327     Add missing uimage_to_cpu() endianness conversion.
60328
60329     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60330
60331 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
60332 Author: Marian Balakowicz <m8@semihalf.com>
60333 Date:   Fri Feb 29 15:59:59 2008 +0100
60334
60335     [new uImage] Share common uImage code between mkimage and U-boot
60336
60337     This patch adds the following common routines:
60338
60339     1) Dedicated mkimage print_header() is replaced with common
60340     image_print_contents()
60341     image_print_contents_noindent()
60342
60343     2) Common os/arch/type/comp fields name <--> id translation routines
60344     genimg_get_os_name()
60345     genimg_get_arch_name()
60346     genimg_get_type_name()
60347     genimg_get_comp_name()
60348     genimg_get_os_id()
60349     genimg_get_arch_id()
60350     genimg_get_type_id()
60351     genimg_get_comp_id()
60352
60353     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60354
60355 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
60356 Author: Marian Balakowicz <m8@semihalf.com>
60357 Date:   Fri Feb 29 14:58:34 2008 +0100
60358
60359     [new uImage] Update naming convention for bootm/uImage related code
60360
60361     This patch introduces the following prefix convention for the
60362     image format handling and bootm related code:
60363
60364     genimg_             - dual format shared code
60365     image_              - legacy uImage format specific code
60366     fit_                - new uImage format specific code
60367     boot_               - booting process related code
60368
60369     Related routines are renamed and a few pieces of code are moved around and
60370     re-grouped.
60371
60372     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60373
60374 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
60375 Author: Kumar Gala <galak@kernel.crashing.org>
60376 Date:   Wed Feb 27 21:51:51 2008 -0600
60377
60378     [new uImage] Respect autostart setting in linux bootm
60379
60380     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60381     Acked-by: Marian Balakowicz <m8@semihalf.com>
60382
60383 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
60384 Author: Kumar Gala <galak@kernel.crashing.org>
60385 Date:   Wed Feb 27 21:51:50 2008 -0600
60386
60387     [new uImage] Provide ability to restrict region used for boot images
60388
60389     Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
60390     to restrict what memory range is used for bootm.
60391
60392     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60393     Acked-by: Marian Balakowicz <m8@semihalf.com>
60394
60395 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
60396 Author: Kumar Gala <galak@kernel.crashing.org>
60397 Date:   Wed Feb 27 21:51:49 2008 -0600
60398
60399     [new uImage] Use lmb for bootm allocations
60400
60401     Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
60402     functions over to using lmb for allocation of the ramdisk, command line
60403     and kernel bd info.
60404
60405     Convert PPC specific fdt_relocate() to use lmb for allocation of the device
60406     tree.
60407
60408     Provided a weak function that board code can call to do additional
60409     lmb reserves if needed.
60410
60411     Also introduce the concept of bootmap_base to specify the offset in
60412     physical memory that the bootmap is located at.  This is used for
60413     allocations of the cmdline, kernel bd, and device tree as they should
60414     be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
60415
60416     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60417
60418 commit f5614e7926863bf0225ec860d9b319741a9c4004
60419 Author: Kumar Gala <galak@kernel.crashing.org>
60420 Date:   Wed Feb 27 21:51:48 2008 -0600
60421
60422     [new uImage] Add autostart flag to bootm_headers structure
60423
60424     The autostart env variable was dropped as part of the initial new uImage
60425     cleanup.  Add it back here so the arch specific code can decide if it
60426     wants to really boot or not.
60427
60428     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60429     Acked-by: Marian Balakowicz <m8@semihalf.com>
60430
60431 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
60432 Author: Kumar Gala <galak@kernel.crashing.org>
60433 Date:   Wed Feb 27 21:51:47 2008 -0600
60434
60435     [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
60436
60437     Introduce the LMB lib used on PPC in the kernel as a clean way to manage
60438     the memory spaces used by various boot images and structures.  This code
60439     will allow us to simplify the code in bootm and its support functions.
60440
60441     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60442
60443 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
60444 Author: Kumar Gala <galak@kernel.crashing.org>
60445 Date:   Tue Feb 19 22:03:47 2008 -0600
60446
60447     [new uImage] ppc: Allow boards to specify effective amount of memory
60448
60449     For historical reasons we limited the stack to 256M because some boards
60450     could only map that much via BATS.  However newer boards are capable of
60451     mapping more memory (for example 85xx is capable of doing up to 2G).
60452
60453     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60454     Acked-by: Marian Balakowicz <m8@semihalf.com>
60455
60456 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
60457 Author: Kumar Gala <galak@kernel.crashing.org>
60458 Date:   Wed Feb 27 21:51:46 2008 -0600
60459
60460     [new uImage] rework error handling so common functions don't reset
60461
60462     Changed image_get_ramdisk() to just return NULL on error and have
60463     get_ramdisk() propogate that error to the caller.  It's left to the
60464     caller to call do_reset() if it wants to.
60465
60466     Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
60467     to a common location.  In the future we will change get_fdt() and
60468     fdt_relocate() to return success/failure and not call do_reset() at all.
60469
60470     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60471     Acked-by: Marian Balakowicz <m8@semihalf.com>
60472
60473 commit d2bc095a639672def11d5d043b5688d0dbd692ec
60474 Author: Kumar Gala <galak@kernel.crashing.org>
60475 Date:   Wed Feb 27 21:51:45 2008 -0600
60476
60477     [new uImage] ppc: Re-order ramdisk/fdt handling sequence
60478
60479     Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
60480     however it does mean we have to go in and fixup the initrd info since
60481     we don't know where it will be.
60482
60483     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60484
60485 commit 27953493ef025fb698d68c5dee39b36f01f4d530
60486 Author: Kumar Gala <galak@kernel.crashing.org>
60487 Date:   Wed Feb 27 21:51:44 2008 -0600
60488
60489     [new uImage] ppc: Determine if we are booting an OF style
60490
60491     If we are bootin OF style than we can skip setting up some things
60492     that are used for the old boot method.
60493
60494     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60495     Acked-by: Marian Balakowicz <m8@semihalf.com>
60496
60497 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
60498 Author: Kumar Gala <galak@kernel.crashing.org>
60499 Date:   Wed Feb 27 21:51:43 2008 -0600
60500
60501     [new uImage] Don't pass kdb to ramdisk_high since we may not have one
60502
60503     We don't actually need the kdb param as we are just using it to get
60504     bd->bi_memsize which we can get from gd->bd->bi_memsize.  Also, if we
60505     boot via OF we might not actually fill out a kdb.
60506
60507     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60508     Acked-by: Marian Balakowicz <m8@semihalf.com>
60509
60510 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
60511 Author: Kumar Gala <galak@kernel.crashing.org>
60512 Date:   Wed Feb 27 16:30:47 2008 -0600
60513
60514     85xx: Don't icbi when unlocking the cache
60515
60516     There is no reason to icbi when invalidating the temporary stack in
60517     the d-cache.  Its impossible on e500 to have the i-cache contain
60518     any addresses in the temp stack and it can be problematic in generating
60519     transactions on the bus to non-valid addresses.
60520
60521     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60522
60523 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
60524 Author: Andy Fleming <afleming@freescale.com>
60525 Date:   Wed Feb 27 15:50:50 2008 -0600
60526
60527     Fix source for ECM error IVPR
60528
60529     The source vector for the ECM was being set to 2,
60530     but that's what the source vector for DDR was being
60531     set to.  Change it to 1.
60532
60533     Signed-off-by: Andy Fleming <afleming@freescale.com>
60534
60535 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
60536 Author: Andy Fleming <afleming@freescale.com>
60537 Date:   Wed Feb 27 14:29:58 2008 -0600
60538
60539     Invalidate INIT_RAM TLB mappings
60540
60541     Commit 0db37dc...  (and some others) changed the INIT_RAM TLB
60542     mappings to be unguarded.  This collided with an existing "bug"
60543     where the mappings for the INIT_RAM were being kept around.
60544     This meant that speculative loads to those addresses were
60545     succeeding in the TLB, and going out to the bus, where they
60546     were causing an exception (there's nothing at that address). The
60547     Flash code was coincidentally causing such a speculative load.
60548     Rather than go back to mapping the INIT RAM as guarded, we fix
60549     it so that the entries for the INIT_RAM are invalidated.  Thus
60550     the speculative loads will fail in the TLB, and have no effect.
60551
60552     Signed-off-by: Andy Fleming <afleming@freescale.com>
60553
60554 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
60555 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60556 Date:   Sun Feb 17 22:56:17 2008 +0100
60557
60558     sbc8548: Fix Revision reading and unused variable 'path'
60559
60560     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60561
60562 commit 495d162374c472f46454453553382ad0735dc725
60563 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60564 Date:   Sun Feb 17 22:56:16 2008 +0100
60565
60566     sbc8548: Fix cfi flash bank declaration
60567
60568     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60569
60570 commit 4efbe9dbb129f857f27856936112c8c02f016be6
60571 Author: Marian Balakowicz <m8@semihalf.com>
60572 Date:   Wed Feb 27 11:02:26 2008 +0100
60573
60574     [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
60575
60576     Dual format image code must properly handle all three FDT passing methods:
60577     - raw FDT blob passed
60578     - FDT blob embedded in the legacy uImage
60579     - FDT blob embedded in the new uImage
60580
60581     This patch enables proper raw FDT handling when no FIT imaeg support
60582     is compiled in. This is a bit tricky as we must dected FIT format even
60583     when FIT uImage handling is not enabled as both FIT uImages and raw FDT
60584     blobs use tha same low level format (libfdt).
60585
60586     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60587
60588 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
60589 Author: Marian Balakowicz <m8@semihalf.com>
60590 Date:   Wed Feb 27 11:02:26 2008 +0100
60591
60592     [new uImage] POWERPC: Add image_get_fdt() routine
60593
60594     FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
60595     (3) or embedded in the new uImage. For the (2) case embedding image must be
60596     verified before we get FDT from it. This patch factors out legacy image
60597     specific verification routine to the separate helper routine.
60598
60599     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60600     Acked-by: Kumar Gala <galak@kernel.crashing.org>
60601
60602 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
60603 Author: Marian Balakowicz <m8@semihalf.com>
60604 Date:   Wed Feb 27 11:02:07 2008 +0100
60605
60606     [new uImage] Add image_get_kernel() routine
60607
60608     Legacy image specific verification is factored out to a separate helper
60609     routine to keep get_kernel() generic and simple.
60610
60611     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60612     Acked-by: Kumar Gala <galak@kernel.crashing.org>
60613
60614 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
60615 Author: Marian Balakowicz <m8@semihalf.com>
60616 Date:   Wed Feb 27 11:01:04 2008 +0100
60617
60618     [new uImage] Move image verify flag to bootm_headers structure
60619
60620     Do not pass image verification flag directly to related routines.
60621     Simplify argument passing and move it to the bootm_header structure which
60622     contains curently processed image specific data and is already being passed
60623     on the argument list.
60624
60625     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60626     Acked-by: Kumar Gala <galak@kernel.crashing.org>
60627
60628 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
60629 Author: Marian Balakowicz <m8@semihalf.com>
60630 Date:   Wed Feb 27 11:00:47 2008 +0100
60631
60632     [Makefile] Sort COBJS in lib_<arch> Makefiles
60633
60634     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60635
60636 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
60637 Author: Marian Balakowicz <m8@semihalf.com>
60638 Date:   Wed Feb 27 11:00:47 2008 +0100
60639
60640     [new uImage] Optimize gen_get_image() flow control
60641
60642     When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
60643     to do, update its control flow to better reflect that simple case.
60644
60645     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60646     Acked-by: Kumar Gala <galak@kernel.crashing.org>
60647
60648 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
60649 Author: Marian Balakowicz <m8@semihalf.com>
60650 Date:   Mon Feb 4 08:28:17 2008 +0100
60651
60652     [new uImage] POWERPC: Split get_fdt() into get and relocate routines
60653
60654     PPC specific FDT blob handling code is divided into two separate routines:
60655
60656     get_fdt()   - find and verify a FDT blob (either raw or image embedded)
60657     fdt_relocate()      - move FDT blob to within BOOTMAP if needed
60658
60659     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60660     Acked-by: Kumar Gala <galak@kernel.crashing.org>
60661
60662 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
60663 Author: Jon Loeliger <jdl@freescale.com>
60664 Date:   Mon Feb 25 13:13:37 2008 -0600
60665
60666     86xx: Fix renamed GUR symbols in sbc8641d board.
60667
60668     Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
60669     (86xx: Fix GUR PCI config registers properly), we should have
60670     changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
60671     symbols in the sbc8641d board as well.  Fix this oversight.
60672
60673     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60674
60675 commit 64cd594e623c39f73964d18787763e4533f791f7
60676 Author: Stefan Roese <sr@denx.de>
60677 Date:   Mon Feb 25 16:50:48 2008 +0100
60678
60679     ppc4xx: Fix acadia_nand build problem
60680
60681     Don't include testdram() on NAND-booting target acadia_nand. This saves
60682     a few bytes and makes the target build clean again.
60683
60684     Signed-off-by: Stefan Roese <sr@denx.de>
60685
60686 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
60687 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60688 Date:   Sun Feb 24 23:03:12 2008 +0000
60689
60690     mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
60691
60692     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60693
60694 commit 724902c8464e610642b3a170278b99710325888e
60695 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60696 Date:   Sun Feb 24 23:03:11 2008 +0000
60697
60698     arm-imx: Fix registers definition
60699
60700     Sync registers definition with linux
60701
60702     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60703
60704 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
60705 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60706 Date:   Sun Feb 24 23:03:10 2008 +0000
60707
60708     actua1/actua2/actua3: Fix multipleunused variable
60709
60710     - actua1:
60711         actux1.c: In function 'checkboard':
60712         actux1.c:92: warning: unused variable 'revision'
60713
60714     - actua2:
60715         actux2.c: In function 'checkboard':
60716         actux2.c:100: warning: unused variable 's'
60717         actux2.c:99: warning: unused variable 'revision'
60718         actux2.c: In function 'reset_phy':
60719         actux2.c:130: warning: unused variable 'i'
60720
60721     - actua3:
60722         actux3.c: In function 'checkboard':
60723         actux3.c:114: warning: unused variable 'revision'
60724
60725     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60726
60727 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
60728 Author: Marian Balakowicz <m8@semihalf.com>
60729 Date:   Mon Feb 4 08:28:09 2008 +0100
60730
60731     [new uImage] Add dual format uImage support framework
60732
60733     This patch adds framework for dual format images. Format detection is added
60734     and the bootm controll flow is updated to include cases for new FIT format
60735     uImages.
60736
60737     When the legacy (image_header based) format is detected appropriate
60738     legacy specific handling is invoked. For the new (FIT based) format uImages
60739     dual boot framework has a minial support, that will only print out a
60740     corresponding debug messages. Implementation of the FIT specific handling will
60741     be added in following patches.
60742
60743     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60744
60745 commit b29661fc1151077776454288051bc9a488351ce8
60746 Author: Wolfgang Denk <wd@denx.de>
60747 Date:   Sun Feb 24 15:21:36 2008 +0100
60748
60749     Coding style cleanup. Prepare v1.3.2-rc2 release candidate
60750
60751     Signed-off-by: Wolfgang Denk <wd@denx.de>
60752
60753 commit 00b48a48424894daa589d166d73277830b1c6ac4
60754 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60755 Date:   Sat Feb 23 12:15:56 2008 +0100
60756
60757     ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
60758
60759     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60760
60761 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
60762 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60763 Date:   Sat Feb 23 17:24:16 2008 +0900
60764
60765     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
60766
60767     ----------------------------------------------------------------
60768     Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
60769
60770     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
60771     32bit targets.
60772
60773     GCC can be made to warn about usage of long long types with ISO C90
60774     (-ansi), but only with -pedantic.  You can write this in a way that even
60775     then it doesn't cause warnings, namely by:
60776
60777     #ifdef __GNUC__
60778     __extension__ typedef __signed__ long long __s64;
60779     __extension__ typedef unsigned long long __u64;
60780     #endif
60781
60782     The __extension__ keyword in front of this switches off any pedantic
60783     warnings for this expression.
60784
60785     Signed-off-by: Olaf Hering <olh@suse.de>
60786     Cc: <linux-arch@vger.kernel.org>
60787     Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
60788     Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
60789     ----------------------------------------------------------------
60790
60791     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60792
60793 commit 208acd112e6517b21fc30c420396902b103563ac
60794 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60795 Date:   Sat Feb 23 17:07:57 2008 +0900
60796
60797     cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
60798
60799     This will reduce the build time.
60800
60801     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60802
60803 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
60804 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60805 Date:   Sat Feb 23 17:05:00 2008 +0900
60806
60807     cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
60808
60809     This will reduce the build time.
60810
60811     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60812
60813 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
60814 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60815 Date:   Sat Feb 23 16:58:41 2008 +0900
60816
60817     cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
60818
60819     This reduces the build time by ~10%. Here's the gth2_config example.
60820
60821             BEFORE       AFTER
60822     real    0m31.441s    0m27.833s
60823     user    0m24.766s    0m23.045s
60824     sys     0m10.425s    0m7.468s
60825
60826     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60827
60828 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
60829 Author: Marcel Moolenaar <marcelm@juniper.net>
60830 Date:   Fri Feb 22 10:48:07 2008 -0800
60831
60832     make define2mk.sed work on FreeBSD
60833
60834     In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
60835     the define2mk.sed script was identified as the source of the link
60836     failure on FreeBSD. The problem is that sed(1) does not always support
60837     the '+' operator. It isn't on FreeBSD. The attach patch implements the
60838     equivalent, using the '*' operator instead and should work everywhere.
60839
60840     Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
60841
60842 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
60843 Author: Detlev Zundel <dzu@denx.de>
60844 Date:   Fri Feb 22 17:21:32 2008 +0100
60845
60846     Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
60847
60848     The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
60849     final traces of long-deprecated "ramdisk" kernel parm") makes these
60850     changes neccessary.
60851
60852     Signed-off-by: Detlev Zundel <dzu@denx.de>
60853
60854 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
60855 Author: Larry Johnson <lrj@acm.org>
60856 Date:   Thu Feb 21 13:58:16 2008 -0500
60857
60858     LM75 bug fix for negative temperatures
60859
60860     When the LM75 temperature sensor measures a temperature below 0 C, the
60861     current driver does not perform sign extension, so the result returned is
60862     256 C too high.  This patch fixes the problem.
60863
60864     Signed-off-by: Larry Johnson <lrj@acm.org>
60865
60866 commit 5a910c224b13e413bda41922379add6d75c32da3
60867 Author: Heiko Schocher <hs@denx.de>
60868 Date:   Thu Feb 21 18:33:45 2008 +0100
60869
60870     IDS8247: update MAINTAINER entry.
60871
60872     Signed-off-by: Heiko Schocher <hs@denx.de>
60873
60874 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
60875 Author: Heiko Schocher <hs@denx.de>
60876 Date:   Thu Feb 21 18:31:15 2008 +0100
60877
60878     Fix device tree for mgsuvd board.
60879
60880     Rename the "scc" node in "ethernet" for the mgsuvd board.
60881
60882     Signed-off-by: Heiko Schocher <hs@denx.de>
60883
60884 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
60885 Author: Yuri Tikhonov <yur@emcraft.com>
60886 Date:   Thu Feb 21 14:23:42 2008 +0100
60887
60888     lwmon5: enable hardware watchdog
60889
60890     Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
60891     causing it to reboot the board if U-Boot does a long busy-wait with
60892     udelay(). Thus, for these boards we have to restart WD more
60893     frequently.
60894
60895     This patch splits the busy-wait udelay() into smaller, predefined,
60896     intervals, so that the watchdog timer may be resetted with the
60897     configurable (CONFIG_WD_PERIOD) interval.
60898
60899     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
60900
60901 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
60902 Author: Anatolij Gustschin <agust@denx.de>
60903 Date:   Thu Feb 21 12:52:29 2008 +0100
60904
60905     ppc4xx: Support for ATI Radeon 9200 card on sequoia
60906
60907     Adds configuration option for ATI Radeon 9200 card
60908     support to sequoia config file. If CONFIG_VIDEO
60909     is enabled, TEXT_BASE should be changed to 0xFFF80000.
60910
60911     Signed-off-by: Anatolij Gustschin <agust@denx.de>
60912
60913 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
60914 Author: Kumar Gala <galak@kernel.crashing.org>
60915 Date:   Mon Feb 18 08:18:07 2008 -0600
60916
60917     Remove duplicate defines for ARRAY_SIZE
60918
60919     A few duplicate of the ARRAY_SIZE macro sneaked in since we put
60920     the define in common.h.
60921
60922     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60923
60924 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
60925 Author: Kumar Gala <galak@kernel.crashing.org>
60926 Date:   Mon Feb 18 08:09:37 2008 -0600
60927
60928     ppc: Allow boards to specify effective amount of memory
60929
60930     For historical reasons we limited the stack to 256M because some boards
60931     could only map that much via BATS.  However newer boards are capable of
60932     mapping more memory (for example 85xx is capable of doing up to 2G).
60933
60934     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60935
60936 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
60937 Author: Mike Frysinger <vapier@gentoo.org>
60938 Date:   Mon Feb 18 05:24:13 2008 -0500
60939
60940     include autoconf.mk before any other .mk files
60941
60942     This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
60943     those .mk files can have make if statements based on the current config.
60944
60945     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
60946
60947 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
60948 Author: Mike Frysinger <vapier@gentoo.org>
60949 Date:   Mon Feb 18 05:10:07 2008 -0500
60950
60951     error check autoconf.mk generation
60952
60953     If any of the steps for generating autoconf.mk fail currently, they go
60954     unnoticed.  To fix, we can simply add 'set -e' to the long list of commands.
60955     This is simpler and more robust than placing '|| exit $$?' after every line.
60956
60957     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
60958
60959 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
60960 Author: Stefano Babic <sbabic@denx.de>
60961 Date:   Mon Feb 18 08:03:51 2008 +0100
60962
60963     Fix bug in dependency checking
60964
60965     By adding VERSION_FILE to the PHONY targets the script
60966     /tools/setlocalversion is always called and version_autogenerated.h
60967     is replaced only if the script find a modified source file.
60968
60969     Signed-off-by: Stefano Babic <sbabic@denx.de>
60970
60971 commit 98ba144ccc912eee90dd42699f023c497ce774c6
60972 Author: Kyungmin Park <kmpark@infradead.org>
60973 Date:   Mon Feb 18 14:35:43 2008 +0900
60974
60975     Fix GPMC CS2 memory setup at apollon
60976
60977     It disables the current map first
60978
60979     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
60980
60981 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
60982 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60983 Date:   Sun Feb 17 23:52:46 2008 +0100
60984
60985     uli526x: Fix multiple differ in signedness and parentheses around comparison
60986
60987     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60988
60989 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
60990 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60991 Date:   Sun Feb 17 16:58:04 2008 +0100
60992
60993     MIPS: Fix CFG_NO_FLASH support
60994
60995     - Fix flash_init call when CFG_NO_FLASH is used
60996     - Remove no more needed flash.c for qemu-mips
60997
60998     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60999
61000 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
61001 Author: Mike Frysinger <vapier@gentoo.org>
61002 Date:   Sat Feb 16 02:40:18 2008 -0500
61003
61004     easylogo: clean up some more and add -r (rgb) support
61005
61006     Michael Hennerich added support for outputting an image in RGB format rather
61007     than forcing YUYV all the time.  This makes obvious sense if the display you
61008     have takes RGB input rather than YUYV.
61009
61010     Rather than hack in support for options, I've converted it to use getopt and
61011     cleaned up the argument parsing in the process.
61012
61013     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
61014     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61015
61016 commit f65c98129ccada3f7caf97d80395a95b84e911de
61017 Author: Mike Frysinger <vapier@gentoo.org>
61018 Date:   Sat Feb 16 02:12:37 2008 -0500
61019
61020     Makefile: add target for $(LDSCRIPT)
61021
61022     If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
61023     then change into the board directory and try and create it.  This allows you
61024     to generate the linker script on the fly based upon board defines (like the
61025     Blackfin boards do).
61026
61027     There should be no regressions due to this change as the normal case is to
61028     already have a u-boot.lds file.  If that's the case, then there's nothing to
61029     generate, and so make will always exit.  The fix here is that if the linker
61030     script does not exist, the implicit rules take over and attempt to guess how
61031     to generate the file.
61032
61033     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61034
61035 commit 5583cbf736474ef754e128a54fb78632f57b48fd
61036 Author: Marian Balakowicz <m8@semihalf.com>
61037 Date:   Thu Feb 21 17:27:49 2008 +0100
61038
61039     [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
61040
61041     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61042
61043 commit 2242f5369822bc7780db95c47985bb408ea9157b
61044 Author: Marian Balakowicz <m8@semihalf.com>
61045 Date:   Thu Feb 21 17:27:41 2008 +0100
61046
61047     [new uImage] Rename and move print_image_hdr() routine
61048
61049     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61050
61051 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
61052 Author: Marian Balakowicz <m8@semihalf.com>
61053 Date:   Thu Feb 21 17:20:20 2008 +0100
61054
61055     [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
61056
61057     Introducing routines for parsing new uImage format bootm arguments:
61058     [<addr>]#<conf>             - configuration specification
61059     [<addr>]:<subimg>   - subimage specification
61060
61061     New format images can contain multiple subimages of the same type. For example
61062     a single new format image file can contain three kernels, two ramdisks and a
61063     couple of FDT blobs. Subimage and configuration specifications are extensions
61064     to bootm (and other image-related commands) arguments' syntax that allow to
61065     specify which particular subimage should be operated on.
61066
61067     Subimage specification is used to denote a particular subimage. Configurations
61068     are a bit more complex -- they are used to define a particualr booting setup,
61069     for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
61070     etc.
61071
61072     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61073
61074 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
61075 Author: Marian Balakowicz <m8@semihalf.com>
61076 Date:   Thu Feb 21 17:20:19 2008 +0100
61077
61078     [new uImage] Add gen_get_image() routine
61079
61080     This routine assures that image (whether legacy or FIT) is not
61081     in a special dataflash storage.
61082
61083     If image address is a dataflash address image is moved to system RAM.
61084
61085     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61086
61087 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
61088 Author: Marian Balakowicz <m8@semihalf.com>
61089 Date:   Thu Feb 21 17:20:18 2008 +0100
61090
61091     [new uImage] Pull in libfdt if CONFIG_FIT is enabled
61092
61093     New uImage format (Flattened Image Tree) requires libfdt
61094     functionality, print out error message if CONFIG_OF_LIBFDT
61095     is not defined.
61096
61097     New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
61098     This commit turns it on by default.
61099
61100     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61101
61102 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
61103 Author: Michael Schwingen <michael@schwingen.org>
61104 Date:   Mon Feb 18 23:16:35 2008 +0100
61105
61106     CFI: Do not use uninitialized cmd_reset
61107
61108     Do not use uninitialized cmd_reset; issue both AMD and Intel reset
61109     commands instead
61110
61111     From a short test, it looks like AMD-style flash roms treat *any* unknown
61112     command write as a reset, at least when in CFI Query mode, so issuing the
61113     Intel reset command to AMD-style flashs seems safe (from the small sample I
61114     have), plus the 3-cycle magic sequence should kick the state machine into
61115     the right state even without a reset command. Since the AMD-style flashs
61116     require the unlock sequence for real operation, I chose to try the AMD reset
61117     command first, so that Intel flashs do no see an invalid command prior to
61118     the CFI query.
61119
61120     I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
61121     plus Intel StrataFlash.
61122
61123     Signed-off-by: Michael Schwingen <michael@schwingen.org>
61124     Signed-off-by: Stefan Roese <sr@denx.de>
61125
61126 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
61127 Author: Rafal Jaworowski <raj@semihalf.com>
61128 Date:   Thu Feb 21 11:56:44 2008 +0100
61129
61130     API: Add (c) and licensing notice to the public API header.
61131
61132     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
61133
61134 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
61135 Author: Yuri Tikhonov <yur@emcraft.com>
61136 Date:   Thu Feb 21 11:06:07 2008 +0100
61137
61138     Fix CPU POST test failure
61139
61140     The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
61141     ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
61142     by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
61143     This patch just saves the CR value before running the test code, so allowing
61144     it to do anything it wants with CR.
61145
61146     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
61147     Acked-by: Yuri Tikhonov <yur@emcraft.com>
61148     --
61149
61150 commit d5908b093955415f3d340706378b991f911af671
61151 Author: Jon Loeliger <jdl@freescale.com>
61152 Date:   Wed Feb 20 15:26:51 2008 -0600
61153
61154     8610HPCD: Document the flashbank selection switches.
61155
61156     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61157
61158 commit a551cee99ad1d1da20fd23ad265de47448852f56
61159 Author: Jon Loeliger <jdl@freescale.com>
61160 Date:   Wed Feb 20 14:22:26 2008 -0600
61161
61162     86xx: Fix GUR PCI config registers properly.
61163
61164     Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
61165     I tried to "8610HPCD: Fix typos in two PCI setup registers", I
61166     botched it due to not realizing that 8610 and 8641 had different
61167     Global Utility Register defintions, one of which was like 85xx,
61168     and the other wasn't.  Correct this problem by introducing two
61169     symbols, one for each 86xx SoC, but neither of which is named
61170     anything like 85xx.
61171
61172     My bad.  Lovely Wednesday with git bisect.  You know.
61173
61174     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61175
61176 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
61177 Author: Jon Loeliger <jdl@freescale.com>
61178 Date:   Wed Feb 20 12:24:11 2008 -0600
61179
61180     8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
61181
61182     Without an actual supported video card hooked up, enabling
61183     the CONFIG_VIDEO by default just makes it look broken by
61184     routing all console output to the video card.   Don't.
61185
61186     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61187
61188 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
61189 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61190 Date:   Wed Jan 30 15:08:15 2008 -0600
61191
61192     ColdFire: Fix missing code flash size for M5485EVB
61193
61194     Signed-off-by: James Mahan <kmahan@freescale.com>
61195     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
61196
61197 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
61198 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61199 Date:   Wed Jan 30 15:04:42 2008 -0600
61200
61201     ColdFire: Fix 5282 and 5271 interrupt mask bit
61202
61203     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
61204
61205 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
61206 Author: Jon Loeliger <jdl@freescale.com>
61207 Date:   Tue Feb 19 12:31:08 2008 -0600
61208
61209     8610HPCD: Fix typos in two PCI setup registers.
61210
61211     The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
61212     were erroneously present as 85xx names and values, leftover from
61213     the clone wars.  Fix this by removing the 85xx cruft from the
61214     86xx codebase.
61215
61216     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61217
61218 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
61219 Author: Jon Loeliger <jdl@freescale.com>
61220 Date:   Mon Feb 18 14:01:56 2008 -0600
61221
61222     86xx: Convert sbc8641d to use libfdt.
61223
61224     This is the proper fix for a missing closing brace in the function
61225     ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
61226     The ft_cpu_setup() function in mpc8641hpcn.c should have been
61227     removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
61228     but was missed.  Only, the sbc8641d was nominally still using it.
61229     It all got ripped out, and the funcality that was in ft_board_setup()
61230     was refactored to remove the CPU portions into the new file
61231     cpu/mpc86xx/fdt.c instead.  Make sbc8641d use this now.
61232
61233     Based loosely on an original patch from joe.hamman@embeddedspecialties.com
61234
61235     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61236
61237 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
61238 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61239 Date:   Sun Feb 17 23:35:31 2008 +0100
61240
61241     mpc86xx: Fix unused variable 'config' and 'immap'
61242
61243     and remove useless CONFIG_DDR_INTERLEAVE
61244
61245     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61246
61247 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
61248 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61249 Date:   Sun Feb 17 23:03:36 2008 +0100
61250
61251     mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
61252
61253     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61254
61255 commit b6f29c84c208a091f95a10cbc9852d729659ba20
61256 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61257 Date:   Sun Feb 17 14:15:31 2008 +0100
61258
61259     s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
61260
61261     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61262
61263 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
61264 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61265 Date:   Sun Feb 17 14:15:32 2008 +0100
61266
61267     pxa: fix assignment from incompatible pointer type
61268
61269     fix mmc_bread function prototype
61270
61271     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61272
61273 commit 64d792063fff90b8118179b092feee09fe5cae13
61274 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61275 Date:   Sun Feb 17 14:15:30 2008 +0100
61276
61277     at91cap9adk: fix implicit declaration of function 'eth_init'
61278
61279     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61280
61281 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
61282 Author: Wolfgang Denk <wd@denx.de>
61283 Date:   Sun Feb 17 15:43:44 2008 +0100
61284
61285     Remove files added by mistake, update CHANGELOG.
61286
61287     Signed-off-by: Wolfgang Denk <wd@denx.de>
61288
61289 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
61290 Author: Mike Nuss <mike@terascala.com>
61291 Date:   Wed Feb 6 11:10:11 2008 -0500
61292
61293     PPC440EPx: Optionally enable second I2C bus
61294
61295     The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
61296     PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
61297     code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
61298
61299     Signed-off-by: Mike Nuss <mike@terascala.com>
61300     Cc: Stefan Roese <sr@denx.de>
61301
61302 commit ef5b4f221c22d05770878513951745f236b5b43f
61303 Author: Niklaus Giger <niklaus.giger@netstal.com>
61304 Date:   Tue Feb 5 10:26:44 2008 +0100
61305
61306     ppc4xx: HCU4/5. Cleanup configs
61307
61308     - hcu4.h: Removed define of CONFIG_PPC405GPr
61309     - Corrected phy addresses
61310     - Fix boot variables
61311     - Respect line length of 80 chars
61312
61313     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
61314
61315 commit 74973126d1be63ac75bdc192f46234dca3a7c421
61316 Author: Niklaus Giger <niklaus.giger@netstal.com>
61317 Date:   Tue Feb 5 11:31:28 2008 +0100
61318
61319     ppc4xx: HCU4/5. Cleanups
61320
61321     - Fix some coding style violations.
61322     - Use in/out_u16/32 where appropriate.
61323     - Use register names from ppc405.h.
61324     - Fix trace useage for Lauterbach.
61325     - Remove obsolete generation HCU2.
61326     - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
61327
61328     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
61329
61330 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
61331 Author: Niklaus Giger <niklaus.giger@netstal.com>
61332 Date:   Tue Feb 5 10:26:41 2008 +0100
61333
61334     ppc4xx: PPC405GPr fix missing register definitions
61335
61336     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
61337
61338 commit 214398d9cb22268d9d4f7563359edca0f78297a2
61339 Author: Larry Johnson <lrj@acm.org>
61340 Date:   Fri Jan 18 21:49:05 2008 -0500
61341
61342     ppc4xx: Beautify configuration files for Sequoia and Korat boards
61343
61344     Signed-off-by: Larry Johnson <lrj@acm.org>
61345
61346 commit 30c6a241e88499f536e86d325759e29ba00ff67f
61347 Author: Anatolij Gustschin <agust@denx.de>
61348 Date:   Fri Feb 15 20:09:01 2008 +0100
61349
61350     Wipe out assembler warnings while compiling x86 biosemu
61351
61352     This patch tries to get rid of some assembler warnings about
61353     changed .got2 section type while compiling x86 bios emulator
61354     code.
61355
61356     Signed-off-by: Anatolij Gustschin <agust@denx.de>
61357
61358 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
61359 Author: Wolfgang Denk <wd@denx.de>
61360 Date:   Fri Feb 15 00:57:09 2008 +0100
61361
61362     Prepare v1.3.2-rc1 release candidate
61363
61364 commit f33e9653c9c09868995d788511d573771c209fe5
61365 Author: Anatolij Gustschin <agust@denx.de>
61366 Date:   Fri Feb 15 00:13:20 2008 +0100
61367
61368     Fix compile warning on lib_ppc/board.c
61369
61370     Signed-off-by: Anatolij Gustschin <agust@denx.de>
61371
61372 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
61373 Author: Anatolij Gustschin <agust@denx.de>
61374 Date:   Thu Feb 14 18:22:04 2008 +0100
61375
61376     Add Radeon Mobility 9200 pci device id to the radeon driver
61377
61378     This patch extends PCI device id table of the
61379     radeon driver so that the driver will also support
61380     Radeon Mobility 9200 (M9+) based boards.
61381
61382     Signed-off-by: Anatolij Gustschin <agust@denx.de>
61383
61384 commit 1b8607e1f7143548c6062c28371449ec69588c00
61385 Author: Anatolij Gustschin <agust@denx.de>
61386 Date:   Thu Feb 14 18:19:50 2008 +0100
61387
61388     Extend ATI Radeon driver to support more video modes
61389
61390     Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
61391     800x600, 640x480 at 24, 16 and 8 bpp.
61392
61393     Signed-off-by: Anatolij Gustschin <agust@denx.de>
61394
61395 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
61396 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61397 Date:   Sun Feb 10 17:05:20 2008 +0100
61398
61399     xsengine: fix typo and few coding style
61400
61401     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61402
61403 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
61404 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
61405 Date:   Fri Feb 8 21:25:58 2008 +0100
61406
61407     Fix wrong memory limit calculation in memory-test
61408
61409     If the length of the memory address range passed to the "mtest" command is
61410     not of the form 2^x - 1, not all address lines are tested. This bug is
61411     inherited from the original software at
61412     http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
61413     this.
61414
61415     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
61416
61417 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
61418 Author: Wolfgang Denk <wd@denx.de>
61419 Date:   Fri Feb 15 00:11:39 2008 +0100
61420
61421     Coding STyle cleanup.
61422
61423     Signed-off-by: Wolfgang Denk <wd@denx.de>
61424
61425 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
61426 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61427 Date:   Tue Feb 5 13:30:43 2008 +0900
61428
61429     sh: Fix register address of SH7722
61430
61431     The address of SH7722 is wrong by old document.
61432     This patch fixes this problem.
61433
61434     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61435
61436 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
61437 Author: Mike Frysinger <vapier@gentoo.org>
61438 Date:   Mon Feb 4 17:44:23 2008 -0500
61439
61440     only update version header as needed
61441
61442     Constantly rebuilding the version header will force useless relinking, so we
61443     simply need to compare the new header with the existing one before updating
61444     it.
61445
61446     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61447
61448 commit 208447f8e953f347425eb92c8e28d59e6d911363
61449 Author: Mike Frysinger <vapier@gentoo.org>
61450 Date:   Mon Jan 28 05:56:19 2008 -0500
61451
61452     Do not specify a CROSS_COMPILE default when executing size
61453
61454     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61455
61456 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
61457 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
61458 Date:   Wed Feb 13 11:19:19 2008 +0100
61459
61460     Fix return value of mtest when CFG_ALT_MEMTEST set
61461
61462     Fix a missing return statement from a non-void function.
61463
61464     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
61465
61466 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
61467 Author: Timur Tabi <timur@freescale.com>
61468 Date:   Wed Jan 9 14:35:26 2008 -0600
61469
61470     85xx, 86xx: Determine I2C clock frequencies and store in global_data
61471
61472     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
61473
61474     Update the get_clocks() function in 85xx and 86xx to determine the I2C
61475     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
61476
61477     Signed-off-by: Timur Tabi <timur@freescale.com>
61478
61479 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
61480 Author: Wolfgang Denk <wd@denx.de>
61481 Date:   Thu Feb 14 23:18:01 2008 +0100
61482
61483     TQM834x: clean up configuration
61484
61485     Get board name consistent with Linux and elsewhere;
61486     get rid of local network definitions etc.
61487
61488     Signed-off-by: Wolfgang Denk <wd@denx.de>
61489
61490 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
61491 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61492 Date:   Thu Feb 14 08:02:12 2008 +0100
61493
61494     TFTP: fix search of ':' in BootFile
61495
61496     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61497
61498 commit 0bc9efada170096c6b273f19165e32936d330d80
61499 Author: Wolfgang Denk <wd@denx.de>
61500 Date:   Thu Feb 14 22:46:55 2008 +0100
61501
61502     Coding style cleanup; update CHANGELOG.
61503
61504     Signed-off-by: Wolfgang Denk <wd@denx.de>
61505
61506 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
61507 Author: Wolfgang Denk <wd@denx.de>
61508 Date:   Thu Feb 14 22:43:22 2008 +0100
61509
61510     PPC: Use r2 instead of r29 as global data pointer
61511
61512     R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
61513     will refuse to use load/store multiple insns; instead, it issues a
61514     list of simple load/store instructions upon function entry and exit,
61515     resulting in bigger code size, which in turn makes the build for a
61516     few boards fail.
61517
61518     Use r2 instead.
61519
61520     Signed-off-by: Wolfgang Denk <wd@denx.de>
61521
61522 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
61523 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
61524 Date:   Wed Jan 30 09:08:49 2008 +0100
61525
61526     ARM: make the machid configurable via the environment
61527
61528     If the variable "machid" exists, let do_bootm_linux use that instead
61529     of bd->bi_arch_number.
61530
61531     Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
61532
61533 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
61534 Author: Vlad Lungu <vlad@comsys.ro>
61535 Date:   Wed Jan 23 16:34:46 2008 +0200
61536
61537     Use #ifdef CONFIG_FSLDMAFEC
61538
61539     MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
61540     fails
61541
61542     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
61543
61544 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
61545 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61546 Date:   Sat Jan 19 10:25:59 2008 +0900
61547
61548     common/miiphyutil.c: Cleanup MII_DEBUG and debug()
61549
61550     Current MII_DEBUG is confusing in two ways. One is useless define-then-
61551     undef at the top of the file. The other is there is only one debug() in
61552     this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
61553     While there are many useful printf()/puts() debug codes, but they are for
61554     DEBUG, not for MII_DEBUG.
61555
61556     This patch tries to put them all together into MII_DEBUG and debug().
61557
61558     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61559
61560 commit 751b9b5189f3274b03c809172631316d6b002c82
61561 Author: Kyungmin Park <kmpark@infradead.org>
61562 Date:   Thu Jan 17 16:43:25 2008 +0900
61563
61564     OneNAND Initial Program Loader (IPL) support
61565
61566     This patch enables the OneNAND boot within U-Boot.
61567     Before this work, we used another OneNAND IPL called X-Loader based
61568     on open source. With this work, we can build the oneboot.bin image
61569     without other program.
61570
61571     The build sequence is simple.
61572     First, it compiles the u-boot.bin
61573     Second, it compiles OneNAND IPL
61574     Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
61575     The mechanism is similar with NAND boot except it boots from itself.
61576
61577     Another thing is that you can only use the OneNAND IPL only to work
61578     other bootloader such as RedBoot and so on.
61579
61580     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
61581
61582 commit 21f6f9636f0e978397548751347425fbf8d42bb3
61583 Author: Andy Fleming <afleming@freescale.com>
61584 Date:   Wed Jan 16 13:06:59 2008 -0600
61585
61586     Fix CONFIG_MMC usage in fat code
61587
61588     A #if statement in fat.c depended on CONFIG_MMC, instead of
61589     defined(CONFIG_MMC).  This meant CONFIG_MMC needed to be defined
61590     as "1" rather than just defined.  Now it's better.
61591
61592     Signed-off-by: Andy Fleming <afleming@freescale.com>
61593
61594 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
61595 Author: Rafal Jaworowski <raj@semihalf.com>
61596 Date:   Tue Jan 15 12:52:31 2008 +0100
61597
61598     ppc: Refactor cache routines, so there is only one common set.
61599
61600     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
61601
61602 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
61603 Author: Jon Loeliger <jdl@jdl.com>
61604 Date:   Wed Jan 23 15:55:02 2008 -0600
61605
61606     86xx: Fix compilation warning in sys_eprom.c
61607
61608     sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
61609
61610     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61611
61612 commit 65230107025733e89e28fd5e5cfd916d4953c28a
61613 Author: Haavard Skinnemoen <hskinnemoen at>
61614 Date:   Fri Feb 22 11:40:50 2008 +0000
61615
61616     Move AT91RM9200DK board support under board/atmel
61617
61618     We already have a vendor subdir for Atmel, so we should use it.
61619
61620     Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
61621
61622 commit 6d0943a6be99977d6d853d51749e9963d68eb192
61623 Author: Andreas Engel <andreas.engel@ericsson.com>
61624 Date:   Mon Jan 14 09:06:52 2008 +0000
61625
61626     ARM: cleanup duplicated exception handlingcode
61627
61628     Move duplicated exception handling code into lib_arm.
61629
61630     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
61631
61632 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
61633 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
61634 Date:   Fri Feb 1 10:09:03 2008 +0000
61635
61636     Support for Artila M-501 starter kit
61637
61638     Kimmo Leppala / Sysart and
61639     Timo Tuunainen / Sysart
61640
61641 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
61642 Author: Stelian Pop <stelian@popies.net>
61643 Date:   Mon Feb 11 10:50:19 2008 +0000
61644
61645     AT91CAP9 support
61646
61647     ---------------------------------
61648
61649     read_dataflash() takes a signed char pointer as a parameter. Silence a
61650     few warnings dues to incorrect parameter types in env_dataflash.c.
61651
61652     Signed-off-by: Stelian Pop <stelian@popies.net>
61653
61654 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
61655 Author: Stelian Pop <stelian@popies.net>
61656 Date:   Thu Feb 7 09:42:57 2008 +0000
61657
61658     AT91CAP9 support : move board files to Atmel vendor directory.
61659
61660     AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
61661
61662     Signed-off-by: Stelian Pop <stelian@popies.net>
61663
61664 commit 7263ef191b87da94768f762c7093bedeb70db98f
61665 Author: Stelian Pop <stelian at>
61666 Date:   Thu Jan 3 21:15:56 2008 +0000
61667
61668     AT91CAP9 support : MACB changes
61669
61670     Signed-off-by: Stelian Pop <stelian <at> popies.net>
61671     Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
61672
61673 commit 6afcabf11d7321850f4feaadfee841488ace54c5
61674 Author: Stelian Pop <stelian@popies.net>
61675 Date:   Thu Feb 7 16:37:54 2008 +0000
61676
61677     AT91CAP9 support : board/ files
61678
61679     Signed-off-by: Stelian Pop <stelian@popies.net>
61680
61681 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
61682 Author: Stelian Pop <stelian at>
61683 Date:   Wed Jan 30 21:15:54 2008 +0000
61684
61685     AT91CAP9 support : cpu/ files
61686
61687     Signed-off-by: Stelian Pop <stelian <at> popies.net>
61688
61689 commit fa506a926cec348805143576c941f8e61b333cc0
61690 Author: Stelian Pop <stelian@popies.net>
61691 Date:   Thu Jan 31 21:15:53 2008 +0000
61692
61693     AT91CAP9 support : include/ files
61694
61695     Signed-off-by: Stelian Pop <stelian@popies.net>
61696
61697 commit 20b197c6f2799af399a68f96a1aff543a75621b8
61698 Author: Stelian Pop <stelian@popies.net>
61699 Date:   Sun Jan 20 19:49:21 2008 +0000
61700
61701     AT91CAP9 support : build integration
61702
61703     Signed-off-by: Stelian Pop <stelian@popies.net>
61704
61705 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
61706 Author: Stelian Pop <stelian@popies.net>
61707 Date:   Sun Jan 20 21:07:00 2008 +0000
61708
61709     Improve DataFlash CS definition.
61710
61711     Use a structure instead of the error prone unnamed array to
61712     define the possible dataflash banks.
61713
61714     Signed-off-by: Stelian Pop <stelian@popies.net>
61715
61716 commit a6cdd21b56014208706238712a853a9e9a0a2290
61717 Author: Stelian Pop <stelian@popies.net>
61718 Date:   Sat Jan 19 21:09:35 2008 +0000
61719
61720     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
61721
61722     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
61723
61724     cpu/arm926ejs/start.o: In function `cpu_init_crit':
61725     .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
61726
61727     Signed-off-by: Stelian Pop <stelian@popies.net>
61728
61729 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
61730 Author: Peter Pearse <peter.pearse@arm.com>
61731 Date:   Fri Feb 1 16:50:24 2008 +0000
61732
61733     Fix timer overflow in DaVinci
61734     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
61735
61736 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
61737 Author: Peter Pearse <peter.pearse@arm.com>
61738 Date:   Fri Feb 1 16:49:08 2008 +0000
61739
61740     Update board NetStar
61741     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
61742
61743 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
61744 Author: Niklaus Giger <niklaus.giger@netstal.com>
61745 Date:   Tue Feb 5 10:26:42 2008 +0100
61746
61747     ppc4xx: HCU4/5. Fix make O=../xx
61748
61749     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
61750
61751 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
61752 Author: Larry Johnson <lrj@acm.org>
61753 Date:   Tue Jan 22 08:51:59 2008 -0500
61754
61755     ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
61756
61757     Signed-off-by: Larry Johnson <lrj@acm.org>
61758
61759 commit fe891ecf4d187e9d11dde869ed4623af52b54451
61760 Author: Hiroshi Ito <ito@mlb.co.jp>
61761 Date:   Thu Jan 31 18:35:04 2008 +0900
61762
61763     NFS Timeout with large files.
61764
61765     Retry to send NFS packet before reaching timeout.
61766
61767     Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
61768
61769 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
61770 Author: Johannes Stezenbach <js@sig21.net>
61771 Date:   Tue Jan 29 00:11:25 2008 +0100
61772
61773     Add dependencies to avoid race conditions with parallel make.
61774
61775     Signed-off-by: Johannes Stezenbach <js@sig21.net>
61776
61777 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
61778 Author: Mike Frysinger <vapier@gentoo.org>
61779 Date:   Mon Jan 28 05:46:01 2008 -0500
61780
61781     Mark board_init_[fr] as noreturn
61782
61783     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61784
61785 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
61786 Author: Mike Frysinger <vapier@gentoo.org>
61787 Date:   Mon Jan 28 05:28:50 2008 -0500
61788
61789     Only use TEXT_BASE if defined by the board
61790
61791     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61792
61793 commit 1b769881750030f10743808b9d6013e11f559350
61794 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61795 Date:   Fri Jan 25 07:54:47 2008 +0100
61796
61797     Fix remaining CONFIG_COMMANDS
61798
61799     update comments
61800     Fix coding style
61801
61802     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61803
61804 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
61805 Author: Niklaus Giger <niklaus.giger@netstal.com>
61806 Date:   Mon Jan 21 16:46:00 2008 +0100
61807
61808     Add *~ to .gitignore
61809
61810     One should never add a backup file ending in with ~ to the git repository.
61811
61812     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
61813
61814 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
61815 Author: Kumar Gala <galak@kernel.crashing.org>
61816 Date:   Thu Jan 17 00:02:10 2008 -0600
61817
61818     Remove duplicate defines for ARRAY_SIZE
61819
61820     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61821
61822 commit c77ce474b1c57b13e9d36d9830f147966c143694
61823 Author: Stelian Pop <stelian@popies.net>
61824 Date:   Mon Jan 14 22:08:14 2008 +0100
61825
61826     Fix incorrect address test in AT91F_DataflashSelect().
61827
61828     Signed-off-by: Stelian Pop <stelian@popies.net>
61829
61830 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
61831 Author: Kumar Gala <galak@kernel.crashing.org>
61832 Date:   Wed Feb 13 15:09:58 2008 -0600
61833
61834     Fix building of fdt_support.c if DEBUG set
61835
61836     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61837
61838 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
61839 Author: Jon Loeliger <jdl@freescale.com>
61840 Date:   Tue Feb 12 14:53:28 2008 -0600
61841
61842     Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
61843
61844     These replace direct structure references for IMMR sections.
61845
61846     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61847
61848 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
61849 Author: Wolfgang Denk <wd@denx.de>
61850 Date:   Tue Feb 12 00:45:06 2008 +0100
61851
61852     Get rid of "#undef DEBUG" from board config files.
61853
61854     Signed-off-by: Wolfgang Denk <wd@denx.de>
61855
61856 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
61857 Author: Timur Tabi <timur@freescale.com>
61858 Date:   Tue Jan 15 17:09:41 2008 -0600
61859
61860     Remove #undef DEBUG from MPC83xx board header files
61861
61862     Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
61863     The inclusion of this line makes it impossible to enable debug code in
61864     other source files, because "#define DEBUG" typically needs to be defined
61865     before any header files are included.
61866
61867     Signed-off-by: Timur Tabi <timur@freescale.com>
61868
61869 commit 69018ce2e086e9caf35b914d675b82bc4888f077
61870 Author: Kumar Gala <galak@kernel.crashing.org>
61871 Date:   Thu Jan 17 08:25:45 2008 -0600
61872
61873     QE: Move FDT support into a common file
61874
61875     Move the flat device tree setup for QE related devices into
61876     a common file shared between 83xx & 85xx platforms that have QE's.
61877
61878     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61879
61880 commit 5cf746c303710329f8040d9c62ee354313e3e91f
61881 Author: Marian Balakowicz <m8@semihalf.com>
61882 Date:   Thu Jan 31 13:59:09 2008 +0100
61883
61884     [new uImage] Move kernel data find code to get_kernel() routine
61885
61886     Verification of the kernel image (in old format) and finding kernel
61887     data is moved to a dedicated routine. The routine will also hold
61888     support for, to be added, new image format.
61889
61890     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61891
61892 commit 7b325454fd231d4273de3fe373850f777fb086bf
61893 Author: Marian Balakowicz <m8@semihalf.com>
61894 Date:   Thu Jan 31 13:58:20 2008 +0100
61895
61896     [new uImage] Cleanup FDT handling in PPC do_boot_linux()
61897
61898     Move FDT blob finding and relocation to a dedicated
61899     get_fdt() routine. It increases code readability and
61900     will make adding support for new uImage format easier.
61901
61902     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61903
61904 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
61905 Author: Marian Balakowicz <m8@semihalf.com>
61906 Date:   Thu Jan 31 13:58:13 2008 +0100
61907
61908     [new uImage] Cleanup do_botm_linux() boot allocations
61909
61910     This patch moves common pre-boot allocation steps shared between PPC
61911     and M68K to a helper routines:
61912
61913     common:
61914     - get_boot_sp_limit()
61915     - get_boot_cmline()
61916     - get_boot_kbd()
61917
61918     platform:
61919     - set_clocks_in_mhz()
61920
61921     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61922
61923 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
61924 Author: Marian Balakowicz <m8@semihalf.com>
61925 Date:   Thu Jan 31 13:57:17 2008 +0100
61926
61927     [new uImage] Move ramdisk loading to a common routine
61928
61929     Ramdisk loading code, including initrd_high variable handling,
61930     was duplicated for PPC and M68K platforms. This patch creates
61931     common helper routine that is being called from both platform
61932     do_bootm_linux() routines.
61933
61934     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61935
61936 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
61937 Author: Marian Balakowicz <m8@semihalf.com>
61938 Date:   Thu Jan 31 13:55:53 2008 +0100
61939
61940     [new uImage] Removed dead ramdisk code on microblaze architectures
61941
61942     Microblaze do_bootm_linux() includes ramdisk processing code but
61943     the ramdisk does not get used anywhere later on.
61944
61945     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61946
61947 commit 5ad03eb3854c162684222a718b44c0716ea0db03
61948 Author: Marian Balakowicz <m8@semihalf.com>
61949 Date:   Thu Jan 31 13:55:39 2008 +0100
61950
61951     [new uImage] Factor out common image_get_ramdisk() routine
61952
61953     Architecture specific do_bootm_linux() routines share common
61954     ramdisk image processing code. Move this code to a common
61955     helper routine.
61956
61957     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61958
61959 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
61960 Author: Marian Balakowicz <m8@semihalf.com>
61961 Date:   Thu Jan 31 13:20:08 2008 +0100
61962
61963     [new uImage] Move FDT error printing to common fdt_error() routine
61964
61965     FDT error handling in PPC do_bootm_linux() shares the same message format.
61966     This patch moves error message printing to a helper fdt_error() routine.
61967
61968     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61969     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
61970
61971 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
61972 Author: Marian Balakowicz <m8@semihalf.com>
61973 Date:   Thu Jan 31 13:20:07 2008 +0100
61974
61975     [new uImage] Factor out common routines for getting os/arch/type/comp names
61976
61977     Move numeric-id to name translation for image os/arch/type/comp header
61978     fields to a helper routines: image_get_os_name(), image_get_arch_name(),
61979     image_get_type_name(), image_get_comp_name().
61980
61981     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61982
61983 commit e99c26694a384221d336f6448c06a57479c0baa4
61984 Author: Marian Balakowicz <m8@semihalf.com>
61985 Date:   Thu Jan 31 13:20:07 2008 +0100
61986
61987     [new uImage] Remove standalone applications handling from boootm
61988
61989     Standalone applications are supposed to be run using the "go" command.
61990     This patch removes standalone images handling from the do_bootm().
61991
61992     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61993
61994 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
61995 Author: Marian Balakowicz <m8@semihalf.com>
61996 Date:   Thu Jan 31 13:20:07 2008 +0100
61997
61998     [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
61999
62000     Support for OF_FLAT_TREE is to be obsoleted in the near future,
62001     remove related code from the bootm routines.
62002
62003     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62004
62005 commit 82850f3d32a2661868ec6876bed7a22c55cef718
62006 Author: Marian Balakowicz <m8@semihalf.com>
62007 Date:   Thu Jan 31 13:20:06 2008 +0100
62008
62009     [new uImage] Use image API in SH do_bootm_linux() routine
62010
62011     Introduce image handling API for lately added Hitachi SH architecture.
62012
62013     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62014
62015 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
62016 Author: Marian Balakowicz <m8@semihalf.com>
62017 Date:   Thu Jan 31 13:20:06 2008 +0100
62018
62019     [new uImage] Rename architecture specific bootm code files
62020
62021     Implementation of the do_bootm_linux() and other bootm helper routines is
62022     architecture specific code. As such it resides in lib_<arch> directories
62023     in files named <arch>_linux.c
62024
62025     This patch renames those files to a more clear and accurate
62026     lib_<arch>/bootm.c form.
62027
62028     List of the renamed files:
62029        lib_arm/armlinux.c -> lib_arm/bootm.c
62030        lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
62031        lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
62032        lib_i386/i386_linux.c -> lib_i386/bootm.c
62033        lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
62034        lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
62035        lib_mips/mips_linux.c -> lib_mips/bootm.c
62036        lib_nios/nios_linux.c -> lib_nios/bootm.c
62037        lib_nios2/nios_linux.c -> lib_nios2/bootm.c
62038        lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
62039        lib_sh/sh_linux.c -> lib_sh/bootm.c
62040
62041     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62042
62043 commit 7582438c285bf0cef82909d0f232de64ec567a8a
62044 Author: Marian Balakowicz <m8@semihalf.com>
62045 Date:   Thu Jan 31 13:20:06 2008 +0100
62046
62047     [new uImage] Return error on image move/uncompress overwrites
62048
62049     Check for overwrites during image move/uncompress, return with error
62050     when the original image gets corrupted. Report clear message to the user
62051     and prevent further troubles when pointer to the corrupted images is passed
62052     to do_bootm_linux routine.
62053
62054     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62055
62056 commit f13e7b2e993c61fed1f607962501e051940d6e80
62057 Author: Marian Balakowicz <m8@semihalf.com>
62058 Date:   Tue Jan 8 18:12:17 2008 +0100
62059
62060     [new uImage] Cleanup image header pointer use in bootm code
62061
62062     - use single image header pointer instead of a set of auxilliary variables.
62063     - add multi component image helper routines: get component size/data address
62064
62065     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62066
62067 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
62068 Author: Marian Balakowicz <m8@semihalf.com>
62069 Date:   Tue Jan 8 18:17:10 2008 +0100
62070
62071     [new uImage] Cleanup cmd_bootm.c
62072
62073     - sort and cleanup headers, declarations, etc.
62074     - group related routines
62075     - cleanup indentation, white spaces
62076
62077     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62078
62079 commit af13cdbc01eaf88880978bfb4f603e012818ba24
62080 Author: Marian Balakowicz <m8@semihalf.com>
62081 Date:   Tue Jan 8 18:11:45 2008 +0100
62082
62083     [new uImage] Add memmove_wd() common routine
62084
62085     Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
62086
62087     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62088
62089 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
62090 Author: Marian Balakowicz <m8@semihalf.com>
62091 Date:   Tue Jan 8 18:11:44 2008 +0100
62092
62093     [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
62094
62095     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62096
62097 commit 15158971f49255ccef54f0979a942cfd3de2ae52
62098 Author: Marian Balakowicz <m8@semihalf.com>
62099 Date:   Tue Jan 8 18:11:44 2008 +0100
62100
62101     [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
62102
62103     Use image header copy instead of a (possibly corrupted) pointer to
62104     a initial image location.
62105
62106     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62107
62108 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
62109 Author: Marian Balakowicz <m8@semihalf.com>
62110 Date:   Tue Jan 8 18:11:44 2008 +0100
62111
62112     [new uImage] Remove I386 uImage fake_header() routine
62113
62114     I386 targets are not using a uImage format, instead fake header
62115     is added to ram image before it is further processed by bootm.
62116
62117     Remove this fixup and force proper uImage use for I386.
62118
62119     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62120
62121 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
62122 Author: Marian Balakowicz <m8@semihalf.com>
62123 Date:   Tue Jan 8 18:11:44 2008 +0100
62124
62125     [new uImage] Move CHUNKSZ definition to image.h
62126
62127     CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
62128     move this definition to a common header.
62129
62130     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62131
62132 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
62133 Author: Marian Balakowicz <m8@semihalf.com>
62134 Date:   Tue Jan 8 18:11:43 2008 +0100
62135
62136     [new uImage] Move gunzip() common code to common/gunzip.c
62137
62138     Move gunzip(), zalloc() and zfree() to a separate file.
62139     Share zalloc() and zfree() with cramfs uncompress routine.
62140
62141     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62142
62143 commit d45d5a18b6b36688f2365623f9d550566c664b5b
62144 Author: Marian Balakowicz <m8@semihalf.com>
62145 Date:   Tue Jan 8 18:11:43 2008 +0100
62146
62147     [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
62148
62149     Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
62150     readable in PPC variant of do_bootm_linux() routine.
62151
62152     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62153
62154 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
62155 Author: Marian Balakowicz <m8@semihalf.com>
62156 Date:   Tue Jan 8 18:11:43 2008 +0100
62157
62158     [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
62159
62160     PPC implementation of do_bootm_linux() routine is moved to
62161     a dedicated file lib_ppc/ppc_linux.c
62162
62163     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62164
62165 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
62166 Author: Marian Balakowicz <m8@semihalf.com>
62167 Date:   Tue Jan 8 18:14:09 2008 +0100
62168
62169     [new uImage] Define a API for image handling operations
62170
62171     - Add inline helper macros for basic header processing
62172     - Move common non inline code common/image.c
62173     - Replace direct header access with the API routines
62174     - Rename IH_CPU_* to IH_ARCH_*
62175
62176     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62177
62178 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
62179 Author: Marian Balakowicz <m8@semihalf.com>
62180 Date:   Thu Jan 31 13:19:58 2008 +0100
62181
62182     Add missing cmd_ximg.o to common/Makefile
62183
62184     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62185
62186 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
62187 Author: Grzegorz Bernacki <gjb@semihalf.com>
62188 Date:   Mon Jan 28 10:15:02 2008 +0100
62189
62190     ADS5121e: DDR2 init/timing update.
62191
62192     Signed-off-by: John Rigby <jrigby@freescale.com>
62193     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
62194
62195 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
62196 Author: John Rigby <jrigby@freescale.com>
62197 Date:   Wed Jan 30 13:36:57 2008 -0700
62198
62199     Device tree updates
62200
62201     Changes to match 5121 device tree going mainline in 2.6.25.
62202
62203     Change OF_SOC from "soc5121" to plain "soc".
62204     Remove unneeded "ref-frequency" fixups.
62205     Remove "address" enetaddr fixup.
62206
62207     Add bus-frequency fixup for old OF_SOC so old
62208     kernels with old device trees will work with new
62209     u-boot with 66MHz IPS clock
62210
62211     Signed-off-by: John Rigby <jrigby@freescale.com>
62212
62213 commit de55d18df3ff2ea614624e74793de7c43520e0e7
62214 Author: John Rigby <jrigby@freescale.com>
62215 Date:   Wed Jan 30 13:36:56 2008 -0700
62216
62217     Change IPS freq to 66MHz
62218
62219     Recommended frequency is 66MHz
62220     Change divider from 4 to 3.
62221
62222     Signed-off-by: John Rigby <jrigby@freescale.com>
62223
62224 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
62225 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62226 Date:   Mon Jan 14 22:38:55 2008 +0100
62227
62228     xsengine: rename board_post_init to board_late_init
62229
62230     missing migration from "Cleanup of some init functions"
62231     in c837dcb1a316745092567bfe4fb266d0941884ff
62232
62233     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62234
62235 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
62236 Author: Larry Johnson <lrj@acm.org>
62237 Date:   Sat Jan 12 23:35:33 2008 -0500
62238
62239     Add attribute POST_PREREL to ECC memory POST
62240
62241     Signed-off-by: Larry Johnson <lrj@acm.org>
62242
62243 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
62244 Author: Kumar Gala <galak@kernel.crashing.org>
62245 Date:   Thu Jan 17 08:25:45 2008 -0600
62246
62247     QE: Move FDT support into a common file
62248
62249     Move the flat device tree setup for QE related devices into
62250     a common file shared between 83xx & 85xx platforms that have QE's.
62251
62252     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
62253
62254 commit d38da537943cd36356b9d3d9d9b60533554b81d8
62255 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62256 Date:   Wed Jan 23 17:20:14 2008 +0100
62257
62258     AVR32: Make SDRAM refresh rate configurable
62259
62260     The existing code assumes the SDRAM row refresh period should always
62261     be 15.6 us. This is not always true, and indeed on the ATNGW100, the
62262     refresh rate should really be 7.81 us.
62263
62264     Add a refresh_period member to struct sdram_info and initialize it
62265     properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
62266     panic() until the refresh_period member is updated properly.
62267
62268     Big thanks to Gerhard Berghofer for pointing out this issue.
62269
62270     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62271
62272 commit 61151cccb660cdb06a07fb283de6089913d7bde0
62273 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62274 Date:   Thu Apr 19 10:10:11 2007 +0200
62275
62276     ATSTK1000: Fix potential flash programming bug
62277
62278     The (now obsolete) atngw100 flash programming code was having problems
62279     programming the onboard at49bv642 chip. The atstk1000 flash
62280     programming code may have the same bug, so import fix for this problem
62281     from the AVR32 Linux BSP.
62282
62283     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62284
62285 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
62286 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62287 Date:   Thu Nov 22 17:04:13 2007 +0100
62288
62289     ATSTK1004: Fix comment about default load address
62290
62291     The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
62292     wouldn't have worked anyway since the board can only access 4MB of
62293     SDRAM.
62294
62295     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62296
62297 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
62298 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62299 Date:   Thu Nov 22 17:01:24 2007 +0100
62300
62301     ATSTK1002: Use SDRAM + 4MB as default load address
62302
62303     Many people run into problems when they compile a big kernel and load
62304     the uImage at the default SDRAM + 2MB address as the kernel will
62305     overwrite the uImage as it is being unpacked. Increase the default
62306     load address so that we can load a 4MB kernel image without any
62307     problems.
62308
62309     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62310
62311 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
62312 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62313 Date:   Thu Nov 22 16:51:39 2007 +0100
62314
62315     ATNGW100: Fix default mtest range
62316
62317     Let mtest cover the whole SDRAM except the last megabyte, which is
62318     where u-boot lives.
62319
62320     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62321
62322 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
62323 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
62324 Date:   Tue Jan 22 15:31:56 2008 +0900
62325
62326     sh: Fix register address of SH7722.
62327
62328     The address of SH7722 is wrong by old document.
62329     This patch fixes this problem.
62330
62331     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
62332
62333 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
62334 Author: Mike Frysinger <vapier@gentoo.org>
62335 Date:   Mon Feb 4 19:26:57 2008 -0500
62336
62337     new command for displaying strings at specified memory locations
62338
62339     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62340
62341 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
62342 Author: Mike Frysinger <vapier@gentoo.org>
62343 Date:   Mon Feb 4 19:26:57 2008 -0500
62344
62345     rewrite/cleanup Blackfin RTC driver
62346
62347     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62348
62349 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
62350 Author: Mike Frysinger <vapier@gentoo.org>
62351 Date:   Mon Feb 4 19:26:57 2008 -0500
62352
62353     generate u-boot.ldr for Blackfin targets
62354
62355     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62356
62357 commit b779f7a59530436040f157f7841db7ab796542df
62358 Author: Mike Frysinger <vapier@gentoo.org>
62359 Date:   Mon Feb 4 19:26:57 2008 -0500
62360
62361     scrub unused symbols
62362
62363     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62364
62365 commit cc2977acc3bbbb7850f16645dd1081f95335868d
62366 Author: Mike Frysinger <vapier@gentoo.org>
62367 Date:   Mon Feb 4 19:26:57 2008 -0500
62368
62369     move Blackfin cpu object list to respective cpu directories
62370
62371     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62372
62373 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
62374 Author: Mike Frysinger <vapier@gentoo.org>
62375 Date:   Mon Feb 4 19:26:57 2008 -0500
62376
62377     interface to Blackfin on-chip One-Time-Programmable memory
62378
62379     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62380
62381 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
62382 Author: Mike Frysinger <vapier@gentoo.org>
62383 Date:   Mon Feb 4 19:26:56 2008 -0500
62384
62385     add support for memory commands with Blackfin L1 instruction memory
62386
62387     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62388
62389 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
62390 Author: Mike Frysinger <vapier@gentoo.org>
62391 Date:   Mon Feb 4 19:26:56 2008 -0500
62392
62393     use C code rather than inline assembly
62394
62395     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62396
62397 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
62398 Author: Mike Frysinger <vapier@gentoo.org>
62399 Date:   Mon Feb 4 19:26:56 2008 -0500
62400
62401     add Blackfin-specific reginfo command
62402
62403     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62404
62405 commit 0858b835e7ea501ea084d34cef75932f098342bb
62406 Author: Mike Frysinger <vapier@gentoo.org>
62407 Date:   Mon Feb 4 19:26:55 2008 -0500
62408
62409     add support for Blackfin symbol prefixes to examples
62410
62411     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62412
62413 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
62414 Author: Mike Frysinger <vapier@gentoo.org>
62415 Date:   Mon Feb 4 19:26:55 2008 -0500
62416
62417     add Blackfin-specific bdinfo command
62418
62419     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62420
62421 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
62422 Author: Mike Frysinger <vapier@gentoo.org>
62423 Date:   Mon Feb 4 19:26:55 2008 -0500
62424
62425     move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
62426
62427     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62428
62429 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
62430 Author: Mike Frysinger <vapier@gentoo.org>
62431 Date:   Mon Feb 4 19:26:55 2008 -0500
62432
62433     unify the Blackfin board targets
62434
62435     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62436
62437 commit d4d7730853e5d675f76ec666807da3028c91d592
62438 Author: Mike Frysinger <vapier@gentoo.org>
62439 Date:   Mon Feb 4 19:26:55 2008 -0500
62440
62441     punt Blackfin VDSP headers and import sanitized/auto-generated ones
62442
62443     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62444
62445 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
62446 Author: Mike Frysinger <vapier@gentoo.org>
62447 Date:   Mon Feb 4 19:26:54 2008 -0500
62448
62449     always pull in asm/blackfin.h for Blackfin ports
62450
62451     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62452
62453 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
62454 Author: Mike Frysinger <vapier@gentoo.org>
62455 Date:   Mon Feb 4 19:26:54 2008 -0500
62456
62457     add missing __raw versions of Blackfin read/write io functions
62458
62459     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62460
62461 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
62462 Author: Mike Frysinger <vapier@gentoo.org>
62463 Date:   Mon Feb 4 19:26:54 2008 -0500
62464
62465     add the default Blackfin logo used by Blackfin boards with splash screens
62466
62467     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62468
62469 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
62470 Author: Mike Frysinger <vapier@gentoo.org>
62471 Date:   Mon Feb 4 19:26:54 2008 -0500
62472
62473     add some more Blackfin docs
62474
62475     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62476
62477 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
62478 Author: Mike Frysinger <vapier@gentoo.org>
62479 Date:   Mon Feb 4 19:26:54 2008 -0500
62480
62481     make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
62482
62483     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62484
62485 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
62486 Author: Mike Frysinger <vapier@gentoo.org>
62487 Date:   Mon Feb 4 19:26:54 2008 -0500
62488
62489     fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
62490
62491     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62492
62493 commit b45264ee85cbd92020640a32e02fb434fd557108
62494 Author: Mike Frysinger <vapier@gentoo.org>
62495 Date:   Mon Feb 4 19:26:53 2008 -0500
62496
62497     add gitignores for Blackfin pieces
62498
62499     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62500
62501 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
62502 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62503 Date:   Fri Jan 18 01:14:03 2008 +0100
62504
62505     TFTP: add host ip addr support
62506
62507     allow to use a different server as set in serverip
62508     add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
62509     if not defined the max length will be at 128
62510
62511     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62512
62513 commit e56b4b494cd92def577969f9678395aa22d34c9f
62514 Author: Timur Tabi <timur@freescale.com>
62515 Date:   Wed Jan 9 14:35:26 2008 -0600
62516
62517     85xx,86xx: Determine I2C clock frequencies and store in global_data
62518
62519     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
62520
62521     Update the get_clocks() function in 85xx and 86xx to determine the I2C
62522     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
62523
62524     Signed-off-by: Timur Tabi <timur@freescale.com>
62525
62526 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
62527 Author: Wolfgang Denk <wd@denx.de>
62528 Date:   Thu Dec 27 10:56:54 2007 +0100
62529
62530     OMAP5912: fix FIFO handling in UART driver
62531
62532     According to the OMAP5912 Serial Interfaces Reference Guide (see
62533     http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
62534     FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
62535     changed when the baud clock is not running, i. e. when both DLL and
62536     DLH are set to 0.
62537
62538     Thus make sure that DLL and DLH are 0 when writing the FCR.
62539
62540     Signed-off-by: Wolfgang Denk <wd@denx.de>
62541
62542 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
62543 Author: Harald Welte <laforge@openmoko.org>
62544 Date:   Wed Dec 19 15:10:52 2007 +0100
62545
62546     ARM: S3C24x0 SoC NAND controller support
62547
62548     This patch adds NAND support to the S3C24x0 SoC code in u-boot
62549
62550     Signed-off-by: Harald Welte <laforge@openmoko.org>
62551
62552 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
62553 Author: Harald Welte <laforge@openmoko.org>
62554 Date:   Wed Dec 19 14:24:40 2007 +0100
62555
62556     ARM: s3c24xx: Multiple serial port support
62557
62558     This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
62559
62560     Signed-off-by: Harald Welte <laforge@openmoko.org>
62561
62562 commit a25f72f1f73a11de68251fb88c89991e202e68fa
62563 Author: Harald Welte <laforge@openmoko.org>
62564 Date:   Wed Dec 19 14:16:57 2007 +0100
62565
62566     ARM: arm920t: Allow use of 'gd' pointer from IRQ
62567
62568     This patch allows us to use the 'gd' pointer (and thus environment
62569     and everything else associated with it) from interrupt context on
62570     arm920t.
62571
62572     Signed-off-by: Harald Welte <laforge@openmoko.org>
62573
62574 commit be19bd5cd0f454b63298844a0b5377e029b2caad
62575 Author: Harald Welte <laforge@openmoko.org>
62576 Date:   Wed Dec 19 14:19:38 2007 +0100
62577
62578     ARM: arm920/s3c24xx: IRQ demulitplexer callback
62579
62580     This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
62581     plus a stub implementation of it for the S3C2410.
62582
62583     The purpose is to allow arm920t implementations such as the s3c24x0 to
62584     implement interrupt handlers in u-boot without having to touch core
62585     arm920t code.
62586
62587     Signed-off-by: Harald Welte <laforge@openmoko.org>
62588
62589 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
62590 Author: Hebbar <gururajakr@sanyo.co.in>
62591 Date:   Tue Dec 18 16:03:07 2007 -0800
62592
62593     ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
62594
62595     Add ifdef to bdinfo command to display ethernet information
62596     only if CONFIG_CMD_NET is defined for arm modules.
62597
62598     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
62599
62600 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
62601 Author: Hebbar <gururajakr@sanyo.co.in>
62602 Date:   Tue Dec 18 16:00:54 2007 -0800
62603
62604     ARM: add I2C init function call in lib_arm/board.c
62605
62606     Adds I2C init func call to init sequence for ARM boards. This is
62607     present in ppc,blackfin and other processor init sequence.
62608
62609     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
62610
62611 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
62612 Author: Stefan Roese <sr@denx.de>
62613 Date:   Fri Feb 1 09:38:29 2008 +0100
62614
62615     ppc4xx: Fix ndfc HW ECC byte order
62616
62617     The current ndfc HW ECC implementation swaps the first two ECC bytes.
62618     But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
62619     so this swapping in the HW ECC driver is bogus. This patch fixes this
62620     problem and now really uses the SMC ECC byte order.
62621
62622     Thanks to Sean MacLennan for pointing this out.
62623
62624     Signed-off-by: Stefan Roese <sr@denx.de>
62625
62626 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
62627 Author: Stefan Roese <sr@denx.de>
62628 Date:   Wed Jan 30 15:35:50 2008 +0100
62629
62630     ppc4xx: Fix GPIO configuration for pcs440ep
62631
62632     The SRD0_PFC0 register was not configured correctly to enable the GPIO's
62633     49-63 for GPIO. They have been configured as trace signals. This patch
62634     fixes this by clearing the corresponding bit.
62635
62636     Signed-off-by: Stefan Roese <sr@denx.de>
62637
62638 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
62639 Author: Stefan Roese <sr@denx.de>
62640 Date:   Wed Jan 30 14:48:28 2008 +0100
62641
62642     ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
62643
62644     Signed-off-by: Stefan Roese <sr@denx.de>
62645
62646 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
62647 Author: Ladislav Michl <ladis@linux-mips.org>
62648 Date:   Fri Dec 7 00:42:32 2007 +0100
62649
62650     ARM: Board voiceblue update
62651
62652     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
62653
62654 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
62655 Author: Ladislav Michl <ladis@linux-mips.org>
62656 Date:   Thu Dec 6 23:24:57 2007 +0100
62657
62658     ARM: AT91RM9200 based boards config cleanup
62659
62660     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
62661
62662     Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
62663     indentation.
62664
62665 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
62666 Author: Ladislav Michl <ladis@linux-mips.org>
62667 Date:   Thu Dec 6 22:59:16 2007 +0100
62668
62669     ARM: Fix at91rm9200dk base address
62670
62671     Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
62672     renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
62673     with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
62674     However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
62675     CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
62676     I'm sending this patch 4th (!) time in hope it produces at least some
62677     reaction.
62678
62679     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
62680
62681     Fix at91rm9200dk base and environment address.
62682
62683 commit c95219fae2a7add7daa2f91aedca65b1698465c7
62684 Author: stefano babic <sbabic@denx.de>
62685 Date:   Tue Nov 20 10:40:24 2007 +0100
62686
62687     MMC for PXA 27X (resubmit)
62688
62689     MMC support for X_Scale PXA is broken and does not work.
62690     Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
62691     There were already some patches around the world but none of them was
62692     merged into the official u-boot tree.
62693
62694     This patch makes order fixing this issue. Resubmit after code cleanup.
62695
62696     Applied and tested on PXA 270 (TrizepsIV module).
62697
62698     Signed-off-by: Stefano Babic <sbabic@denx.de>
62699
62700 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
62701 Author: stefano babic <sbabic@denx.de>
62702 Date:   Tue Nov 20 10:37:04 2007 +0100
62703
62704     Fix gcc issues in pxa-regs.h
62705
62706     Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
62707     issues generates wrong code.
62708     (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
62709     This patch fixes the problem and solves the gcc-4 issues as the linux
62710     kernel does.
62711
62712     Signed-off-by: Stefano Babic <sbabic@denx.de>
62713     Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
62714
62715 commit 7047b388876e7b905b2ec4edb8010543e3641b85
62716 Author: Jens Gehrlein <sew_s@tqs.de>
62717 Date:   Tue Jan 29 08:45:03 2008 +0100
62718
62719     TQM834x: enable DHCP
62720
62721     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
62722     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
62723
62724 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
62725 Author: Jens Gehrlein <sew_s@tqs.de>
62726 Date:   Tue Jan 29 08:45:02 2008 +0100
62727
62728     TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
62729
62730     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
62731     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
62732
62733 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
62734 Author: Ben Warren <biggerbadderben@gmail.com>
62735 Date:   Sat Jan 26 23:41:19 2008 -0500
62736
62737     Fix conditional compilation of mpx8xxx_spi driver
62738
62739     This driver should only compile if CONFIG_MPC8XXX_SPI is set
62740
62741     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
62742     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
62743
62744 commit 63f732d3d3880feb531f48af247c025bf01462b0
62745 Author: Rafal Jaworowski <raj@semihalf.com>
62746 Date:   Tue Jan 29 17:00:34 2008 +0100
62747
62748     API: Provide dummy halt() in the glue layer.
62749
62750     This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
62751
62752     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
62753
62754 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
62755 Author: Rafal Jaworowski <raj@semihalf.com>
62756 Date:   Tue Jan 29 16:57:38 2008 +0100
62757
62758     API: Convert conditional building to the new scheme.
62759
62760     This fixes a build breakage with CONFIG_API enabled, which appeared after
62761     the recent changes in the U-Boot build system.
62762
62763     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
62764
62765 commit 98b742489c09780be6a832eeaa4e5eff824792bb
62766 Author: Wolfgang Denk <wd@denx.de>
62767 Date:   Fri Jan 25 09:56:17 2008 +0100
62768
62769     inka4x0: remove dead code
62770
62771     Signed-off-by: Wolfgang Denk <wd@denx.de>
62772
62773 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
62774 Author: Becky Bruce <becky.bruce@freescale.com>
62775 Date:   Wed Jan 23 16:31:06 2008 -0600
62776
62777     86xx: Add reginfo command
62778
62779     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
62780
62781 commit ddcebcb638715a6278da93b553d5016f99823816
62782 Author: Becky Bruce <becky.bruce@freescale.com>
62783 Date:   Wed Jan 23 16:31:05 2008 -0600
62784
62785     86xx: Add print_laws function to fsl_law.c
62786
62787     This can be used for debug, and will be used by board code
62788     to help implement reginfo.
62789
62790     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
62791
62792 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
62793 Author: Becky Bruce <becky.bruce@freescale.com>
62794 Date:   Wed Jan 23 16:31:04 2008 -0600
62795
62796     86xx: Remove old-style law setup code
62797
62798     This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
62799
62800     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
62801
62802 commit 713d8186649dae874613d495b0cecaa039a98b30
62803 Author: Becky Bruce <becky.bruce@freescale.com>
62804 Date:   Wed Jan 23 16:31:03 2008 -0600
62805
62806     86xx: Convert sbc8641d to use new law setup code.
62807
62808     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
62809
62810 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
62811 Author: Becky Bruce <becky.bruce@freescale.com>
62812 Date:   Wed Jan 23 16:31:02 2008 -0600
62813
62814     86xx: Convert mpc8610hpcd to new law setup method.
62815
62816     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
62817
62818 commit 4933b91f8a49e436681f163df3173beb91cac44a
62819 Author: Becky Bruce <becky.bruce@freescale.com>
62820 Date:   Wed Jan 23 16:31:01 2008 -0600
62821
62822     86xx: Support new law setup method and convert mpc8641
62823
62824     Adds the support code in cpu/mpc86xx for the new law setup code
62825     recently created fsl_law.c, and changes the MPC8641HPCN config
62826     to use this code.
62827
62828     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
62829
62830 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
62831 Author: Becky Bruce <becky.bruce@freescale.com>
62832 Date:   Wed Jan 23 16:31:00 2008 -0600
62833
62834     86xx: Rearrange the sequence in start.S
62835
62836     * split the BAT initialization so that only 2 BATs (for the boot page
62837     and stack) are programmed very early on.  The rest are initialized later.
62838     * Move other BAT setup,  ccsrbar setup, and law setup later in the code
62839     after translation has been enabled.
62840
62841     These changes will facilitate the moving of law and BAT initialization
62842     to C code, and will aid with 36-bit physical addressing support.
62843
62844     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
62845
62846 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
62847 Author: Wolfgang Denk <wd@denx.de>
62848 Date:   Wed Jan 23 14:41:37 2008 +0100
62849
62850     Coding Style Cleanup; update CHANGELOG
62851
62852     Signed-off-by: Wolfgang Denk <wd@denx.de>
62853
62854 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
62855 Author: Wolfgang Denk <wd@denx.de>
62856 Date:   Wed Jan 23 14:31:17 2008 +0100
62857
62858     Coding Style Cleanup; update CHANGELOG
62859
62860     Signed-off-by: Wolfgang Denk <wd@denx.de>
62861
62862 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
62863 Author: Dave Liu <r63238@freescale.com>
62864 Date:   Fri Jan 18 10:07:04 2008 +0800
62865
62866     mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
62867
62868     The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
62869     cause the 83xx immap broken, so the DMA and PCI will
62870     be failed.
62871
62872     The patch fix the struct spi8xxx and rm struct spi83xx.
62873
62874     Signed-off-by: Dave Liu <daveliu@freescale.com>
62875     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
62876
62877 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
62878 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62879 Date:   Sat Apr 14 17:11:49 2007 +0200
62880
62881     AVR32: ATNGW100 board support
62882
62883     Add support for the ATNGW100 Network Gateway reference design,
62884     including flash, ethernet and MMC support.
62885
62886     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62887
62888 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
62889 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62890 Date:   Sat Nov 24 18:15:31 2007 +0100
62891
62892     AVR32: Initialize ipaddr, loadaddr and bootfile at startup
62893
62894     I don't know why the relevant layers can't do this by itself, but this
62895     is what ppc does.
62896
62897     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62898
62899 commit 799891ef7b1b3432032ec23466df6b665a797fa4
62900 Author: Michael Schwingen <michael@schwingen.org>
62901 Date:   Fri Jan 18 00:04:28 2008 +0100
62902
62903     Add AcTux board support
62904
62905     Hi,
62906
62907     The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
62908     files that
62909     contain changes for multiple boards, the board-specific files follow as
62910     separate patches.
62911
62912     Signed-off-by: Michael Schwingen <michael@schwingen.org>
62913
62914 commit 66a4344a4d910a11125df7768899ad529719855e
62915 Author: Michael Schwingen <michael@schwingen.org>
62916 Date:   Wed Jan 16 19:53:23 2008 +0100
62917
62918     add AcTux-4 board support
62919
62920     Signed-off-by: Michael Schwingen <michael@schwingen.org>
62921
62922 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
62923 Author: Michael Schwingen <michael@schwingen.org>
62924 Date:   Wed Jan 16 19:51:55 2008 +0100
62925
62926     add AcTux-3 board support
62927
62928     Signed-off-by: Michael Schwingen <michael@schwingen.org>
62929
62930 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
62931 Author: Michael Schwingen <michael@schwingen.org>
62932 Date:   Wed Jan 16 19:51:14 2008 +0100
62933
62934     add AcTux-2 board support
62935
62936     Signed-off-by: Michael Schwingen <michael@schwingen.org>
62937
62938 commit ea99e8f05b7240fd657739e286664664ae160abe
62939 Author: Michael Schwingen <michael@schwingen.org>
62940 Date:   Wed Jan 16 19:50:37 2008 +0100
62941
62942     add AcTux-1 board support
62943
62944     Signed-off-by: Michael Schwingen <michael@schwingen.org>
62945
62946 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
62947 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62948 Date:   Mon Jan 14 19:20:08 2008 +0100
62949
62950     ARM: remove useless function board_post_init
62951
62952     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62953
62954 commit 96bd462942022e4569b582c072a0ed26de1cd19b
62955 Author: Michael Schwingen <michael@schwingen.org>
62956 Date:   Thu Jan 10 14:59:46 2008 +0100
62957
62958     IXP: enable RTS
62959
62960     enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
62961     No handshaking is done, but the active RTS signal allows to
62962     connect to the target using a PC which is using RTS/CTS
62963     handshake, and does no harm if the PC is set to ignore RTS.
62964
62965     Signed-off-by: Michael Schwingen <michael@schwingen.org>
62966
62967 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
62968 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62969 Date:   Mon Jan 7 08:41:34 2008 +0100
62970
62971     IXP: add dynamic microcode addr
62972
62973     allow to load the microde from flash or ram by download it through
62974     the serial or other.
62975
62976     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62977     Acked-by: Stefan Roese <sr@denx.de>
62978
62979 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
62980 Author: Michael Schwingen <michael@schwingen.org>
62981 Date:   Sat Nov 10 15:44:12 2007 +0100
62982
62983     load ixp42x NPE firmware from separate flash block, remove dead code
62984
62985     Hi,
62986
62987     the following patch adds support to move the IXP42X NPE firmware to a
62988     separate flash block, whose start address is defined in
62989     CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
62990     NPE-enabled u-boot without copyright problems due to the NPE firmware.
62991
62992     I hope the patch applies, I get whitespace-related differences in the NPE
62993     files due to trailing whitespace in the original versions.
62994
62995     Signed-off-by: Michael Schwingen <michael@schwingen.org>
62996     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62997
62998 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
62999 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63000 Date:   Tue Jan 15 14:15:46 2008 -0600
63001
63002     ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
63003
63004     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63005     Signed-off by: John Rigby <jrigby@freescale.com>
63006
63007 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
63008 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63009 Date:   Tue Jan 15 14:02:49 2008 -0600
63010
63011     ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
63012
63013     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63014     Signed-off by: John Rigby <jrigby@freescale.com>
63015
63016 commit 777d1abd9796f1c2e148417cc10657e847d318ce
63017 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63018 Date:   Tue Jan 15 14:00:25 2008 -0600
63019
63020     ColdFire: Add MCF547x_8x FEC driver
63021
63022     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63023     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63024     Signed-off by: John Rigby <jrigby@freescale.com>
63025
63026 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
63027 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63028 Date:   Tue Jan 15 13:54:09 2008 -0600
63029
63030     ColdFire: Add MCF547x_8x dma code and header files
63031
63032     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63033     Signed-off by: John Rigby <jrigby@freescale.com>
63034
63035 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
63036 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63037 Date:   Tue Jan 15 13:52:03 2008 -0600
63038
63039     ColdFire: Add MCF547x_8x dma code - 2
63040
63041     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63042     Signed-off by: John Rigby <jrigby@freescale.com>
63043
63044 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
63045 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63046 Date:   Tue Jan 15 13:48:52 2008 -0600
63047
63048     ColdFire: Add MCF547x_8x dma code - 1
63049
63050     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63051     Signed-off by: John Rigby <jrigby@freescale.com>
63052
63053 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
63054 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63055 Date:   Tue Jan 15 13:39:44 2008 -0600
63056
63057     ColdFire: Add MCF547x_8x related header files
63058
63059     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63060     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63061     Signed-off by: John Rigby <jrigby@freescale.com>
63062
63063 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
63064 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63065 Date:   Tue Jan 15 13:37:34 2008 -0600
63066
63067     ColdFire: Add MCF547x_8x cpu arch
63068
63069     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63070     Signed-off by: John Rigby <jrigby@freescale.com>
63071
63072 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
63073 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63074 Date:   Mon Jan 14 17:47:23 2008 -0600
63075
63076     ColdFire: Add MCF5227x cpu and M52277EVB support-3
63077
63078     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63079     Signed-off by: John Rigby <jrigby@freescale.com>
63080
63081 commit c87581027994c148131b2f11aa75501f782ec19a
63082 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63083 Date:   Mon Jan 14 17:46:19 2008 -0600
63084
63085     ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
63086
63087     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63088     Signed-off by: John Rigby <jrigby@freescale.com>
63089
63090 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
63091 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63092 Date:   Mon Jan 14 17:43:33 2008 -0600
63093
63094     ColdFire: Add MCF5227x cpu and M52277EVB support-1
63095
63096     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63097     Signed-off by: John Rigby <jrigby@freescale.com>
63098
63099 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
63100 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63101 Date:   Mon Jan 14 17:35:44 2008 -0600
63102
63103     ColdFire: Fix CFI Flash low level Read/Write macro
63104
63105     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63106     Signed-off by: John Rigby <jrigby@freescale.com>
63107
63108 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
63109 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63110 Date:   Mon Jan 14 17:23:08 2008 -0600
63111
63112     ColdFire: Add M5373EVB platform support - 2
63113
63114     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63115     Signed-off by: John Rigby <jrigby@freescale.com>
63116
63117 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
63118 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63119 Date:   Mon Jan 14 17:19:54 2008 -0600
63120
63121     ColdFire: Add M5373EVB platform support - 1
63122
63123     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63124     Signed-off by: John Rigby <jrigby@freescale.com>
63125
63126 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
63127 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63128 Date:   Mon Jan 14 17:17:03 2008 -0600
63129
63130     ColdFire: Update FlexBus CS for MCF532x
63131
63132     Definition update and change from 16bit to 32bit
63133
63134     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63135     Signed-off by: John Rigby <jrigby@freescale.com>
63136
63137 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
63138 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63139 Date:   Mon Jan 14 17:11:47 2008 -0600
63140
63141     ColdFire: PCI and misc updates for MCF5445x
63142
63143     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63144     Signed-off by: John Rigby <jrigby@freescale.com>
63145
63146 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
63147 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63148 Date:   Mon Jan 14 17:06:55 2008 -0600
63149
63150     ColdFire: MCF5445x header files cleanup
63151
63152     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63153     Signed-off by: John Rigby <jrigby@freescale.com>
63154
63155 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
63156 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63157 Date:   Mon Jan 14 16:59:42 2008 -0600
63158
63159     ColdFire: MCF532x header files cleanup
63160
63161     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63162     Signed-off by: John Rigby <jrigby@freescale.com>
63163
63164 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
63165 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63166 Date:   Mon Jan 14 15:30:15 2008 -0600
63167
63168     ColdFire: Add modules header files
63169
63170     Add CF specific modules header files
63171
63172     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
63173     Signed-off-by: John Rigby <jrigby@freescale.com>
63174
63175 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
63176 Author: Kim Phillips <kim.phillips@freescale.com>
63177 Date:   Thu Jan 17 12:48:00 2008 -0600
63178
63179     codingstyle cleanup for spi driver
63180
63181     ..and rm unused CONFIG_FSL_SPI define
63182
63183     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63184
63185 commit d59feffb42c9f174116db7a82a311df98983dfce
63186 Author: Haiying Wang <Haiying.Wang@freescale.com>
63187 Date:   Wed Jan 16 17:12:12 2008 -0500
63188
63189     FSL: Fix common EEPROM_data structure definition
63190
63191     - Fix EEPROM_data structure definition according to System EEPROM Data Format.
63192     - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
63193       bd->bi_ethaddr.
63194
63195     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
63196
63197 commit 6bee764bd6da510a4aad614880300c968bc7318d
63198 Author: Timur Tabi <timur@freescale.com>
63199 Date:   Wed Jan 16 15:48:12 2008 -0600
63200
63201     86xx: enable command-line editing
63202
63203     Enable command-line editing for all MPC86xx boards.
63204
63205     Signed-off-by: Timur Tabi <timur@freescale.com>
63206
63207 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
63208 Author: Ben Warren <biggerbadderben@gmail.com>
63209 Date:   Wed Jan 16 22:37:42 2008 -0500
63210
63211     Implement hard SPI driver on MPC8349EMDS
63212
63213     This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
63214     This board has an ST M25P40 4Mbit EEPROM on its SPI bus
63215
63216     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63217     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63218
63219 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
63220 Author: Ben Warren <biggerbadderben@gmail.com>
63221 Date:   Wed Jan 16 22:37:35 2008 -0500
63222
63223     Add support for a Freescale non-CPM SPI controller
63224
63225     This patch adds support for the SPI controller found on Freescale PowerPC
63226     processors such as the MCP834x family.  Additionally, a new config option,
63227     CONFIG_HARD_SPI, is added for general purpose SPI controller use.
63228
63229     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63230     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63231
63232 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
63233 Author: Dave Liu <r63238@freescale.com>
63234 Date:   Thu Jan 17 18:23:19 2008 +0800
63235
63236     mpc83xx: Fix the fatal conflict of merge
63237
63238     The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
63239     will cause the mpc8315erdb board can't boot up.
63240
63241     The patch fix that bug, and remove the duplicated #ifdef
63242     CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
63243     MPC8313E processor.
63244
63245     Signed-off-by: Dave Liu <daveliu@freescale.com>
63246     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63247
63248 commit 3259eeaa4148125a81417477f62c05bd67f60587
63249 Author: Larry Johnson <lrj@acm.org>
63250 Date:   Thu Jan 17 08:50:09 2008 -0500
63251
63252     Merge Sequoia beautification into Korat code
63253
63254     Signed-off-by: Larry Johnson <lrj@acm.org>
63255
63256 commit e16925773211291b562e77187061e9dd1d757217
63257 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63258 Date:   Thu Jan 17 07:45:05 2008 +0100
63259
63260     net: add 'ethrotate' environment variable
63261
63262     [PATCH] net: add 'ethrotate' environment variable
63263
63264     This patch replaces the buildtime configuration option
63265     CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
63266     configuration veriable. See README.
63267
63268     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63269     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63270
63271 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
63272 Author: Stefan Roese <sr@denx.de>
63273 Date:   Thu Jan 17 14:29:04 2008 +0100
63274
63275     ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
63276
63277     Signed-off-by: Stefan Roese <sr@denx.de>
63278
63279 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
63280 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
63281 Date:   Thu Jan 17 18:07:32 2008 +0900
63282
63283     sh: Remove CONFIG_COMMANDS from MS7720SE config file
63284
63285     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
63286
63287 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
63288 Author: Niklaus Giger <niklaus.giger@netstal.com>
63289 Date:   Wed Jan 16 18:39:20 2008 +0100
63290
63291     ppc4xx: Netstal HCU4 board: added various fixes and POST
63292
63293     - Moved some common code to netstal/common/nm_bsp.c.
63294     - sdram initialisation goes go netstal/common/fixed_sdram.c.
63295     - Added support for POST.
63296     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
63297
63298     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
63299
63300 commit 69b0634a4ee98c9791815600d43b99f626a952f3
63301 Author: Niklaus Giger <niklaus.giger@netstal.com>
63302 Date:   Thu Jan 17 12:53:56 2008 +0100
63303
63304     ppc4xx: netstal/common define routines used by all boards
63305
63306     Added some routines used by all Netstal boards:
63307     - nm_bsp.c: - nm_show_print and
63308             -  common_misc_init_r
63309             - set_params_for_sw_install. Very specific code to handle our SW
63310               installation procedure
63311     - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
63312       to handle sdram initialization.
63313     - nm.h: Common header
63314
63315     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
63316
63317 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
63318 Author: Niklaus Giger <niklaus.giger@netstal.com>
63319 Date:   Wed Jan 16 18:39:18 2008 +0100
63320
63321     ppc4xx: Netstal HCU5 board: added various fixes and POST
63322
63323     - Moved some common code to nestal/common/nm_bsp.c.
63324     - Added support for the vxWorks EDR.
63325     - Enable trace for Lauterbach, if present.
63326     - Added support for POST.
63327     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
63328
63329     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
63330
63331 commit 4371090e5da77edc7bf9f296364db4801639d9c4
63332 Author: Niklaus Giger <niklaus.giger@netstal.com>
63333 Date:   Wed Jan 16 18:39:08 2008 +0100
63334
63335     ppc4xx: Netstal HCU5 board. Added POST. Various fixes
63336
63337     - Various fixes
63338     - Reduced rom_size from 384 to 320 kB
63339     - Environment is now in flash
63340     - Added POST
63341     - Support for OF
63342
63343     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
63344
63345 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
63346 Author: Niklaus Giger <niklaus.giger@netstal.com>
63347 Date:   Wed Jan 16 18:37:50 2008 +0100
63348
63349     ppc4xx: Netstal HCU4 board. Added POST. Various fixes
63350
63351     - Various fixes
63352     - Reduced rom_size from 384 to 320 kB
63353     - Environment is now in flash
63354     - Added POST
63355     - Support for OF
63356
63357     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
63358
63359 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
63360 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63361 Date:   Thu Jan 17 10:53:08 2008 +0100
63362
63363     ppc4xx: Complete DU440 board support
63364
63365     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63366
63367 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
63368 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63369 Date:   Thu Jan 17 10:52:30 2008 +0100
63370
63371     ppc4xx: Add DU440 board support
63372
63373     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63374
63375 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
63376 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
63377 Date:   Thu Jan 17 15:53:52 2008 +0900
63378
63379     sh: Update SuperH SCIF driver
63380
63381     This patch fixed wrong SH7720 CPU macro and changed macro that
63382     calculated value of SCBRR register.
63383
63384     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
63385
63386 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
63387 Author: Grzegorz Bernacki <gjb@semihalf.com>
63388 Date:   Wed Jan 16 15:12:47 2008 +0100
63389
63390     Set ips dividor to 1/4 of csb clock.
63391
63392     Previous setting cause ips clock to be out of spec. This bug was found by John
63393     Rigby from Freescale.
63394
63395     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
63396
63397 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
63398 Author: Kumar Gala <galak@kernel.crashing.org>
63399 Date:   Thu Jan 17 02:19:18 2008 -0600
63400
63401     85xx: Get ride of old TLB setup code
63402
63403     Now that all boards have been converted, remove old config code and the
63404     config option for the new style.
63405
63406     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63407
63408 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
63409 Author: Kumar Gala <galak@kernel.crashing.org>
63410 Date:   Thu Jan 17 02:02:10 2008 -0600
63411
63412     85xx: Convert TQM85xx to new TLB setup
63413
63414     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63415
63416 commit 74121b470c14f7eaf284ee838bffca6f9521069e
63417 Author: Kumar Gala <galak@kernel.crashing.org>
63418 Date:   Thu Jan 17 01:56:32 2008 -0600
63419
63420     85xx: Convert STXGP3 & STXSSA to new TLB setup
63421
63422     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63423
63424 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
63425 Author: Kumar Gala <galak@kernel.crashing.org>
63426 Date:   Thu Jan 17 01:44:34 2008 -0600
63427
63428     85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
63429
63430     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63431
63432 commit 818218bac6a11591e2542c344d2330e0f4e1968b
63433 Author: Kumar Gala <galak@kernel.crashing.org>
63434 Date:   Thu Jan 17 01:31:34 2008 -0600
63435
63436     85xx: Convert PM854/PM856 to new TLB setup
63437
63438     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63439
63440 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
63441 Author: Kumar Gala <galak@kernel.crashing.org>
63442 Date:   Thu Jan 17 01:25:33 2008 -0600
63443
63444     85xx: Convert MPC8540EVAL to new TLB setup
63445
63446     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63447
63448 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
63449 Author: Kumar Gala <galak@kernel.crashing.org>
63450 Date:   Thu Jan 17 01:12:22 2008 -0600
63451
63452     85xx: Convert MPC8568 MDS to new TLB setup
63453
63454     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63455
63456 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
63457 Author: Kumar Gala <galak@kernel.crashing.org>
63458 Date:   Thu Jan 17 01:01:09 2008 -0600
63459
63460     85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
63461
63462     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63463
63464 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
63465 Author: Kumar Gala <galak@kernel.crashing.org>
63466 Date:   Thu Jan 17 00:52:29 2008 -0600
63467
63468     85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
63469
63470     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63471
63472 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
63473 Author: Kumar Gala <galak@kernel.crashing.org>
63474 Date:   Thu Jan 17 00:32:17 2008 -0600
63475
63476     85xx: Convert ATUM8548 to new TLB setup
63477
63478     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63479
63480 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
63481 Author: Kumar Gala <galak@kernel.crashing.org>
63482 Date:   Wed Jan 16 23:11:57 2008 -0600
63483
63484     85xx: Convert MPC8544 DS to new TLB setup
63485
63486     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63487
63488 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
63489 Author: Kumar Gala <galak@kernel.crashing.org>
63490 Date:   Wed Jan 16 22:38:34 2008 -0600
63491
63492     85xx: Reworked initial processor init
63493
63494     Reworked the initial processor initialzation sequence:
63495     * introduced cpu_early_init_f that is run in address space 1 (AS=1)
63496     * Moved TLB/LAW and CCSR init into cpu_early_init_f()
63497     * Reworked initial asm code to do most of the core init before TLBs
63498
63499     The main reasons for these changes are to allow handling of 36-bit phys
63500     addresses in the future and some of the issues that will exist when we
63501     do that.
63502
63503     There are a few caveats on what can be initialized via the LAW and TLB
63504     static tables:
63505     * TLB entry 14/15 can't be initialized via the TLB table
63506     * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
63507       the code that is currently executing.
63508
63509     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63510
63511 commit 44a23cfd6360a68eaa41f945190618a55519eac3
63512 Author: Kumar Gala <galak@kernel.crashing.org>
63513 Date:   Wed Jan 16 22:33:22 2008 -0600
63514
63515     85xx: Introduce new tlb API
63516
63517     Add a set of functions to manipulate TLB entries:
63518      * set_tlb() - write a tlb entry
63519      * invalidate_tlb() - invalidate a tlb array
63520      * disable_tlb() - disable a variable size tlb entry
63521      * init_tlbs() - setup initial tlbs based on static table
63522
63523     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63524
63525 commit be88b1699863c262818f3af7f60173b4d48df8fc
63526 Author: Stefan Roese <sr@denx.de>
63527 Date:   Thu Jan 17 07:50:17 2008 +0100
63528
63529     ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
63530
63531     Signed-off-by: Stefan Roese <sr@denx.de>
63532
63533 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
63534 Author: Kumar Gala <galak@kernel.crashing.org>
63535 Date:   Wed Jan 16 10:04:42 2008 -0600
63536
63537     85xx: Use proper defines for PCI addresses
63538
63539     We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
63540     While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
63541     be used for configuring the PCI ATMU.
63542
63543     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63544
63545 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
63546 Author: Kumar Gala <galak@kernel.crashing.org>
63547 Date:   Wed Jan 16 09:22:29 2008 -0600
63548
63549     85xx: Remove old style of LAW init
63550
63551     All boards are now using the new fsl_law code so we can drop the old version.
63552
63553     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63554
63555 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
63556 Author: Kumar Gala <galak@kernel.crashing.org>
63557 Date:   Wed Jan 16 09:15:29 2008 -0600
63558
63559     85xx: convert remaining 85xx boards over to use new LAW init code
63560
63561     Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
63562     to use new LAW init code.
63563
63564     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63565
63566 commit 572b13afc42710f2957c382a710360429c0e099b
63567 Author: Kumar Gala <galak@kernel.crashing.org>
63568 Date:   Wed Jan 16 09:11:53 2008 -0600
63569
63570     85xx: convert STXGP3/STXSSA over to use new LAW init code
63571
63572     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63573
63574 commit 45f2166ac0233a9263058378f39612bd11f61196
63575 Author: Kumar Gala <galak@kernel.crashing.org>
63576 Date:   Wed Jan 16 09:06:48 2008 -0600
63577
63578     85xx: convert PM854/PM856 over to use new LAW init code
63579
63580     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63581
63582 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
63583 Author: Kumar Gala <galak@kernel.crashing.org>
63584 Date:   Wed Jan 16 09:05:27 2008 -0600
63585
63586     85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
63587
63588     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63589
63590 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
63591 Author: Kumar Gala <galak@kernel.crashing.org>
63592 Date:   Wed Jan 16 01:45:10 2008 -0600
63593
63594     85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
63595
63596     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63597
63598 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
63599 Author: Kumar Gala <galak@kernel.crashing.org>
63600 Date:   Wed Jan 16 01:32:06 2008 -0600
63601
63602     85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
63603
63604     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63605
63606 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
63607 Author: Kumar Gala <galak@kernel.crashing.org>
63608 Date:   Wed Jan 16 01:16:16 2008 -0600
63609
63610     85xx: convert MPC8544 DS over to use new LAW init code
63611
63612     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63613
63614 commit 83d40dfd79fe868796275802f60116d84b9e4395
63615 Author: Kumar Gala <galak@kernel.crashing.org>
63616 Date:   Wed Jan 16 01:13:58 2008 -0600
63617
63618     85xx: Move LAW init code into C
63619
63620     Move the initialization of the LAWs into C code and provide an API
63621     to allow modification of LAWs after init.
63622
63623     Board code is responsible to provide a law_table and num_law_entries.
63624
63625     We should be able to use the same code on 86xx as well.
63626
63627     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63628
63629 commit bed8ce838a609aaab136d43b25e6df2a520bc854
63630 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63631 Date:   Sat Dec 22 15:03:12 2007 +0100
63632
63633     qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
63634
63635     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63636
63637 commit 0764c164fed6277d359cf132d55187ea34290114
63638 Author: Vlad Lungu <vlad@comsys.ro>
63639 Date:   Wed Jan 16 19:27:51 2008 +0200
63640
63641     MIPS:Target support for qemu -M mips
63642
63643     With serial, NE2000, IDE support. Tested in big-endian mode.
63644     Memory size hard-coded to 128M for now, so don't play with
63645     the -m option.
63646
63647     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
63648
63649 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
63650 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63651 Date:   Fri Jan 11 00:01:37 2008 +0100
63652
63653     Fix nfs command help to reflect that the serverip is optional
63654
63655     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63656     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63657
63658 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
63659 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63660 Date:   Mon Dec 10 22:32:14 2007 +0100
63661
63662     bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
63663
63664     and move is_valid_ether_addr board file
63665
63666     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63667     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63668
63669 commit c2f896b8fc4722e36915903e1942e138e68ce804
63670 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63671 Date:   Wed Jan 16 16:13:31 2008 +0900
63672
63673     drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
63674
63675     rx_status on the memory is basically in LE, but needs to be handled in CPU
63676     endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
63677     it'll work fine.
63678
63679     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63680     Cc: Masami Komiya <mkomiya@sonare.it>
63681     Cc: Lucas Jin <lucasjin@gmail.com>
63682     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63683
63684 commit 96a236746fe6a7b84802afb4ed31536696d34812
63685 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63686 Date:   Wed Jan 16 16:12:26 2008 +0900
63687
63688     drivers/net/rtl8139.c: Fix cache coherency issues
63689
63690     Current driver is meant for cache coherent systems. This patch adds
63691     flush_cache() routines to support cache non-coherent systems.
63692
63693     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63694     Cc: Masami Komiya <mkomiya@sonare.it>
63695     Cc: Lucas Jin <lucasjin@gmail.com>
63696     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63697
63698 commit d1276c76c1e2b5035296689280ba1acb2c425104
63699 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63700 Date:   Wed Jan 16 16:11:14 2008 +0900
63701
63702     drivers/net/rtl8139.c: Fix tx timeout
63703
63704     "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
63705     does, the condition "(currticks() < to)" becomes invalid and immediately
63706     leads to tx timeout error. This patch introduces the fine-graded udely(10)
63707     loops to ease the impact of wrapping around.
63708
63709     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63710     Cc: Masami Komiya <mkomiya@sonare.it>
63711     Cc: Lucas Jin <lucasjin@gmail.com>
63712     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63713
63714 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
63715 Author: Dave Liu <r63238@freescale.com>
63716 Date:   Fri Jan 11 18:45:28 2008 +0800
63717
63718     TSEC: Add the support for RealTek RTL8211B PHY
63719
63720     Add the support of RealTek RTL8211B PHY, the RTL8211B
63721     PHY only supports RGMII and MII mode.
63722
63723     Signed-off-by: Dave Liu <daveliu@freescale.com>
63724     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63725
63726 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
63727 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
63728 Date:   Wed Jan 16 09:40:41 2008 +0100
63729
63730     Remove annoying debug printout for PHY less boards.
63731
63732     PHY less board prints out lots of "read wrong ...":
63733     read wrong value : mii_id 3,mii_reg 2, base e0102320
63734     read wrong value : mii_id 3,mii_reg 3, base e0102320
63735     UEC: PHY is Generic MII (ffffffff)
63736     read wrong value : mii_id 3,mii_reg 4, base e0102320
63737     read wrong value : mii_id 3,mii_reg 0, base e0102320
63738     read wrong value : mii_id 3,mii_reg 1, base e0102320
63739     read wrong value : mii_id 3,mii_reg 1, base e0102320
63740     read wrong value : mii_id 3,mii_reg 5, base e0102320
63741     read wrong value : mii_id 3,mii_reg 1, base e0102320
63742     read wrong value : mii_id 3,mii_reg 1, base e0102320
63743     read wrong value : mii_id 3,mii_reg 5, base e0102320
63744     FSL UEC0: Full Duplex
63745     FSL UEC0: Speed 100BT
63746     FSL UEC0: Link is up
63747     Using FSL UEC0 device
63748
63749     Make this printout depend on UEC_VERBOSE_DEBUG and
63750     remove its definition in uec_phy.c
63751
63752     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
63753     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63754
63755 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
63756 Author: Kim Phillips <kim.phillips@freescale.com>
63757 Date:   Tue Jan 15 14:11:00 2008 -0600
63758
63759     net: reduce boot latency on QE UEC based boards
63760
63761     actually polling for PHY autonegotiation to finish enables us to remove the
63762     5 second boot prompt latency present on QE based boards.
63763
63764     call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
63765     uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
63766     code shamelessly stolen from tsec driver.
63767
63768     also rm unused CONFIG_RMII_MODE code.
63769
63770     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63771     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
63772     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63773
63774 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
63775 Author: michael.firth@bt.com <michael.firth@bt.com>
63776 Date:   Wed Jan 16 11:40:51 2008 +0000
63777
63778     TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
63779
63780     The current TSEC driver limits MDIO access to the devices that have been configured as attached
63781     to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
63782
63783     Signed-off-by: Michael Firth <michael.firth@bt.com>
63784     Acked-by: Andy Fleming <afleming@freescale.com>
63785     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63786
63787 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
63788 Author: Kim Phillips <kim.phillips@freescale.com>
63789 Date:   Wed Jan 16 00:38:05 2008 -0600
63790
63791     Add support for the MPC837xERDB
63792
63793     MPC837xERDB board support includes:
63794     * DDR2 330MHz hardcoded (soldered on the board)
63795     * Local Bus NOR Flash
63796     * I2C, UART and RTC
63797     * eTSEC RGMII (TSEC0 - RTL8211B with MII;
63798     *          TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
63799     *                  load)
63800
63801     Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
63802     Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
63803     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63804
63805 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
63806 Author: Kim Phillips <kim.phillips@freescale.com>
63807 Date:   Wed Jan 16 12:06:16 2008 -0600
63808
63809     mpc83xx: add support for more system clock performance controls
63810
63811     System registers that are modified are the Arbiter Configuration
63812     Register (ACR), the System Priority Control Register (SPCR), and the
63813     System Clock Configuration Register (SCCR).
63814
63815     Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
63816     Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
63817     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63818
63819 commit 16c3cde050e2d243e62b37486f1558570787beb8
63820 Author: James Yang <james.yang@freescale.com>
63821 Date:   Wed Jan 16 11:58:08 2008 -0600
63822
63823     FSL: Generalize PIXIS reset command parsing.
63824
63825     Before, the order of arguments to the pixis_reset
63826     command needed to be supplied in a hard-coded order.
63827     Generalize the command parsing to allow any order.
63828
63829     Signed-off-by: James Yang <james.yang@freescale.com>
63830     Acked-by: Jon Loeliger <jdl@freescale.com>
63831
63832 commit ad8f8687b78c3e917b173f038926695383c55555
63833 Author: Jon Loeliger <jdl@freescale.com>
63834 Date:   Tue Jan 15 13:42:41 2008 -0600
63835
63836     FSL: Convert board/freescale/common/Makefile to use CONFIG_
63837
63838     Convert the board/freescale/common/Makefile to use
63839     CONFIG_* options to select which files to conditionally
63840     compile into the board/freescale/common library rather
63841     than conditionally compiling entire files.
63842
63843     Now handles::
63844         CONFIG_FSL_PIXIS
63845         CONFIG_FSL_DIU_FB
63846         CONFIG_PQ_MDS_PIB
63847
63848     CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
63849
63850     Signed-off-by: Jon Loeliger <jdl@freescale.com>
63851
63852 commit 7c2221eb230372a9e537c4f6636b147b0909325f
63853 Author: Roy Zang <tie-fei.zang@freescale.com>
63854 Date:   Tue Jan 15 16:38:38 2008 +0800
63855
63856     Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
63857
63858     Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
63859     Remove unused ethernet CONFIG_ options.
63860
63861     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
63862     Acked-by: Jon Loeliger <jdl@freescale.com>
63863
63864 commit 711a7946277d2e29af481011e8635e9975c54e45
63865 Author: Kim Phillips <kim.phillips@freescale.com>
63866 Date:   Tue Jan 15 14:05:14 2008 -0600
63867
63868     mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
63869
63870     continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
63871
63872     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63873
63874 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
63875 Author: Kim Phillips <kim.phillips@freescale.com>
63876 Date:   Tue Jan 15 09:51:12 2008 -0600
63877
63878     mpc83xx: clean up mpc8360emds.c warnings
63879
63880     mpc8360emds.c: In function 'ft_board_setup':
63881     mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
63882     mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
63883     mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
63884     mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
63885     mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
63886     mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
63887
63888     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63889
63890 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
63891 Author: Kim Phillips <kim.phillips@freescale.com>
63892 Date:   Mon Jan 14 16:14:46 2008 -0600
63893
63894     mpc83xx: fix phy-connection-type fixup code
63895
63896     use tree passed to us in local blob, not global fdt.
63897
63898     Also use fdt_path_offset to convert to relative offset, since absolute
63899     reference is needed to check for rgmii-id mode string value.
63900
63901     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63902
63903 commit 2b4c952be7c4357a13e839d48df80853820c33eb
63904 Author: Kumar Gala <galak@kernel.crashing.org>
63905 Date:   Mon Jan 14 09:01:40 2008 -0600
63906
63907     mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
63908
63909     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63910     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63911
63912 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
63913 Author: Poonam Aggrwal <b10812@freescale.com>
63914 Date:   Mon Jan 14 09:41:14 2008 +0530
63915
63916     Changes in uboot DDR configuration for MPC8313eRDB
63917
63918     These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
63919     DDR configuration in u-boot code. Some are related to performance, some
63920     affect stability and some correct few basic errors in the current
63921     configuration.
63922
63923     The changes have been tested and found to give better memory latency
63924     figures on MPC8313eRDB.LMBench figures prove it.
63925
63926     The changes are:
63927
63928     - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
63929       (this may improve performance for application with many read
63930       or write to open pages).
63931     - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
63932       001 (activating all the CS when only one is used may cause
63933       unwanted noise on the system)
63934
63935     - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
63936       Tras=45ns)
63937     - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
63938
63939     - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
63940       comply with the 3 ODT clk requirements)
63941     - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
63942     - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
63943
63944     - DDR_SDRAM_MODE[AL]changed from 0 to 1.
63945     - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
63946
63947     - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
63948     - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
63949
63950     The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
63951     The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
63952
63953     Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
63954     Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
63955     Cc: Razzaz Mazyar <MRazzaz@freescale.com>
63956     Cc: Josep P J <PJ.Joseph@freescale.com>
63957     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63958
63959 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
63960 Author: Jerry Van Baren <gvb.uboot@gmail.com>
63961 Date:   Sat Jan 12 13:24:14 2008 -0500
63962
63963     Enable the isdram command on the MPC8360EMDS board
63964
63965     The isdram command prints out decoded information the "serial presence
63966     detect" (SPD) chip on the SDRAM SIMMs.  This can be very helpful when
63967     debugging memory configuration problems.
63968
63969     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
63970     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63971
63972 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
63973 Author: Dave Liu <r63238@freescale.com>
63974 Date:   Fri Jan 11 18:48:24 2008 +0800
63975
63976     mpc83xx: Add the support for MPC8315ERDB board
63977
63978     The features list:
63979     - Boot from NOR Flash
63980     - DDR2 266MHz hardcoded configuration
63981     - Local bus NOR Flash R/W operation
63982     - I2C, UART, MII and RTC
63983     - eTSEC0/1 support
63984     - PCI host
63985
63986     Signed-off-by: Dave Liu <daveliu@freescale.com>
63987     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63988
63989 commit b05884efa614e4d8a9413158fc228e0dc02ab704
63990 Author: Dave Liu <r63238@freescale.com>
63991 Date:   Fri Jan 11 18:46:50 2008 +0800
63992
63993     mpc83xx: Add config of eTSEC emergency priority in SPCR
63994
63995     The TSEC emergency priority definition of 831x/837x
63996     is different than the definition of 834x in SPCR register.
63997
63998     Add the other config of TSEC emergency priority into
63999     cpu_init.c
64000
64001     Signed-off-by: Dave Liu <daveliu@freescale.com>
64002     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64003
64004 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
64005 Author: Dave Liu <r63238@freescale.com>
64006 Date:   Fri Jan 11 18:42:19 2008 +0800
64007
64008     mpc83xx: Remove cache config from MPC8360ERDK.h
64009
64010     The MPC8360ERDK board support patch is added before
64011     the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
64012     so, miss clean up it.
64013
64014     The patch clean up the miss cache config.
64015
64016     Signed-off-by: Dave Liu <daveliu@freescale.com>
64017     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64018
64019 commit cd9d23053d435c08fc8695017b5cb9003fcda786
64020 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
64021 Date:   Mon Jan 14 23:09:32 2008 +0300
64022
64023     nand: FSL UPM NAND driver
64024
64025     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
64026
64027 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
64028 Author: Kyungmin Park <kmpark@infradead.org>
64029 Date:   Tue Jan 15 08:59:44 2008 +0900
64030
64031     OneNAND: Separate U-Boot dependent code from OneNAND
64032
64033     OneNAND: Separate U-Boot dependent code from OneNAND
64034
64035     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
64036
64037 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
64038 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64039 Date:   Wed Jan 16 10:33:46 2008 +0100
64040
64041     ppc4xx: Sequoia coding style cleanup and beautification
64042
64043     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64044
64045 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
64046 Author: Larry Johnson <lrj@acm.org>
64047 Date:   Tue Jan 15 14:35:58 2008 -0500
64048
64049     ppc4xx: Refactor ECC POST for AMCC Denali core
64050
64051     The ECC POST reported intermittent failures running after power-up on
64052     the Korat PPC440EPx board.  Even when the test passed, the debugging
64053     output occasionally reported additional unexpected ECC errors.
64054
64055     This refactoring has three main objectives: (1) minimize the code
64056     executed with ECC enabled during the tests, (2) add more checking of the
64057     results so any unexpected ECC errors would cause the test to fail, and
64058     (3) use synchronization (only) where required by the processor.
64059
64060     Signed-off-by: Larry Johnson <lrj@acm.org>
64061
64062 commit 2465665b73ac2f688af945b1ed510752afa816a4
64063 Author: David Saada <David.Saada@ecitele.com>
64064 Date:   Tue Jan 15 10:40:24 2008 +0200
64065
64066     QE UEC: Extend number of supported UECs to 4
64067
64068     This patch extends the number of supported UECs to 4. Note that the
64069     problem of QE thread resources exhaustion is resolved by setting the
64070     correct number of QE threads according to Ethernet type (GBE or FE).
64071
64072     Signed-off-by: David Saada <david.saada@ecitele.com>
64073     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
64074
64075 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
64076 Author: Wolfgang Denk <wd@denx.de>
64077 Date:   Wed Jan 16 00:01:01 2008 +0100
64078
64079     LWMON5: enable hush shell as command line parser
64080
64081     Signed-off-by: Wolfgang Denk <wd@denx.de>
64082
64083 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
64084 Author: Wolfgang Denk <wd@denx.de>
64085 Date:   Tue Jan 15 17:22:28 2008 +0100
64086
64087     ADS5121: disable watchdog; enable image timestamps
64088
64089     Signed-off-by: Wolfgang Denk <wd@denx.de>
64090
64091 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
64092 Author: Wolfgang Denk <wd@denx.de>
64093 Date:   Tue Jan 15 17:21:28 2008 +0100
64094
64095     TK885D: fixes for bigger flash sector sizes on new modules;
64096     adjust default environment;
64097     disable SCC ethernet (not used on this board).
64098
64099     Signed-off-by: Wolfgang Denk <wd@denx.de>
64100
64101 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
64102 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64103 Date:   Tue Jan 15 17:48:13 2008 +0900
64104
64105     pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
64106
64107     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64108
64109 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
64110 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64111 Date:   Tue Jan 15 23:25:25 2008 +0900
64112
64113     sh: Add support SH7710/SH7712
64114
64115     SH7710/SH7712 of SH3 CPU are supported.
64116     SH771X is called SH-Ether, and has the Ether controller in CPU.
64117     The driver of Ether is not included in this patch.
64118
64119     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64120
64121 commit 63a11be68306870e04d3851ed9fa41955cdf4894
64122 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64123 Date:   Tue Jan 15 23:06:17 2008 +0900
64124
64125     sh: Add support of map_physmem() and unmap_physmem() to SuperH
64126
64127     This patch add the support of map_physmem() and unmap_physmem()
64128     used with Common Flash Interface(CFI) driver.
64129
64130     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64131
64132 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
64133 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64134 Date:   Wed Jan 9 14:42:27 2008 +0900
64135
64136     sh: Add maintainer of MS7720SE to the MAINTAINER file
64137
64138     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64139
64140 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
64141 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64142 Date:   Wed Jan 9 14:39:58 2008 +0900
64143
64144     sh: Fix board name in MS7720SE's config.mk
64145
64146     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64147
64148 commit c0a04d93734d768b39dbb72fb501b65614c8615d
64149 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64150 Date:   Wed Jan 9 14:37:36 2008 +0900
64151
64152     sh: Add MS7720SE to MAKEALL
64153
64154     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64155
64156 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
64157 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64158 Date:   Mon Dec 3 22:58:50 2007 +0900
64159
64160     sh: Add support for MS7720RP02 board
64161
64162     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64163     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64164     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64165
64166 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
64167 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64168 Date:   Wed Jan 9 14:30:02 2008 +0900
64169
64170     sh: Add support for SH7720 in serial_sh driver.
64171
64172     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64173     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64174     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64175
64176 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
64177 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64178 Date:   Mon Dec 3 22:58:45 2007 +0900
64179
64180     sh: Add support SH3 and SH7720
64181
64182     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64183     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64184     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64185
64186 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
64187 Author: Stefan Roese <sr@denx.de>
64188 Date:   Tue Jan 15 10:11:02 2008 +0100
64189
64190     ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
64191
64192     Signed-off-by: Stefan Roese <sr@denx.de>
64193
64194 commit 17bef68097ab3692500a36fb31115bff7910aa99
64195 Author: Niklaus Giger <niklausgiger@gmx.ch>
64196 Date:   Mon Jan 14 14:04:42 2008 +0100
64197
64198     ppc_4xx: Fix post spr.c for PPC405
64199
64200     post/cpu/ppc4xx/spr.c contained a few checks for registers only present
64201     for PPC440 and derivates processor.
64202
64203     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
64204
64205 commit 06c428bcd4413014b43236e77765022071424fa6
64206 Author: Dave Liu <r63238@freescale.com>
64207 Date:   Mon Jan 14 11:12:01 2008 +0800
64208
64209     QE: fix compile warning
64210
64211     qe.c: In function 'qe_upload_firmware':
64212     qe.c:390: warning: pointer targets in passing argument 2
64213     uec.c: In function 'uec_initialize':
64214     uec.c:1236: warning: 'uec_info' may be used uninitialized
64215
64216     Signed-off-by: Dave Liu <daveliu@freescale.com>
64217
64218 commit a0dd99d51efa55fe023e19c97ead92683725eb11
64219 Author: Stefan Roese <sr@denx.de>
64220 Date:   Mon Jan 14 10:05:05 2008 +0100
64221
64222     ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
64223
64224     Now that bit 29 is the USB PHY reset bit, update the Kilauea port
64225     to remove the USB PHY reset after powerup. The CPLD will keep the
64226     USB PHY in reset (active low) until the bit is set to 1 in
64227     board_early_init_f().
64228
64229     Signed-off-by: Stefan Roese <sr@denx.de>
64230
64231 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
64232 Author: Wolfgang Denk <wd@denx.de>
64233 Date:   Sun Jan 13 23:26:45 2008 +0100
64234
64235     ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
64236
64237     Signed-off-by: Wolfgang Denk <wd@denx.de>
64238
64239 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
64240 Author: Wolfgang Denk <wd@denx.de>
64241 Date:   Sun Jan 13 23:37:50 2008 +0100
64242
64243     ADS5121: Fix typo in ads5121.c, adjust default environment
64244
64245     Signed-off-by: Wolfgang Denk <wd@denx.de>
64246
64247 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
64248 Author: John Rigby <jrigby@freescale.com>
64249 Date:   Fri Aug 24 18:18:43 2007 -0600
64250
64251     ADS5121: MAX slew rate for PATA pins
64252
64253     Signed-off-by: John Rigby <jrigby@freescale.com>
64254
64255 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
64256 Author: Wolfgang Denk <wd@denx.de>
64257 Date:   Sun Jan 13 21:05:52 2008 +0100
64258
64259     Fix Makefile dependency problem with parallel builds.
64260
64261     Signed-off-by: Wolfgang Denk <wd@denx.de>
64262
64263 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
64264 Author: Wolfgang Denk <wd@denx.de>
64265 Date:   Sun Jan 13 19:51:39 2008 +0100
64266
64267     MPC8544DS: fix board Makefile for silent build (with -s)
64268
64269     Signed-off-by: Wolfgang Denk <wd@denx.de>
64270
64271 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
64272 Author: Wolfgang Denk <wd@denx.de>
64273 Date:   Sun Jan 13 16:44:08 2008 +0100
64274
64275     PMC440 board: fix board Makefile for out-of-tree building
64276
64277     Signed-off-by: Wolfgang Denk <wd@denx.de>
64278
64279 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
64280 Author: Wolfgang Denk <wd@denx.de>
64281 Date:   Sun Jan 13 16:07:44 2008 +0100
64282
64283     Makalu: fix compile warning
64284
64285     Signed-off-by: Wolfgang Denk <wd@denx.de>
64286
64287 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
64288 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64289 Date:   Sun Jan 13 12:36:12 2008 +0100
64290
64291     cmd_nand : fix compiler warning.
64292
64293     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64294
64295 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
64296 Author: Michael Schwingen <rincewind@discworld.dascon.de>
64297 Date:   Sat Jan 12 20:29:47 2008 +0100
64298
64299     CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
64300
64301     Signed-off-by: Michael Schwingen <michael@schwingen.org>
64302     Acked-by: Stefan Roese <sr@denx.de>
64303
64304 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
64305 Author: Wolfgang Denk <wd@denx.de>
64306 Date:   Sun Jan 13 02:19:44 2008 +0100
64307
64308     MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
64309
64310     Signed-off-by: Wolfgang Denk <wd@denx.de>
64311
64312 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
64313 Author: Wolfgang Denk <wd@denx.de>
64314 Date:   Sun Jan 13 02:19:13 2008 +0100
64315
64316     MPC8xx FEC driver: fix compiler warning.
64317
64318     Signed-off-by: Wolfgang Denk <wd@denx.de>
64319
64320 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
64321 Author: Wolfgang Denk <wd@denx.de>
64322 Date:   Sun Jan 13 00:59:21 2008 +0100
64323
64324     Fix Makefile dependencies issues; allow silent build
64325
64326     - get rid of "version" target whichdidn't really work
64327     - make autoconf.mk depend on version_autogenerated.h to make sure
64328       to rebuild files as needed
64329     - add XECHO macro to allow for silent build using "make -s"
64330
64331     Signed-off-by: Wolfgang Denk <wd@denx.de>
64332
64333 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
64334 Author: Wolfgang Denk <wd@denx.de>
64335 Date:   Sun Jan 13 00:55:47 2008 +0100
64336
64337     ADS5121e: fix compile warning
64338
64339     Signed-off-by: Wolfgang Denk <wd@denx.de>
64340
64341 commit f2b6f4610627fe3d607620e25082916a01538875
64342 Author: Wolfgang Denk <wd@denx.de>
64343 Date:   Sun Jan 13 00:55:18 2008 +0100
64344
64345     MUNICes: fix board Makefile for remote build directory
64346
64347     Signed-off-by: Wolfgang Denk <wd@denx.de>
64348
64349 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
64350 Author: Oliver Weber <almoeli@gmx.de>
64351 Date:   Wed Jan 9 17:04:38 2008 +0100
64352
64353     MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
64354
64355     Signed-off-by: Oliver Weber <almoeli@gmx.de>
64356
64357 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
64358 Author: Andreas Engel <andreas.engel@ericsson.com>
64359 Date:   Wed Jan 9 17:10:56 2008 +0100
64360
64361     Make bootretry work when command line editing is enabled
64362
64363     Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
64364     This patch fixes the problem.
64365
64366     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
64367
64368 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
64369 Author: Larry Johnson <lrj@acm.org>
64370 Date:   Fri Jan 11 23:26:18 2008 -0500
64371
64372     Refactor code for "i2c sdram" command
64373
64374     Signed-off-by: Larry Johnson <lrj@acm.org>
64375
64376 commit 0df6b8446c4721b91ce311548114891130371083
64377 Author: Larry Johnson <lrj@acm.org>
64378 Date:   Thu Jan 10 22:23:39 2008 -0500
64379
64380     Fix "i2c sdram" command for DDR2 DIMMs
64381
64382     Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
64383     "i2c sdram" command.  This patch provides correct alternative
64384     interpretations when DDR2 memory is detected.
64385
64386     Signed-off-by: Larry Johnson <lrj@acm.org>
64387
64388 commit 64134f011254123618798ff77c42ba196b2ec485
64389 Author: Wolfgang Denk <wd@denx.de>
64390 Date:   Sat Jan 12 20:31:39 2008 +0100
64391
64392     Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
64393
64394     With recent toolchain versions, some boards would not build because
64395     or errors like this one (here for ocotea board when building with
64396     ELDK 4.2 beta):
64397     ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
64398
64399     For many boards, the .bss section is big enough that it wraps around
64400     at the end of the address space (0xFFFFFFFF), so the problem will not
64401     be visible unless you use a 64 bit tool chain for development. On
64402     some boards however, changes to the code size (due to different
64403     optimizations) we bail out with section overlaps like above.
64404
64405     The fix is to add the NOLOAD attribute to the .bss and .sbss
64406     sections, telling the linker that .bss does not consume any space in
64407     the image.
64408
64409     Signed-off-by: Wolfgang Denk <wd@denx.de>
64410
64411 commit 3afac79ec27b91df185f090b31dad9620779f440
64412 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
64413 Date:   Fri Jan 11 20:42:58 2008 -0600
64414
64415     USB: Add Philips 1561 PCI-OHCI ids
64416     (needed for M5475EVB)
64417
64418     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
64419
64420 commit 5e8def6731cd7bec74bff42a16b139de04010353
64421 Author: Wolfgang Denk <wd@denx.de>
64422 Date:   Sat Jan 12 15:51:34 2008 +0100
64423
64424     Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
64425     boards.
64426
64427     Signed-off-by: Heiko Schocher <hs@denx.de>
64428     Signed-off-by: Wolfgang Denk <wd@denx.de>
64429
64430 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
64431 Author: Grzegorz Bernacki <gjb@semihalf.com>
64432 Date:   Fri Jan 11 12:03:43 2008 +0100
64433
64434     MPC512X: Cleanup bus clock names.
64435
64436     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64437
64438 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
64439 Author: Grzegorz Bernacki <gjb@semihalf.com>
64440 Date:   Tue Jan 8 17:16:59 2008 +0100
64441
64442     MPC512X: Fixed typo in macro name.
64443
64444     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64445
64446 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
64447 Author: Grzegorz Bernacki <gjb@semihalf.com>
64448 Date:   Tue Jan 8 17:16:15 2008 +0100
64449
64450     ads5121: Added support for FDT.
64451
64452     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64453
64454 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
64455 Author: Wolfgang Denk <wd@denx.de>
64456 Date:   Sat Jan 12 01:05:50 2008 +0100
64457
64458     Coding Style cleanup; update CHANGELOG.
64459
64460     Signed-off-by: Wolfgang Denk <wd@denx.de>
64461
64462 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
64463 Author: Heiko Schocher <hs@denx.de>
64464 Date:   Fri Jan 11 15:15:17 2008 +0100
64465
64466     Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
64467
64468     Signed-off-by: Timur Tabi <timur@freescale.com>
64469     Signed-off-by: Heiko Schocher <hs@denx.de>
64470
64471 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
64472 Author: Heiko Schocher <hs@denx.de>
64473 Date:   Fri Jan 11 15:15:16 2008 +0100
64474
64475     MUNICes: Set the right CFG_DEFAULT_MBAR value.
64476
64477     Signed-off-by: Heiko Schocher <hs@denx.de>
64478
64479 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
64480 Author: Heiko Schocher <hs@denx.de>
64481 Date:   Fri Jan 11 15:15:15 2008 +0100
64482
64483     added the config File for the MUNICes board.
64484
64485     Signed-off-by: Heiko Schocher <hs@denx.de>
64486
64487 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
64488 Author: Heiko Schocher <hs@denx.de>
64489 Date:   Fri Jan 11 15:15:14 2008 +0100
64490
64491     added basic support for the MUNICes board.
64492
64493     Signed-off-by: Heiko Schocher <hs@denx.de>
64494
64495 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
64496 Author: Wolfgang Denk <wd@denx.de>
64497 Date:   Sat Jan 12 00:39:37 2008 +0100
64498
64499     Update CHANGELOG and MAINTAINERS files.
64500
64501     Signed-off-by: Wolfgang Denk <wd@denx.de>
64502
64503 commit 5ba7390c3cb579172be66888a371707b47b5be4e
64504 Author: Anatolij Gustschin <agust@denx.de>
64505 Date:   Fri Jan 11 02:15:02 2008 +0100
64506
64507     Fix compilation problem in common/cmd_bmp.c
64508
64509     common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
64510     isn't defined. This patch fix this.
64511
64512     Signed-off-by: Anatolij Gustschin <agust@denx.de>
64513
64514 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
64515 Author: Heiko Schocher <hs@denx.de>
64516 Date:   Fri Jan 11 01:12:09 2008 +0100
64517
64518     Fix defaultconfig for the mgcoge board.
64519
64520     Signed-off-by: Heiko Schocher <hs@denx.de>
64521
64522 commit ac9db066b26935f31bff15c98168b19faeb603f3
64523 Author: Heiko Schocher <hs@denx.de>
64524 Date:   Fri Jan 11 01:12:08 2008 +0100
64525
64526     Added support for the mgcoge board from keymile.
64527
64528     Signed-off-by: Heiko Schocher <hs@denx.de>
64529
64530 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
64531 Author: Heiko Schocher <hs@denx.de>
64532 Date:   Fri Jan 11 01:12:07 2008 +0100
64533
64534     Enable SMC microcode relocation patch for SMC1.
64535
64536     Signed-off-by: Heiko Schocher <hs@denx.de>
64537
64538 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
64539 Author: Heiko Schocher <hs@denx.de>
64540 Date:   Fri Jan 11 01:12:06 2008 +0100
64541
64542     Added support for the mgsuvd board from keymile.
64543
64544     Signed-off-by: Heiko Schocher <hs@denx.de>
64545
64546 commit bf05293973b348f6946c9df92cd3c65ece42d0be
64547 Author: James Yang <james.yang@freescale.com>
64548 Date:   Thu Jan 10 16:02:07 2008 -0600
64549
64550     Fix 64-bit vsprintf.
64551
64552     There were some size and unsigned problems.
64553     Also add support for "ll" size modifier in format string like glibc
64554
64555     Signed-off-by: James Yang <James.Yang@freescale.com>
64556     Acked-by: Jon Loeliger <jdl@freescale.com>
64557
64558 commit 92fa37eac530860643afa26ae347af3d23d67309
64559 Author: Larry Johnson <lrj@acm.org>
64560 Date:   Wed Jan 9 12:42:35 2008 -0500
64561
64562     Remove superfluous preprocessor conditionals from LM73 driver
64563
64564     (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
64565
64566     (2) Use conditional Makefile.o.
64567
64568     Signed-off-by: Larry Johnson <lrj@acm.org>
64569
64570 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
64571 Author: Guennadi Liakhovetski <lg@denx.de>
64572 Date:   Thu Jan 10 17:59:07 2008 +0100
64573
64574     Add support for the TK885D baseboard from TELE-DATA
64575
64576     The TK885D board uses a TQM885D module from TQ, this port adds an
64577     own configuration file and adds a last_stage_init() method to
64578     configure the two PHYs, depending on the phy_auto_nego environment
64579     variable.
64580
64581     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
64582
64583 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
64584 Author: Kumar Gala <galak@kernel.crashing.org>
64585 Date:   Thu Jan 10 02:22:05 2008 -0600
64586
64587     Fix compiler warning
64588
64589     main.c: In function 'readline_into_buffer':
64590     main.c:927: warning: unused variable 'p_buf'
64591
64592     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64593
64594 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
64595 Author: Anatolij Gustschin <agust@denx.de>
64596 Date:   Fri Jan 11 14:30:01 2008 +0100
64597
64598     Add Fujitsu CoralP/Lime video driver
64599
64600     Signed-off-by: Anatolij Gustschin <agust@denx.de>
64601     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
64602
64603 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
64604 Author: Anatolij Gustschin <agust@denx.de>
64605 Date:   Fri Jan 11 02:39:47 2008 +0100
64606
64607     Fix video console newline and carriage return handling
64608
64609     Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
64610     are not displayed correctly. This is an attempt to fix
64611     this issue. Also add carriage return handling.
64612
64613     Signed-off-by: Anatolij Gustschin <agust@denx.de>
64614     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
64615
64616 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
64617 Author: Stefan Roese <sr@denx.de>
64618 Date:   Fri Jan 11 15:53:58 2008 +0100
64619
64620     ppc4xx: Fix sdram init on Sequoia boards
64621
64622     Clear possible errors in MCSR resulting from data-eye-search.
64623     If not done, then we could get an interrupt later on when
64624     exceptions are enabled.
64625
64626     Signed-off-by: Stefan Roese <sr@denx.de>
64627
64628 commit d610a60730b7464f6f659db49d264d89a7c71061
64629 Author: Anatolij Gustschin <agust@denx.de>
64630 Date:   Fri Jan 11 15:31:09 2008 +0100
64631
64632     ppc4xx: Rework Lime support for lwmon5
64633
64634     Rework Lime support for lwmon5 using new video driver
64635
64636     Signed-off-by: Anatolij Gustschin <agust@denx.de>
64637
64638 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
64639 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64640 Date:   Fri Jan 11 14:55:16 2008 +0100
64641
64642     ppc4xx: Update PMC440 config file
64643
64644     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64645
64646 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
64647 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64648 Date:   Fri Jan 11 14:55:08 2008 +0100
64649
64650     ppx4xx: Fix sdram init on PMC440 boards
64651
64652     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64653
64654 commit 061aad4d320dddce26247699dcf2875ee2ea1366
64655 Author: Dave Liu <r63238@freescale.com>
64656 Date:   Thu Jan 10 23:09:33 2008 +0800
64657
64658     mpc83xx: Fix the bug of 266MHz data rate DDR
64659
64660     The DDR doesn't work on the 266MHz data rate,
64661     the patch fix the bug.
64662
64663     Signed-off-by: Dave Liu <daveliu@freescale.com>
64664     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64665
64666 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
64667 Author: Dave Liu <r63238@freescale.com>
64668 Date:   Thu Jan 10 23:08:26 2008 +0800
64669
64670     mpc83xx: Make the code more readable
64671
64672     Format the code, make it more readable
64673
64674     Signed-off-by: Dave Liu <daveliu@freescale.com>
64675     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64676
64677 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
64678 Author: Dave Liu <r63238@freescale.com>
64679 Date:   Thu Jan 10 23:07:23 2008 +0800
64680
64681     mpc83xx: Reduce the latency of DDR
64682
64683     Reduce the AL from 2 to 1 clock to improve the performance.
64684
64685     Signed-off-by: Dave Liu <daveliu@freescale.com>
64686     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64687
64688 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
64689 Author: Dave Liu <r63238@freescale.com>
64690 Date:   Thu Jan 10 23:06:05 2008 +0800
64691
64692     mpc83xx: Fix the wrong definition of MPC8315E
64693
64694     According to the latest user manual of MPC8315E,
64695     1) The SVCOD of HRCWL is different than 837x
64696     2) The SCCR has changes
64697
64698     Signed-off-by: Dave Liu <daveliu@freescale.com>
64699     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64700
64701 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
64702 Author: Dave Liu <r63238@freescale.com>
64703 Date:   Thu Jan 10 23:05:00 2008 +0800
64704
64705     mpc83xx: Fix the typo in mpc83xx.h
64706
64707     The SPCR about TSEC priority is wrong.
64708
64709     Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
64710     Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
64711     Signed-off-by: Dave Liu <daveliu@freescale.com>
64712     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64713
64714 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
64715 Author: Dave Liu <r63238@freescale.com>
64716 Date:   Thu Jan 10 23:04:13 2008 +0800
64717
64718     mpc83xx: Fix the typo in global data struct
64719
64720     Fix the typo in global_data.h
64721
64722     Signed-off-by: Dave Liu <daveliu@freescale.com>
64723     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64724
64725 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
64726 Author: Dave Liu <r63238@freescale.com>
64727 Date:   Thu Jan 10 23:03:03 2008 +0800
64728
64729     mpc83xx: Remove cache config from config.h
64730
64731     clean up the cache config from configs.h of board
64732
64733     Signed-off-by: Dave Liu <daveliu@freescale.com>
64734     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64735
64736 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
64737 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
64738 Date:   Wed Jan 9 20:57:47 2008 +0300
64739
64740     mpc83xx: add support for the MPC8360E-RDK
64741
64742     This is MPC8360E based board with:
64743     - 256MB fixed SDRAM;
64744     - 8MB Intel Strata NOR flash;
64745     - StMICRO 64MiB NAND flash;
64746     - two 10/100/1000 ethernet ports connected via Broadcom
64747       BCM5481 PHYs;
64748     - two 10/100 ethernet ports connected via National
64749       DP83848 PHYs;
64750     - one PCI and one miniPCI slots;
64751     - four serial ports (two NS16550-compatible, two UCCs);
64752     - four USB ports working through MPC8360E "FHCI" USB controller;
64753     - Fujitsu MB86277 graphics controller;
64754     - Analog to Digital Converter/Touchscreen controller, AD7843
64755       connected to SPI.
64756
64757     Features not supported in this patch are:
64758     - StMICRO 64MiB NAND flash (patch sent);
64759     - MINT framebuffer initialization (patch is pending);
64760     - Fetching production information from the EEPROM via I2C;
64761     - FHCI USB;
64762     - Two slow UCCs used as RS-485 UARTs.
64763
64764     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
64765     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64766
64767 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
64768 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
64769 Date:   Wed Jan 9 20:57:40 2008 +0300
64770
64771     mpc83xx: add "fsl, qe" compatible fixups
64772
64773     New device trees will use "fsl,qe" compatible properties.
64774
64775     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
64776     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64777
64778 commit 977b57583a7c34010e566a09a679ec3c1836f996
64779 Author: Kim Phillips <kim.phillips@freescale.com>
64780 Date:   Wed Jan 9 15:24:06 2008 -0600
64781
64782     mpc83xx: add missing CONFIG_HAS_ETH0 defines
64783
64784     the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
64785     is defined; add the define to the missing board configs.
64786
64787     Thanks to Emilian Medve for finding this.
64788
64789     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64790
64791 commit b830b7f1635984ba607219fcbd78597c28eeb529
64792 Author: Becky Bruce <bgill@freescale.com>
64793 Date:   Thu Jan 10 14:00:28 2008 -0600
64794
64795     86xx: Support 2GB DIMMs
64796
64797     Configure the number of bits used to address the banks inside the SDRAM
64798     device.  The default register value of 0 means 2 bits to address 4 banks.
64799     Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
64800
64801     Signed-off-by: Becky Bruce <bgill@freescale.com>
64802
64803 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
64804 Author: Niklaus Giger <niklausgiger@gmx.ch>
64805 Date:   Thu Jan 10 18:50:33 2008 +0100
64806
64807     ppc4xx: Make Sequoia boot vxWorks
64808
64809     vxWorks expects in
64810     TLB 0 a entry for the Machine Check interrupt
64811     TLB 1 a entry for the RAM
64812     TLB 2 a entry for the EBC
64813     TLB 3 a entry for the boot flash
64814
64815     After changing the baudrate to 9600 I had no problems to boot the
64816     vxWorks image as distributed by WindRiver (Revision 2.0/1 from
64817     June 18, 2007)
64818
64819     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
64820
64821 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
64822 Author: Larry Johnson <lrj@arlinx.com>
64823 Date:   Wed Jan 9 23:10:27 2008 -0500
64824
64825     ppc4xx: Fix dflush() to restore DVLIM register
64826
64827     Signed-off-by: Larry Johnson <lrj@acm.org>
64828
64829 commit 252f60b068d1f94190b5bcfda169db582387e15e
64830 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64831 Date:   Thu Jan 10 03:52:44 2008 -0500
64832
64833     Nios2: remove common/cmd_bdinfo.c unused variable.
64834
64835     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64836     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
64837
64838 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
64839 Author: Ben Warren <biggerbadderben@gmail.com>
64840 Date:   Wed Jan 9 18:15:53 2008 -0500
64841
64842     Fix Ethernet init() return codes
64843
64844     Change return values of init() functions in all Ethernet drivers to conform
64845     to the following:
64846
64847         >=0: Success
64848         <0:  Failure
64849
64850     All drivers going forward should return 0 on success.  Current drivers that
64851     return 1 on success were left as-is to minimize changes.
64852
64853     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
64854     Acked-by: Stefan Roese <sr@denx.de>
64855     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64856     Acked-by: Kim Phillips <kim.phillips@freescale.com>
64857     Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
64858     Acked-By: Timur Tabi <timur@freescale.com>
64859
64860 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
64861 Author: Wolfgang Denk <wd@denx.de>
64862 Date:   Thu Jan 10 00:55:14 2008 +0100
64863
64864     Coding Style cleanup; update CHANGELOG
64865
64866     Signed-off-by: Wolfgang Denk <wd@denx.de>
64867
64868 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
64869 Author: Kim Phillips <kim.phillips@freescale.com>
64870 Date:   Wed Jan 9 16:56:54 2008 -0600
64871
64872     Add QE brg freq and correct qe bus freq fdt update code
64873
64874     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64875     Signed-off-by: Andy Fleming <afleming@freescale.com>
64876
64877 commit 890dfef06c2d169a3356359596890754dfb8ee1c
64878 Author: Andy Fleming <afleming@freescale.com>
64879 Date:   Wed Jan 9 16:34:51 2008 -0600
64880
64881     Remove cache config from ATUM8548 and sbc8548 configs
64882
64883     These boards weren't updated by Kumar's config patch because they
64884     weren't in the tree, yet.
64885
64886     Signed-off-by: Andy Fleming <afleming@freescale.com>
64887
64888 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
64889 Author: Timur Tabi <timur@freescale.com>
64890 Date:   Mon Jan 7 13:31:19 2008 -0600
64891
64892     85xx: add ability to upload QE firmware
64893
64894     Define the layout of a binary blob that contains a QE firmware and instructions
64895     on how to upload it.  Add function qe_upload_firmware() to parse the blob and
64896     perform the actual upload.  Add command-line command "qe fw" to take a firmware
64897     blob in memory and upload it.  Update ft_cpu_setup() on 85xx to create the
64898     'firmware' device tree node if U-Boot has uploaded a firmware.  Fully define
64899     'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
64900
64901     Signed-off-by: Timur Tabi <timur@freescale.com>
64902
64903 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
64904 Author: Kumar Gala <galak@kernel.crashing.org>
64905 Date:   Tue Jan 8 01:22:21 2008 -0600
64906
64907     85xx: Remove cache config from configs.h
64908
64909     Either use the standard defines in asm/cache.h or grab the information
64910     at runtime from the L1CFG SPR.
64911
64912     Also, minor cleanup in cache.h to make the code a bit more readable.
64913
64914     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64915
64916 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
64917 Author: robert lazarski <robertlazarski@gmail.com>
64918 Date:   Fri Dec 21 10:39:27 2007 -0500
64919
64920     mpc85xx: Add support for ATUM8548 (updated)
64921
64922     Add support for Instituto Atlantico's ATUM8548 board
64923
64924     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
64925     Signed-off-by: Andy Fleming <afleming@freescale.com>
64926
64927 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
64928 Author: robert lazarski <robertlazarski@gmail.com>
64929 Date:   Fri Dec 21 10:36:37 2007 -0500
64930
64931     mpc85xx: Add support for ATUM8548 (updated)
64932
64933     Add support for Instituto Atlantico's ATUM8548 board
64934
64935     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
64936
64937 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
64938 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
64939 Date:   Thu Dec 13 06:45:14 2007 -0600
64940
64941     mpc85xx: Add support for SBC8548 (updated)
64942
64943     Add support for Wind River's SBC8548 reference board.
64944
64945     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
64946
64947 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
64948 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
64949 Date:   Thu Dec 13 06:45:08 2007 -0600
64950
64951     mpc85xx: Add support for SBC8548 (updated)
64952
64953     Add support for Wind River's SBC8548 reference board.
64954
64955     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
64956     Signed-off by: Andy Fleming <afleming@freescale.com>
64957
64958 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
64959 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
64960 Date:   Mon Oct 22 19:58:19 2007 +0400
64961
64962     MPC8568E-MDS: set up QE pario for UART1
64963
64964     To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
64965     be set up appropriately.
64966
64967     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
64968
64969 commit ad162249cb371e9e38971676f09be791e5f3cf4a
64970 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
64971 Date:   Mon Oct 22 18:12:46 2007 +0400
64972
64973     MPC8568E-MDS: reset UCCs to use them reliably
64974
64975     In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
64976     UCCs.
64977
64978     p.s Similar code exists in the Linux kernel board file (for capability
64979     reasons with older U-Boots), but should be removed some day.
64980
64981     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
64982
64983 commit 2146cf56821c3364786ca94a7306008c5824b238
64984 Author: Kumar Gala <galak@kernel.crashing.org>
64985 Date:   Wed Dec 19 01:18:15 2007 -0600
64986
64987     Reworked FSL Book-E TLB macros to be more readable
64988
64989     The old macros made it difficult to know what WIMGE and perm bits
64990     were set for a TLB entry.  Actually use the bit masks for these items
64991     since they are only a single bit.
64992
64993     Also moved the macros into mmu.h out of e500.h since they aren't specific
64994     to e500.
64995
64996     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64997
64998 commit 1d47273d46925929f8f2c1913cd96d7257aade88
64999 Author: Kumar Gala <galak@kernel.crashing.org>
65000 Date:   Tue Dec 18 23:21:51 2007 -0600
65001
65002     Use FSL Book-E MMU macros from Linux Kernel
65003
65004     Grab the FSL Book-E MAS register macros from Linux.  Also added
65005     defines for page sizes up to 4TB and removed SHAREN since it doesnt
65006     really exist.
65007
65008     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
65009
65010 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
65011 Author: Andy Fleming <afleming@freescale.com>
65012 Date:   Wed Jan 9 13:51:32 2008 -0600
65013
65014     Fix my own merge stupidity
65015
65016     Way back in August I merged Heiko's patch:
65017     566a494f592: [PCS440EP] upgrade the PCS440EP board
65018
65019     with Jon's CONFIG_COMMANDS patches.
65020
65021     This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
65022
65023     However, in the process, I left out some of Heiko's good changes.
65024
65025     Now Heiko's and Jon's patches are properly merged in fat_register_device()
65026
65027     Signed-off-by: Andy Fleming <afleming@freescale.com>
65028
65029 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
65030 Author: James Yang <James.Yang@freescale.com>
65031 Date:   Wed Jan 9 11:17:49 2008 -0600
65032
65033     Expose parse_line() globally.
65034
65035     Add new function readline_into_buffer() that allows the
65036     output of readline to be put into a pointer to char buffer.
65037
65038     This refactoring allows other functions besides the
65039     main command loop to also use the same input mechanism.
65040
65041     Signed-off-by: James Yang <James.Yang@freescale.com>
65042     Acked-by: Jon Loeliger <jdl@freescale.com>
65043
65044 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
65045 Author: Guennadi Liakhovetski <lg@denx.de>
65046 Date:   Wed Jan 9 01:15:25 2008 +0100
65047
65048     trivial: fix consequences of a bad merge
65049
65050     Fix what looks like a merge artifact.
65051
65052     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
65053
65054 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
65055 Author: Zhang Wei <wei.zhang@freescale.com>
65056 Date:   Thu Jan 3 10:51:15 2008 +0800
65057
65058     Add Ctrl combo key support to usb keyboard driver.
65059
65060     Ctrl combo key support is added, which is very useful to input Ctrl-C
65061     for interrupt current job.
65062     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
65063     key input when tstc() is called.
65064
65065     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
65066
65067 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
65068 Author: Marcel Ziswiler <marcel@ziswiler.com>
65069 Date:   Sun Dec 30 03:30:56 2007 +0100
65070
65071     fix various comments
65072
65073     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
65074
65075 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
65076 Author: Marcel Ziswiler <marcel@ziswiler.com>
65077 Date:   Sun Dec 30 03:30:46 2007 +0100
65078
65079     fix comments with new drivers organization
65080
65081     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
65082
65083 commit a9b410dc7d2a4721c408b13abfc037988150f145
65084 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65085 Date:   Fri Dec 28 12:50:59 2007 +0900
65086
65087     Remove the obsolete terse version of do_mii()
65088
65089     We now have more useful version of do_mii() and everybody use it.
65090     Gerald Van Baren says:
65091
65092     > When I originally wrote the mii command 6(!) years ago, I wrote a
65093     > verbose version that printed human readable decomposition of the flags,
65094     > etc., and a terse one that didn't print as much stuff and thus had a
65095     > smaller memory footprint.
65096     >
65097     > It sounds like the terse version has withered and died, apparently
65098     > people are only using the verbose version (which is very understandable,
65099     > I do myself).
65100
65101     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65102     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
65103
65104 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
65105 Author: Mike Frysinger <vapier@gentoo.org>
65106 Date:   Thu Dec 27 13:42:56 2007 -0500
65107
65108     Do not reference sha1.c when building mkimage.
65109
65110     remove sha1.o from mkimage linking since it isn't actually used.
65111
65112     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
65113
65114 commit b9173af73e524d37c812f210173cf83385c5171a
65115 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65116 Date:   Thu Dec 27 15:39:54 2007 +0900
65117
65118     common/cmd_mii.c: Add sanity argc check
65119
65120     If type mii command without arguments, we suffer from uninitialized argv[]
65121     entries; for example we MIPS get stuck by TLB error.
65122
65123     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65124
65125 commit 500856eb1707ed17d9204baa61dd59948d3b2899
65126 Author: Rafal Jaworowski <raj@semihalf.com>
65127 Date:   Wed Jan 9 19:39:36 2008 +0100
65128
65129     API for external applications.
65130
65131     This is an API for external (standalone) applications running on top of
65132     U-Boot, and is meant to be more extensible and robust than the existing
65133     jumptable mechanism. It is similar to UNIX syscall approach. See api/README
65134     for more details.
65135
65136     Included is the demo application using this new framework (api_examples).
65137
65138     Please note this is still an experimental feature, and is turned off by
65139     default.
65140
65141     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
65142
65143 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
65144 Author: Jon Loeliger <jdl@freescale.com>
65145 Date:   Wed Jan 9 12:14:55 2008 -0600
65146
65147     86xx: Remove cache config from configs.h
65148
65149     Just use the standard defines in asm/cache.h.
65150
65151     Signed-off-by: Jon Loeliger <jdl@freescale.com>
65152
65153 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
65154 Author: Rafal Jaworowski <raj@semihalf.com>
65155 Date:   Wed Jan 9 18:05:27 2008 +0100
65156
65157     Globalize envmatch()
65158
65159     The newly introduced API (routines related to env vars) will need to call
65160     it.
65161
65162     Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
65163
65164 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
65165 Author: Jon Loeliger <jdl@freescale.com>
65166 Date:   Fri Jan 4 12:07:27 2008 -0600
65167
65168     Convert MPC8610HPCD to use libfdt.
65169
65170     Assumes the presence of the aliases node in the DTS to
65171     locate the pci and serial nodes for fixups.
65172
65173     Use consistent fdtaddr and fdtfile in environment variables.
65174
65175     Signed-off-by: Jon Loeliger <jdl@freescale.com>
65176
65177 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
65178 Author: Jon Loeliger <jdl@freescale.com>
65179 Date:   Fri Jan 4 11:58:23 2008 -0600
65180
65181     8610: Fix lingering compile warnings.
65182
65183     Turn off DEBUG.
65184
65185     Signed-off-by: Jon Loeliger <jdl@freescale.com>
65186
65187 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
65188 Author: Wolfgang Denk <wd@denx.de>
65189 Date:   Wed Jan 9 15:14:46 2008 +0100
65190
65191     Coding Style cleanup, update CHANGELOG
65192
65193     Signed-off-by: Wolfgang Denk <wd@denx.de>
65194
65195 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
65196 Author: Mike Frysinger <vapier@gentoo.org>
65197 Date:   Tue Dec 18 04:29:55 2007 -0500
65198
65199     fix easylogo on big endian dev systems
65200
65201     didnt realize how out of shape easylogo actually was until i tried using it.
65202     this patch does byte swapping as need be on the input tga header since the tga
65203     is in little endian but the host could just as well be big endian.  i didnt
65204     bother using bswap macros or such stuff from system headers as nothing in
65205     POSIX dictates byte swapping functionality.
65206
65207     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
65208
65209 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
65210 Author: Mike Frysinger <vapier@gentoo.org>
65211 Date:   Tue Dec 18 03:23:25 2007 -0500
65212
65213     cleanup easylogo
65214
65215     - make the Makefile not suck
65216     - include proper headers for prototypes
65217     - fix obvious broken handling of strchr() when handling '.' in filenames
65218
65219     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
65220
65221 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
65222 Author: raptorbrino@aim.com <raptorbrino@aim.com>
65223 Date:   Thu Dec 13 21:23:28 2007 -0500
65224
65225     Fix build problems under Cygwin
65226
65227     This patch allows u-boot to build without error in a cygwin
65228     environment.  Cygwin does not define __u64 in it's
65229     include/asm/types.h file.  The -idirafter flag in the u-boot
65230     build causes the inclusion of the cygwin types.h file as opposed
65231     to u-bot/include/asm/types.h file which does define __u64.
65232     Subsequently, sha1.c compile fails due to unknown symbol.
65233
65234     Signed-off-by: Brian Miller <raptorbrino@netscape.net>
65235
65236 commit 43ef1c381f9195504a2488f5cb909227eb97d475
65237 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
65238 Date:   Fri Nov 30 17:29:59 2007 +0100
65239
65240     cmd_bmp: Add support for displaying gzip compressed bmps
65241
65242     The existing code can show information about a gzip compressed BMP
65243     image, but can't actually display it.
65244
65245     Therefore, move the decompression code out of bmp_info() and use it in
65246     bmp_display() as well in order to display a compressed BMP image.
65247
65248     Also, clean things up a bit and fix a memory leak while we're at it.
65249
65250     [hskinnemoen@atmel.com: a bit of refactoring]
65251     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65252
65253 commit d197ffd8172c6fdef38733424640a9a47295d6e9
65254 Author: Guennadi Liakhovetski <lg@denx.de>
65255 Date:   Thu Nov 29 21:15:56 2007 +0100
65256
65257     Fix and optimize MII operations on FEC (MPC8xx) controllers
65258
65259     This patch fixes several issues at least on a MPC885 based system with two
65260     FEC interfaces used in MII mode.
65261
65262     1. PHY discovery should first read PHY_PHYIDR2 register and only then
65263        PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
65264        otherwise the values read are wrong. Also notice, that PHY discovery
65265        cannot work on MPC88x / MPC87x in setups with both FECs active at all
65266        in its present form, because for both interfaces the registers from FEC
65267        1 are used to communicate over MII.
65268
65269     2. Remove code duplication for resetting the FEC by isolating it into a
65270        separate function.
65271
65272     3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
65273
65274     4. Optimize mii_init() to only reset the FEC 1 controller once.
65275
65276     5. Fix a typo in mii_init() using index i instead of j thus potentially
65277        leading to unpredictable results.
65278
65279     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
65280
65281 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
65282 Author: Guennadi Liakhovetski <lg@denx.de>
65283 Date:   Tue Nov 20 13:14:20 2007 +0100
65284
65285     Fix endianness conversions in rtl8169 driver
65286
65287     It is unclear on what platforms this driver has been tested, since
65288     noone up to now defines CONFIG_RTL8169 in the board configuration
65289     header. Now it has been fixed for a big-endian mpc8241 based
65290     linkstation platform. This patch presents the necessary endianness
65291     conversion fixes.
65292
65293     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
65294
65295 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
65296 Author: Zhang Wei <wei.zhang@freescale.com>
65297 Date:   Thu Jan 3 10:51:15 2008 +0800
65298
65299     Add Ctrl combo key support to usb keyboard driver.
65300
65301     Ctrl combo key support is added, which is very useful to input Ctrl-C
65302     for interrupt current job.
65303     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
65304     key input when tstc() is called.
65305
65306     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
65307     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
65308
65309 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
65310 Author: Wolfgang Denk <wd@denx.de>
65311 Date:   Wed Jan 9 13:43:38 2008 +0100
65312
65313     Coding Style clenaup; update CHANGELOG
65314
65315     Signed-off-by: Wolfgang Denk <wd@denx.de>
65316
65317 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
65318 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65319 Date:   Thu Dec 27 17:13:11 2007 +0100
65320
65321     Remove bit swapping in Xilinx Spartan bitfile loading
65322
65323     This patch removes the unnecessary bit swapping when
65324     booting .bit files with the 'fpga loadb' command.
65325
65326     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65327
65328 commit 437fc7327f0611f82937858f2d80e4cd61b40984
65329 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65330 Date:   Thu Dec 27 17:13:05 2007 +0100
65331
65332     Fix MSB check in Xilinx Spartan slave serial mode
65333
65334     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65335
65336 commit 3bff4ffa33729a42645e328a21e8d16488872958
65337 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65338 Date:   Thu Dec 27 17:12:56 2007 +0100
65339
65340     Add new Xilinx Spartan FPGA types
65341
65342     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65343
65344 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
65345 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65346 Date:   Thu Dec 27 17:12:43 2007 +0100
65347
65348     Add pre and post configuration callbacks for Spartan FPGAs
65349
65350     This patch adds a post configuration callback for Spartan2/3 FPGAs.
65351     pre and post configuration callback are now optional and
65352     not called when the function pointer is set to NULL.
65353
65354     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65355
65356 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
65357 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65358 Date:   Thu Dec 27 17:12:34 2007 +0100
65359
65360     Improve configuration of FPGA subsystem
65361
65362     This patch removes the FPGA subsystem configuration through
65363     the CONFIG_FPGA bitmask configuration option.
65364
65365     See README for the new options:
65366
65367         CONFIG_FPGA,
65368         CONFIG_FPGA_<vendor>,
65369         CONFIG_FPGA_<family>
65370
65371     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65372
65373 commit 95c6bc7d4a3588b452baca610f8c795a83630477
65374 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65375 Date:   Thu Dec 27 16:55:17 2007 +0100
65376
65377     Add Epson RX8025 RTC support
65378
65379     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65380
65381 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
65382 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65383 Date:   Thu Dec 27 16:57:23 2007 +0100
65384
65385     serial: Make default_serial_console() a weak function
65386
65387     With this patch it is possible to reimplement default_serial_console()
65388     in board specific code. This will be done in the upcomming PMC440
65389     U-Boot port. This also allows the lwmon board maintainer to
65390     remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
65391
65392     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65393
65394 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
65395 Author: Harald Welte <laforge@openmoko.org>
65396 Date:   Wed Dec 19 14:14:47 2007 +0100
65397
65398     add 'terminal program' functionality
65399
65400     This patch adds a 'cu' like serial terminal command to u-boot
65401     using which you can access other serial ports from the system console.
65402
65403     OpenMoko uses this in their Neo1973 phones to get access to the GSM
65404     Modem and GPS chip from the bootloader.
65405
65406     Signed-off-by: Harald Welte <laforge@openmoko.org>
65407
65408 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
65409 Author: Harald Welte <laforge@openmoko.org>
65410 Date:   Wed Dec 19 14:12:53 2007 +0100
65411
65412     Re-introduce the 'nand read.oob' and 'nand write.oob' commands
65413     that used to exist with the legacy NAND code
65414
65415     Signed-off-by: Harald Welte <laforge@openmoko.org>
65416
65417 commit f540c42d9564854b19ce9bbb70affe172529fe70
65418 Author: Harald Welte <laforge@openmoko.org>
65419 Date:   Wed Dec 19 14:09:58 2007 +0100
65420
65421     Fix building with CRAMFS but not JFFS2 support
65422
65423     Signed-off-by: Harald Welte <laforge@openmoko.org>
65424
65425 commit 23d0baf967fecdaf1804f045f6339337c5607eec
65426 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65427 Date:   Sat Dec 22 15:52:58 2007 +0100
65428
65429     Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
65430
65431     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
65432     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65433
65434 commit 23776ff292966a85d811126933830bed48211826
65435 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65436 Date:   Tue Dec 11 10:53:12 2007 +0100
65437
65438     ARM: support board-specific ethernet PHY init
65439
65440     Add until the new phylib will be arrived
65441
65442     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65443
65444 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
65445 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65446 Date:   Sat Dec 8 16:34:08 2007 +0100
65447
65448     IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
65449
65450     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65451
65452 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
65453 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65454 Date:   Sun Dec 9 11:01:10 2007 +0100
65455
65456     Add missing file in gitignore and comments
65457
65458     based on Linux source tree's .gitignore files
65459
65460     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65461
65462 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
65463 Author: Wolfgang Denk <wd@denx.de>
65464 Date:   Wed Jan 9 11:36:21 2008 +0100
65465
65466     Coding Style cleanup, update CHANGELOG
65467
65468     Signed-off-by: Wolfgang Denk <wd@denx.de>
65469
65470 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
65471 Author: Stefan Roese <sr@denx.de>
65472 Date:   Wed Jan 9 10:38:58 2008 +0100
65473
65474     POST: Execute SPR test after relocation
65475
65476     On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
65477     self modifying code and this doesn't work with stack in d-cache, since
65478     I can't move the code from d-cache to i-cache. We move the SPR test to
65479     be executed a little later, after relocation. Then stack is located in
65480     SDRAM and this self-modifying code is no problem anymore.
65481
65482     Signed-off-by: Stefan Roese <sr@denx.de>
65483
65484 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
65485 Author: Stefan Roese <sr@denx.de>
65486 Date:   Wed Jan 9 10:28:20 2008 +0100
65487
65488     ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
65489
65490     This patch configures the LWMON5 port to use d-cache as init-ram and
65491     the unused GPT0_COMP6 as POST WORD storage.
65492
65493     Signed-off-by: Stefan Roese <sr@denx.de>
65494
65495 commit 1754f50b710194f886b6f2831803d8960171a14d
65496 Author: Stefan Roese <sr@denx.de>
65497 Date:   Wed Jan 9 10:25:46 2008 +0100
65498
65499     ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
65500
65501     The privious 4xx POST implementation only supported storing the POST
65502     WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
65503     we need to store the POST WORD in some other non volatile location.
65504     This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
65505     a location.
65506
65507     Signed-off-by: Stefan Roese <sr@denx.de>
65508
65509 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
65510 Author: Stefan Roese <sr@denx.de>
65511 Date:   Wed Jan 9 10:23:16 2008 +0100
65512
65513     ppc4xx: Add 44x cache locking to better support init-ram in d-cache
65514
65515     This patch adds support for locking the init-ram/stack in d-cache,
65516     so that other regions may use d-cache as well
65517
65518     Note, that this current implementation locks exactly 4k of d-cache,
65519     so please make sure that you don't define a bigger init-ram area. Take
65520     a look at the lwmon5 440EPx implementation as a reference.
65521
65522     Signed-off-by: Stefan Roese <sr@denx.de>
65523
65524 commit 0ddb89601a8d29e808db450366752ffdc6267c53
65525 Author: Wolfgang Denk <wd@denx.de>
65526 Date:   Wed Jan 9 10:16:33 2008 +0100
65527
65528     Fix memset bug in ext2fs_read_file()
65529
65530     ext2fs_read_file() had the function arguments swapped.
65531
65532     Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
65533
65534     Signed-off-by: Wolfgang Denk <wd@denx.de>
65535
65536 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
65537 Author: Markus Klotzbücher <mk@denx.de>
65538 Date:   Tue Jan 5 08:17:15 1988 +0100
65539
65540     Fix problems with usb storage devices on MPC5200 /TQM5200
65541
65542     The MPC5200 OHCI controller operates in big endian, so
65543     CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
65544
65545     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
65546
65547 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
65548 Author: Wolfgang Denk <wd@denx.de>
65549 Date:   Tue Jan 8 22:58:27 2008 +0100
65550
65551     Fix compile problem with new env code.
65552
65553     Signed-off-by: Wolfgang Denk <wd@denx.de>
65554
65555 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
65556 Author: Markus Klotzbücher <mk@denx.de>
65557 Date:   Tue Nov 27 10:23:20 2007 +0100
65558
65559     tools: fix fw_printenv tool to compile again
65560
65561     This patch updates the fw_printenv/fw_setenv userspace tool to include
65562     the correct MTD header in order to compile against current kernel
65563     headers. Backward compatibility is preserved by introducing an option
65564     MTD_VERSION which can be set to "old" for compilation using the old MTD
65565     headers. Along with this a number of warnings are fixed.
65566
65567     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
65568
65569 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
65570 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65571 Date:   Tue Jan 8 15:40:09 2008 +0100
65572
65573     ppc4xx: assign PCI interrupts on seuqoia boards
65574
65575     Some operating systems rely on assigned PCI interrupts.
65576
65577     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65578
65579 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
65580 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65581 Date:   Tue Jan 8 15:50:49 2008 +0100
65582
65583     ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
65584
65585     This patch allows the use of 4xx interrupt vector number defines
65586     in board specific code outside cpu/ppc4xx.
65587
65588     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65589
65590 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
65591 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65592 Date:   Tue Jan 8 15:39:01 2008 +0100
65593
65594     ppc4xx: Fix UIC2 vector number base
65595
65596     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65597
65598 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
65599 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65600 Date:   Tue Jan 8 12:49:58 2008 +0100
65601
65602     ppc4xx: Update PLB/PCI divider for PMC440 board
65603
65604     This patch updates the PLB/PCI divider when running at
65605     400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
65606
65607     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65608
65609 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
65610 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65611 Date:   Tue Jan 8 11:13:09 2008 +0100
65612
65613     ppc4xx: Disable error message when no NAND chip is installed on PMC440
65614
65615     Add CFG_NAND_QUIET_TEST option to disable error message when
65616     no NAND chip is installed on PMC440 boards.
65617
65618     Disable a couple of config defines that are only used for NAND_U_BOOT.
65619
65620     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65621
65622 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
65623 Author: Wolfgang Denk <wd@denx.de>
65624 Date:   Tue Jan 8 22:58:27 2008 +0100
65625
65626     Fix compile problem with new env code.
65627
65628     Signed-off-by: Wolfgang Denk <wd@denx.de>
65629
65630 commit 6de66b35426312a21174a9bf0576a094e2904bea
65631 Author: Markus Klotzbücher <mk@denx.de>
65632 Date:   Tue Nov 27 10:23:20 2007 +0100
65633
65634     tools: fix fw_printenv tool to compile again
65635
65636     This patch updates the fw_printenv/fw_setenv userspace tool to include
65637     the correct MTD header in order to compile against current kernel
65638     headers. Backward compatibility is preserved by introducing an option
65639     MTD_VERSION which can be set to "old" for compilation using the old MTD
65640     headers. Along with this a number of warnings are fixed.
65641
65642     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
65643
65644 commit ad3006fe7e84667021753b74247b0bafd97ba35f
65645 Author: Gerald Van Baren <vanbaren@cideas.com>
65646 Date:   Mon Jan 7 23:47:32 2008 -0500
65647
65648     LIBFDT: use memmove() instead of memcpy()
65649
65650     This is partial patch from the DTC/libfdt
65651     commit  67b6b33b9b413a450a72135b5dc59c0a1e33e647
65652     Author: David Gibson <david@gibson.dropbear.id.au>
65653     Date:   Wed Nov 21 11:56:14 2007 +1100
65654
65655         The patch also fixes one genuine bug caught by valgrind -
65656         _packblocks() in fdt_rw.c was using memcpy() where it should have been
65657         using memmove().
65658
65659     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
65660
65661 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
65662 Author: David Gibson <david@gibson.dropbear.id.au>
65663 Date:   Mon Dec 17 14:42:07 2007 +1100
65664
65665     libfdt: Add more documentation (patch the seventh)
65666
65667     This patch adds more documenting comments to libfdt.h.  Specifically,
65668     these document the read/write functions (not including fdt_open_into()
65669     and fdt_pack(), for now).
65670
65671     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
65672
65673 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
65674 Author: David Gibson <david@gibson.dropbear.id.au>
65675 Date:   Mon Dec 17 14:41:52 2007 +1100
65676
65677     libfdt: Add more documentation (patch the sixth)
65678
65679     This patch adds some more documenting comments to libfdt.h.
65680     Specifically this documents all the write-in-place functions.
65681
65682     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
65683
65684 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
65685 Author: Gerald Van Baren <vanbaren@cideas.com>
65686 Date:   Sat Dec 29 22:45:27 2007 -0500
65687
65688     Fine grained per property /chosen updating.
65689
65690     Implement a suggestion by Scott Wood to make the /chosen handling fine
65691     grained.  Don't overwrite pre-existing properties on a per-property basis,
65692     so if /chosen exists but a necessary /chosen/property doesn't, it gets
65693     created.  If a /chosen property exists, it is NOT overwritten unless the
65694     "force" flag is true.
65695
65696     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
65697
65698 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
65699 Author: Gerald Van Baren <vanbaren@cideas.com>
65700 Date:   Sat Jan 5 15:33:29 2008 -0500
65701
65702     Improve the FDT help message.
65703
65704     Add a note that "fdt copy" makes the new address active.
65705     Remove most of the extra hints at the end of the fdt help.
65706
65707     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
65708
65709 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
65710 Author: Gerald Van Baren <vanbaren@cideas.com>
65711 Date:   Sat Jan 5 14:52:04 2008 -0500
65712
65713     Support setting FDT properties with optional values.
65714
65715     Fix a bug found and documented by Bartlomiej Sieka where the optional
65716     value on "fdt set <path> <prop> [<val>]" wasn't optional.
65717
65718     => fdt mknode / testnode
65719     => fdt print /testnode
65720     testnode {
65721     };
65722     => fdt set /testnode testprop
65723     => fdt print /testnode
65724     testnode {
65725             testprop;
65726     };
65727
65728     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
65729
65730 commit 22fb2246df91bfc840d87f0c5910818bad55577a
65731 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65732 Date:   Fri Dec 28 11:56:30 2007 +0100
65733
65734     Add fdt_find_and_setprop() to fdt_support.h
65735
65736     fdt_find_and_setprop() is used by several 4xx boards and it's
65737     missing in the appropriate header. This patch eliminates a
65738     warning when building U-Boot for such boards.
65739
65740     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65741     Acked-by: Stefan Roese <sr@denx.de>
65742
65743 commit 802b769bac17b0560d3535a42c502469ee190cd1
65744 Author: Stefan Roese <sr@denx.de>
65745 Date:   Tue Jan 8 18:39:30 2008 +0100
65746
65747     ppc4xx: Return 0 on success in 4xx ethernet driver
65748
65749     Signed-off-by: Stefan Roese <sr@denx.de>
65750
65751 commit 6775c68683a53c7abc778774641aac6f833a2cbf
65752 Author: Kim Phillips <kim.phillips@freescale.com>
65753 Date:   Tue Jan 8 09:59:49 2008 -0600
65754
65755     mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
65756
65757     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65758
65759 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
65760 Author: Kim Phillips <kim.phillips@freescale.com>
65761 Date:   Thu Dec 20 16:28:34 2007 -0600
65762
65763     mpc83xx: rm remaining FLAT_TREE code
65764
65765     ..in board pci.c files
65766
65767     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65768
65769 commit b3458d2cd55d01732e30a76d898afd99e871cd67
65770 Author: Kim Phillips <kim.phillips@freescale.com>
65771 Date:   Thu Dec 20 15:57:28 2007 -0600
65772
65773     mpc83xx: remove FLAT_TREE code
65774
65775     need to rm it from pci code, too!
65776
65777     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65778
65779 commit 5b8bc606c61456566af6912f818a153b6b06f242
65780 Author: Kim Phillips <kim.phillips@freescale.com>
65781 Date:   Thu Dec 20 14:09:22 2007 -0600
65782
65783     mpc83xx: convert to using do_fixup_*()
65784
65785     convert to using simpler mpc85xx style fdt update code; streamline by
65786     eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
65787     the old school FLAT_TREE code from 83xx (since the sbc8349 was just
65788     converted over to using libfdt).
65789
65790     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65791
65792 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
65793 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
65794 Date:   Thu Dec 20 12:58:51 2007 -0500
65795
65796     sbc8349: enable libfdt by default on WRS SBC8349 board.
65797
65798     Make libfdt the default for the WRS SBC8349 board.
65799     Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
65800     done for the other 83xx based boards.  Also fix a typo in CONFIG_PCI.
65801
65802     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
65803
65804 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
65805 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
65806 Date:   Thu Dec 20 12:58:16 2007 -0500
65807
65808     sbc8349: migrate board to libfdt
65809
65810     This adds libfdt support code for the Wind River sbc8349 board.
65811
65812     Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
65813     the other Freescale 83xx boards.
65814
65815     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
65816
65817 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
65818 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
65819 Date:   Thu Dec 20 12:56:19 2007 -0500
65820
65821     sbc8349: Remove board specific ECC code
65822
65823     ECC code is now shared for all 83xx boards, so remove board specific one.
65824     See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
65825
65826     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
65827
65828 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
65829 Author: Kim Phillips <kim.phillips@freescale.com>
65830 Date:   Thu Dec 20 01:30:48 2007 -0600
65831
65832     mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
65833
65834     continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
65835
65836     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65837
65838 commit ccf21c311e68d48399eff1e72936052885f6e3f7
65839 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
65840 Date:   Thu Dec 6 16:43:40 2007 +0100
65841
65842     Add support CONFIG_UEC_ETH3 in MPC83xx
65843
65844     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
65845
65846 commit e6af9932d31171e35db880e7b2f29f903b1b7660
65847 Author: Kumar Gala <galak@kernel.crashing.org>
65848 Date:   Mon Nov 26 11:00:54 2007 -0600
65849
65850     Remove CONFIG options related to OF that we dont use
65851
65852     The MPC8360E MDS config defined:
65853         CONFIG_OF_HAS_BD_T
65854         CONFIG_OF_HAS_UBOOT_ENV
65855
65856     Which we don't use or ever needed.  This seems like copy-paste feature creep.
65857
65858     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
65859
65860 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
65861 Author: Kim Phillips <kim.phillips@freescale.com>
65862 Date:   Mon Dec 10 14:16:22 2007 -0600
65863
65864     mpc83xx: supress compiler warning
65865
65866     mpc8360emds.c: In function â€˜ft_board_setup’:
65867     mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
65868     mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
65869
65870     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65871
65872 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
65873 Author: Kim Phillips <kim.phillips@freescale.com>
65874 Date:   Tue Nov 27 14:17:29 2007 -0600
65875
65876     mpc83xx: fix remaining fdt_find_node_by_path references
65877
65878     rename to fdt_path_offset
65879
65880     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65881
65882 commit 921d4b19ad1be704df58725485d9292dc0414adf
65883 Author: Kim Phillips <kim.phillips@freescale.com>
65884 Date:   Mon Nov 19 12:30:09 2007 -0600
65885
65886     mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
65887
65888     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
65889     This change guarantees that the environment will be located on the
65890     first flash sector after the U-Boot image.
65891
65892     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65893
65894 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
65895 Author: Kim Phillips <kim.phillips@freescale.com>
65896 Date:   Fri Nov 9 14:28:08 2007 -0600
65897
65898     mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
65899
65900     u-boot itself uses GMII mode on the 8360.  Fix up UCC phy-connection-type
65901     properties in the device tree so the PHY gets configured for internal delay on
65902     RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
65903
65904     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65905
65906 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
65907 Author: Dave Liu <r63238@freescale.com>
65908 Date:   Tue Sep 18 12:41:15 2007 +0800
65909
65910     mpc83xx: update the CREDITS and MAINTAINERS
65911
65912     update the CREDITS and MAINTAINERS.
65913
65914     Signed-off-by: Dave Liu <daveliu@freescale.com>
65915
65916 commit b21add4b42af7b767448251b599b91066a160e0d
65917 Author: Dave Liu <r63238@freescale.com>
65918 Date:   Tue Sep 18 12:40:21 2007 +0800
65919
65920     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
65921
65922     Add the MAINTAINER and MAKEALL entries for mpc837xemds
65923
65924     Signed-off-by: Dave Liu <daveliu@freescale.com>
65925
65926 commit f8900ce9094c462355eb792eea264ff16ac8fd16
65927 Author: Dave Liu <r63238@freescale.com>
65928 Date:   Tue Sep 18 12:38:53 2007 +0800
65929
65930     mpc83xx: Add the MPC837xEMDS board readme
65931
65932     Add the README.mpc837xemds to /doc
65933
65934     Signed-off-by: Dave Liu <daveliu@freescale.com>
65935
65936 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
65937 Author: Dave Liu <r63238@freescale.com>
65938 Date:   Tue Sep 18 12:37:57 2007 +0800
65939
65940     mpc83xx: Add the support of MPC837xEMDS board
65941
65942     The MPC837xEMDS board support:
65943     * DDR2 400MHz hardcoded and SPD init
65944     * Local bus NOR Flash
65945     * I2C, UART, MII and RTC
65946     * eTSEC RGMII
65947     * PCI host
65948
65949     Signed-off-by: Dave Liu <daveliu@freescale.com>
65950
65951 commit 555da61702771fe0f76f3de23b4e7590f3704161
65952 Author: Dave Liu <r63238@freescale.com>
65953 Date:   Tue Sep 18 12:36:58 2007 +0800
65954
65955     mpc83xx: Add the support of MPC8315E SoC
65956
65957     The MPC8315E SoC including e300c3 core and new IP blocks,
65958     such as TDM, PCI Express and SATA controller.
65959
65960     Signed-off-by: Dave Liu <daveliu@freescale.com>
65961
65962 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
65963 Author: Dave Liu <r63238@freescale.com>
65964 Date:   Tue Sep 18 12:36:11 2007 +0800
65965
65966     mpc83xx: Add the support of MPC837x SoC
65967
65968     The MPC837x SoC including e300c4 core and new IP blocks,
65969     such as SDHC, PCI Express and SATA controller.
65970
65971     Signed-off-by: Dave Liu <daveliu@freescale.com>
65972
65973 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
65974 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
65975 Date:   Wed Nov 14 18:54:53 2007 +0300
65976
65977     MPC8360E-MDS: configure and enable second UART
65978
65979     Despite user manual, BCSR9.7 is negated (high) on HRST, so
65980     UART2 is disabled. Fix that and configure QE pins properly.
65981
65982     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
65983
65984 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
65985 Author: Timur Tabi <timur@freescale.com>
65986 Date:   Mon Nov 5 09:34:06 2007 -0600
65987
65988     83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
65989
65990     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
65991     currently-defined 83xx boards.  This change guarantees that the environment
65992     will be located on the first flash sector after the U-Boot image.
65993
65994     Signed-off-by: Timur Tabi <timur@freescale.com>
65995     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65996
65997 commit e05329516a13616b53240cd85b739217c2bf87f1
65998 Author: Larry Johnson <lrj@acm.org>
65999 Date:   Fri Jan 4 13:27:02 2008 -0500
66000
66001     ppc4xx: Remove weak binding from common Denali data-eye search code
66002
66003     Now that there are no board-specific versions of
66004     "denali_core_search_data_eye()", the weak binding on the common version
66005     can be removed.
66006
66007     Signed-off-by: Larry Johnson <lrj@acm.org>
66008
66009 commit 5ba576c01602fd328800a427964c36a0a05c5dce
66010 Author: Stefan Roese <sr@denx.de>
66011 Date:   Sat Jan 5 09:13:46 2008 +0100
66012
66013     ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
66014
66015     Signed-off-by: Stefan Roese <sr@denx.de>
66016
66017 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
66018 Author: Stefan Roese <sr@denx.de>
66019 Date:   Sat Jan 5 09:12:41 2008 +0100
66020
66021     ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
66022
66023     On Katmai the complete auto-calibration somehow doesn't seem to
66024     produce the best results, meaning optimal values for RQFD/RFFD.
66025     This was discovered by GDA using a high bandwidth scope,
66026     analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
66027     so now on Katmai "only" RFFD is auto-calibrated.
66028
66029     This patch also adds RDCC calibration as mentioned on page 7 of
66030     the AMCC PowerPC440SP/SPe DDR2 application note:
66031     "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
66032
66033     Signed-off-by: Stefan Roese <sr@denx.de>
66034
66035 commit 49db47b8ae6afff2b898be312948ff501357dc80
66036 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66037 Date:   Wed Jan 2 16:48:42 2008 +0100
66038
66039     ppc4xx: Remove sdram.h from PMC440 board
66040
66041     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66042
66043 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
66044 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66045 Date:   Wed Jan 2 16:48:34 2008 +0100
66046
66047     ppc4xx: use common denali core defines and data eye search code for PMC440
66048
66049     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66050
66051 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
66052 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66053 Date:   Wed Jan 2 12:05:14 2008 +0100
66054
66055     ppc4xx: More cleanup for esd's LCD code
66056
66057     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66058
66059 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
66060 Author: Stefan Roese <sr@denx.de>
66061 Date:   Fri Jan 4 12:00:01 2008 +0100
66062
66063     ppc4xx: Fix Sequoia NAND booting target
66064
66065     The Sequoia NAND booting target now uses the recently extracted
66066     cpu/ppc4xx/denali_data_eye.c file too.
66067
66068     Signed-off-by: Stefan Roese <sr@denx.de>
66069
66070 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
66071 Author: Lawrence R. Johnson <lrj@acm.org>
66072 Date:   Thu Jan 3 15:02:02 2008 -0500
66073
66074     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
66075
66076     Signed-off-by: Larry Johnson <lrj@acm.org>
66077
66078 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
66079 Author: Lawrence R. Johnson <lrj@acm.org>
66080 Date:   Fri Jan 4 02:11:56 2008 -0500
66081
66082     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
66083
66084     Note: this patch changes the configuration of some GPIO registers:
66085
66086        Register      Old Value   New Value
66087     ---------------  ----------  ----------
66088     DCR GPIO0_TCR    0x0000000F  0x0000F0CF
66089     DCR GPIO0_TSRH   0x55005000  0x00000000
66090     DCR GPIO1_TCR    0xC2000000  0xE2000000
66091     DCR GPIO1_TSRL   0x0C000000  0x00200000
66092     DCR GPIO1_ISR2L  0x00050000  0x00110000
66093
66094     Signed-off-by: Larry Johnson <lrj@acm.org>
66095
66096 commit 5ab884b254ca2e707ab50545cd705f30108cf491
66097 Author: Lawrence R. Johnson <lrj@acm.org>
66098 Date:   Thu Jan 3 18:54:00 2008 -0500
66099
66100     ppc4xx: Add functionality to GPIO support
66101
66102     This patch makes two additions to GPIO support:
66103
66104     First, it adds function gpio_read_in_bit() to read the a bit from the
66105     GPIO Input Register (GPIOx_IR) in the same way that function
66106     gpio_read_out_bit() reads a bit from the GPIO Output Register
66107     (GPIOx_OR).
66108
66109     Second, it modifies function gpio_set_chip_configuration() to provide
66110     an additional option for configuring the GPIO from the
66111     "CFG_4xx_GPIO_TABLE".
66112
66113     According to the 440EPx User's Manual, when an alternate output is used,
66114     the three-state control is configured in one of two ways, depending on
66115     the particular output.  The first option is to select the corresponding
66116     alternate three-state control in the GPIOx_TRSH/L registers.  The second
66117     option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
66118     the GPIOx_TRSH/L registers, and set the corresponding bit in the
66119     GPIOx_TCR register to enable the output.  For example, the Manual
66120     specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
66121     the alternate three-state control (first option), and specifies
66122     configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
66123     enabled in the GPIOx_TCR register (second option).
66124
66125     Currently, gpio_set_chip_configuration() configures all alternate signal
66126     outputs to use the first option.  This patch allow the second option to
66127     be selected by setting the "out_val" element in the table entry to
66128     "GPIO_OUT_1".  The first option is used when the "out_val" element is
66129     set to "GPIO_OUT_0".  Because "out_val" is not currently used when an
66130     alternate signal is selected, and because all current GPIO tables set
66131     "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
66132     not change any existing configurations.
66133
66134     Signed-off-by: Larry Johnson <lrj@acm.org>
66135
66136 commit 196404cdc1de495d6182e84731c200fc5748df15
66137 Author: Larry Johnson <lrj@arlinx.com>
66138 Date:   Sun Dec 30 01:01:54 2007 -0500
66139
66140     PPC4xx: Remove sdram.h from board/lwmon5
66141
66142     These definitions are now in "include/ppc440.h".
66143
66144     Signed-off-by: Larry Johnson <lrj@acm.org>
66145
66146 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
66147 Author: Larry Johnson <lrj@arlinx.com>
66148 Date:   Sun Dec 30 01:01:32 2007 -0500
66149
66150     PPC4xx: Use common code for LWMON5 board SDRAM support
66151
66152     This patch also modifies the functionality of the code so that the data-eye
66153     search is now done with with the cache disabled.
66154
66155     Signed-off-by: Larry Johnson <lrj@acm.org>
66156
66157 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
66158 Author: Larry Johnson <lrj@arlinx.com>
66159 Date:   Sun Dec 30 01:01:14 2007 -0500
66160
66161     PPC4xx: Remove sdram.h from board/amcc/sequoia
66162
66163     These definitions are now in "include/ppc440.h".
66164
66165     Signed-off-by: Larry Johnson <lrj@acm.org>
66166
66167 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
66168 Author: Larry Johnson <lrj@arlinx.com>
66169 Date:   Sun Dec 30 01:00:50 2007 -0500
66170
66171     PPC4xx: Use common code for Sequoia board SDRAM support
66172
66173     Signed-off-by: Larry Johnson <lrj@acm.org>
66174
66175 commit 8b0c5c127690335758100c25eaec2b84db97c101
66176 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66177 Date:   Thu Dec 27 16:58:41 2007 +0100
66178
66179     net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
66180
66181     When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
66182     networking stack does not automatically switch to
66183     another interface. This patch does not touch the default
66184     behavior.
66185
66186     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66187     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
66188
66189 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
66190 Author: Upakul Barkakaty <upakul@gmail.com>
66191 Date:   Thu Nov 29 12:16:13 2007 +0530
66192
66193     NET: Proper return code handling in eth_init() function in file eth.c
66194
66195     This patch modifies the return code handling in the eth_init()
66196     function, to be compatible with the handling of the return codes in
66197     the other network stack files. It now returns a 0 on Success and -1 on
66198     error.
66199
66200     Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
66201     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
66202
66203 commit 5ca2d0953e4579a80810966cca2077e20d912c97
66204 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
66205 Date:   Mon Nov 19 20:27:04 2007 +0900
66206
66207     net/eth.c: Fix env_enetaddr signed overflow
66208
66209     Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
66210     warned as below:
66211
66212       U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
66213
66214       DRAM:  256 MB
66215       Flash: 32 MB
66216       In:    serial
66217       Out:   serial
66218       Err:   serial
66219       Net:   NEC-Candy
66220       Warning: NEC-Candy MAC addresses don't match:
66221       Address in SROM is         00:00:4C:80:92:A2
66222       Address in environment is  FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
66223
66224     This patch changes env_enetaddr type from `char' to `unsigned char'.
66225
66226     Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
66227     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
66228     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
66229
66230 commit f85b60710571b37293d2233933b76e2aa3db5635
66231 Author: Rafal Jaworowski <raj@semihalf.com>
66232 Date:   Thu Dec 27 18:19:02 2007 +0100
66233
66234     Introduce new eth_receive routine
66235
66236     The purpose of this routine is receiving a single network frame, outside of
66237     U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
66238     U-Boot will let them utilise networking facilities. For sending a raw frame
66239     the already existing eth_send() can be used.
66240
66241     The direct consumer of this routine is the newly introduced API layer for
66242     external applications (enabled with CONFIG_API).
66243
66244     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
66245     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
66246     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
66247
66248 commit 5c740711f0ea5b51414b341b71597c4a0751be74
66249 Author: Jon Loeliger <jdl@freescale.com>
66250 Date:   Thu Jan 3 10:41:04 2008 -0600
66251
66252     8610: Move include of config.h earlier.
66253
66254     Include config.h earlier in the set of #includes
66255     so as to avoid a incidental and duplicate definition
66256     of CFG_CACHELINE_SIZE.
66257
66258     Signed-off-by: Jon Loeliger
66259
66260 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
66261 Author: Jon Loeliger <jdl@freescale.com>
66262 Date:   Tue Dec 4 10:53:34 2007 -0600
66263
66264     Don't slam #undef DEBUG in the 8641HPCN config file.
66265
66266     Doing so prevents it from being individually set
66267     and useful in other files.
66268
66269     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66270
66271 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
66272 Author: Jon Loeliger <jdl@freescale.com>
66273 Date:   Wed Nov 28 14:47:18 2007 -0600
66274
66275     Convert MPC8641HPCN to use libfdt.
66276
66277     Assumes the presence of the aliases node in the DTS to
66278     locate the ethernet, pci and serial nodes for fixups.
66279
66280     Use consistent fdtaddr and fdtfile in environment variables.
66281
66282     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66283
66284 commit ce37422d0002e10490e268392e0c4e3028e52cec
66285 Author: Stefan Roese <sr@denx.de>
66286 Date:   Wed Jan 2 14:06:26 2008 +0100
66287
66288     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
66289
66290     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
66291     flash chips connected to a 32bit wide port.
66292
66293     Signed-off-by: Stefan Roese <sr@denx.de>
66294
66295 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
66296 Author: Wolfgang Denk <wd@denx.de>
66297 Date:   Wed Jan 2 15:58:44 2008 +0100
66298
66299     Fix compile problem introduced by "cleanup" commit 3dfd708c
66300
66301     Signed-off-by: Wolfgang Denk <wd@denx.de>
66302
66303 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
66304 Author: Wolfgang Denk <wd@denx.de>
66305 Date:   Wed Jan 2 15:54:45 2008 +0100
66306
66307     Make scripts and Makefiles POSIX compliant
66308
66309     The bash builtin versions of the "test" (resp. "[") command allow
66310     using "==" for string comparisons, but POSIX compatible implemen-
66311     tations (like /usr/bin/test) insist on using "=" only. On such systems
66312     you will see:
66313
66314         $ /usr/bin/test a == a && echo OK
66315         /usr/bin/test: ==: binary operator expected
66316
66317     This patch fixes Makefiles and scripts to use POSIX style.
66318
66319     Signed-off-by: Wolfgang Denk <wd@denx.de>
66320
66321 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
66322 Author: Stefan Roese <sr@denx.de>
66323 Date:   Wed Jan 2 14:05:37 2008 +0100
66324
66325     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
66326
66327     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
66328     flash chips connected to a 32bit wide port.
66329
66330     Signed-off-by: Stefan Roese <sr@denx.de>
66331
66332 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
66333 Author: Wolfgang Denk <wd@denx.de>
66334 Date:   Wed Jan 2 12:38:43 2008 +0100
66335
66336     Minor coding style cleanup.
66337
66338     Signed-off-by: Wolfgang Denk <wd@denx.de>
66339
66340 commit e174ac34adf5d5653df12bc3cf19c52063a71269
66341 Author: Stefan Roese <sr@denx.de>
66342 Date:   Fri Dec 28 17:29:56 2007 +0100
66343
66344     ppc4xx: Coding style cleanup
66345
66346     Signed-off-by: Stefan Roese <sr@denx.de>
66347
66348 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
66349 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66350 Date:   Fri Dec 28 17:07:24 2007 +0100
66351
66352     ppc4xx: Complete PMC440 board support
66353
66354     This patch brings the PMC440 board configuration file.
66355     Finally it enables the PMC440 board support.
66356
66357     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66358
66359 commit 407843a582560fc5231299561ab3c2b6b6cd3397
66360 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66361 Date:   Fri Dec 28 17:07:18 2007 +0100
66362
66363     ppc4xx: Add FPGA support and BSP commands for PMC440 boards
66364
66365     This patch adds some BSP commands and FPGA booting support
66366     for esd's PMC440 boards.
66367
66368     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66369
66370 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
66371 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66372 Date:   Fri Dec 28 17:07:14 2007 +0100
66373
66374     ppc4xx: Add initial esd PMC440 board files
66375
66376     This patch adds the first files for the new esd PMC440 boards.
66377     The next two patches will complete the PMC440 board support.
66378
66379     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66380
66381 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
66382 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66383 Date:   Fri Dec 28 17:10:36 2007 +0100
66384
66385     ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
66386
66387     - add EEPROM write protection for esd PLU405 boards.
66388     - initialize NAND GPIOs
66389     - use correct io accessors
66390     - cleanup
66391
66392     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66393
66394 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
66395 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66396 Date:   Fri Dec 28 17:10:44 2007 +0100
66397
66398     ppc4xx: use correct io accessors for esd's LCD code
66399
66400     This patch fixes esd's LCD dectection code to work correctly with
66401     newer gcc versions.
66402
66403     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66404
66405 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
66406 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66407 Date:   Fri Dec 28 17:10:42 2007 +0100
66408
66409     ppc4xx: Maintenance patch for VOH405 boards
66410
66411     - add EEPROM write protection
66412     - initialize NAND GPIOs
66413     - use correct io accessors
66414     - slow down I2C clock to 100kHz
66415     - enable ext. I2C bus
66416     - cleanup
66417
66418     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66419
66420 commit c05569066dbcba3fdf36d4d1943df265dc316a86
66421 Author: Stefan Roese <sr@denx.de>
66422 Date:   Fri Dec 28 16:08:08 2007 +0100
66423
66424     ppc4xx: Enable 405EP PCI arbiter per default on all boards
66425
66426     In an attmemt to clean up the 4xx start.S file, I removed the enabling
66427     of the internal 405EP PCI arbiter. This is needed for multiple other
66428     405EP platforms, like most of the esd 405EP. Now the internal PCI
66429     arbiter is enabled again per default as it has been before.
66430
66431     Signed-off-by: Stefan Roese <sr@denx.de>
66432     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66433
66434 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
66435 Author: Stefan Roese <sr@denx.de>
66436 Date:   Fri Dec 28 15:53:46 2007 +0100
66437
66438     ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
66439
66440     Signed-off-by: Stefan Roese <sr@denx.de>
66441     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66442
66443 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
66444 Author: Stefan Roese <sr@denx.de>
66445 Date:   Fri Dec 28 06:06:04 2007 +0100
66446
66447     ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
66448
66449     Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
66450     platforms mentioned above.
66451
66452     Signed-off-by: Stefan Roese <sr@denx.de>
66453
66454 commit b568fd25574181a3b12ae3d66b2913903442cb83
66455 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66456 Date:   Thu Dec 27 17:03:46 2007 +0100
66457
66458     Remove CPCI440 board
66459
66460     This board never left prototyping state and it
66461     became a millstone round my neck. So remove it.
66462
66463     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66464
66465 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
66466 Author: Larry Johnson <lrj@arlinx.com>
66467 Date:   Thu Dec 27 11:28:51 2007 -0500
66468
66469     Add support for Korat PPC440EPx board
66470
66471     These patches add support for the PPC440EPx-based "Korat" board to
66472     U-Boot.  They are based primarily on support for the Sequoia board.
66473
66474     Signed-off-by: Larry Johnson <lrj@acm.org>
66475
66476 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
66477 Author: Larry Johnson <lrj@arlinx.com>
66478 Date:   Sat Dec 22 15:16:25 2007 -0500
66479
66480     Add configuration file for Korat board
66481
66482     This patch supplies the configuration file for the Korat PPC440EPx-
66483     processor board.
66484
66485     Signed-off-by: Larry Johnson <lrj@acm.org>
66486
66487 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
66488 Author: Larry Johnson <lrj@arlinx.com>
66489 Date:   Sat Dec 22 15:16:11 2007 -0500
66490
66491     Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
66492
66493     Signed-off-by: Larry Johnson <lrj@acm.org>
66494
66495 commit aba19604d848b2838cfb9ebe818909e6a216058e
66496 Author: Larry Johnson <lrj@arlinx.com>
66497 Date:   Thu Dec 27 10:54:48 2007 -0500
66498
66499     Add 440EPx DDR2 SPD DIMM support
66500
66501     This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
66502     controller.  It should also work on the 440GRx.  It is based on the DDR2
66503     SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
66504
66505     This code has been tested on prototype Korat boards with three Kingston
66506     DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
66507     (two ranks).  The Korat board has a single DIMM socket, but support has
66508     been provided (though not tested) for boards with two DIMM sockets.
66509
66510     Signed-off-by: Larry Johnson <lrj@acm.org>
66511
66512 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
66513 Author: Larry Johnson <lrj@arlinx.com>
66514 Date:   Sat Dec 22 15:15:30 2007 -0500
66515
66516     Copy 440EPx/GRx SDRAM data-eye search to common directory
66517
66518     This patch creates a non-board-specific file for performing the SDRAM
66519     data-eye search.  It also adds ECC error checking to the test of valid
66520     data on readback when ECC is enabled.
66521
66522     Signed-off-by: Larry Johnson <lrj@acm.org>
66523
66524 commit c46f53333b22b1f9098676bea8884fc7db820cf3
66525 Author: Larry Johnson <lrj@arlinx.com>
66526 Date:   Sat Dec 22 15:15:13 2007 -0500
66527
66528     Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
66529
66530     This patch adds the Denali SDRAM controller definitions to "ppc440.h".
66531     It also fixes two typos in the definitions, so the board-specific
66532     "sdram.h" files containing these definitions are also fixed to avoid
66533     compiler warnings.
66534
66535     Signed-off-by: Larry Johnson <lrj@acm.org>
66536
66537 commit c348578bf612d0c56d8d376d23cae16defbd86af
66538 Author: Larry Johnson <lrj@arlinx.com>
66539 Date:   Thu Dec 27 10:50:55 2007 -0500
66540
66541     Add Ethernet 1000BASE-X support for PPC4xx
66542
66543     This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG".  When this symbol
66544     is defined, the PHY will advertise it's capabilities for autonegotiation
66545     based on the capabilities shown in the PHY's status registers, including
66546     1000BASE-X.  When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
66547     advertise hard-coded capabilities, as before.
66548
66549     Signed-off-by: Larry Johnson <lrj@acm.org>
66550
66551 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
66552 Author: Larry Johnson <lrj@arlinx.com>
66553 Date:   Thu Dec 27 09:52:17 2007 -0500
66554
66555     Add driver for National Semiconductor LM73 temperature sensor
66556
66557     This driver is based on the driver for the LM75.
66558
66559     Signed-off-by: Larry Johnson <lrj@acm.org>
66560
66561 commit 12618278688ea9b3d76536960a5ad2e3790fac40
66562 Author: Larry Johnson <lrj@arlinx.com>
66563 Date:   Sat Dec 22 15:14:00 2007 -0500
66564
66565     Add driver for STMicroelectronics M41T60 RTC
66566
66567     This driver is based on the driver for the M41T11.  In the intended
66568     application, the RTC will be powered by a large capacitor, rather than a
66569     battery.  The driver therefore checks to see whether the RTC has lost
66570     power.  The chip's OUT bit is normally reset from its power-up state.  If
66571     the OUT bit is read as set, or if the date and time are not valid, then the
66572     RTC is assumed to have lost power, and its date and time are reset to
66573     1900-01-01 00:00:00.
66574
66575     Support for adjusting the speed of the clock to improve accuracy is
66576     provided through an environment variable.
66577
66578     Signed-off-by: Larry Johnson <lrj@acm.org>
66579
66580 commit d3471173e14b7544bb60339eda8d3d3906694b0a
66581 Author: Larry Johnson <lrj@arlinx.com>
66582 Date:   Sat Dec 22 15:34:39 2007 -0500
66583
66584     Use out_be32() and friends to access memory-mapped registers in sequoia.c
66585
66586     Signed-off-by: Larry Johnson <lrj@acm.org>
66587
66588 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
66589 Author: Larry Johnson <lrj@arlinx.com>
66590 Date:   Sat Dec 22 15:34:20 2007 -0500
66591
66592     Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
66593
66594     Signed-off-by: Larry Johnson <lrj@acm.org>
66595
66596 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
66597 Author: Larry Johnson <lrj@arlinx.com>
66598 Date:   Sat Dec 22 15:23:50 2007 -0500
66599
66600     Cosmetic changes to ECC POST for AMCC Denali core
66601
66602     Signed-off-by: Larry Johnson <lrj@acm.org>
66603
66604 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
66605 Author: Stefan Roese <sr@denx.de>
66606 Date:   Wed Dec 26 20:20:19 2007 +0100
66607
66608     ppc4xx: Fix compilation problem in 405 cache POST test
66609
66610     Signed-off-by: Stefan Roese <sr@denx.de>
66611
66612 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
66613 Author: Stefan Roese <sr@denx.de>
66614 Date:   Sat Dec 22 12:20:09 2007 +0100
66615
66616     ppc4xx: Move virtual address of POST cache test to bigger address
66617
66618     On Sequoia & LWMON5 the virtual address of the POST cache test is now
66619     moved to a bigger address. This enables usage of more memory on those
66620     boards.
66621
66622     Signed-off-by: Stefan Roese <sr@denx.de>
66623
66624 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
66625 Author: Stefan Roese <sr@denx.de>
66626 Date:   Sat Dec 22 12:18:26 2007 +0100
66627
66628     ppc4xx: Fix problem in 44x cache POST routine
66629
66630     As repoted by Larry Johnson, running "diag run cache" caused a crash
66631     in U-Boot. This problem was introduced by a patch that removed the
66632     TLB entry for the cache test after the test has completed. Since this
66633     TLB was only setup once, a 2nd attempt to run this cache test
66634     failed with a crash. Now this TLB entry is created every time the
66635     routine is called.
66636
66637     Signed-off-by: Stefan Roese <sr@denx.de>
66638
66639 commit b0265b576bb8fa9465f99e99c323768b562fadc2
66640 Author: Stefan Roese <sr@denx.de>
66641 Date:   Fri Dec 21 07:51:29 2007 +0100
66642
66643     ppc4xx: Update Makalu fdt support
66644
66645     Signed-off-by: Stefan Roese <sr@denx.de>
66646
66647 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
66648 Author: Stefan Roese <sr@denx.de>
66649 Date:   Wed Dec 19 09:05:40 2007 +0100
66650
66651     ppc4xx: Add fdt support to AMCC Katmai eval board
66652
66653     Signed-off-by: Stefan Roese <sr@denx.de>
66654
66655 commit 328a340392a5df9aaf00792be989df73e750859e
66656 Author: Stefan Roese <sr@denx.de>
66657 Date:   Tue Dec 18 08:44:51 2007 +0100
66658
66659     ppc4xx: fdt: Cleanup setup of cpu node setup
66660
66661     Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
66662     without using the absolute path to the cpu node. This makes it possible
66663     to use this U-Boot version with both versions of cpu-node naming
66664     "cpu@0" and the former "PowerPC,440EPx@0".
66665
66666     Signed-off-by: Stefan Roese <sr@denx.de>
66667
66668 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
66669 Author: Stefan Roese <sr@denx.de>
66670 Date:   Mon Dec 17 17:26:21 2007 +0100
66671
66672     ppc4xx: Fix lwmon5 compilation problem
66673
66674     Now that the 440EPx ECC test is not board specific anymore
66675     remove this Makefile.
66676
66677     Signed-off-by: Stefan Roese <sr@denx.de>
66678
66679 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
66680 Author: Anatolij Gustschin <agustschin@t-online.de>
66681 Date:   Wed Dec 5 17:43:20 2007 +0100
66682
66683     Fix ppc4xx clear_bss() code
66684
66685     ppc4xx clear_bss() fails if BSS segment size is not
66686     divisible by 4 without remainder. This patch provides
66687     fix for this problem.
66688
66689     Signed-off-by: Anatolij Gustschin <agust@denx.de>
66690
66691 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
66692 Author: Niklaus Giger <niklausgiger@gmx.ch>
66693 Date:   Fri Nov 30 18:35:11 2007 +0100
66694
66695     PPC4xx: Minimal changes to add vxWorks support
66696
66697     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
66698
66699 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
66700 Author: Markus Klotzbücher <mk@denx.de>
66701 Date:   Fri Nov 23 13:09:18 2007 +0100
66702
66703     ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
66704
66705     When using dhcp/bootp the "netmask" environment variable is not
66706     set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
66707     desireable, so the following patch adds this this option to the board
66708     config.
66709
66710     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
66711     Signed-off-by: Stefan Roese <sr@denx.de>
66712
66713 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
66714 Author: Larry Johnson <lrj@arlinx.com>
66715 Date:   Sat Oct 27 12:48:15 2007 -0400
66716
66717     Fix/enhance ECC POST for 440EPx/GRx
66718
66719     This patch allows the ECC POST to be used for different boards with the
66720     PPC440 Denali SDRAM controller.  Modifications include skipping the test
66721     if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
66722     to prevent timing errors.
66723
66724     Signed-off-by: Larry Johnson <lrj@acm.org>
66725
66726 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
66727 Author: Larry Johnson <lrj@arlinx.com>
66728 Date:   Sat Oct 27 12:48:05 2007 -0400
66729
66730     PPC4xx: Move/rename ECC POST for 440EPx/GRx
66731
66732     Signed-off-by: Larry Johnson <lrj@acm.org>
66733
66734 commit c29d2d3680046d430022c55e50fcb27f5866517e
66735 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66736 Date:   Fri Dec 14 11:20:33 2007 +0100
66737
66738     ppc4xx: use correct io accessors for 4xx ethernet POST
66739
66740     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66741
66742 commit ba79fde58a48c0a6ff8e2a96caba951594142203
66743 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66744 Date:   Fri Dec 14 11:19:56 2007 +0100
66745
66746     ppc4xx: fix flush + invalidate_dcache_range arguments
66747
66748     flush + invalidate_dcache_range() expect the start and stop+1 address.
66749     So the stop address is the first address behind (!) the range.
66750
66751     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66752
66753 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
66754 Author: Stefan Roese <sr@denx.de>
66755 Date:   Fri Dec 14 08:41:29 2007 +0100
66756
66757     ppc4xx: fdt: use fdt_fixup_ethernet()
66758
66759     By using aliases in the dts file, the ethernet node fixup is
66760     much easier with the recently added functions.
66761
66762     Please note that the dts file needs the aliases for this to work.
66763
66764     Signed-off-by: Stefan Roese <sr@denx.de>
66765
66766 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
66767 Author: Stefan Roese <sr@denx.de>
66768 Date:   Thu Dec 13 14:52:53 2007 +0100
66769
66770     ppc4xx: Bring 4xx fdt support up-to-date
66771
66772     This patch update the 4xx fdt support. It enabled fdt booting
66773     on the AMCC Kilauea and Sequoia for now. More can follow later
66774     quite easily.
66775
66776     Signed-off-by: Stefan Roese <sr@denx.de>
66777
66778 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
66779 Author: Stefan Roese <sr@denx.de>
66780 Date:   Thu Dec 27 07:50:54 2007 +0100
66781
66782     cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
66783
66784     The check for an sufficiently erased destination was missing in the
66785     buffered write function of the cfi flash driver (when
66786     CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
66787     writing to such a region will fail with the currect error message.
66788
66789     Signed-off-by: Stefan Roese <sr@denx.de>
66790
66791 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
66792 Author: Martin Krause <martin.krause@tqs.de>
66793 Date:   Mon Nov 12 10:56:17 2007 +0100
66794
66795     Some configuration updates for the TQM5200 based TB5200 board:
66796
66797     - enable command line history
66798     - increase malloc space (because of bigger flash sectors)
66799
66800     Signed-off-by: Martin Krause <martin.krause@tqs.de>
66801
66802 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
66803 Author: Martin Krause <martin.krause@tqs.de>
66804 Date:   Thu Sep 27 11:10:08 2007 +0200
66805
66806     TQM8xx: use the CFI flash driver on all TQM8xx boards
66807
66808     Signed-off-by: Martin Krause <martin.krause@tqs.de>
66809
66810 commit 11d9eec479b470eab9242ab937fca70a876d9376
66811 Author: Martin Krause <martin.krause@tqs.de>
66812 Date:   Wed Sep 26 17:55:56 2007 +0200
66813
66814     TQM885D: adjust for doubled flash sector size + some minor fixes
66815
66816     Signed-off-by: Martin Krause <martin.krause@tqs.de>
66817
66818 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
66819 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
66820 Date:   Wed Sep 26 17:55:54 2007 +0200
66821
66822     TQM885D: Exchanged SDRAM timing by a more relaxed timing.
66823
66824     CAS-Latency=2, Write Recovery Time tWR=2
66825     The max. supported bus frequency is 66 MHz. Therefore, changed
66826     threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
66827
66828     Signed-off-by: Martin Krause <martin.krause@tqs.de>
66829
66830 commit b988b8cd443989be65161888eea0127ad03f846f
66831 Author: Martin Krause <martin.krause@tqs.de>
66832 Date:   Wed Sep 26 17:55:56 2007 +0200
66833
66834     TQM885D: use calculated cpuclk instead of measuring it
66835
66836     On the TQM885D the measurement of cpuclk with the PIT reference
66837     timer ist not necessary. Since all module variants use the same
66838     external 10 MHz oscillator, the cpuclk only depends on the PLL
66839     configuration - which is readable by software.
66840
66841     Signed-off-by: Martin Krause <martin.krause@tqs.de>
66842
66843 commit 492c7049869348d31168de8dad89651315e468e0
66844 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
66845 Date:   Thu Sep 27 14:54:46 2007 +0200
66846
66847     TQM885D: fix SDRAM refresh
66848
66849     At 133 MHz the current SDRAM refresh rate is too fast
66850     (measured 4 * 1.17 us).
66851     CFG_MAMR_PTA changes from 39 to 128. This result
66852     in a refresh rate of 4 * 7.8 us at the default clock
66853     66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
66854     This is a compromise until a new method is found to
66855     adjust the refresh rate.
66856
66857     Signed-off-by: Martin Krause <martin.krause@tqs.de>
66858
66859 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
66860 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
66861 Date:   Thu Sep 27 14:54:46 2007 +0200
66862
66863     TQM860M: Support for 10col SDRAMs, max. 128 MiB
66864
66865     Signed-off-by: Martin Krause <martin.krause@tqs.de>
66866
66867 commit 61fb15c516fef5631e305f1976d7b3a679725856
66868 Author: Wolfgang Denk <wd@denx.de>
66869 Date:   Thu Dec 27 01:52:50 2007 +0100
66870
66871     Fix coding style issues; update CHANGELOG.
66872
66873     Signed-off-by: Wolfgang Denk <wd@denx.de>
66874
66875 commit 467bcee11fe26ad422f2de971aa70866079870f2
66876 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66877 Date:   Fri Dec 14 15:36:18 2007 +0100
66878
66879     cfi_flash: Add manufacturer-specific fixups
66880
66881     Run fixups based on the JEDEC manufacturer ID independent of the
66882     command set ID.
66883
66884     This changes current behaviour: Previously, geometry reversal for AMD
66885     chips were done based on the command set ID, while they are now done
66886     based on the JEDEC manufacturer and device ID.
66887
66888     Also add fixup for top-boot Atmel chips. A fixup is needed for
66889     AT49BV6416(T) too, but since u-boot currently only reads the low byte
66890     of the device ID, there's no way to tell it apart from AT49BV642D,
66891     which should not have this fixup. Since AT49BV642D support is
66892     necessary to get ATNGW100 board support into mainline, I've commented
66893     out the fixup for now.
66894
66895     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66896
66897 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
66898 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66899 Date:   Fri Dec 14 15:36:17 2007 +0100
66900
66901     cfi_flash: Add cmdset-specific init functions
66902
66903     Move things like reading JEDEC IDs and fixing up geometry reversal
66904     into separate functions. The geometry reversal fixup is now performed
66905     by altering the qry structure directly, which makes the sector init
66906     code slightly cleaner.
66907
66908     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66909
66910 commit e23741f4a6d8047520ef0d4971762749b3587d32
66911 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66912 Date:   Fri Dec 14 15:36:16 2007 +0100
66913
66914     cfi_flash: Read whole QRY structure in one go
66915
66916     Read out the whole CFI Standard Query structure after successful cfi
66917     identification. This allows subsequent code to access this information
66918     directly without having to go through flash_read_uchar() and friends.
66919
66920     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66921
66922 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
66923 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66924 Date:   Mon Dec 17 11:02:44 2007 +0100
66925
66926     AVR32: Fix logic inversion in disable_interrupts()
66927
66928     disable_interrupts() should return nonzero if interrupts were
66929     _enabled_ before, not disabled.
66930
66931     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66932
66933 commit acac475212cbedb17b321a363a1c878e2b47b37f
66934 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66935 Date:   Fri Dec 14 16:51:22 2007 +0100
66936
66937     AVR32: Enable interrupts at bootup
66938
66939     The timer code depends on the timer interrupt to keep track of the
66940     upper 32 bits of the cycle counter. This obviously doesn't work when
66941     interrupts are disabled the whole time.
66942
66943     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66944
66945 commit 9570bcd87f4db255514f43b6701746c412f8fef0
66946 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66947 Date:   Thu Nov 15 10:03:45 2007 +0100
66948
66949     AVR32: Fix wrong pin setup for USART3
66950
66951     As reported by Gerhard Berghofer:
66952
66953     in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
66954     instead of PB18 and PB19.
66955
66956     which is obviously correct. There's currently no code that uses
66957     USART3, but custom boards may run into problems.
66958
66959     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66960
66961 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
66962 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66963 Date:   Thu Nov 1 12:44:20 2007 +0100
66964
66965     README: Remove ATSTK1000 daughterboard list
66966
66967     As noted by Kim Phillips, these lists tend to become out of date.
66968
66969     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66970
66971 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
66972 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66973 Date:   Tue Oct 30 14:56:36 2007 +0100
66974
66975     Add ATSTK100[234] to MAINTAINERS
66976
66977     Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
66978     "mother". Also update the entry for ATSTK1000 to be not only about the
66979     AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
66980
66981     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66982
66983 commit 64ff2357b1727213803591813dbc779c924bf772
66984 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66985 Date:   Mon Oct 29 13:02:54 2007 +0100
66986
66987     AVR32: Add support for the ATSTK1004 board
66988
66989     ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
66990     which is a derivative of AT32AP7000.
66991
66992     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66993
66994 commit 667568db157f374b85abd7e03596ddd1f0b25681
66995 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66996 Date:   Mon Oct 29 13:02:54 2007 +0100
66997
66998     AVR32: Add support for the ATSTK1003 board
66999
67000     ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
67001     which is a derivative of AT32AP7000.
67002
67003     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67004
67005 commit 5fee84a794a51ec830548cda485a770efb018b92
67006 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67007 Date:   Mon Oct 29 13:23:33 2007 +0100
67008
67009     AVR32: Make some AT32AP700x peripherals optional
67010
67011     Add a chip-features file providing definitions of the form
67012
67013     AT32AP700x_CHIP_HAS_<peripheral>
67014
67015     to indicate the availability of the given peripheral on the currently
67016     selected chip.
67017
67018     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67019
67020 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
67021 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67022 Date:   Mon Oct 29 13:09:56 2007 +0100
67023
67024     AVR32: Rename at32ap7000 -> at32ap700x
67025
67026     The SoC-specific code for all the AT32AP700x CPUs is practically
67027     identical; the only difference is that some chips have less features
67028     than others. By doing this rename, we can add support for the AP7000
67029     derivatives simply by making some features conditional.
67030
67031     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67032
67033 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
67034 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67035 Date:   Fri Jun 29 18:22:34 2007 +0200
67036
67037     atmel_mci: Show SR when block read fails
67038
67039     Show controller status as well as card status when an error occurs
67040     during block read.
67041
67042     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67043
67044 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
67045 Author: Stefan Roese <sr@denx.de>
67046 Date:   Thu Dec 13 14:52:53 2007 +0100
67047
67048     ppc4xx: Bring 4xx fdt support up-to-date
67049
67050     This patch update the 4xx fdt support. It enabled fdt booting
67051     on the AMCC Kilauea and Sequoia for now. More can follow later
67052     quite easily.
67053
67054     Signed-off-by: Stefan Roese <sr@denx.de>
67055
67056 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
67057 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67058 Date:   Thu Dec 13 12:56:34 2007 +0100
67059
67060     cfi_flash: Use map_physmem() and unmap_physmem()
67061
67062     Use map_physmem() and unmap_physmem() to convert from physical to
67063     virtual addresses. This gives the arch a chance to provide an uncached
67064     mapping for flash accesses.
67065
67066     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67067
67068 commit 4d7d6936eb29af7cca330937808312aa5f61454d
67069 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67070 Date:   Thu Dec 13 12:56:33 2007 +0100
67071
67072     Introduce map_physmem() and unmap_physmem()
67073
67074     map_physmem() returns a virtual address which can be used to access a
67075     given physical address without involving the cache. unmap_physmem()
67076     should be called when the virtual address returned by map_physmem() is
67077     no longer needed.
67078
67079     This patch adds a stub implementation which simply returns the
67080     physical address cast to a uchar * for all architectures except AVR32,
67081     which converts the physical address to an uncached virtual mapping.
67082     unmap_physmem() is a no-op on all architectures, but if any
67083     architecture needs to do such mappings through the TLB, this is the
67084     hook where those TLB entries can be invalidated.
67085
67086     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67087
67088 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
67089 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67090 Date:   Thu Dec 13 12:56:32 2007 +0100
67091
67092     cfi_flash: Introduce read and write accessors
67093
67094     Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
67095     them to access the flash memory. This makes it clearer when the flash
67096     is actually being accessed; merely dereferencing a volatile pointer
67097     looks just like any other kind of access.
67098
67099     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67100
67101 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
67102 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67103 Date:   Thu Dec 13 12:56:31 2007 +0100
67104
67105     Implement __raw_{read,write}[bwl] on all architectures
67106
67107     This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
67108     m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
67109     from Linux.
67110
67111     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67112
67113 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
67114 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67115 Date:   Sat Oct 6 18:55:36 2007 +0200
67116
67117     cfi_flash: Reorder functions and eliminate extra prototypes
67118
67119     Reorder the functions in cfi_flash.c so that each function only uses
67120     functions that have been defined before it. This allows the static
67121     prototype declarations near the top to be eliminated and might allow
67122     gcc to do a better job inlining functions.
67123
67124     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67125
67126 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
67127 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67128 Date:   Thu Dec 13 12:56:29 2007 +0100
67129
67130     cfi_flash: Make some needlessly global functions static
67131
67132     Make functions not declared in any header file static.
67133
67134     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67135
67136 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
67137 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67138 Date:   Thu Dec 13 12:56:28 2007 +0100
67139
67140     cfi_flash: Break long lines
67141
67142     This patch tries to keep all lines in the cfi_flash driver below 80
67143     columns. There are a few lines left which don't fit this requirement
67144     because I couldn't find any trivial way to break them (i.e. it would
67145     take some restructuring, which I intend to do in a later patch.)
67146
67147     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67148
67149 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
67150 Author: Bartlomiej Sieka <tur@semihalf.com>
67151 Date:   Tue Dec 11 13:59:57 2007 +0100
67152
67153     CFI: synchronize command offsets with Linux CFI driver
67154
67155     Fixes non-working CFI Flash on the Inka4x0 board.
67156
67157     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
67158
67159 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
67160 Author: Kumar Gala <galak@kernel.crashing.org>
67161 Date:   Fri Dec 7 12:17:34 2007 -0600
67162
67163     Handle MPC85xx PCIe reset errata (PCI-Ex 38)
67164
67165     On the MPC85xx boards that have PCIe enable the PCIe errata fix.
67166     (MPC8544DS, MPC8548CDS, MPC8568MDS).
67167
67168     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67169
67170 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
67171 Author: Kumar Gala <galak@kernel.crashing.org>
67172 Date:   Fri Dec 7 12:04:30 2007 -0600
67173
67174     Update Freescale MPC85xx ADS/CDS/MDS board config
67175
67176     * Enabled CONFIG_CMD_ELF
67177
67178     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67179
67180 commit d435793229ce29a42797c1edc39f5b34f987f91a
67181 Author: Kumar Gala <galak@kernel.crashing.org>
67182 Date:   Fri Dec 7 04:59:26 2007 -0600
67183
67184     Handle Asynchronous DDR clock on 85xx
67185
67186     The MPC8572 introduces the concept of an asynchronous DDR clock with
67187     regards to the platform clock.
67188
67189     Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
67190     mode.
67191
67192     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67193
67194 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
67195 Author: Kumar Gala <galak@kernel.crashing.org>
67196 Date:   Thu Nov 29 10:34:28 2007 -0600
67197
67198     Update Freescale MPC85xx ADS/CDS/MDS board config
67199
67200     * Removed some misc environment setup
67201     * Enabled CONFIG_CMDLINE_EDITING
67202
67203     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67204
67205 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
67206 Author: Kumar Gala <galak@kernel.crashing.org>
67207 Date:   Thu Nov 29 10:47:44 2007 -0600
67208
67209     Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
67210
67211     Minor path corrections needed to ensure buildability.
67212
67213     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67214
67215 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
67216 Author: Kumar Gala <galak@kernel.crashing.org>
67217 Date:   Thu Nov 29 10:16:18 2007 -0600
67218
67219     Move the MPC8540 ADS board under board/freescale.
67220
67221     Minor path corrections needed to ensure buildability.
67222
67223     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67224
67225 commit 870ceac5b3a3486c109396e005af81ae762b5710
67226 Author: Kumar Gala <galak@kernel.crashing.org>
67227 Date:   Thu Nov 29 10:14:50 2007 -0600
67228
67229     Move the MPC8560 ADS board under board/freescale.
67230
67231     Minor path corrections needed to ensure buildability.
67232
67233     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67234
67235 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
67236 Author: Kumar Gala <galak@kernel.crashing.org>
67237 Date:   Thu Nov 29 10:13:47 2007 -0600
67238
67239     Move the MPC8568 MDS board under board/freescale.
67240
67241     Minor path corrections needed to ensure buildability.
67242
67243     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67244
67245 commit a853d56c59b33415304531443633808736acfc6e
67246 Author: Kumar Gala <galak@kernel.crashing.org>
67247 Date:   Thu Nov 29 02:18:59 2007 -0600
67248
67249     Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
67250
67251     We already had defines for LAWAR_TRGT_IF_* that we should use
67252     rather than creating new ones.  Also, added some missing defines for
67253     PCIE targets.
67254
67255     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67256
67257 commit 04db400892da37b76a585e332a0c137954ad2015
67258 Author: Kumar Gala <galak@kernel.crashing.org>
67259 Date:   Thu Nov 29 02:10:09 2007 -0600
67260
67261     Stop using immap_t on 85xx
67262
67263     In the future the offsets to various blocks may not be in same location.
67264     Move to using CFG_MPC85xx_*_ADDR as the base of the registers
67265     instead of getting it via &immap.
67266
67267     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67268
67269 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
67270 Author: Kumar Gala <galak@kernel.crashing.org>
67271 Date:   Thu Nov 29 01:23:09 2007 -0600
67272
67273     Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
67274
67275     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67276
67277 commit c480861bf000156e6a3e932c258db59ff2212dd3
67278 Author: Kumar Gala <galak@kernel.crashing.org>
67279 Date:   Thu Nov 29 01:06:19 2007 -0600
67280
67281     Update MPC8568 MDS to use libfdt
67282
67283     Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
67284     ethernet, pci, and serial for the various fixups that are done.
67285
67286     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67287
67288 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
67289 Author: Haiying Wang <Haiying.Wang@freescale.com>
67290 Date:   Wed Nov 14 15:52:06 2007 -0500
67291
67292     Add PCI Express support on MPC8568MDS
67293
67294     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
67295     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67296
67297 commit b90d25497625b90ffa3f2911a0895ca237556ff5
67298 Author: Kumar Gala <galak@kernel.crashing.org>
67299 Date:   Thu Nov 29 00:11:44 2007 -0600
67300
67301     Update MPC85xx CDS to use libfdt
67302
67303     Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
67304     ethernet, pci, and serial for the various fixups that are done.
67305
67306     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67307
67308 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
67309 Author: Kumar Gala <galak@kernel.crashing.org>
67310 Date:   Wed Nov 28 22:54:27 2007 -0600
67311
67312     Update MPC8540 ADS to use libfdt
67313
67314     Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
67315     ethernet, pci, and serial for the various fixups that are done.
67316
67317     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67318
67319 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
67320 Author: Kumar Gala <galak@kernel.crashing.org>
67321 Date:   Wed Nov 28 22:40:31 2007 -0600
67322
67323     Update MPC8560 ADS to use libfdt
67324
67325     Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
67326     ethernet, pci, and serial for the various fixups that are done.
67327
67328     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67329
67330 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
67331 Author: Kumar Gala <galak@kernel.crashing.org>
67332 Date:   Wed Nov 28 00:36:33 2007 -0600
67333
67334     Stop using immap_t for cpm offset on 85xx
67335
67336     In the future the offsets to various blocks may not be in same location.
67337     Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
67338     instead of getting it via &immap->im_cpm.
67339
67340     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67341
67342 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
67343 Author: Kumar Gala <galak@kernel.crashing.org>
67344 Date:   Tue Nov 27 23:25:02 2007 -0600
67345
67346     Stop using immap_t for guts offset on 85xx
67347
67348     In the future the offsets to various blocks may not be in same location.
67349     Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
67350     instead of getting it via &immap->im_gur.
67351
67352     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67353
67354 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
67355 Author: Kumar Gala <galak@kernel.crashing.org>
67356 Date:   Tue Nov 27 22:42:34 2007 -0600
67357
67358     Update MPC8544 DS config
67359
67360     * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
67361     * Removed some misc environment setup
67362     * Moved to using fdtfile & fdtaddr as fdt env var names
67363     * Enabled CONFIG_CMDLINE_EDITING
67364
67365     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67366
67367 commit addce57e2e4c49e77ffb2020a84690713bb18b47
67368 Author: Kumar Gala <galak@kernel.crashing.org>
67369 Date:   Mon Nov 26 17:12:24 2007 -0600
67370
67371     Update MPC8544DS to use libfdt
67372
67373     Updated the MPC8544DS config to use libfdt and assume use of aliases for
67374     ethernet, pci, and serial for the various fixups that are done.
67375
67376     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67377
67378 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
67379 Author: Kumar Gala <galak@kernel.crashing.org>
67380 Date:   Thu Nov 29 00:15:30 2007 -0600
67381
67382     Add libfdt based ft_cpu_setup for mpc85xx
67383
67384     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67385
67386 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
67387 Author: Stefan Roese <sr@denx.de>
67388 Date:   Tue Dec 11 13:38:19 2007 +0100
67389
67390     ppc4xx: Correct GPIO offset in gpio_config()
67391
67392     Thanks to Gary Jennejohn for pointing this out.
67393
67394     Signed-off-by: Stefan Roese <sr@denx.de>
67395
67396 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
67397 Author: Stefan Roese <sr@denx.de>
67398 Date:   Tue Dec 11 11:46:01 2007 +0100
67399
67400     rtc: Fix merging problem
67401
67402     Signed-off-by: Stefan Roese <sr@denx.de>
67403
67404 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
67405 Author: Stefan Roese <sr@denx.de>
67406 Date:   Sat Dec 8 14:47:34 2007 +0100
67407
67408     ppc4xx: 405EX: Correctly enable USB pins
67409
67410     This patch selects the USB data pins in the 405EX GPIO and MFC (multi
67411     function control) registers. This is done for the AMCC Kilauea and
67412     Makalu eval boards.
67413
67414     Signed-off-by: Stefan Roese <sr@denx.de>
67415
67416 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
67417 Author: Stefan Roese <sr@denx.de>
67418 Date:   Sat Dec 8 08:25:09 2007 +0100
67419
67420     CFI: Coding style cleanup
67421
67422     Signed-off-by: Stefan Roese <sr@denx.de>
67423
67424 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
67425 Author: Michael Schwingen <michael@schwingen.org>
67426 Date:   Fri Dec 7 23:35:02 2007 +0100
67427
67428     CFI: support JEDEC flash roms in CFI-flash framework
67429
67430     The following patch adds support for non-CFI flash ROMS, by hooking into the
67431     CFI flash code and using most of its code, as recently discussed here in the
67432     thread "Mixing CFI and non-CFI flashs".
67433
67434     Signed-off-by: Michael Schwingen <michael@schwingen.org>
67435     Signed-off-by: Stefan Roese <sr@denx.de>
67436
67437 commit c01b17dd856fa120b2970f50d9598546a4927ec3
67438 Author: Gerald Van Baren <vanbaren@cideas.com>
67439 Date:   Wed Nov 28 21:24:50 2007 -0500
67440
67441     Conditionally compile fdt_fixup_ethernet()
67442
67443     Fix compiler warnings: On boards that don't have ethernets defined,
67444     don't compile fdt_fixup_ethernet().
67445
67446 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
67447 Author: Kumar Gala <galak@kernel.crashing.org>
67448 Date:   Tue Nov 27 21:59:46 2007 -0600
67449
67450     Convert boards that set memory node to use fdt_fixup_memory()
67451
67452     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67453
67454 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
67455 Author: Kumar Gala <galak@kernel.crashing.org>
67456 Date:   Mon Nov 26 17:06:15 2007 -0600
67457
67458     Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
67459
67460     We use a combination of the serialN alias and CONFIG_CONS_INDEX to
67461     determine which serial alias we should set linux,stdout-path to.
67462
67463     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67464
67465 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
67466 Author: Kumar Gala <galak@kernel.crashing.org>
67467 Date:   Mon Nov 26 14:57:45 2007 -0600
67468
67469     Add common memory fixup function
67470
67471     Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
67472
67473     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67474
67475 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
67476 Author: Kumar Gala <galak@kernel.crashing.org>
67477 Date:   Mon Nov 26 11:19:12 2007 -0600
67478
67479     Conditionally compile fdt_support.c
67480
67481     Modify common/Makefile to conditionally compile fdt_support.c based
67482     on CONFIG_OF_LIBFDT.
67483
67484     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67485
67486 commit d88e7ba0980773479e1a64badb293116071b7ef0
67487 Author: Kumar Gala <galak@kernel.crashing.org>
67488 Date:   Mon Nov 26 10:41:40 2007 -0600
67489
67490     Fix build breakage due to libfdt import
67491
67492     The IDS8247 got lost in the update and need an API update
67493     do to rename of functions in libfdt.
67494
67495     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67496
67497 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
67498 Author: Gerald Van Baren <vanbaren@cideas.com>
67499 Date:   Fri Nov 23 19:43:20 2007 -0500
67500
67501     Add spaces around the = in the fdt print format.
67502
67503     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67504
67505 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
67506 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67507 Date:   Fri Dec 7 01:25:38 2007 +0900
67508
67509     sh: Moved driver of the SuperH dependence
67510
67511     The composition of the directory in the drivers/ changed.
67512     I moved SuperH serial driver and marubun PCMCIA driver.
67513
67514     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67515
67516 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
67517 Author: Wolfgang Denk <wd@denx.de>
67518 Date:   Thu Dec 6 10:21:19 2007 +0100
67519
67520     Release v1.3.1
67521
67522     Signed-off-by: Wolfgang Denk <wd@denx.de>
67523
67524 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
67525 Author: Wolfgang Denk <wd@denx.de>
67526 Date:   Thu Dec 6 10:21:03 2007 +0100
67527
67528     ADS5121 Board: fix compile problem.
67529
67530     Signed-off-by: Wolfgang Denk <wd@denx.de>
67531
67532 commit a27044b14a9e93678a82d7b35f202b93e7687abc
67533 Author: Stefan Roese <sr@denx.de>
67534 Date:   Thu Dec 6 05:58:43 2007 +0100
67535
67536     ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
67537
67538     This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
67539     setting the FIXD bit in the SDR0_MFR register. Here a description of the
67540     symptoms:
67541
67542     Problem Description
67543     ------------------------------
67544     If a DMA is performed between memory and PCI with the DMA 1 Controller
67545     using prefetch, and as a result uses a special purpose buffer selected by
67546     the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
67547     the first part of the transfer sequence is performed twice. The
67548     PPC440SPe PCI Controller requests more data than was needed such that in
67549     the case of enforce memory protection, a host CPU  exception can occur.
67550     No data is corrupted, because data transfer is stopped in the PCI
67551     Controller. Prefetch enable is specified by setting DMA Configuration
67552     Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
67553
67554     Behavior that may be observed in a running system
67555     ---------------------------------------------------------------------------
67556
67557     1. DMA performance is decreased because of the double access on the PCI bus
67558     interface.
67559     2. If an illegal access to some address on the PCI bus is detected at the
67560     system level, a machine check or similar system error may occur.
67561
67562     Workarounds Available
67563     ----------------------------------
67564
67565     1. Do not program prefetch. Note that a prefetch command cannot be programmed
67566     without selecting a special purpose buffer.
67567     2. To avoid crossing a physical boundary of the PCI slave device, add 512
67568     bytes of address to the PCI address range.
67569
67570     This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
67571     from AMCC and slighly changed.
67572
67573     Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
67574     Signed-off-by: Stefan Roese <sr@denx.de>
67575
67576 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
67577 Author: Stefan Roese <sr@denx.de>
67578 Date:   Tue Dec 4 16:29:48 2007 +0100
67579
67580     ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
67581
67582     Signed-off-by: Stefan Roese <sr@denx.de>
67583
67584 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
67585 Author: Wolfgang Denk <wd@denx.de>
67586 Date:   Mon Dec 3 00:15:28 2007 +0100
67587
67588     Prepare for 1.3.1-rc1
67589
67590     Signed-off-by: Wolfgang Denk <wd@denx.de>
67591
67592 commit e15e33433e7c05111968dc9b434a52fd42cbd221
67593 Author: Stefan Roese <sr@denx.de>
67594 Date:   Fri Nov 30 07:15:41 2007 +0100
67595
67596     ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
67597
67598     This manual PCIe reset triggering solves the problem seen with the
67599     Intel EPRO/1000 card, which was not detected (link not established)
67600     upon power-up reset.
67601
67602     Signed-off-by: Stefan Roese <sr@denx.de>
67603
67604 commit 260eea5676ca46903a335686cc020b29c4ca46fe
67605 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67606 Date:   Thu Nov 29 01:21:54 2007 +0900
67607
67608     sh: Add SuperH boards maintainer to MAINTAINERS file
67609
67610     Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
67611
67612     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67613
67614 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
67615 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67616 Date:   Thu Nov 29 00:13:04 2007 +0900
67617
67618     sh: Add ms7750se support in MAKEALL
67619
67620     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67621
67622 commit c7144373427a178332bf9754131c8c34c52c200a
67623 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67624 Date:   Tue Nov 27 09:44:53 2007 +0100
67625
67626     sh: Add sh3 and sh4 support in MAKEALL
67627
67628     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67629     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67630
67631 commit 130080874a3d28450098481a262c5f7c855e908d
67632 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67633 Date:   Sun Nov 25 02:51:17 2007 +0900
67634
67635     sh: Add document for SuperH.
67636
67637     This document is a summary of information concerning SuperH of U-Boot.
67638
67639     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67640
67641 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
67642 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67643 Date:   Sun Nov 25 02:39:31 2007 +0900
67644
67645     sh: Add marubun's pcmcia driver
67646
67647     Marubun pcmcia is a chip for PCMCIA used with SuperH.
67648     Of course, this can be used even by other architectures.
67649     When use this driver, came to be able to use CompactFlash
67650     and Ethernet.
67651
67652     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67653
67654 commit febd86b969b975289ed948f1ac0eb9722da41ced
67655 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67656 Date:   Sun Nov 25 02:32:13 2007 +0900
67657
67658     sh: Update SuperH SCIF driver
67659
67660     - Changed volatile unsigned to vu_.
67661     - Changed Makefile for kconfig.
67662
67663     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67664
67665 commit 8be760903645af09871be50ad0a6f9ebb62b311d
67666 Author: Stefan Roese <sr@denx.de>
67667 Date:   Tue Nov 27 11:57:35 2007 +0100
67668
67669     ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
67670
67671     After an error in the AMCC 405EX users manual now correctly configure
67672     IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
67673     usage.
67674
67675     Signed-off-by: Stefan Roese <sr@denx.de>
67676
67677 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
67678 Author: Wolfgang Denk <wd@denx.de>
67679 Date:   Mon Nov 26 19:18:21 2007 +0100
67680
67681     Cleanup coding style; update CHANGELOG
67682
67683     Signed-off-by: Wolfgang Denk <wd@denx.de>
67684
67685 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
67686 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67687 Date:   Sun Nov 25 22:39:25 2007 +0100
67688
67689     MAKEALL: add missing 512x boards in ppc
67690
67691     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67692
67693 commit a340c325e668ca7386c2276387681720be9c3757
67694 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67695 Date:   Sun Nov 25 18:45:47 2007 +0100
67696
67697     Makefile : fix tags ctags etags with new drivers organization
67698
67699     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67700
67701 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
67702 Author: Stefan Roese <sr@denx.de>
67703 Date:   Mon Nov 26 15:06:14 2007 +0100
67704
67705     ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
67706
67707     As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
67708     operation.
67709
67710     Signed-off-by: Stefan Roese <sr@denx.de>
67711
67712 commit ca1ce226287270bb01e25b8e3674c701f12edf19
67713 Author: Stefan Roese <sr@denx.de>
67714 Date:   Mon Nov 26 15:01:45 2007 +0100
67715
67716     ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
67717
67718     Signed-off-by: Stefan Roese <sr@denx.de>
67719
67720 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
67721 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67722 Date:   Sun Nov 25 18:45:47 2007 +0100
67723
67724     Makefile : fix tags ctags etags with new drivers organization
67725
67726     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67727
67728 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
67729 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67730 Date:   Sat Nov 24 21:26:56 2007 +0100
67731
67732     drivers/mtd : move mtd drivers to drivers/mtd
67733
67734     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67735
67736 commit 318c0b90431f2648552e5ade78833f42652ce859
67737 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67738 Date:   Sat Nov 24 21:17:55 2007 +0100
67739
67740     drivers/misc : move misc drivers to drivers/misc
67741
67742     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67743
67744 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
67745 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67746 Date:   Sat Nov 24 21:13:59 2007 +0100
67747
67748     drivers/block : move block drivers to drivers/block
67749
67750     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67751
67752 commit 0c698dcaa70275eb8814f665b545547cee013892
67753 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67754 Date:   Sat Nov 24 20:59:50 2007 +0100
67755
67756     drivers/rtc : move rtc drivers to drivers/rtc
67757
67758     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67759
67760 commit f868cc5a50757d94f36c312395481cb0f187d9e6
67761 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67762 Date:   Sat Nov 24 20:14:44 2007 +0100
67763
67764     drivers/hwmon : move hardware monitor drviers to drivers/hwmon
67765
67766     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67767
67768 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
67769 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67770 Date:   Sat Nov 24 19:46:45 2007 +0100
67771
67772     drivers/input : move input drivers to drivers/input
67773
67774     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67775
67776 commit e4558666293364fc3af1c1d9381ca933fa0f1275
67777 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67778 Date:   Sat Nov 24 19:40:11 2007 +0100
67779
67780     drivers/usb : move usb drivers to drivers/usb
67781
67782     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67783
67784 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
67785 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67786 Date:   Sat Nov 24 19:33:38 2007 +0100
67787
67788     drivers/serial : move serial drivers to drivers/serial
67789
67790     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67791
67792 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
67793 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67794 Date:   Wed Nov 21 21:19:24 2007 +0100
67795
67796     drivers/net : move net drivers to drivers/net
67797
67798     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67799
67800 commit 352d259130b349fe9593b8dada641bd78a9659e5
67801 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67802 Date:   Tue Nov 20 20:41:48 2007 +0100
67803
67804     drivers/video : move video drivers to drivers/video
67805
67806     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67807
67808 commit 73646217186aa17afc8e305c5f06f06dd335eaad
67809 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67810 Date:   Tue Nov 20 20:33:09 2007 +0100
67811
67812     drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
67813
67814     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67815
67816 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
67817 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67818 Date:   Tue Nov 20 20:28:09 2007 +0100
67819
67820     drivers/pci : move pci drivers to drivers/pci
67821
67822     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67823
67824 commit 9162352817579840d7802da6d85872b3ca003c97
67825 Author: Gerald Van Baren <vanbaren@cideas.com>
67826 Date:   Thu Nov 22 17:23:23 2007 -0500
67827
67828     Fix fdt printing for updated libfdt
67829
67830     Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
67831
67832     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67833
67834 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
67835 Author: Kumar Gala <galak@kernel.crashing.org>
67836 Date:   Wed Nov 21 13:30:15 2007 -0600
67837
67838     Add additional fdt fixup helper functions
67839
67840     Added the following fdt fixup helpers:
67841      * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
67842      * do_fixup_by_compat{_u32} - Find matching nodes by compat
67843
67844     The _u32 variants work the same only the property they are setting
67845     is know to be a 32-bit integer instead of a byte buffer.
67846
67847     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67848
67849 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
67850 Author: Kumar Gala <galak@kernel.crashing.org>
67851 Date:   Wed Nov 21 11:11:03 2007 -0600
67852
67853     Add fdt_fixup_ethernet helper to set mac addresses
67854
67855     Added a fixup helper that uses aliases to set mac addresses
67856     in the device tree based on the bd_t
67857
67858     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67859
67860 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
67861 Author: Kumar Gala <galak@kernel.crashing.org>
67862 Date:   Wed Nov 21 14:07:46 2007 -0600
67863
67864     Fix warnings from import of libfdt
67865
67866     cmd_fdt.c: In function fdt_print:
67867     cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
67868     cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
67869     cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
67870     cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
67871
67872     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67873
67874 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
67875 Author: Kumar Gala <galak@kernel.crashing.org>
67876 Date:   Wed Oct 24 11:04:22 2007 -0500
67877
67878     Update libfdt from device tree compiler (dtc)
67879
67880     Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
67881     the device tree compiler (dtc) project.
67882
67883     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67884
67885 commit e93becf80d732b64aef81b23e8b6ece02c40533d
67886 Author: Kumar Gala <galak@kernel.crashing.org>
67887 Date:   Sat Nov 3 19:46:28 2007 -0500
67888
67889     Move do_fixup* for libfdt into common code
67890
67891     Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
67892     into common/fdt_support.c and renamed:
67893
67894     do_fixup()  -> do_fixup_by_path()
67895     do_fixup_u32()      -> do_fixup_by_path_u32()
67896
67897     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67898
67899 commit f738b4a75998f42a7408defadc9baac7a31c92db
67900 Author: Kumar Gala <galak@kernel.crashing.org>
67901 Date:   Thu Oct 25 16:15:07 2007 -0500
67902
67903     Make no options to fdt print default to '/'
67904
67905     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67906
67907 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
67908 Author: Kumar Gala <galak@kernel.crashing.org>
67909 Date:   Wed Oct 24 10:21:57 2007 -0500
67910
67911     Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
67912
67913     Removed:
67914         fdt_node_is_compatible
67915         fdt_find_node_by_type
67916         fdt_find_compatible_node
67917
67918     To ease merge of newer libfdt as we aren't using them anywhere at this time.
67919
67920     Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
67921     reason.
67922
67923     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67924
67925 commit 98e2867cc85409b919f862e6c16026461ec955df
67926 Author: Grant Likely <grant.likely@secretlab.ca>
67927 Date:   Wed Nov 21 09:19:37 2007 -0700
67928
67929     [BUILD] Remove libraries when updating autoconf.mk
67930
67931     Fix library problems caused by conditional compilation.  Using
67932     autoconf.mk to decide which files to compile has caused a problem when
67933     changing configuration from one board to another without clearing out
67934     the library (*.a) files.
67935
67936     It used to be that the linker was always passed the same list of .o
67937     files when building the .a files.  However, that is not longer true
67938     with conditional compilation.  Now, a different board config will have
67939     a different file list passed to the linker.  The problem occurs when
67940     a library has already been built and the board config is changed.
67941
67942     Since the linker will update instead of replace a preexisting library,
67943     then if the file list changes to remove some object files the old
67944     objects will still exist in the library.
67945
67946     The solution is to remove all old library files when autoconf.mk is
67947     made.
67948
67949     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
67950
67951 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
67952 Author: Kumar Gala <galak@kernel.crashing.org>
67953 Date:   Wed Nov 21 08:49:50 2007 -0600
67954
67955     [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
67956
67957     Modify libfdt/Makefile to conditionally compile the *.c files based
67958     on the board config.
67959
67960     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67961
67962 commit 4a43719a7738712811d822ca8125427b27a55cdc
67963 Author: Grant Likely <grant.likely@secretlab.ca>
67964 Date:   Mon Sep 24 09:05:31 2007 -0600
67965
67966     [BUILD] conditionally compile common/cmd_*.c in common/Makefile
67967
67968     Modify common/Makefile to conditionally compile the cmd_*.c files based
67969     on the board config.
67970
67971     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
67972
67973 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
67974 Author: Grant Likely <grant.likely@secretlab.ca>
67975 Date:   Mon Sep 24 09:05:31 2007 -0600
67976
67977     [BUILD] Generate include/autoconf.mk from board config files
67978
67979     Use cpp and sed to postprocess config.h and import the defined values
67980     into include/autoconf.mk.  autoconf.mk is then included by config.mk to
67981     give 'make' access to the board configuration.
67982
67983     Doing this enables conditional compilation at the Makefile level instead
67984     of by wrapping every .c file with #ifdef/#endif wrappers.
67985
67986     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
67987
67988 commit 68b88999da87ab88e71e1306192905be3450198e
67989 Author: Jon Loeliger <jdl@freescale.com>
67990 Date:   Tue Nov 20 15:02:26 2007 -0600
67991
67992     8610HPCD: Enable the 8610 Display Interface Unit
67993
67994     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67995
67996 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
67997 Author: Jon Loeliger <jdl@freescale.com>
67998 Date:   Tue Nov 20 15:00:53 2007 -0600
67999
68000     Move 8610 DIU interface structure definitions to header file.
68001
68002     These two structures are still needed during the
68003     initialization and setup of the DIU hardware.
68004     So move them to the fsl_diu_fb.h file for now.
68005     Official "blah".
68006
68007     Noticed-by: York Sun <yorksun@freescale.com>
68008     Signed-off-by: Jon Loeliger <jdl@freescale.com>
68009
68010 commit 080c646dbf474a109c3f85718fb01ce042a38c45
68011 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68012 Date:   Tue Nov 20 20:14:18 2007 +0100
68013
68014     drivers/i2c : move i2c drivers to drivers/i2c
68015
68016     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68017
68018 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
68019 Author: Wolfgang Denk <wd@denx.de>
68020 Date:   Mon Nov 19 22:20:24 2007 +0100
68021
68022     Prepare for 1.3.0 release.
68023
68024     Signed-off-by: Wolfgang Denk <wd@denx.de>
68025
68026 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
68027 Author: Haiying Wang <Haiying.Wang@freescale.com>
68028 Date:   Mon Nov 19 10:02:13 2007 -0500
68029
68030     Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
68031
68032     CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
68033
68034     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
68035
68036 commit f8c320609366176b31104d9bf5e295232e1c7f1d
68037 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
68038 Date:   Mon Nov 19 11:14:16 2007 +0900
68039
68040     [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
68041
68042     lowlevel_init.S: Assembler messages:
68043     lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
68044
68045     Looking at codes, the `memtest' and `clearmem' are intentional mixed
68046     use of `global symbols' and `label' for debugging purpose. To make it
68047     build, just disable global-symbols-use for now. As a result `memtest'
68048     still remains as unused, but leave it be...
68049
68050     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
68051
68052 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
68053 Author: Wolfgang Denk <wd@denx.de>
68054 Date:   Mon Nov 19 12:59:14 2007 +0100
68055
68056     Fix build problems with mp2usb board
68057
68058     Signed-off-by: Wolfgang Denk <wd@denx.de>
68059
68060 commit 6bf4c686afca1e86e1c384d59218f914605713bf
68061 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68062 Date:   Sun Nov 18 18:36:11 2007 +0100
68063
68064     s3c24x0: Fix usb_ohci.c missing in Makefile
68065     and usb_ohci.c warning differ in signedness
68066
68067     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68068
68069 commit 6073f61e078da5ddb521b56256bcc36508589883
68070 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68071 Date:   Sun Nov 18 12:55:02 2007 +0100
68072
68073     pb1x00 board: Fix u16 status declaration when PCMCIA is defined
68074
68075     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68076
68077 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
68078 Author: Wolfgang Denk <wd@denx.de>
68079 Date:   Sun Nov 18 17:11:09 2007 +0100
68080
68081     Fix compiler warnings for ARM systems.
68082
68083     Signed-off-by: Wolfgang Denk <wd@denx.de>
68084
68085 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
68086 Author: Wolfgang Denk <wd@denx.de>
68087 Date:   Sun Nov 18 16:36:27 2007 +0100
68088
68089     Fix compiler warnings for PPC systems. Update CHANGELOG.
68090
68091     Signed-off-by: Wolfgang Denk <wd@denx.de>
68092
68093 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
68094 Author: Stefan Roese <sr@denx.de>
68095 Date:   Sun Nov 18 14:44:44 2007 +0100
68096
68097     ppc4xx: Correct 405EX PCIe UTL register mapping
68098
68099     Map 4k mem space for UTL registers for each port.
68100
68101     Signed-off-by: Stefan Roese <sr@denx.de>
68102
68103 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
68104 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68105 Date:   Sat Nov 17 11:31:10 2007 +0100
68106
68107     Fix warning differ in signedness in net/net.c and net/nfs.c
68108
68109 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
68110 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68111 Date:   Sat Nov 17 20:42:45 2007 +0900
68112
68113     gth2.c: Fix a warning on gth2 build.
68114
68115     gth2.c: In function 'misc_init_r':
68116     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
68117
68118     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68119
68120 commit 2309c130aa4c84b91bd874a41269c923eb61b555
68121 Author: Stefan Roese <sr@denx.de>
68122 Date:   Sat Nov 17 07:58:25 2007 +0100
68123
68124     Fix warning differ in signedness in common/cmd_scsi.c
68125
68126     Signed-off-by: Stefan Roese <sr@denx.de>
68127
68128 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
68129 Author: Stefan Roese <sr@denx.de>
68130 Date:   Sat Nov 17 14:52:29 2007 +0100
68131
68132     ppc4xx: Update AMCC Kilauea config file
68133
68134     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
68135
68136     Signed-off-by: Stefan Roese <sr@denx.de>
68137
68138 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
68139 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68140 Date:   Sat Nov 17 20:05:26 2007 +0900
68141
68142     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
68143
68144     Current trick to pick up GNU assembler minor version does not work with the
68145     latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
68146     "(GNU Binutils) ".
68147
68148       $ sde-as --version |grep "GNU assembler"
68149       GNU assembler 2.15.94 mipssde-6.02.02-20050602
68150       $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
68151       2.15.94
68152       $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
68153       15
68154       $
68155
68156       $ mips-linux-as --version |grep "GNU assembler"
68157       GNU assembler (GNU Binutils) 2.18
68158       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
68159       (GNU
68160       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
68161       (no output)
68162       $
68163
68164     As a result of above, you'll see many noises with such binutils:
68165
68166       make -C cpu/mips/
68167       /bin/sh: line 0: [: : integer expression expected
68168       /bin/sh: line 0: [: : integer expression expected
68169       make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
68170       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
68171       /bin/sh: line 0: [: : integer expression expected
68172       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
68173       /bin/sh: line 0: [: : integer expression expected
68174       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
68175       /bin/sh: line 0: [: : integer expression expected
68176
68177     This patch simplifies the trick and makes it work with both versions of gas.
68178     I also replace an expensive `awk (or gawk)' with `cut'.
68179
68180     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68181
68182 commit 16664f72850846e645616da1c0fa5afcd6d15f15
68183 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68184 Date:   Sat Nov 17 20:05:26 2007 +0900
68185
68186     [MIPS] Remove useless instructions for initializing $gp.
68187
68188     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68189
68190 commit 03c031d5660ea946c39af6e2e16267da857c609f
68191 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68192 Date:   Sat Oct 27 15:27:06 2007 +0900
68193
68194     [MIPS] MIPS 4K core: Coding style cleanups
68195
68196     No logical changes.
68197
68198     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68199
68200 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
68201 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68202 Date:   Sat Nov 17 20:05:20 2007 +0900
68203
68204     [MIPS] gth2.c: Fix a warning on gth2 build.
68205
68206     gth2.c: In function 'misc_init_r':
68207     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
68208
68209     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68210
68211 commit 4fbd0741b2b6441da10be93e10267122581b7079
68212 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68213 Date:   Sat Oct 27 15:22:33 2007 +0900
68214
68215     [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
68216
68217     au1x00_eth.c: In function 'au1x00_miiphy_write':
68218     au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
68219
68220     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68221
68222 commit f01320459736f156707425cf8112f98606301aa4
68223 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68224 Date:   Sat Oct 27 15:00:25 2007 +0900
68225
68226     [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
68227
68228     au1x00_eth.c: In function 'au1x00_enet_initialize':
68229     au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
68230     au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
68231     au1x00_eth.c:246: error: for each function it appears in.)
68232     au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
68233     au1x00_eth.c: In function 'au1x00_miiphy_write':
68234     au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
68235     make[1]: *** [au1x00_eth.o] Error 1
68236
68237     Fixed by moving these two functions forward.
68238
68239     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68240
68241 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
68242 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68243 Date:   Sat Oct 27 15:00:25 2007 +0900
68244
68245     MAKEALL: Added missing pb1000 board
68246
68247     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68248
68249 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
68250 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68251 Date:   Sat Oct 27 15:00:24 2007 +0900
68252
68253     [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
68254
68255     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68256
68257 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
68258 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68259 Date:   Sat Oct 27 15:00:24 2007 +0900
68260
68261     [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
68262
68263     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68264
68265 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
68266 Author: Wolfgang Denk <wd@denx.de>
68267 Date:   Sat Nov 17 02:34:38 2007 +0100
68268
68269     Update CHANGELOIG, prepare for -rc4
68270
68271     Signed-off-by: Wolfgang Denk <wd@denx.de>
68272
68273 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
68274 Author: Luotao Fu <l.fu@pengutronix.de>
68275 Date:   Wed Nov 14 18:58:33 2007 +0100
68276
68277     Fix the i2c frequency and default address in rsdproto board
68278
68279     rsdproto board support has wrong I2C frequency and wrong return value
68280     handling.
68281
68282     Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
68283
68284 commit 429c180edad038f91c989cb14b478228092e7054
68285 Author: Wolfgang Denk <wd@denx.de>
68286 Date:   Sat Nov 17 01:45:38 2007 +0100
68287
68288     powerpc: Backout relocation changes for MPC5121, too.
68289
68290     Apply Grant Likely's backout to MPC5121 code, too.
68291
68292     Pointed out by Rafal Jaworowski <raj@semihalf.com>
68293
68294     Signed-off-by: Wolfgang Denk <wd@denx.de>
68295
68296 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
68297 Author: Grant Likely <grant.likely@secretlab.ca>
68298 Date:   Tue Nov 13 22:18:33 2007 -0700
68299
68300     powerpc: Backout relocation changes.
68301
68302     Ugh.  I *hate* to back this change out, but these compiler flags don't
68303     work for relocation on all versions of GCC.  I've not been able to
68304     reproduce the environment in my setup (and hence, not been able to
68305     find a combination that *does* work), so I've got no choice but to go
68306     back to the old gcc flags and linker script.
68307
68308     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68309
68310 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
68311 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68312 Date:   Tue Nov 13 09:11:05 2007 +0100
68313
68314     Fixed mips_io_port_base build errors.
68315
68316     This patch has been sent on:
68317     - 29 Sep 2007
68318
68319     Although mips_io_port_base is currently a part of IDE command, it is quite
68320     fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
68321     it to MIPS general part, and introduce `set_io_port_base()' from Linux.
68322
68323     This patch is triggered by multiple definition of `mips_io_port_base' build
68324     error on gth2 (and tb0229 also needs this fix.)
68325
68326     board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
68327     /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
68328     common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
68329     make: *** [u-boot] Error 1
68330
68331     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68332     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68333
68334 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
68335 Author: Wolfgang Denk <wd@denx.de>
68336 Date:   Sat Nov 17 01:30:40 2007 +0100
68337
68338     Fix a bug in the slave serial programming mode for the Xilinx
68339     Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
68340     the most significant bit was set, which did not work on any
68341     architecture where "char" defaulted to be an unsigned type.
68342
68343     Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
68344
68345     Signed-off-by: Wolfgang Denk <wd@denx.de>
68346
68347 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
68348 Author: Jon Loeliger <jdl@freescale.com>
68349 Date:   Thu Nov 1 12:23:29 2007 -0500
68350
68351     86xx: Fix broken variable reference when #def DEBUGing.
68352
68353     Sometimes you can't reference the DDR2 controller variables.
68354
68355     Signed-off-by: Jon Loeliger <jdl@freescale.com>
68356
68357 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
68358 Author: Jason Jin <Jason.jin@freescale.com>
68359 Date:   Fri Oct 26 18:32:00 2007 +0800
68360
68361     make 8610 board use pixis reset
68362
68363     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68364
68365 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
68366 Author: Jason Jin <Jason.jin@freescale.com>
68367 Date:   Mon Oct 29 19:26:21 2007 +0800
68368
68369     Unify pixis_reset altbank across board families
68370
68371     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
68372     into the separate board config files.
68373
68374     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68375     Signed-off-by: Jon Loeliger <jdl@freescale.com>
68376
68377 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
68378 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68379 Date:   Wed Nov 7 08:19:21 2007 +0100
68380
68381     Fix warning: pointer targets in assignment differ in signedness
68382
68383     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68384
68385 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
68386 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68387 Date:   Wed Nov 7 08:19:19 2007 +0100
68388
68389     Fix warning differ in signedness in common/cmd_ide.c
68390
68391     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68392
68393 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
68394 Author: Stefan Roese <sr@denx.de>
68395 Date:   Fri Nov 16 14:16:54 2007 +0100
68396
68397     ppc4xx: Enable 405EX PCIe UTL register configuration
68398
68399     Till now the UTL registers on 405EX were not initialized but left with
68400     their default values. This patch new initializes some of the UTL
68401     registers on 405EX.
68402
68403     Signed-off-by: Stefan Roese <sr@denx.de>
68404
68405 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
68406 Author: Stefan Roese <sr@denx.de>
68407 Date:   Fri Nov 16 14:00:59 2007 +0100
68408
68409     ppc4xx: Update AMCC Makalu for board rev 1.1
68410
68411     This patch adds changes needed for Makalu rev 1.1:
68412
68413     - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
68414     - Enable 2nd ethernet port EMAC1
68415     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
68416     - Reset PCIe ports via GPIO upon bootup
68417
68418     Signed-off-by: Stefan Roese <sr@denx.de>
68419
68420 commit 4d4faae65e115e327425cd514c1a35146a85166b
68421 Author: Grant Likely <grant.likely@secretlab.ca>
68422 Date:   Mon Sep 24 09:05:31 2007 -0600
68423
68424     Group PCI and PCMCIA drivers in drivers/Makefile
68425
68426     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68427
68428 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
68429 Author: Grant Likely <grant.likely@secretlab.ca>
68430 Date:   Mon Sep 24 09:05:31 2007 -0600
68431
68432     Group block/flash drivers in drivers/Makefile
68433
68434     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68435
68436 commit df58c81551700f058b44cacf55a7997fa63bfe0a
68437 Author: Grant Likely <grant.likely@secretlab.ca>
68438 Date:   Mon Sep 24 09:05:31 2007 -0600
68439
68440     Group USB drivers in drivers/Makefile
68441
68442     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68443
68444 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
68445 Author: Grant Likely <grant.likely@secretlab.ca>
68446 Date:   Mon Sep 24 09:05:30 2007 -0600
68447
68448     Group i2c drivers in drivers/Makefile
68449
68450     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68451
68452 commit ec00c76de0e5971273905998d62d6bb119324218
68453 Author: Grant Likely <grant.likely@secretlab.ca>
68454 Date:   Mon Sep 24 09:05:30 2007 -0600
68455
68456     Group console drivers in drivers/Makefile
68457
68458     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68459
68460 commit 754f230aa01b8c789fc31f8013c2487954073300
68461 Author: Grant Likely <grant.likely@secretlab.ca>
68462 Date:   Mon Sep 24 09:05:30 2007 -0600
68463
68464     Group network drivers in drivers/Makefile
68465
68466     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68467
68468 commit f0037c56b0d12cd46215124667b9f83d60ef9391
68469 Author: Grant Likely <grant.likely@secretlab.ca>
68470 Date:   Mon Sep 24 09:05:30 2007 -0600
68471
68472     Build: split COBJS value into multiple lines
68473
68474     This change is in preparation for condtitionial compile support in the
68475     build system.  By spliting them all into seperate lines now, subsequent
68476     patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
68477     be less invasive and easier to review
68478
68479     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68480
68481 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
68482 Author: Grant Likely <grant.likely@secretlab.ca>
68483 Date:   Mon Sep 24 09:05:30 2007 -0600
68484
68485     Add .gitignore files
68486
68487     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68488     Acked-by: Kim Phillips <kim.phillips@freescale.com>
68489
68490 commit 955413f35f054a82e40042f1dbcf501c6a05719b
68491 Author: Grant Likely <grant.likely@secretlab.ca>
68492 Date:   Thu Nov 15 08:27:52 2007 -0700
68493
68494     Revert "Correct relocation fixup for mpc5xx"
68495
68496     This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
68497     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68498
68499 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
68500 Author: Grant Likely <grant.likely@secretlab.ca>
68501 Date:   Thu Nov 15 08:24:32 2007 -0700
68502
68503     Revert "Correct fixup relocation for MPC5xxx"
68504
68505     This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
68506     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68507
68508 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
68509 Author: Grant Likely <grant.likely@secretlab.ca>
68510 Date:   Thu Nov 15 08:21:04 2007 -0700
68511
68512     Revert "Correct fixup relocation for mpc8220"
68513
68514     This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
68515     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68516
68517 commit 70922342369e5e39b286fe21e768a239ca07a514
68518 Author: Grant Likely <grant.likely@secretlab.ca>
68519 Date:   Thu Nov 15 08:20:57 2007 -0700
68520
68521     Revert "Correct fixup relocation for mpc824x"
68522
68523     This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
68524     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68525
68526 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
68527 Author: Grant Likely <grant.likely@secretlab.ca>
68528 Date:   Thu Nov 15 08:20:50 2007 -0700
68529
68530     Revert "Correct fixup relocation for mpc8260"
68531
68532     This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
68533     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68534
68535 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
68536 Author: Grant Likely <grant.likely@secretlab.ca>
68537 Date:   Thu Nov 15 08:20:43 2007 -0700
68538
68539     Revert "Correct fixup relocation for mpc83xx"
68540
68541     This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
68542     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68543
68544 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
68545 Author: Grant Likely <grant.likely@secretlab.ca>
68546 Date:   Thu Nov 15 08:20:25 2007 -0700
68547
68548     Revert "[MPC512x] Correct fixup relocation"
68549
68550     This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
68551     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68552
68553 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
68554 Author: Stefan Roese <sr@denx.de>
68555 Date:   Thu Nov 15 14:25:09 2007 +0100
68556
68557     ppc4xx: Small AMCC Kilauea cleanup
68558
68559     Remove not needed pci_target_init() function.
68560
68561     Signed-off-by: Stefan Roese <sr@denx.de>
68562
68563 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
68564 Author: Stefan Roese <sr@denx.de>
68565 Date:   Thu Nov 15 14:23:55 2007 +0100
68566
68567     ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
68568
68569     - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
68570     - Cleanup of the 4xx GPIO functions
68571     - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
68572
68573     Signed-off-by: Stefan Roese <sr@denx.de>
68574
68575 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
68576 Author: Stefan Roese <sr@denx.de>
68577 Date:   Thu Nov 15 14:20:08 2007 +0100
68578
68579     ppc4xx: AMCC Taihu board config file cleanup
68580
68581     This patch makes the AMCC Taihu a little more compatible to the other
68582     AMCC eval boards.
68583
68584     Signed-off-by: Stefan Roese <sr@denx.de>
68585
68586 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
68587 Author: Marian Balakowicz <m8@semihalf.com>
68588 Date:   Thu Nov 15 13:37:28 2007 +0100
68589
68590     [INKA4x0] NG hardware: flash support
68591
68592     Disabled and remove inka4x0 custom flash driver, use CFI flash
68593     driver instead.
68594
68595     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
68596
68597 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
68598 Author: Marian Balakowicz <m8@semihalf.com>
68599 Date:   Thu Nov 15 13:29:55 2007 +0100
68600
68601     [INKA4x0] NG hardware: SDRAM support
68602
68603     Add support for three new DDR chips that may  be present on a NG
68604     INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
68605
68606     Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
68607
68608     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
68609
68610 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
68611 Author: Marian Balakowicz <m8@semihalf.com>
68612 Date:   Thu Nov 15 13:24:43 2007 +0100
68613
68614     [INKA4x0] NG hardware: platform code update
68615
68616     - Cleanup compile warnings.
68617     - Add missing '\0' in default environment.
68618     - Increase CFG_MONITOR_LEN to 256 KiB.
68619     - Add required CFG_USE_PPCENV.
68620
68621     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
68622
68623 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
68624 Author: Peter Pearse <peter.pearse@arm.com>
68625 Date:   Thu Nov 15 08:58:00 2007 +0000
68626
68627     Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
68628     Remove warnings re onenand_read() & write()
68629
68630 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
68631 Author: Peter Pearse <peter.pearse@arm.com>
68632 Date:   Thu Nov 15 08:45:13 2007 +0000
68633
68634     Correction patch
68635
68636 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
68637 Author: Roy Zang <tie-fei.zang@freescale.com>
68638 Date:   Thu Sep 13 18:52:28 2007 +0800
68639
68640     Enable ULi1575 Ethernet support in 8610HPCD config
68641
68642     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68643     Acked-by: Jon Loeliger <jdl@freescale.com>
68644
68645 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
68646 Author: Stefan Roese <sr@denx.de>
68647 Date:   Tue Nov 13 08:18:20 2007 +0100
68648
68649     ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
68650
68651     Signed-off-by: Stefan Roese <sr@denx.de>
68652
68653 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
68654 Author: Stefan Roese <sr@denx.de>
68655 Date:   Tue Nov 13 08:06:11 2007 +0100
68656
68657     ppc4xx: Fix 405EX PCIe UTLSET register setup
68658
68659     Signed-off-by: Stefan Roese <sr@denx.de>
68660
68661 commit 1ce55151c85d068f70317a8d65c61058b891afb4
68662 Author: Heiko Schocher <hs@denx.de>
68663 Date:   Tue Nov 13 07:50:29 2007 +0100
68664
68665     [UC101] SRAM now with 2 MB working.
68666
68667     Signed-off-by: Heiko Schocher <hs@denx.de>
68668
68669 commit 2d14684341109a69616e4d6016cd61402d55086f
68670 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68671 Date:   Fri Nov 9 15:37:53 2007 +0100
68672
68673     ppc4xx: Use generic usb-ohci driver for sequoia board
68674
68675     This patch makes the sequoia board use the generic usb-ohci driver
68676     instead of cpu/ppc4xx/usb_ohci.c.
68677
68678     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68679     Signed-off-by: Stefan Roese <sr@denx.de>
68680
68681 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
68682 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68683 Date:   Fri Nov 9 15:37:23 2007 +0100
68684
68685     ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
68686
68687     This patch disables the 44x d-cache on 'usb start' and
68688     reenables it on 'usb stop'. This should be seen as a
68689     temporary fix until the generic usb-ohci driver can
68690     life with d-cache enabled.
68691
68692     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68693     Signed-off-by: Stefan Roese <sr@denx.de>
68694
68695 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
68696 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68697 Date:   Fri Nov 9 15:36:44 2007 +0100
68698
68699     ppc4xx: Remove redundant code from 4xx network driver
68700
68701     This patch removes some redundant code and decrements the end
68702     address of cache flush and invalidate by 1.
68703
68704     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68705     Signed-off-by: Stefan Roese <sr@denx.de>
68706
68707 commit 5ca9881aad8c413ac2a82868a5e3719178254502
68708 Author: Peter Pearse <peter.pearse@arm.com>
68709 Date:   Fri Nov 9 15:24:26 2007 +0000
68710
68711     Add apollon board support
68712     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
68713
68714 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
68715 Author: Stefan Roese <sr@denx.de>
68716 Date:   Fri Nov 9 12:19:58 2007 +0100
68717
68718     ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
68719
68720     Signed-off-by: Stefan Roese <sr@denx.de>
68721
68722 commit c7f69c340277935a6c19a956421852da944a365f
68723 Author: Stefan Roese <sr@denx.de>
68724 Date:   Fri Nov 9 12:18:54 2007 +0100
68725
68726     ppc4xx: Make output a little shorter on I2C bootrom detection
68727
68728     Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
68729     already print a line with the information which I2C bootrom is
68730     used for bootstrap configuration. So we don't need this extra line
68731     with "I2C boot EEPROM en-/dis-abled".
68732
68733     This patch also has a little code cleanup integrated.
68734
68735     Signed-off-by: Stefan Roese <sr@denx.de>
68736
68737 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
68738 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68739 Date:   Thu Nov 8 12:50:18 2007 -0600
68740
68741     ColdFire: MCF5329 - Remove reset registers from CCM
68742
68743     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68744
68745 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
68746 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68747 Date:   Thu Nov 8 12:31:11 2007 -0600
68748
68749     ColdFire: MCF5329 - Add Reset structure to immap_5329.h
68750
68751     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68752
68753 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
68754 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68755 Date:   Thu Nov 8 12:19:01 2007 -0600
68756
68757     ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
68758
68759     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68760
68761 commit 225a24b5e062ad94627424508ae814f51dbe1a34
68762 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68763 Date:   Wed Nov 7 18:00:54 2007 -0600
68764
68765     ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
68766
68767     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68768
68769 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
68770 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68771 Date:   Wed Nov 7 17:56:15 2007 -0600
68772
68773     ColdFire: MCF532x - Update do_reset() using core reset
68774
68775     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68776
68777 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
68778 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68779 Date:   Wed Nov 7 17:51:00 2007 -0600
68780
68781     ColdFire: Update cpu flag for 4.2-xx compiler
68782
68783     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68784
68785 commit 070ba56115b4da63b46e974287fa4550d4023386
68786 Author: York Sun <yorksun@freescale.com>
68787 Date:   Wed Oct 31 14:59:04 2007 -0500
68788
68789     8610: Add console frame buffer support to FSL 8610 DIU driver.
68790
68791     Add cfb console support to FSL 8610 DIU driver.
68792     Inspect board version from PIXIS to obtain correct pixel format.
68793
68794     Use #define CONFIG_VIDEO in config file to enable fb console.
68795
68796     To switch monitor, set monitor variable to
68797     0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
68798     followed by "diufb init".
68799
68800     Preserve logo bitmap at the top of the fb console.
68801
68802     Signed-off-by: York Sun <yorksun@freescale.com>
68803     Signed-off-by: Jon Loeliger <jdl@freescale.com>
68804
68805 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
68806 Author: York Sun <yorksun@freescale.com>
68807 Date:   Mon Oct 29 13:58:39 2007 -0500
68808
68809     8610: Add 8610 DIU display driver
68810
68811     1280x1024 and 1024x768 @ 32 bpp are supported now.
68812     DVI, Single-link LVDS, Double-link LVDS are all supported.
68813
68814     Environmental variable "monitor" is used to specify monitor port.
68815
68816     A new command "diufb" is introduced to reinitialize monitor
68817     and display a BMP file in the memory. So far, 1-bit, 4-bit,
68818     8-bit and 24-bit BMP formats are supported.
68819
68820         diufb init
68821             - initialize the diu driver
68822         Enable the port specified in the environmental variable "monitor"
68823
68824         diufb addr
68825             - display bmp file in memory.
68826         The bmp image should be no bigger than the resolution, 1280x1024
68827         for DVI and double-link LVDS, 1024x768 for single-link LVDS.
68828
68829     Note, this driver allocate memory but doesn't free it after use
68830     It is written on purpose -- to avoid a failure of reallocation
68831     due to memory fragement.
68832
68833     ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
68834
68835     Signed-off-by: York Sun <yorksun@freescale.com>
68836     Signed-off-by: Jon loeliger <jdl@freescale.com>
68837
68838 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
68839 Author: York Sun <yorksun@freescale.com>
68840 Date:   Wed Oct 31 10:43:59 2007 -0500
68841
68842     FSL: Add a freescale bitmap logo.
68843
68844     This Freescale logo is a 340 x 128 x 4bpp BMP file
68845     that can be displayed by the DIU Framebuffer driver.
68846
68847     Signed-off-by: York Sun <yorksun@freescale.com>
68848     Signed-off-by: Jon Loeliger <jdl@freescale.com>
68849
68850 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
68851 Author: York Sun <yorksun@freescale.com>
68852 Date:   Mon Oct 29 13:57:53 2007 -0500
68853
68854     8610: Make some extra debug environment variables conditional.
68855
68856     One may #define ENV_DEBUG to get them back again.
68857
68858     Signed-off-by: York Sun <yorksun@freescale.com>
68859
68860 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
68861 Author: Jason Jin <Jason.jin@freescale.com>
68862 Date:   Mon Oct 29 19:26:21 2007 +0800
68863
68864     8610: Actually enable pixis_reset CONFIGs
68865
68866     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68867
68868 commit f3bceaab230b4748d0afc4109b6837308f018b40
68869 Author: Jason Jin <Jason.jin@freescale.com>
68870 Date:   Fri Oct 26 18:31:59 2007 +0800
68871
68872     Fix the BAT definition of PCI IO on 8610 board
68873
68874     The address in the BAT register is aligned with the BAT size.
68875     The original definition actually did not define BAT for PCIE2 IO.
68876     This patch fix this.
68877
68878     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68879
68880 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
68881 Author: Jason Jin <Jason.jin@freescale.com>
68882 Date:   Mon Oct 29 19:26:21 2007 +0800
68883
68884     Unify pixis_reset altbank across board families
68885
68886     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
68887     into the separate board config files.
68888
68889     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68890     Signed-off-by: Jon Loeliger <jdl@freescale.com>
68891
68892 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
68893 Author: Jason Jin <Jason.jin@freescale.com>
68894 Date:   Fri Oct 26 18:32:00 2007 +0800
68895
68896     make 8610 board use pixis reset
68897
68898     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68899
68900 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
68901 Author: Jon Loeliger <jdl@freescale.com>
68902 Date:   Thu Nov 1 12:23:29 2007 -0500
68903
68904     86xx: Fix broken variable reference when #def DEBUGing.
68905
68906     Sometimes you can't reference the DDR2 controller variables.
68907
68908     Signed-off-by: Jon Loeliger <jdl@freescale.com>
68909
68910 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
68911 Author: Roy Zang <tie-fei.zang@freescale.com>
68912 Date:   Mon Nov 5 17:39:24 2007 +0800
68913
68914     Implement general ULi 526x Ethernet driver support in U-boot
68915
68916     This patch implements general ULi 526x Ethernet driver.
68917     Until now, it is the only native Ethernet port on
68918     MPC8610HPCD board, but it could be used on other boards
68919     with ULi 526x Ethernet port as well.
68920
68921     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68922     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
68923     Acked-by: Jon Loeliger <jdl@freescale.com>
68924     Signed-off-by: Ben Warren <bwarren@qstreams.com>
68925
68926 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
68927 Author: Larry Johnson <lrj@arlinx.com>
68928 Date:   Thu Nov 1 08:46:50 2007 -0500
68929
68930     NET: Add Ethernet 1000BASE-X support for PPC4xx
68931
68932     This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
68933     "miiphy_duplex()".  It also adds function "miiphy_is_1000base_x ()", which
68934     returns non-zero iff the PHY registers are configured for 1000BASE-X.  The
68935     "mii info" command is modified to distinguish between 1000BASE-T and -X.
68936
68937     Signed-off-by: Larry Johnson <lrj@acm.org>
68938     Signed-off-by: Ben Warren <bwarren@qstreams.com>
68939
68940 commit 298035df4948b113d29ac0e694717d34b95bc5dc
68941 Author: Larry Johnson <lrj@arlinx.com>
68942 Date:   Wed Oct 31 11:21:29 2007 -0500
68943
68944     NET: Cosmetic changes
68945
68946     Signed-off-by: Larry Johnson <lrj@acm.org>
68947     Signed-off-by: Ben Warren <bwarren@qstreams.com>
68948
68949 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
68950 Author: Stefan Roese <sr@denx.de>
68951 Date:   Mon Nov 5 07:43:05 2007 +0100
68952
68953     ppc4xx: Make output a little shorter on PCIe detection
68954
68955     Now not max 3 lines but 2 lines are printed per PCIe port.
68956
68957     Signed-off-by: Stefan Roese <sr@denx.de>
68958
68959 commit 992742a5b09d9040adbd156fb90756af66ade310
68960 Author: Wolfgang Denk <wd@denx.de>
68961 Date:   Sat Nov 3 23:09:27 2007 +0100
68962
68963     Cleanup coding style; update CHANGELOG
68964
68965     Signed-off-by: Wolfgang Denk <wd@denx.de>
68966
68967 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
68968 Author: Bruce Adler <bruce.adler@ccpu.com>
68969 Date:   Fri Nov 2 13:15:42 2007 -0700
68970
68971     fix wording in README
68972
68973     Changed the wording to properly describe the shadowing
68974     of the environment from ROM to RAM
68975
68976     Signed-off-by: Bruce Adler <bruce.adler@acm.org>
68977
68978 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
68979 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68980 Date:   Wed Oct 31 02:18:15 2007 +0900
68981
68982     blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
68983
68984     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68985
68986 commit ec22755799466c8a103664bb3a5e647bf9c238f4
68987 Author: Vlad Lungu <vlad@comsys.ro>
68988 Date:   Thu Oct 25 16:08:14 2007 +0300
68989
68990     Trimmed some variables in ne2000.c
68991
68992     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
68993
68994 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
68995 Author: Zhang Wei <wei.zhang@freescale.com>
68996 Date:   Thu Oct 25 17:51:27 2007 +0800
68997
68998     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
68999
69000     The scan code of the key 'z' is 0x1d, which should be handled.
69001
69002     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
69003     controller.
69004
69005     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
69006
69007 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
69008 Author: Zhang Wei <wei.zhang@freescale.com>
69009 Date:   Thu Oct 25 17:30:04 2007 +0800
69010
69011     Fix USB support issue for MPC8641HPCN board.
69012
69013     The configuration file has already enabled USB, but it
69014     missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
69015     on MPC8641HPCN can not work because of the wrong USB
69016     register endian.
69017
69018     And add the USB command to U-Boot commands list.
69019
69020     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
69021
69022 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
69023 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69024 Date:   Wed Oct 24 18:16:01 2007 +0200
69025
69026     Use config_cmd_default.h instead of config_cmd_all.h
69027
69028     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69029
69030 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
69031 Author: Marian Balakowicz <m8@semihalf.com>
69032 Date:   Wed Oct 24 01:37:36 2007 +0200
69033
69034     TQM5200: Call usb_cpu_init() during board init
69035
69036     usb_cpu_init() configures GPS USB pins, clocks, etc. and
69037     is required for proper operation of kernel USB subsystem.
69038     This setup was previously done in the kernel by the fixup
69039     code which is being removed, thus low level init must be
69040     done by U-boot now.
69041
69042     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
69043
69044 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
69045 Author: Guennadi Liakhovetski <lg@denx.de>
69046 Date:   Tue Oct 23 16:25:50 2007 +0200
69047
69048     Fix typo in nfs.c
69049
69050     An obvious typo. Originally fixed in linkstation u-boot port.
69051
69052     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
69053
69054 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
69055 Author: Guennadi Liakhovetski <lg@denx.de>
69056 Date:   Tue Oct 23 14:35:05 2007 +0200
69057
69058     Fix a typo in cpu/mpc824x/interrupts.c
69059
69060     Since December 2003 the timer_interrupt_cpu() function in
69061     cpu/mpc824x/interrupts.c contains what seems to be a superfluous
69062     parameter. Remove it.
69063
69064     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
69065
69066 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
69067 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
69068 Date:   Wed Oct 17 11:13:51 2007 +0200
69069
69070     add ft_cpu_setup(..) on mpc8260
69071
69072     Add ft_cpu_setup(..)-function to adapt it for use with libfdt
69073     based on code from mpc5xxx
69074
69075     Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
69076     --
69077
69078 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
69079 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
69080 Date:   Wed Oct 17 11:18:42 2007 +0200
69081
69082     changes for IDS8247 board support
69083
69084     To get the IDS8247 board working following are done:
69085      - FCC2 is deactivated
69086      - FCC1 is activated
69087      - I2C is activated
69088      - CFI driver is activated
69089      - Adapted for use with LIBFDT
69090
69091     Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
69092     --
69093
69094 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
69095 Author: Stefan Roese <sr@denx.de>
69096 Date:   Sat Nov 3 12:08:28 2007 +0100
69097
69098     ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
69099
69100     This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
69101     Again, only one image supports both targets.
69102
69103     Signed-off-by: Stefan Roese <sr@denx.de>
69104
69105 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
69106 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
69107 Date:   Wed Oct 24 15:48:37 2007 +0200
69108
69109     ATSTK1002: Remove default ethernet addresses
69110
69111     Wolfgang is right: It's not a good idea to set up default initial
69112     ethernet addresses for a board, even though they belong to the local
69113     range.
69114
69115     This will change the failure mode from "IT manager screams at you for
69116     using duplicate ethernet addresses" to a nice error message explaining
69117     that the ethernet address hasn't been set properly.
69118
69119     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
69120
69121 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
69122 Author: Justin Flammia <jflammia@savantav.com>
69123 Date:   Mon Oct 29 17:40:35 2007 -0400
69124
69125     DHCP Client Fix
69126
69127     This is a multi-part message in MIME format.
69128
69129     commit e6e505eae94ed721e123e177489291fc4544b7b8
69130     Author: Justin Flammia <jflammia@savantav.com>
69131     Date:   Mon Oct 29 17:19:03 2007 -0400
69132
69133         Found a bug in the way the DHCP Request packet is built, where the IP address
69134         that is offered by the server is bound to prematurely. This patch is a fix of
69135         that bug where the IP address offered by the DHCP server is not used until
69136         after the DHCP ACK from the server is received.
69137
69138     Signed-off-by: Justin Flammia <jflammia@savantav.com>
69139     Signed-off-by: Ben Warren <bwarren@qstreams.com>
69140
69141 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
69142 Author: Stefan Roese <sr@denx.de>
69143 Date:   Wed Oct 31 20:58:34 2007 +0100
69144
69145     ppc4xx: Fix acadia_nand build problem
69146
69147     Since the cache handling functions were moved from start.S into cache.S
69148     the acadia NAND booting Makfile needs to be adapted accordingly.
69149
69150     Signed-off-by: Stefan Roese <sr@denx.de>
69151
69152 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
69153 Author: Stefan Roese <sr@denx.de>
69154 Date:   Wed Oct 31 20:57:11 2007 +0100
69155
69156     ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
69157
69158     This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
69159     and to the Sequoia TLB init code. Now the cache can be enabled on 44x
69160     boards by defining CONFIG_4xx_DCACHE in the board config file. This
69161     option will disappear, when more boards use is successfully and no
69162     more known problems exist.
69163
69164     This is tested successfully on Sequoia and Katmai. The only problem that
69165     needs to be fixed is, that USB is not working on Sequoia right now, since
69166     it will need some cache handling code too, similar to the 4xx EMAC driver.
69167
69168     Signed-off-by: Stefan Roese <sr@denx.de>
69169
69170 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
69171 Author: Stefan Roese <sr@denx.de>
69172 Date:   Wed Oct 31 20:51:10 2007 +0100
69173
69174     ppc4xx: Enable CPU POST test for 4xx with dcache enabled
69175
69176     Now with caches enabled (i- and d-cache) on 44x, we need a chance to
69177     disable the cache for the CPU POST tests, since these tests consist
69178     of self modifying code. This is done via the new change_tlb() function.
69179
69180     Signed-off-by: Stefan Roese <sr@denx.de>
69181
69182 commit f71b2888b4b3c870909a0341427b2a914246f81f
69183 Author: Stefan Roese <sr@denx.de>
69184 Date:   Wed Oct 31 20:47:26 2007 +0100
69185
69186     ppc4xx: Change 4xx POST ethernet test to handle cached memory too
69187
69188     This patch enables the 4xx EMAC POST driver to work too, when dcache is
69189     enabled.
69190
69191     Signed-off-by: Stefan Roese <sr@denx.de>
69192
69193 commit a2685904061b35a17583d65fe47cdc2686a69eaa
69194 Author: Stefan Roese <sr@denx.de>
69195 Date:   Wed Oct 31 20:45:53 2007 +0100
69196
69197     ppc4xx: Remove temporary TLB entry in POST cache test only for 440
69198
69199     Signed-off-by: Stefan Roese <sr@denx.de>
69200
69201 commit ff768cb168d8157c24a25016dbfbeb465e47f420
69202 Author: Stefan Roese <sr@denx.de>
69203 Date:   Wed Oct 31 18:01:24 2007 +0100
69204
69205     ppc4xx: Change 4xx ethernet driver to handle cached memory too
69206
69207     This patch enables the 4xx EMAC driver to work too, when dcache is
69208     enabled.
69209
69210     Signed-off-by: Stefan Roese <sr@denx.de>
69211
69212 commit 483e09a223c666269ef81d3573a6591b1046b0ef
69213 Author: Stefan Roese <sr@denx.de>
69214 Date:   Wed Oct 31 17:59:22 2007 +0100
69215
69216     ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
69217
69218     This function is used to either turn cache on or off in a specific
69219     memory area.
69220
69221     Signed-off-by: Stefan Roese <sr@denx.de>
69222
69223 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
69224 Author: Stefan Roese <sr@denx.de>
69225 Date:   Wed Oct 31 17:57:52 2007 +0100
69226
69227     ppc4xx: Remove cache definition from 4xx board config files
69228
69229     All 4xx board config files don't need the cache definitions anymore.
69230     These are now defined in common headers.
69231
69232     Signed-off-by: Stefan Roese <sr@denx.de>
69233
69234 commit 9b94ac61d2176185c30adf0793e079ec30e68687
69235 Author: Stefan Roese <sr@denx.de>
69236 Date:   Wed Oct 31 17:55:58 2007 +0100
69237
69238     ppc4xx: Rework 4xx cache support
69239
69240     New cache handling functions added and all existing functions
69241     moved from start.S into seperate cache.S.
69242
69243     Signed-off-by: Stefan Roese <sr@denx.de>
69244
69245 commit 06713773da4ac3d390c63d82641eb553224b27c2
69246 Author: Stefan Roese <sr@denx.de>
69247 Date:   Tue Oct 23 18:03:12 2007 +0200
69248
69249     ppc4xx: Remove compiler warning from previous commit
69250
69251     Signed-off-by: Stefan Roese <sr@denx.de>
69252
69253 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
69254 Author: Stefan Roese <sr@denx.de>
69255 Date:   Tue Oct 23 14:40:30 2007 +0200
69256
69257     ppc4xx: Remove temporary TLB entry in POST cache test
69258
69259     Signed-off-by: Stefan Roese <sr@denx.de>
69260
69261 commit 1338e6a81834099ba19733b69aafd8ef5f098094
69262 Author: Stefan Roese <sr@denx.de>
69263 Date:   Tue Oct 23 14:05:08 2007 +0200
69264
69265     ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
69266
69267     I lately noticed, that newer 4xx board with GBit support sometimes don't
69268     finish link autonegotiation in 4 seconds. Changing this timeout to 5
69269     seconds seems fine here.
69270
69271     Signed-off-by: Stefan Roese <sr@denx.de>
69272
69273 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
69274 Author: Stefan Roese <sr@denx.de>
69275 Date:   Tue Oct 23 14:03:17 2007 +0200
69276
69277     ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
69278
69279     This patch changes all in32/out32 calls to use the recommended in_be32/
69280     out_be32 macros instead.
69281
69282     Signed-off-by: Stefan Roese <sr@denx.de>
69283
69284 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
69285 Author: Stefan Roese <sr@denx.de>
69286 Date:   Thu Oct 25 12:24:59 2007 +0200
69287
69288     ppc4xx: Fix POST ethernet test for Haleakala
69289
69290     The POST ethernet test needed to be changed to dynamically determine
69291     the count of ethernet devices. This code is cloned from the 4xx
69292     ethernet driver.
69293
69294     Signed-off-by: Stefan Roese <sr@denx.de>
69295
69296 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
69297 Author: Stefan Roese <sr@denx.de>
69298 Date:   Tue Oct 23 11:31:05 2007 +0200
69299
69300     ppc4xx: Correct UART input clock calculation and passing to fdt
69301
69302     We now use a value in the gd (global data) structure for the UART input
69303     frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
69304     in get_sys_info().
69305
69306     Signed-off-by: Stefan Roese <sr@denx.de>
69307
69308 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
69309 Author: Stefan Roese <sr@denx.de>
69310 Date:   Tue Oct 23 10:10:08 2007 +0200
69311
69312     ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
69313
69314     The Haleakala is nearly identical with the Kilauea eval board. The only
69315     difference is that the 405EXr only supports one EMAC and one PCIe
69316     interface. This patch adds support for the Haleakala board by using
69317     the identical image for Kilauea and Haleakala. The distinction is done
69318     by comparing the PVR.
69319
69320     Signed-off-by: Stefan Roese <sr@denx.de>
69321
69322 commit 9f798766aa85e62eb8fa8c721e148df609b78137
69323 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
69324 Date:   Tue Oct 23 08:29:10 2007 +0200
69325
69326     ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
69327
69328     This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
69329
69330     Note:
69331     As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
69332     DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
69333     modules are still plugged in. So it is recommended to remove the DIMM
69334     modules while using the NAND booting code with the fixed SDRAM setup!
69335
69336     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
69337     Signed-off-by: Stefan Roese <sr@denx.de>
69338
69339 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
69340 Author: Stefan Roese <sr@denx.de>
69341 Date:   Mon Oct 22 16:24:44 2007 +0200
69342
69343     ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
69344
69345     Signed-off-by: Stefan Roese <sr@denx.de>
69346
69347 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
69348 Author: Stefan Roese <sr@denx.de>
69349 Date:   Mon Oct 22 16:22:40 2007 +0200
69350
69351     ppc4xx: Rework of 4xx serial driver (4)
69352
69353     Change 4xx_uart.c:
69354
69355     - Use in_8/out_8 macros instead of in8/out8
69356     - No need for UART_BASE marco anymore, now really handled via function
69357       parameter
69358     - serial_init_common() introduced
69359     - Further coding style cleanup
69360
69361     Signed-off-by: Stefan Roese <sr@denx.de>
69362
69363 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
69364 Author: Stefan Roese <sr@denx.de>
69365 Date:   Mon Oct 22 15:45:49 2007 +0200
69366
69367     ppc4xx: Rework of 4xx serial driver (3)
69368
69369     Change all linker scripts to reference the changed driver name iop480_uart.o.
69370
69371     Signed-off-by: Stefan Roese <sr@denx.de>
69372
69373 commit 882ae41274921f9016131806bdeb27e19606f47a
69374 Author: Stefan Roese <sr@denx.de>
69375 Date:   Mon Oct 22 15:44:39 2007 +0200
69376
69377     ppc4xx: Rework of 4xx serial driver (2)
69378
69379     Change all linker scripts to reference the changed driver name 4xx_uart.o.
69380
69381     Note: In most cased all these explicit referencing of these object files
69382     in the linker scripts is not neccessary. Only for manually embedded
69383     environment into the U-Boot image, which is not done is most cases.
69384
69385     Signed-off-by: Stefan Roese <sr@denx.de>
69386
69387 commit ad31e40bed042cb670d0036fea96435007afb838
69388 Author: Stefan Roese <sr@denx.de>
69389 Date:   Mon Oct 22 15:09:59 2007 +0200
69390
69391     ppc4xx: Rework of 4xx serial driver (1)
69392
69393     This patch starts the rework of the PPC4xx serial driver. First we split
69394     the file into two seperate files, one 4xx_uart.c with the 405/440 UART
69395     handling code and the other one iop480_uart.c with the UART code for the
69396     PLX-Tech IOP480 PPC (PPC403 based).
69397
69398     Signed-off-by: Stefan Roese <sr@denx.de>
69399
69400 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
69401 Author: Stefan Roese <sr@denx.de>
69402 Date:   Mon Oct 22 10:30:38 2007 +0200
69403
69404     ppc4xx: Correct UART input clock calculation and passing to fdt
69405
69406     Signed-off-by: Stefan Roese <sr@denx.de>
69407
69408 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
69409 Author: Stefan Roese <sr@denx.de>
69410 Date:   Mon Oct 22 07:34:34 2007 +0200
69411
69412     ppc4xx: Add initial AMCC Makalu 405EX support
69413
69414     Signed-off-by: Stefan Roese <sr@denx.de>
69415
69416 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
69417 Author: Stefan Roese <sr@denx.de>
69418 Date:   Mon Oct 22 07:33:52 2007 +0200
69419
69420     ppc4xx: Add freqUART to CPU speed detection
69421
69422     This value is needed later for the device tree configuration of
69423     the uart clock.
69424
69425     Signed-off-by: Stefan Roese <sr@denx.de>
69426
69427 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
69428 Author: Stefan Roese <sr@denx.de>
69429 Date:   Sun Oct 21 14:26:29 2007 +0200
69430
69431     ppc: Small Kilauea cleanup of config file
69432
69433     Signed-off-by: Stefan Roese <sr@denx.de>
69434
69435 commit 758c037aeead34b49631b8da3a90b1bba14c0410
69436 Author: Stefan Roese <sr@denx.de>
69437 Date:   Sun Oct 21 08:16:12 2007 +0200
69438
69439     rtc: Add Xicor/Intersil X1205 RTC support
69440
69441     This patch adds support for the Xicor/Intersil X1205 RTC used on the
69442     AMCC Makalu eval board. This driver is basically cloned from the Linux
69443     driver version (2.6.23).
69444
69445     This patch also introduces the Linux bcd.h header for the BCD2BIN/
69446     BIN2BCD conversions. In the future some of the other U-Boot RTC driver
69447     should be converted to also use this header instead of implementing
69448     their own local copy of these functions/macros.
69449
69450     Signed-off-by: Stefan Roese <sr@denx.de>
69451
69452 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
69453 Author: Stefan Roese <sr@denx.de>
69454 Date:   Sun Oct 21 08:12:41 2007 +0200
69455
69456     ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
69457
69458     This patch moves some common 4xx macros and the PPC405_SYS_INFO/
69459     PPC440_SYS_INFO structure into the common ppc4xx.h header.
69460
69461     Lot's of other macros are good candidates to be consolidated this way
69462     in the future.
69463
69464     Signed-off-by: Stefan Roese <sr@denx.de>
69465
69466 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
69467 Author: Stefan Roese <sr@denx.de>
69468 Date:   Sun Oct 21 08:05:18 2007 +0200
69469
69470     ppc4xx: Fix size setup in Kilauea DDR2 init routine
69471
69472     The size was initilized wrong. Instead of 256MB, the DDR2 controller
69473     was setup to 512MB. Now the correct values is used.
69474
69475     This patch also does a little cleanup and adds a comment here.
69476
69477     Signed-off-by: Stefan Roese <sr@denx.de>
69478
69479 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
69480 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
69481 Date:   Thu Oct 18 17:29:04 2007 +0200
69482
69483     ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
69484
69485     CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
69486     number is used to access system registers.
69487
69488     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
69489     Signed-off-by: Stefan Roese <sr@denx.de>
69490
69491 commit c36c68160333ac5fe41ec3db12a728b7075b3912
69492 Author: Stefan Roese <sr@denx.de>
69493 Date:   Thu Oct 18 07:42:27 2007 +0200
69494
69495     ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
69496
69497     On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
69498     is the internal SRAM. Since I now ported and tested this endpoint mode
69499     on Kilauea successfully to map to 0 (SDRAM), I also changed this for
69500     Katmai.
69501
69502     Yucca will stay at internal SRAM for now. Not sure if somebody relies on
69503     this setup.
69504
69505     Signed-off-by: Stefan Roese <sr@denx.de>
69506
69507 commit 5cb4af4791f61843432155142b6cfac901f66c10
69508 Author: Stefan Roese <sr@denx.de>
69509 Date:   Thu Oct 18 07:39:38 2007 +0200
69510
69511     ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
69512
69513     This patch adds endpoint support for the AMCC Kilauea eval board. It can
69514     be tested by connecting a reworked PCIe cable (only 1x lane singles
69515     connected) to another root-complex.
69516
69517     In this test setup, a 64MB inbound window is configured at BAR0 which maps
69518     to 0 on the PLB side. So accessing this BAR0 from the root-complex will
69519     access the first 64MB of the SDRAM on the PPC side.
69520
69521     Signed-off-by: Stefan Roese <sr@denx.de>
69522
69523 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
69524 Author: Stefan Roese <sr@denx.de>
69525 Date:   Sat Oct 13 16:43:23 2007 +0200
69526
69527     ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
69528
69529     This patch adds support for dynamic configuration of PCIe ports for the
69530     AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
69531     boards Yucca & Katmai and the 405EX board Kilauea.
69532
69533     This dynamic configuration is done via the "pcie_mode" environement
69534     variable. This variable can be set to "EP" or "RP" for endpoint or
69535     rootpoint mode. Multiple values can be joined via the ":" delimiter.
69536     Here an example:
69537
69538     pcie_mode=RP:EP:EP
69539
69540     This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
69541     as endpoint.
69542
69543     Per default Yucca will be configured as:
69544     pcie_mode=RP:EP:EP
69545
69546     Per default Katmai will be configured as:
69547     pcie_mode=RP:RP:REP
69548
69549     Per default Kilauea will be configured as:
69550     pcie_mode=RP:RP
69551
69552     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
69553     Signed-off-by: Stefan Roese <sr@denx.de>
69554
69555 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
69556 Author: Stefan Roese <sr@denx.de>
69557 Date:   Thu Oct 11 11:15:59 2007 +0200
69558
69559     ppc4xx: Enable device tree support (fdt) on Kilauea per default
69560
69561     This patch enables the fdt support on the AMCC Kilauea eval board.
69562     Additionally now EBC ranges fdt fixup is included to support NOR
69563     FLASH mapping via the Linux physmap_of driver.
69564
69565     This Kilauea port now support booting arch/ppc and arch/powerpc
69566     Linux kernels. The default environment "net_nfs" is for arch/ppc
69567     and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
69568     support will be removed.
69569
69570     Signed-off-by: Stefan Roese <sr@denx.de>
69571
69572 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
69573 Author: Stefan Roese <sr@denx.de>
69574 Date:   Thu Oct 11 11:11:45 2007 +0200
69575
69576     ppc4xx: Add additional debug info to 4xx fdt support
69577
69578     Signed-off-by: Stefan Roese <sr@denx.de>
69579
69580 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
69581 Author: Stefan Roese <sr@denx.de>
69582 Date:   Fri Oct 5 21:28:58 2007 +0200
69583
69584     ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
69585
69586     Signed-off-by: Stefan Roese <sr@denx.de>
69587
69588 commit 1941cce71b1ae975602854045061e82f94ecd012
69589 Author: Stefan Roese <sr@denx.de>
69590 Date:   Fri Oct 5 17:35:10 2007 +0200
69591
69592     ppc4xx: Fix small merge problem in 4xx_enet.c
69593
69594     Signed-off-by: Stefan Roese <sr@denx.de>
69595
69596 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
69597 Author: Stefan Roese <sr@denx.de>
69598 Date:   Fri Oct 5 17:11:30 2007 +0200
69599
69600     ppc4xx: Add initial AMCC Kilauea 405EX support
69601
69602     Signed-off-by: Stefan Roese <sr@denx.de>
69603
69604 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
69605 Author: Stefan Roese <sr@denx.de>
69606 Date:   Fri Oct 5 17:10:59 2007 +0200
69607
69608     ppc4xx: Add PPC405EX support
69609
69610     Signed-off-by: Stefan Roese <sr@denx.de>
69611
69612 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
69613 Author: Stefan Roese <sr@denx.de>
69614 Date:   Fri Oct 5 17:09:36 2007 +0200
69615
69616     ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
69617
69618     Signed-off-by: Stefan Roese <sr@denx.de>
69619
69620 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
69621 Author: Stefan Roese <sr@denx.de>
69622 Date:   Fri Oct 5 17:07:50 2007 +0200
69623
69624     ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
69625
69626     Signed-off-by: Stefan Roese <sr@denx.de>
69627
69628 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
69629 Author: Stefan Roese <sr@denx.de>
69630 Date:   Fri Oct 5 17:04:57 2007 +0200
69631
69632     POST: Add 405EX support to 4xx UART POST test
69633
69634     Signed-off-by: Stefan Roese <sr@denx.de>
69635
69636 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
69637 Author: Stefan Roese <sr@denx.de>
69638 Date:   Fri Oct 5 15:10:02 2007 +0200
69639
69640     DTT: Prepare DS1775 driver for use of different I2C addresses
69641
69642     Signed-off-by: Stefan Roese <sr@denx.de>
69643
69644 commit 19e93b1e16d267220440d827b920fbad8abfa70f
69645 Author: Stefan Roese <sr@denx.de>
69646 Date:   Fri Oct 5 14:23:43 2007 +0200
69647
69648     ppc4xx: 4xx_pcie: Change PCIe status output to match common style
69649
69650     Signed-off-by: Stefan Roese <sr@denx.de>
69651
69652 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
69653 Author: Stefan Roese <sr@denx.de>
69654 Date:   Fri Oct 5 09:22:33 2007 +0200
69655
69656     ppc4xx: 4xx_pcie: Disable debug output as default
69657
69658     Signed-off-by: Stefan Roese <sr@denx.de>
69659
69660 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
69661 Author: Stefan Roese <sr@denx.de>
69662 Date:   Fri Oct 5 09:18:23 2007 +0200
69663
69664     ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
69665
69666     Signed-off-by: Stefan Roese <sr@denx.de>
69667
69668 commit 4dbee8a90df613eb517aadbecebd70f168913d30
69669 Author: Stefan Roese <sr@denx.de>
69670 Date:   Fri Oct 5 07:57:20 2007 +0200
69671
69672     ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
69673
69674     128MB seems to be the smallest possible value for the memory size
69675     for on PCIe port. With this change now the BAR's of the PCIe cards
69676     are accessible under U-Boot.
69677
69678     One big note: This only works for PCIe port 0 & 1. For port 2 this
69679     currently doesn't work, since the base address is now 0xc0000000
69680     (0xb0000000 + 2 * 0x08000000), and this is already occupied by
69681     CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
69682     to change the base addresses completely and this change would have
69683     too much impact right now.
69684
69685     This patch adds debug output to the 4xx pcie driver too.
69686
69687     Signed-off-by: Stefan Roese <sr@denx.de>
69688
69689 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
69690 Author: Stefan Roese <sr@denx.de>
69691 Date:   Wed Oct 3 21:16:32 2007 +0200
69692
69693     ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
69694
69695     Signed-off-by: Stefan Roese <sr@denx.de>
69696
69697 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
69698 Author: Stefan Roese <sr@denx.de>
69699 Date:   Wed Oct 3 15:01:02 2007 +0200
69700
69701     ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
69702
69703     These files were introduced with the IBM 405GP but are currently used on all
69704     4xx PPC platforms. So the name doesn't match the content anymore. This patch
69705     renames the files to 4xx_pci.c/h.
69706
69707     Signed-off-by: Stefan Roese <sr@denx.de>
69708
69709 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
69710 Author: Stefan Roese <sr@denx.de>
69711 Date:   Wed Oct 3 14:14:58 2007 +0200
69712
69713     ppc4xx: Add a comment for 405EX PCIe endpoint configuration
69714
69715     Signed-off-by: Stefan Roese <sr@denx.de>
69716
69717 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
69718 Author: Stefan Roese <sr@denx.de>
69719 Date:   Wed Oct 3 10:38:09 2007 +0200
69720
69721     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
69722
69723     (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
69724         the SDR registers of the PCIe ports. This makes the overall design
69725         clearer, since it removed a lot of switch statements which are not
69726         needed anymore.
69727
69728         Also, the functions ppc4xx_init_pcie_rootport() and
69729         ppc4xx_init_pcie_entport() are merged into a single function
69730         ppc4xx_init_pcie_port(), since most of the code was duplicated.
69731         This makes maintainance and porting to other 4xx platforms
69732         easier.
69733
69734     Signed-off-by: Stefan Roese <sr@denx.de>
69735
69736 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
69737 Author: Stefan Roese <sr@denx.de>
69738 Date:   Wed Oct 3 07:48:09 2007 +0200
69739
69740     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
69741
69742     This patch is the first patch of a series to make the 440SPe PCIe code
69743     usable on different 4xx PPC platforms. In preperation for the new 405EX
69744     which is also equipped with PCIe interfaces.
69745
69746     (2) This patch renames the functions from 440spe_ to 4xx_ with a
69747         little additional cleanup
69748
69749     Signed-off-by: Stefan Roese <sr@denx.de>
69750
69751 commit c7c6da23028f146d912514b95aefa3da7cf37699
69752 Author: Stefan Roese <sr@denx.de>
69753 Date:   Wed Oct 3 07:34:10 2007 +0200
69754
69755     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
69756
69757     This patch is the first patch of a series to make the 440SPe PCIe code
69758     usable on different 4xx PPC platforms. In preperation for the new 405EX
69759     which is also equipped with PCIe interfaces.
69760
69761     (1) This patch renames the files from 440spe_pcie to 4xx_pcie
69762
69763     Signed-off-by: Stefan Roese <sr@denx.de>
69764
69765 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
69766 Author: Marian Balakowicz <m8@semihalf.com>
69767 Date:   Wed Oct 24 01:37:36 2007 +0200
69768
69769     TQM5200: Call usb_cpu_init() during board init
69770
69771     usb_cpu_init() configures GPS USB pins, clocks, etc. and
69772     is required for proper operation of kernel USB subsystem.
69773     This setup was previously done in the kernel by the fixup
69774     code which is being removed, thus low level init must be
69775     done by U-boot now.
69776
69777     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
69778     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
69779
69780 commit b5af773f8d92677e06f3295b45557c9d0a487c24
69781 Author: Zhang Wei <wei.zhang@freescale.com>
69782 Date:   Thu Oct 25 17:51:27 2007 +0800
69783
69784     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
69785
69786     The scan code of the key 'z' is 0x1d, which should be handled.
69787
69788     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
69789     controller.
69790
69791     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
69792     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
69793
69794 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
69795 Author: Rodolfo Giometti <giometti@enneenne.com>
69796 Date:   Mon Oct 15 11:59:17 2007 +0200
69797
69798     PXA USB OHCI: "usb stop" implementation.
69799
69800     Some USB keys need to be switched off before loading the kernel
69801     otherwise they can remain in an undefined status which prevents them
69802     to be correctly recognized by the kernel.
69803
69804     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
69805     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
69806
69807 commit 31548249decf18a6b877a18436b6139dd483fe4a
69808 Author: Justin Flammia <jflammia@savantav.com>
69809 Date:   Mon Oct 29 17:40:35 2007 -0400
69810
69811     DHCP Client Fix
69812
69813     This is a multi-part message in MIME format.
69814
69815     commit e6e505eae94ed721e123e177489291fc4544b7b8
69816     Author: Justin Flammia <jflammia@savantav.com>
69817     Date:   Mon Oct 29 17:19:03 2007 -0400
69818
69819         Found a bug in the way the DHCP Request packet is built, where the IP address
69820         that is offered by the server is bound to prematurely. This patch is a fix of
69821         that bug where the IP address offered by the DHCP server is not used until
69822         after the DHCP ACK from the server is received.
69823
69824     Signed-off-by: Justin Flammia <jflammia@savantav.com>
69825     Signed-off-by: Ben Warren <bwarren@qstreams.com>
69826
69827 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
69828 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69829 Date:   Thu Oct 25 17:16:22 2007 -0500
69830
69831     ColdFire 54455: Fix correct boot location for atmel and intel
69832
69833     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69834
69835 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
69836 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69837 Date:   Thu Oct 25 17:14:00 2007 -0500
69838
69839     ColdFire: Fix build error when CONFIG_WATCHDOG is defined
69840
69841     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69842
69843 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
69844 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69845 Date:   Thu Oct 25 17:12:36 2007 -0500
69846
69847     ColdFire 5329: Assign correct SDRAM size and fix cache
69848
69849     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69850
69851 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
69852 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69853 Date:   Thu Oct 25 17:10:23 2007 -0500
69854
69855     ColdFire 5253: Assign correct SDRAM size
69856
69857     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69858
69859 commit 2acefa72ee0026f862ab65597ca687428f63a973
69860 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69861 Date:   Thu Oct 25 17:09:17 2007 -0500
69862
69863     ColdFire 5282: Fix external flash boot and return dramsize
69864
69865     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69866
69867 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
69868 Author: Bartlomiej Sieka <tur@semihalf.com>
69869 Date:   Thu Oct 25 17:20:01 2007 +0200
69870
69871     TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
69872
69873     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
69874
69875 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
69876 Author: Martin Krause <martin.krause@tqs.de>
69877 Date:   Wed Oct 24 08:42:25 2007 +0200
69878
69879     TQM5200: fix spurious characters on second serial interface
69880
69881     With this patch PSC3 is configured as UART. This is done, because if
69882     the pins of PSC3 are not configured at all (-> all pins are GPI),
69883     due to crosstalk, spurious characters may be send over the RX232_2_TXD
69884     signal line.
69885
69886     Signed-off-by: Martin Krause <martin.krause@tqs.de>
69887     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69888
69889 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
69890 Author: Martin Krause <martin.krause@tqs.de>
69891 Date:   Wed Oct 24 08:41:27 2007 +0200
69892
69893     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
69894
69895     Some commands for the STK52xx base board try to access the SM501 grafic
69896     controller. But the TQM5200S has no grafic controller (only the TQM5200
69897     and the TQM5200B have). This patch deactivates the commands accessing
69898     the SM501 for the TQM5200S.
69899
69900     Signed-off-by: Martin Krause <martin.krause@tqs.de>
69901     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69902
69903 commit b31f64343ead9482cd439b1adbe4c34026a641b1
69904 Author: Martin Krause <martin.krause@tqs.de>
69905 Date:   Mon Oct 22 16:45:53 2007 +0200
69906
69907     TQM5200: fix spurious characters on second serial interface
69908
69909     With this patch PSC3 is configured as UART. This is done, because if
69910     the pins of PSC3 are not configured at all (-> all pins are GPI),
69911     due to crosstalk, spurious characters may be send over the RX232_2_TXD
69912     signal line.
69913
69914     Signed-off-by: Martin Krause <martin.krause@tqs.de>
69915
69916 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
69917 Author: Martin Krause <martin.krause@tqs.de>
69918 Date:   Mon Oct 22 16:40:06 2007 +0200
69919
69920     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
69921
69922     Some commands for the STK52xx base board try to access the SM501 grafic
69923     controller. But the TQM5200S has no grafic controller (only the TQM5200
69924     and the TQM5200B have). This patch deactivates the commands accessing
69925     the SM501 for the TQM5200S.
69926
69927     Signed-off-by: Martin Krause <martin.krause@tqs.de>
69928
69929 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
69930 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69931 Date:   Sun Oct 21 09:14:28 2007 +0200
69932
69933     Mips: Fix string functions differ prototype declaration
69934
69935     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69936
69937 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
69938 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
69939 Date:   Fri Oct 19 17:51:40 2007 -0500
69940
69941     fsl_pci_init enable COMMAND_MEMORY if inbound window
69942
69943     Patch 16e23c3f removed PCSRBAR allocation.  But passing zero windows
69944     to pciauto_setup_device has the side effect of not getting
69945     COMMAND_MEMORY set.
69946
69947     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
69948
69949 commit e9d0d527992566ebef9826962ff1745b2f082b92
69950 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69951 Date:   Fri Oct 19 10:55:24 2007 +0200
69952
69953     delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
69954
69955     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69956
69957 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
69958 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69959 Date:   Fri Oct 19 08:10:15 2007 +0200
69960
69961     fix warning: no return statement in function returning non-void
69962
69963     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69964
69965 commit e78220f6e514206757acfe247297fc9a328a881f
69966 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69967 Date:   Fri Oct 19 06:33:45 2007 +0200
69968
69969     xsengine: Fix no partition type specified, use DOS as default
69970
69971     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69972
69973 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
69974 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69975 Date:   Fri Oct 19 00:24:59 2007 +0200
69976
69977     lubbock: Fix no partition type specified, use DOS as default
69978
69979     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69980
69981 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
69982 Author: Wolfgang Denk <wd@denx.de>
69983 Date:   Tue Oct 23 16:50:03 2007 +0200
69984
69985     Coding style: keep lists sorted; update CHANGELOG
69986
69987     Signed-off-by: Wolfgang Denk <wd@denx.de>
69988
69989 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
69990 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69991 Date:   Fri Oct 19 00:09:05 2007 +0200
69992
69993     Fix missing drivers makefile entries ds1722.c mw_eeprom.c
69994
69995     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69996
69997 commit 96455bfebc9887837095c9051d216f53c61b5f10
69998 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69999 Date:   Fri Oct 19 00:07:39 2007 +0200
70000
70001     Fix warning differ in signedness in board/innokom/innokom.c
70002
70003     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70004
70005 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
70006 Author: Marcel Ziswiler <marcel@ziswiler.com>
70007 Date:   Fri Oct 19 00:25:33 2007 +0200
70008
70009     fix pxa255_idp board
70010
70011     The pxa255_idp being an old unmaintained board showed several issues:
70012     1. CONFIG_INIT_CRITICAL was still defined.
70013     2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
70014     3. Symbol flash_addr was undeclared.
70015     4. The boards lowlevel_init function was still called memsetup.
70016     5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
70017     6. Using -march=armv5 instead of -march=armv5te resulted in lots of
70018     'target CPU does not support interworking' warnings on recent compilers.
70019     7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
70020     indexes rather than the register definitions from the pxa-regs header
70021     file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
70022     avoid any ambiguities.
70023     8. There were several redefinition warnings concerning ICMR, OSMR3,
70024     OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
70025     9. The board configuration file was rather outdated.
70026     10. The part header file defined the vendor, product and revision arrays
70027     as unsigned chars instead of just chars in the block_dev_desc_t
70028     structure.
70029
70030     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
70031
70032 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
70033 Author: Rune Torgersen <runet@innovsys.com>
70034 Date:   Wed Oct 17 11:56:31 2007 -0500
70035
70036     Make MPC8266ADS command selection more robust
70037
70038     Fix MPC8266 command line definition so it won't break when new commands
70039     are added to u-boot.
70040     Signed-off-by Rune Torgersen <runet@innovsys.com>
70041
70042 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
70043 Author: Bartlomiej Sieka <tur@semihalf.com>
70044 Date:   Tue Oct 23 13:14:10 2007 +0200
70045
70046     Motion-PRO: Update configuration to accomodate next generation board.
70047
70048     New board has faster oscillator and a different Flash chip. This affects:
70049     - CFG_MPC5XXX_CLKIN
70050     - SDRAM timings
70051     - Flash CS configuration (timings)
70052     - Flash sector size, and thus MTD partition layout
70053     - malloc() arena size (due to bigger Flash sectors)
70054     - smaller memory test range (due to bigger malloc() arena)
70055
70056     This patch also enables more extensive memory testing via "mtest".
70057
70058     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
70059
70060 commit eff501904df2bf1724a750062628ba2c51dbb1f8
70061 Author: Bartlomiej Sieka <tur@semihalf.com>
70062 Date:   Tue Oct 23 11:36:07 2007 +0200
70063
70064     Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
70065
70066     Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
70067     register must be written a value of 0x00000004 as the first step of the
70068     SDRAM contorller configuration.
70069
70070     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
70071
70072 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
70073 Author: Peter Pearse <peter.pearse@arm.com>
70074 Date:   Tue Oct 23 10:22:16 2007 +0100
70075
70076     Move PL01* serial drivers to drivers/serial and adjust Makefiles.
70077
70078 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
70079 Author: Stefan Roese <sr@denx.de>
70080 Date:   Tue Oct 23 10:17:42 2007 +0200
70081
70082     ppc4xx: lwmon5: Some further GPIO config changes
70083
70084     Signed-off-by: Stefan Roese <sr@denx.de>
70085
70086 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
70087 Author: Vlad Lungu <vlad@comsys.ro>
70088 Date:   Sun Oct 21 22:10:10 2007 +0900
70089
70090     [MIPS] Fix UNCACHED_SDRAM
70091
70092     PHYSADDR is for physical address, KSEG1ADDR is for uncached.
70093
70094     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
70095     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70096
70097 commit 00101dd7a32d12f698150123e47e4b3420279f86
70098 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70099 Date:   Sun Oct 21 21:30:42 2007 +0900
70100
70101     [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
70102
70103     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70104
70105 commit eb700636db017d310edaeb559b13d82588560674
70106 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70107 Date:   Sun Oct 21 10:55:37 2007 +0900
70108
70109     [MIPS] u-boot.lds: Define _gp in a standard manner
70110
70111     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70112
70113 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
70114 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70115 Date:   Sun Oct 21 10:55:36 2007 +0900
70116
70117     [MIPS] Fix $gp usage
70118
70119     Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
70120     As a general principle, we should use _gp for $gp.
70121
70122     Thanks to linker script's help we fortunately have _gp which equals to
70123     _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
70124     be able to access to GOT entires, global variables and procedure entry
70125     points. The right thing to do is to use _gp.
70126
70127     This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
70128     which holds the offset from _gp. When updating GOT entries, we use this
70129     offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
70130
70131     This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
70132     I made some change to leave over num_got_entries.
70133
70134     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70135     Cc: Vlad Lungu <vlad@comsys.ro>
70136
70137 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
70138 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70139 Date:   Sun Oct 21 10:55:36 2007 +0900
70140
70141     [MIPS] u-boot.lds: Fix __got_start and __got_end
70142
70143     Ensure that __got_start points to top of the `.got', and __got_end points
70144     to bottom as well, so that we never fail to count num_got_entries.
70145
70146     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70147
70148 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
70149 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70150 Date:   Sun Oct 21 10:55:36 2007 +0900
70151
70152     [MIPS] u-boot.lds: Remove duplicated .sdata section
70153
70154     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70155
70156 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
70157 Author: Wolfgang Denk <wd@denx.de>
70158 Date:   Sun Oct 21 01:01:17 2007 +0200
70159
70160     Minor coding style cleanup; update CHANGELOG
70161
70162     Signed-off-by: Wolfgang Denk <wd@denx.de>
70163
70164 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
70165 Author: Vlad Lungu <vlad@comsys.ro>
70166 Date:   Thu Oct 4 20:47:10 2007 +0300
70167
70168     Fix NE2000 driver:
70169
70170     Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
70171     to do anything in eth_stop() if eth_init() was not called.
70172     Simplified RX path in order to avoid timeouts on really really
70173     fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
70174     clever enough to cope with 1 packet per eth_rx().
70175
70176     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
70177
70178 commit df90968b48fb34fa9072fab150db2ac89678f537
70179 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
70180 Date:   Mon Sep 24 13:32:13 2007 -0400
70181
70182     Setting MSR[DE] in do_reset
70183
70184     Hello,
70185        This patch ensures the soft reset of the board for the 85xx boards
70186        by setting the MSR[DE] in the do_reset function.
70187
70188     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
70189
70190 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
70191 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
70192 Date:   Mon Sep 24 13:36:01 2007 -0400
70193
70194     MSR overwrite fix
70195
70196     Hello,
70197       This patch fixes the MSR overwrite in the start.S when moving out of
70198       the last 4K page.
70199
70200     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
70201
70202 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
70203 Author: Dan Wilson <dwilson@fulcrummicro.com>
70204 Date:   Fri Oct 19 11:33:48 2007 -0500
70205
70206     tsec driver should clear RHALT on startup
70207
70208     This was causing problems for some people.
70209
70210     Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
70211     Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
70212     Signed-off-by: Andy Fleming <afleming@freescale.com>
70213
70214 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
70215 Author: Kumar Gala <galak@kernel.crashing.org>
70216 Date:   Thu Oct 11 00:29:18 2007 -0500
70217
70218     Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
70219
70220     On the MPC85xx CDS we have two issues:
70221
70222     1. The device tree fixup code did not check to see if the property we are
70223     trying to update is actually found.  Its possible that it would update
70224     random memory starting at 0.
70225
70226     2. Newer Linux kernel's have moved the location of the PCI nodes to be
70227     sibilings of the soc node and not children.  The explicit PATH to the PCI
70228     node would not be found for these device trees.  Add the ability to handle
70229     both paths.  In the future we shouldn't handle such fixups by explicit path.
70230
70231     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
70232
70233 commit a3063eec775719b7e91023bbec3f64b3118791df
70234 Author: Kumar Gala <galak@kernel.crashing.org>
70235 Date:   Thu Oct 11 00:18:48 2007 -0500
70236
70237     Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
70238
70239     On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
70240     console.  Make it so we match that config what we tell Linux as the early
70241     STDOUT console.
70242
70243     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
70244
70245 commit e1ce3cb617bb06f91f82f98915391175addf3e82
70246 Author: Kumar Gala <galak@kernel.crashing.org>
70247 Date:   Tue Oct 2 11:12:27 2007 -0500
70248
70249     Remove magic numbers from cache related operations for mpc85xx
70250
70251     The mpc85xx start code uses some magic numbers that we actually
70252     have #defines for in <config.h> so use those instead.
70253
70254     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
70255
70256 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
70257 Author: Detlev Zundel <dzu@denx.de>
70258 Date:   Fri Oct 19 16:47:26 2007 +0200
70259
70260     Fix two typos.
70261
70262     Signed-off-by: Detlev Zundel <dzu@denx.de>
70263
70264 commit 281df457c1aa50d2752165d0c5c3282d4027b974
70265 Author: Tony Li <tony.li@freescale.com>
70266 Date:   Thu Oct 18 17:47:19 2007 +0800
70267
70268     mpc83xx: Add configure entry for MPC83xx ATM support
70269
70270     Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
70271     Makfile and MAKEALL
70272
70273     Signed-off-by: Tony Li <tony.li@freescale.com>
70274     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
70275
70276 commit d2646554f529a9577515eceb0ec5eceee18244ba
70277 Author: Tony Li <tony.li@freescale.com>
70278 Date:   Thu Oct 18 17:44:38 2007 +0800
70279
70280     mpc83xx: pq-mds-pib.c typo error
70281
70282     Correct to val8 from val.
70283
70284     Signed-off-by: Tony Li <tony.li@freescale.com>
70285     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
70286
70287 commit 3e11ae80fec1ee12194940955431186abf6009c2
70288 Author: Stefan Roese <sr@denx.de>
70289 Date:   Wed Oct 17 15:40:19 2007 +0200
70290
70291     ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
70292
70293     Signed-off-by: Stefan Roese <sr@denx.de>
70294
70295 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
70296 Author: Jon Loeliger <jdl@freescale.com>
70297 Date:   Tue Oct 16 15:27:43 2007 -0500
70298
70299     Initial mpc8610hpcd Makefile files.
70300
70301     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
70302     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
70303     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
70304     Signed-off-by: Jon Loeliger <jdl@freescale.com>
70305
70306 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
70307 Author: Jon Loeliger <jdl@freescale.com>
70308 Date:   Tue Oct 16 15:26:51 2007 -0500
70309
70310     Initial mpc8610hpcd cpu/, README and include/ files.
70311
70312     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
70313     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
70314     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
70315     Signed-off-by: Jon Loeliger <jdl@freescale.com>
70316
70317 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
70318 Author: Jon Loeliger <jdl@freescale.com>
70319 Date:   Tue Oct 16 13:54:01 2007 -0500
70320
70321     Initial mpc8610hpcd board files.
70322
70323     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
70324     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
70325     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
70326     Signed-off-by: Jon Loeliger <jdl@freescale.com>
70327
70328 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
70329 Author: runet@innovsys.com <runet@innovsys.com>
70330 Date:   Tue Oct 16 14:50:40 2007 -0500
70331
70332     Make MPC8266ADS board compile again.
70333
70334     Signed-off-by: Runet Torgersen <runet@innovsys.com>
70335
70336 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
70337 Author: Jon Loeliger <jdl@freescale.com>
70338 Date:   Mon Aug 27 12:41:03 2007 -0500
70339
70340     86xx: Allow for fewer DDR slots per memory controller.
70341
70342     As a direct correlation exists between DDR DIMM slots
70343     and SPD EEPROM addresses used to configure them, use
70344     the individually defined SPD_EEPROM_ADDRESS* values to
70345     determine if a DDR DIMM slot should have its SPD
70346     configuration read or not.
70347
70348     Effectively, this now allows for 1 or 2 DIMM slots
70349     per memory controller.
70350
70351     Signed-off-by: Jon Loeliger <jdl@freescale.com>
70352
70353 commit 4d4a945e189a2f384c66432316da2788a0ac1607
70354 Author: Rodolfo Giometti <giometti@enneenne.com>
70355 Date:   Mon Oct 15 11:59:17 2007 +0200
70356
70357     PXA USB OHCI: "usb stop" implementation.
70358
70359     Some USB keys need to be switched off before loading the kernel
70360     otherwise they can remain in an undefined status which prevents them
70361     to be correctly recognized by the kernel.
70362
70363     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
70364
70365 commit e2e93442e558cf1500e92861f99713b2f045ea22
70366 Author: Stefan Roese <sr@denx.de>
70367 Date:   Mon Oct 15 11:39:00 2007 +0200
70368
70369     ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
70370
70371     The I2C bootstrap values that can be setup via the "bootstrap" command,
70372     were setup incorrect regarding the generation of the internal sync PCI
70373     clock. The values for PLB clock == 133MHz were slighly incorrect and the
70374     values for PLB clock == 166MHz were totally incorrect. This could
70375     lead to a hangup upon booting while PCI configuration scan.
70376
70377     This patch fixes this issue and configures valid PCI divisor values
70378     for the sync PCI clock, with respect to the provided external async
70379     PCI frequency.
70380
70381     Here the values of the formula in the chapter 14.2 "PCI clocking"
70382     from the 440EPx users manual:
70383
70384     AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
70385
70386     33MHz async PCI frequency:
70387     PLB = 133:
70388     =>      32 <= 44.3 <= 65        (div = 3)
70389
70390     PLB = 166:
70391     =>      32 <= 55.3 <= 65        (div = 3)
70392
70393     66MHz async PCI frequency:
70394     PLB = 133:
70395     =>      65 <= 66.5 <= 132       (div = 2)
70396
70397     PLB = 166:
70398     =>      65 <= 83 <= 132         (div = 2)
70399
70400     Signed-off-by: Stefan Roese <sr@denx.de>
70401
70402 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
70403 Author: Stefan Roese <sr@denx.de>
70404 Date:   Mon Oct 15 11:29:33 2007 +0200
70405
70406     ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
70407
70408     The BCSR status bit for the 66MHz PCI operation was correctly
70409     addressed (MSB/LSB problem). Now the correct currently setup
70410     PCI frequency is displayed upon bootup.
70411
70412     This patch also fixes this problem on Rainier & Yellowstone, since these
70413     boards use the same souce code as Sequoia & Yosemite do.
70414
70415     Signed-off-by: Stefan Roese <sr@denx.de>
70416
70417 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
70418 Author: Martin Krause <martin.krause@tqs.de>
70419 Date:   Wed Sep 26 17:55:56 2007 +0200
70420
70421     TQM860M: adjust for doubled flash sector size.
70422
70423     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
70424     doubled sector size.
70425
70426     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70427
70428 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
70429 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
70430 Date:   Wed Sep 26 17:55:54 2007 +0200
70431
70432     TQM8xx: Fix CAN timing.
70433
70434     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70435
70436 commit d43e489baf02afae49077791fb22332d240d8656
70437 Author: Martin Krause <martin.krause@tqs.de>
70438 Date:   Thu Sep 27 14:54:36 2007 +0200
70439
70440     TQM866M: fix SDRAM refresh
70441
70442     At 133 MHz the current SDRAM refresh rate is too fast
70443     (measured 4 * 1.17 us).
70444     CFG_MAMR_PTA changes from 39 to 97. This result
70445     in a refresh rate of 4 * 7.8 us at the default clock
70446     50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
70447     This is a compromise until a new method is found to
70448     adjust the refresh rate.
70449
70450     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70451
70452 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
70453 Author: Martin Krause <martin.krause@tqs.de>
70454 Date:   Wed Sep 26 17:55:55 2007 +0200
70455
70456     TQM866M: adjust for doubled flash sector size.
70457
70458     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
70459     doubled sector size.
70460
70461     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70462
70463 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
70464 Author: Michal Simek <monstr@monstr.eu>
70465 Date:   Sun Oct 14 16:12:29 2007 +0200
70466
70467     [FIX] XUPV2P change command handling
70468     and remove code violation
70469
70470 commit 636400198228d96983c06657b17f760f5989958e
70471 Author: Wolfgang Denk <wd@denx.de>
70472 Date:   Sun Oct 14 00:13:19 2007 +0200
70473
70474     Prepare for 1.3.0-rc3 release
70475
70476     Signed-off-by: Wolfgang Denk <wd@denx.de>
70477
70478 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
70479 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70480 Date:   Sat Sep 29 13:41:37 2007 +0200
70481
70482     Fix warning differ in signedness in cpu/pxa/mmc.c
70483
70484     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70485
70486 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
70487 Author: Wolfgang Denk <wd@denx.de>
70488 Date:   Sat Oct 13 23:51:14 2007 +0200
70489
70490     Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
70491
70492     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70493     Signed-off-by: Wolfgang Denk <wd@denx.de>
70494
70495 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
70496 Author: Wolfgang Denk <wd@denx.de>
70497 Date:   Sat Oct 13 21:15:39 2007 +0200
70498
70499     Coding Style cleanup.
70500
70501     Signed-off-by: Wolfgang Denk <wd@denx.de>
70502
70503 commit e1893815b0999410d7a327589611c7b38e95299e
70504 Author: Wolfgang Denk <wd@denx.de>
70505 Date:   Fri Oct 12 15:49:39 2007 +0200
70506
70507     GP3 SSA: enable RTC
70508
70509     Signed-off-by: Wolfgang Denk <wd@denx.de>
70510
70511 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
70512 Author: Grzegorz Bernacki <gjb@semihalf.com>
70513 Date:   Tue Oct 9 13:58:24 2007 +0200
70514
70515     [ads5121] EEPROM support added.
70516
70517     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
70518
70519 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
70520 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
70521 Date:   Sat Oct 6 18:55:35 2007 +0200
70522
70523     AVR32: Initialize bi_flash* in board_init_r
70524
70525     The ATSTK1000-specific flash driver intializes bi_flashstart,
70526     bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
70527     driver, don't.
70528
70529     Initialize these in board_init_r instead so that things will still be
70530     set up correctly when we switch to the CFI driver.
70531
70532     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
70533
70534 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
70535 Author: Marian Balakowicz <m8@semihalf.com>
70536 Date:   Fri Oct 5 10:40:54 2007 +0200
70537
70538     tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
70539
70540     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
70541
70542 commit 92869195ef8210758d2176230c0a36897afd50ed
70543 Author: Bartlomiej Sieka <tur@semihalf.com>
70544 Date:   Fri Oct 5 09:46:06 2007 +0200
70545
70546     CM5200: Fix missing null-termination in hostname manipulation code
70547
70548     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
70549
70550 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
70551 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
70552 Date:   Tue Oct 2 19:09:01 2007 +0200
70553
70554     Fix memtest breakage
70555
70556     CFG_MEMTEST_START uses weird magic involving gd, which fails to
70557     compile. Use hardcoded values instead (we actually know how much RAM
70558     we have on board.)
70559
70560     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
70561
70562 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
70563 Author: Stefan Roese <sr@denx.de>
70564 Date:   Tue Oct 2 11:44:46 2007 +0200
70565
70566     ppc4xx: Coding style cleanup
70567
70568     Signed-off-by: Stefan Roese <sr@denx.de>
70569
70570 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
70571 Author: Stefan Roese <sr@denx.de>
70572 Date:   Tue Oct 2 11:44:19 2007 +0200
70573
70574     ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
70575
70576     Signed-off-by: Stefan Roese <sr@denx.de>
70577
70578 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
70579 Author: Grzegorz Bernacki <gjb@semihalf.com>
70580 Date:   Mon Oct 1 09:51:50 2007 +0200
70581
70582     Program EPLD to force full duplex mode for PHY.
70583
70584     EPLD forces modes of PHY operation. By default full duplex is turned off.
70585     This fix turns it on.
70586
70587     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
70588
70589 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
70590 Author: Timo Ketola <timo.ketola@exertus.fi>
70591 Date:   Mon Sep 24 14:50:32 2007 +0300
70592
70593     Bugfix: Use only one PTD for one endpoint
70594
70595     Original isp116x-hcd code prepared multiple PTDs for longer than 16
70596     byte transfers for one endpoint. That is unnecessary because the
70597     ISP116x is able to split long data from one PTD into multiple
70598     transactions based on the buffer size of the endpoint. It also caused
70599     serious problems if the endpoint NAKed some of the transactions. In
70600     that case ISP116x wouldn't notice that the other PTDs were for the same
70601     endpoint and would try the other PTDs possibly out of order. That would
70602     break the whole transfer.
70603
70604     This patch makes isp116x_submit_job to use one PTD for one transfer.
70605
70606     Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
70607     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
70608
70609 commit 86ec86c04326c3913178a7679aa910de071da75d
70610 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70611 Date:   Thu Sep 27 23:27:47 2007 +0200
70612
70613     Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
70614
70615     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70616
70617 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
70618 Author: Stefan Roese <sr@denx.de>
70619 Date:   Tue Sep 11 14:12:55 2007 +0200
70620
70621     ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
70622
70623     Signed-off-by: Stefan Roese <sr@denx.de>
70624
70625 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
70626 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
70627 Date:   Wed Sep 26 16:35:54 2007 -0500
70628
70629     85xx io out functions need sync after write.
70630
70631     This fixes the mc146818 rtc_read/write functions for 85xx.
70632
70633     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
70634
70635 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
70636 Author: Grant Likely <grant.likely@secretlab.ca>
70637 Date:   Tue Sep 25 15:48:05 2007 -0600
70638
70639     Fpga: fix incorrect test of CFG_FPGA_XILINX macro
70640
70641     CFG_FPGA_XILINX is a bit value used to test against the value in
70642     CONFIG_FPGA.  Testing for a value will always return TRUE.  I don't
70643     think that is the intention in this code.
70644
70645     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70646
70647 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
70648 Author: Michal Simek <monstr@monstr.eu>
70649 Date:   Mon Sep 24 00:41:30 2007 +0200
70650
70651     [FIX] change command handling and removing code violation
70652
70653 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
70654 Author: Michal Simek <monstr@monstr.eu>
70655 Date:   Mon Sep 24 00:36:06 2007 +0200
70656
70657     [FIX] change sets of commands
70658     because changing of command handling brings
70659     compilation problems
70660
70661 commit cb1bc63b75a232571eb69aa2c8aa919321655845
70662 Author: Michal Simek <monstr@monstr.eu>
70663 Date:   Mon Sep 24 00:30:42 2007 +0200
70664
70665     [FIX] Email reparation & Copyright
70666     Both codes are written by myself without any
70667     support from CTU
70668
70669 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
70670 Author: Michal Simek <monstr@monstr.eu>
70671 Date:   Mon Sep 24 00:25:11 2007 +0200
70672
70673     [PATCH] Change macro name for UartLite
70674     because PowerPC 405 can use UartLite as console
70675
70676 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
70677 Author: Michal Simek <monstr@monstr.eu>
70678 Date:   Mon Sep 24 00:21:19 2007 +0200
70679
70680     [PATCH] Add support for design without interrupt controller
70681     Polling timer
70682
70683 commit 0731933ec8ec45d02ba89b52df673d526873cdde
70684 Author: Michal Simek <monstr@monstr.eu>
70685 Date:   Mon Sep 24 00:19:48 2007 +0200
70686
70687     [FIX] resolve problem with cpu without barrel shifter
70688
70689 commit db14d77995ce515b728b178b63f82babe60e3d56
70690 Author: Michal Simek <monstr@monstr.eu>
70691 Date:   Mon Sep 24 00:18:46 2007 +0200
70692
70693     [FIX] repair email address
70694
70695 commit 481d4328618804add1f818a6c96296121cd0528e
70696 Author: Michal Simek <monstr@monstr.eu>
70697 Date:   Mon Sep 24 00:17:42 2007 +0200
70698
70699     [FIX] repair MFSL commands
70700
70701 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
70702 Author: Michal Simek <monstr@monstr.eu>
70703 Date:   Mon Sep 24 00:08:37 2007 +0200
70704
70705     synchronizition with mainline
70706
70707 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
70708 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70709 Date:   Sun Sep 23 02:42:38 2007 +0900
70710
70711     sh: Add support command of ide with sh
70712
70713     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70714
70715 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
70716 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70717 Date:   Sun Sep 23 02:38:42 2007 +0900
70718
70719     sh: Update Makefile
70720
70721     Add support MS7722SE01 to Makefile.
70722
70723     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70724
70725 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
70726 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70727 Date:   Sun Sep 23 02:31:13 2007 +0900
70728
70729     sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
70730
70731     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70732
70733 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
70734 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70735 Date:   Sun Sep 23 02:19:24 2007 +0900
70736
70737     sh: Update MS7750SE01 platform
70738
70739     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70740
70741 commit 516ad760db3553766267ada01b7d5d727faa4bbd
70742 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70743 Date:   Sun Sep 23 02:17:08 2007 +0900
70744
70745     sh: Remove comment out code from include/asm-sh/cpu_sh4.h
70746
70747     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70748
70749 commit b02bad128669e567fce87d8df823b06a0144b8db
70750 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70751 Date:   Sun Sep 23 02:12:30 2007 +0900
70752
70753     sh: Update core code of SuperH.
70754
70755     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70756
70757 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
70758 Author: Wolfgang Denk <wd@denx.de>
70759 Date:   Thu Sep 20 00:04:14 2007 +0200
70760
70761     v1.3.0-rc2
70762
70763     Signed-off-by: Wolfgang Denk <wd@denx.de>
70764
70765 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
70766 Author: Wolfgang Denk <wd@denx.de>
70767 Date:   Tue Sep 18 21:36:35 2007 +0200
70768
70769     Avoid compiler warning.
70770
70771     Signed-off-by: Wolfgang Denk <wd@denx.de>
70772
70773 commit 8a783a65851bc7421ab69f442261215e21b8891a
70774 Author: Grant Likely <grant.likely@secretlab.ca>
70775 Date:   Tue Sep 18 12:24:57 2007 -0600
70776
70777     Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
70778
70779     /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
70780     nulls in a string differently.  For example, the following statement:
70781         echo "this is a string\0" > afile
70782     Will produce the following with /bin/bash:
70783         "this is a string\0"
70784     But with /bin/dash, will produce:
70785         "this is a string
70786
70787     Bug fixed by moving the embedded null out of the makefile and into the
70788     config header.  Also renamed the macro to avoid usage colision with the same
70789     macro used by other board ports.
70790
70791     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70792
70793 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
70794 Author: Wolfgang Denk <wd@denx.de>
70795 Date:   Tue Sep 18 17:40:27 2007 +0200
70796
70797     MCC200: fix build warning
70798
70799     The MCC200 board config file includes version.h for some customer-
70800     specific setting, which causes warnings with "make depend"; build
70801     version.h before depend.
70802
70803     Signed-off-by: Wolfgang Denk <wd@denx.de>
70804
70805 commit bd86220f58b99d6896198c385fda132f0c980915
70806 Author: Peter Pearse <peter.pearse@arm.com>
70807 Date:   Tue Sep 18 13:07:54 2007 +0100
70808
70809     Move coloured led API to status_led.h
70810     Improve indentation in drivers/at45.c
70811
70812 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
70813 Author: Eirik Aanonsen <eaa@wprmedical.com>
70814 Date:   Tue Sep 18 08:47:20 2007 +0200
70815
70816     Update atstk1002 bootargs.
70817
70818     Updates to atstk1002 U-Boot header file:
70819     - Changed bootargs:
70820         * Set the bootargs for at1002 to point to the SD-card partition instead
70821         * ... of the boot flash.
70822         * Removing the rootfstype since that argument are not needed.
70823
70824     Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
70825     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
70826
70827 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
70828 Author: Eirik Aanonsen <eaa@wprmedical.com>
70829 Date:   Wed Sep 12 13:32:37 2007 +0200
70830
70831     Add some comments to clocks in atstk1002.h
70832
70833     This patch applies some clarifying comments to how the different
70834     clocks are setup according to atstk1002.h Some of the previous
70835     comments where stating wrongful information.
70836
70837     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
70838
70839 commit 97213f32416ead885deafea86774e912ffd60ad0
70840 Author: David Saada <David.Saada@ecitele.com>
70841 Date:   Mon Sep 17 17:04:47 2007 +0200
70842
70843     Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
70844
70845     Signed-off-by: David Saada <david.saada@ecitele.com>
70846
70847 commit 30363e98fa470fbecea5e8bc0f1443352754f303
70848 Author: Stefan Roese <sr@denx.de>
70849 Date:   Mon Sep 17 08:20:47 2007 +0200
70850
70851     Small whitespace cleanup of OneNAND patch
70852
70853     Signed-off-by: Stefan Roese <sr@denx.de>
70854
70855 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
70856 Author: Kyungmin Park <kmpark@infradead.org>
70857 Date:   Mon Sep 10 17:15:14 2007 +0900
70858
70859     OneNAND support (take #2)
70860
70861     [PATCH 3/3] OneNAND support (take #2)
70862
70863     OneNAND support at U-Boot
70864
70865     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
70866
70867 commit 17aa2800457df0c06b41516f46f126712c196219
70868 Author: Kyungmin Park <kmpark@infradead.org>
70869 Date:   Mon Sep 10 17:14:34 2007 +0900
70870
70871     OneNAND support (take #2)
70872
70873     [PATCH 2/3] OneNAND support (take #2)
70874
70875     OneNAND support at U-Boot
70876
70877     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
70878
70879 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
70880 Author: Kyungmin Park <kmpark@infradead.org>
70881 Date:   Mon Sep 10 17:13:49 2007 +0900
70882
70883     OneNAND support (take #2)
70884
70885     [PATCH 1/3] OneNAND support (take #2)
70886
70887     OneNAND support at U-Boot
70888
70889     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
70890
70891 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
70892 Author: Michal Simek <monstr@monstr.eu>
70893 Date:   Sun Sep 16 20:51:57 2007 +0200
70894
70895     [FIX] remove files form repository
70896
70897 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
70898 Author: Wolfgang Denk <wd@denx.de>
70899 Date:   Sun Sep 16 17:10:04 2007 +0200
70900
70901     TQM8xx[LM]: Fix broken environment alignment.
70902
70903     With recent toolchains, the environment sectors were no longer aligned to
70904     sector boundaries. The reason was a combination of two bugs:
70905
70906     1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
70907        for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
70908        this gets defined, is not included here (and cannot be included
70909        without causing lots of problems).
70910
70911        Added a new #define CFG_USE_PPCENV for all boards which really
70912        want to put the environment is a ".ppcenv" section.
70913
70914     2) The linker scripts just include environment.o, silently assuming
70915        that the objects in that file are really in the order in which
70916        they are coded in the C file, i. e. "environment" first, then
70917        "redundand_environment", and "env_size" last. However, current
70918        toolchains (GCC-4.x) reorder the objects, causing the environment
70919        data not to start on a flash sector boundary:
70920
70921        Instead of:                                      we got:
70922
70923         40008000 T environment                  40008000 T env_size
70924         4000c000 T redundand_environment        40008004 T redundand_environment
70925         40010000 T env_size                     4000c004 T environment
70926
70927        Note: this patch fixes just the first part, and cures the alignment
70928        problem by making sure that "env_size" gets placed correctly. However,
70929        we still have a potential issue because primary and redundant
70930        environment sectors are actually swapped, i. e. we have now:
70931
70932         40008000 T redundand_environment
70933         4000c000 T environment
70934         40010000 T env_size
70935
70936        This shall be fixed in the next version.
70937
70938     Signed-off-by: Wolfgang Denk <wd@denx.de>
70939
70940 commit eb6da8050797c204c9d010548424186c7ce32fc1
70941 Author: Wolfgang Denk <wd@denx.de>
70942 Date:   Sun Sep 16 02:39:35 2007 +0200
70943
70944     TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
70945
70946     Signed-off-by: Wolfgang Denk <wd@denx.de>
70947
70948 commit cd2d1602c54cc6957bdef3872272a4b264893960
70949 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
70950 Date:   Mon Sep 10 14:54:56 2007 -0400
70951
70952     Typo fix in tsec.c
70953
70954     Fixup for the break statement in wrong place.
70955
70956     [Patch by urwithsughosh@gmail.com]
70957     Acked-by: Andy Fleming <afleming@freescale.com>
70958     Signed-off-by:      Wolfgang Denk <wd@denx.de>
70959
70960 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
70961 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70962 Date:   Tue Sep 11 17:04:00 2007 +0200
70963
70964     Fix do_div() usage in nand process output
70965
70966     Fix usage of do_div() in nand erase|read|write process output.
70967
70968     The last patch to nand_util.c introduced do_div() instead of libgcc's
70969     implementation. But do_div() returns the quotient in its first
70970     macro parameter and not as result.
70971
70972     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70973
70974 commit c750d2e6692a000a82f29de7bf24e3dc21239161
70975 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70976 Date:   Wed Sep 12 12:36:53 2007 +0200
70977
70978     NAND: Add CFG_NAND_QUIET option
70979
70980     This config option sets the default for the progress information
70981     output behavior that can also be configured through the 'quiet'
70982     environment variable.
70983
70984     The legacy NAND code does not print the current progress info
70985     on the console. So this option is for backward compatibility for
70986     units that are in the field and where setting the quiet variable
70987     is not an option. With CFG_NAND_QUIET set to '1' the console
70988     progress info is turned off. This can still be overwritten
70989     through the environment variable.
70990
70991     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70992
70993 commit dcb88630290d2bcd803386dd4c2be73142994c4f
70994 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
70995 Date:   Thu Sep 13 16:06:05 2007 -0700
70996
70997     ColdFire: fix build error becasue of bad type of mii_init()
70998
70999     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
71000
71001 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
71002 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
71003 Date:   Thu Sep 13 16:04:05 2007 -0700
71004
71005     ColdFire: Fix build error caused by pixis.c
71006
71007     Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
71008
71009     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
71010
71011 commit e21659e30660a1377c42af135a6114efe39801d9
71012 Author: Sam Sparks <SSparks@twacs.com>
71013 Date:   Fri Sep 14 11:14:42 2007 -0600
71014
71015     Update MPC8349ITX*_config to place config.tmp in right place.
71016
71017     MPC834ITX*_config does not store config.tmp at the correct locatation,
71018     causing MPC8349ITXGP to have the wrong TEXT_BASE.
71019
71020     Signed-off-by: Sam Sparks <SSparks@twacs.com>
71021     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71022
71023 commit 1218abf1b5817a39a82399b4b928b00750575bda
71024 Author: Wolfgang Denk <wd@denx.de>
71025 Date:   Sat Sep 15 20:48:41 2007 +0200
71026
71027     Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
71028
71029     Signed-off-by: Wolfgang Denk <wd@denx.de>
71030
71031 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
71032 Author: Dirk Behme <dirk.behme@googlemail.com>
71033 Date:   Sat Sep 15 11:55:42 2007 +0200
71034
71035     Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
71036
71037     As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
71038     function local.
71039
71040     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
71041
71042     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
71043
71044 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
71045 Author: Michal Simek <monstr@monstr.eu>
71046 Date:   Sat Sep 15 00:03:35 2007 +0200
71047
71048     Synchronize with U-BOOT mainline
71049
71050 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
71051 Author: Sam Sparks <SSparks@twacs.com>
71052 Date:   Fri Sep 14 11:14:42 2007 -0600
71053
71054     Update MPC8349ITX*_config to place config.tmp in right place.
71055
71056     MPC834ITX*_config does not store config.tmp at the correct locatation,
71057     causing MPC8349ITXGP to have the wrong TEXT_BASE.
71058
71059     Signed-off-by: Sam Sparks <SSparks@twacs.com>
71060     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71061     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71062
71063 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
71064 Author: Bartlomiej Sieka <tur@semihalf.com>
71065 Date:   Thu Sep 13 18:21:48 2007 +0200
71066
71067     cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
71068
71069     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
71070
71071 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
71072 Author: Bartlomiej Sieka <tur@semihalf.com>
71073 Date:   Thu Sep 13 16:33:59 2007 +0200
71074
71075     tqm5200: Restore customary env. variable boot commands for powerpc kernels
71076
71077     - update default definitions of kernel_addr and fdt_addr env. variables
71078     - make arch/powerpc booting the default scenario
71079     - update MTD partition layout to match the above
71080
71081     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
71082
71083 commit f34024d4a328e6edd906456da98d2c537155c4f7
71084 Author: Wolfgang Denk <wd@denx.de>
71085 Date:   Wed Sep 12 00:48:57 2007 +0200
71086
71087     Fix memory corruption problem on STX GP3 SSA Board.
71088
71089     Signed-off-by: Wolfgang Denk <wd@denx.de>
71090
71091 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
71092 Author: Peter Pearse <peter.pearse@arm.com>
71093 Date:   Tue Sep 11 15:35:01 2007 +0100
71094
71095     Final tidy
71096
71097 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
71098 Author: Grzegorz Bernacki <gjb@semihalf.com>
71099 Date:   Tue Sep 11 15:42:11 2007 +0200
71100
71101     [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
71102     scan on second pci bus.
71103
71104     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71105
71106 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
71107 Author: Grzegorz Bernacki <gjb@semihalf.com>
71108 Date:   Tue Sep 11 12:57:52 2007 +0200
71109
71110     [ppc4xx] Individual handling of sdram.c for bamboo_nand build
71111
71112     Bamboo has a file sdram.c which needs special treatment when building in
71113     separate directory. It has to be linked to build directory otherwise it is
71114     not seen.
71115
71116     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71117
71118 commit d45963854eff39d575124d859419bb4953ce2c87
71119 Author: Michal Simek <monstr@monstr.eu>
71120 Date:   Tue Sep 11 00:37:04 2007 +0200
71121
71122     [FIX] Microblaze ML401 - repare FLASH handling
71123
71124 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
71125 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
71126 Date:   Mon Sep 10 16:55:59 2007 +0100
71127
71128     Allocate CPU Architecture Code for STMicroelectronics' ST200.
71129
71130     Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
71131     ---------------------------------------------------
71132
71133 commit 754bac48156f8958d8f6a53a51eda88ab5758929
71134 Author: Wolfgang Denk <wd@denx.de>
71135 Date:   Mon Sep 10 20:42:31 2007 +0200
71136
71137     Update version to match current state.
71138
71139     Signed-off-by: Wolfgang Denk <wd@denx.de>
71140
71141 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
71142 Author: Grzegorz Bernacki <gjb@semihalf.com>
71143 Date:   Mon Sep 10 17:39:08 2007 +0200
71144
71145     [MPC512x] Streamline frame handling in the FEC driver
71146
71147     - convert frame size settings to be derived from a single base
71148     - set frame size to the recommended default value
71149
71150     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71151
71152 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
71153 Author: Kyungmin Park <kmpark@infradead.org>
71154 Date:   Mon Sep 10 11:34:00 2007 +0900
71155
71156     Remove compiler warning: target CPU does not support interworking
71157
71158     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
71159
71160 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
71161 Author: Wolfgang Denk <wd@denx.de>
71162 Date:   Sun Sep 9 21:21:33 2007 +0200
71163
71164     Fix compile error in spc1920 config.
71165
71166     Signed-off-by: Markus Klotzbücher <mk@denx.de>
71167     Signed-off-by: Wolfgang Denk <wd@denx.de>
71168
71169 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
71170 Author: Grant Likely <grant.likely@secretlab.ca>
71171 Date:   Fri Sep 7 09:25:07 2007 -0600
71172
71173     Bugfix: make bootm+libfdt compile on boards with no flash
71174
71175     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71176
71177 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
71178 Author: Grzegorz Bernacki <gjb@semihalf.com>
71179 Date:   Fri Sep 7 18:35:37 2007 +0200
71180
71181     [PPC440SPe] PCIe environment settings for Katmai and Yucca
71182
71183     - 'pciconfighost' is set by default in order to be able to scan bridges
71184     behind the primary host/PCIe
71185
71186     - 'pciscandelay' env variable is recognized to allow for user-controlled
71187     delay before the PCIe bus enumeration; some peripheral devices require a
71188     significant delay before they can be scanned (e.g. LSI8408E); without the
71189     delay they are not detected
71190
71191     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71192
71193 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
71194 Author: Grzegorz Bernacki <gjb@semihalf.com>
71195 Date:   Fri Sep 7 18:20:23 2007 +0200
71196
71197     [PPC440SPe] Improve PCIe configuration space access
71198
71199     - correct configuration space mapping
71200     - correct bus numbering
71201     - better access to config space
71202
71203     Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
71204     first device on the first bus. We now allow to configure up to 16 buses;
71205     also, scanning for devices behind the PCIe-PCIe bridge is supported, so
71206     peripheral devices farther in hierarchy can be identified.
71207
71208     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71209
71210 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
71211 Author: Grzegorz Bernacki <gjb@semihalf.com>
71212 Date:   Fri Sep 7 17:46:18 2007 +0200
71213
71214     [PPC440SPe] Convert machine check exceptions handling
71215
71216     Convert using fixup mechanism to suppressing MCK for the duration of config
71217     read/write transaction: while fixups work fine with the case of a precise
71218     exception, we identified a major drawback with this approach when there's
71219     an imprecise case. In this scenario there is the following race condition:
71220     the fixup is (by design) set to catch the instruction following the one
71221     actually causing the exception; if an interrupt (e.g. decrementer) happens
71222     between those two instructions, the ISR code is executed before the fixup
71223     handler the machine check is no longer protected by the fixup handler as it
71224     appears as within the ISR code. In consequence the fixup approach is being
71225     phased out and replaced with explicit suppressing of MCK during a PCIe
71226     config read/write cycle.
71227
71228     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71229
71230 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
71231 Author: Wolfgang Denk <wd@denx.de>
71232 Date:   Fri Sep 7 17:43:36 2007 +0200
71233
71234     Fix typo in MAKEALL script.
71235
71236     Signed-off-by: Wolfgang Denk <wd@denx.de>
71237
71238 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
71239 Author: Grzegorz Bernacki <gjb@semihalf.com>
71240 Date:   Fri Sep 7 17:09:21 2007 +0200
71241
71242     [MPC512x] Proper handling of larger frames in the FEC driver
71243
71244     When frame larger than local RX buffer is received, it is split and handled
71245     by two buffer descriptors. Prior to this patch the FEC driver discarded
71246     contents of a buffer descriptor without the 'LAST' bit set, so the first
71247     part of the frame was lost in case of larger frames. This fix allows to
71248     safely combine the two pieces into the whole frame.
71249
71250     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71251
71252 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
71253 Author: Rafal Jaworowski <raj@semihalf.com>
71254 Date:   Fri Sep 7 17:05:36 2007 +0200
71255
71256     [MPC512x] Correct fixup relocation
71257
71258     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
71259
71260 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
71261 Author: Wolfgang Denk <wd@denx.de>
71262 Date:   Fri Sep 7 01:21:25 2007 +0200
71263
71264     Update CHANGELOG, minor coding style cleanup.
71265
71266 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
71267 Author: stefano babic <sbabic@denx.de>
71268 Date:   Thu Aug 30 23:01:49 2007 +0200
71269
71270     PXA270: Added support for TrizepsIV board.
71271
71272     This patch add support for the Trizeps IV module (520Mhz).
71273
71274     Signed-off-by: Stefano Babic <sbabic@denx.de>
71275
71276 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
71277 Author: stefano babic <sbabic@denx.de>
71278 Date:   Thu Aug 30 22:57:04 2007 +0200
71279
71280     PXA270: Add support for multiple serial ports.
71281
71282     This patch adds support for multiple serial ports to the PXA target.
71283     FFUART, BTUART and STUART are supported.
71284
71285     Signed-off-by: Stefano Babic <sbabic@denx.de>
71286
71287 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
71288 Author: stefano babic <sbabic@denx.de>
71289 Date:   Thu Aug 30 22:48:47 2007 +0200
71290
71291     PXA270: fix compile issue (invalid lvalue)
71292
71293     Code is broken for PXA270 due to "invalid lvalue in assignment".
71294
71295     This patch fix it in pxa-regs.h
71296
71297     Signed-off-by: Stefano Babic <sbabic@denx.de>
71298
71299 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
71300 Author: Jason Jin <Jason.jin@freescale.com>
71301 Date:   Thu Aug 30 18:19:05 2007 +0800
71302
71303     Add BUILD_DIR support for bios emulator.
71304
71305     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
71306
71307 commit b4d8a55145442f136982634862341a3e02002bda
71308 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
71309 Date:   Fri Aug 31 14:41:51 2007 +0900
71310
71311     [MIPS] Remove inline asm string functions
71312
71313     Stop using inline string functions on MIPS as other ARCHs do so,
71314     since the optimized inline asm versions are not small.
71315
71316     This change is triggered by a following MIPS build error:
71317     common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
71318     common/exports.c:32: undefined reference to `strcmp'
71319     make: *** [u-boot] Error 1
71320
71321     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
71322
71323 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
71324 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
71325 Date:   Fri Aug 31 14:41:45 2007 +0900
71326
71327     [MIPS] Update asm string header
71328
71329     This patches contains several bugfixes and cleanups in the latest upstream:
71330
71331      - Don't include linux/config.h
71332      - Remove buggy inline version of memscan.
71333      - Merge with Linux 2.6.11-rc3.
71334      - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
71335      - Goodbye mips64.  31704 lines of code bite the dust.
71336      - Replace extern inline with static inline.
71337      - Fix return value of strncpy.
71338      - Remove a bunch more "$1" clobbers.
71339
71340     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
71341
71342 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
71343 Author: Bartlomiej Sieka <tur@semihalf.com>
71344 Date:   Tue Sep 4 17:31:22 2007 +0200
71345
71346     Fix do_bootm_linux() so that multi-file images with FDT blob boot.
71347
71348     Fix incorrect blob address calculation in do_bootm_linux() that prevents
71349     booting the kernel from a multi-file image (kernel + initrd + blob).
71350
71351     Also, make minor updates to the U-Boot's output and to the coding style.
71352
71353     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
71354
71355 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
71356 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
71357 Date:   Fri Aug 31 14:29:04 2007 +0200
71358
71359     Add support for Sil680 IDE controller.
71360
71361     o add drivers/sil680.c to support the Sil680 IDE-controller.
71362     o drivers/Makefile: add sil680.o.
71363
71364     Signed-off-by: Gary Jennejohn <garyj@denx.de>
71365
71366 commit e79021223bc339df655e360645a52c457a74b067
71367 Author: Grant Likely <grant.likely@secretlab.ca>
71368 Date:   Thu Sep 6 09:47:40 2007 -0600
71369
71370     bootm/fdt: Only process the fdt if an fdt address was provided
71371
71372     Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
71373     kernels using the board info structure (instead of passing a device tree)
71374     This change allows the old style booting to be used if the fdt argument
71375     was not passed to 'bootm'.
71376
71377     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71378     Acked-by: Kim Phillips <kim.phillips@freescale.com>
71379
71380 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
71381 Author: Grant Likely <grant.likely@secretlab.ca>
71382 Date:   Thu Sep 6 09:46:23 2007 -0600
71383
71384     Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
71385
71386     Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
71387
71388     Tested on: lite5200b
71389
71390     Note: the fixup functions have not been moved to a common place.  This
71391     patch is targeted for immediate merging as in solves a build issue, but
71392     the final name/location of the fixups is still subject to debate.  I
71393     propose to merge this now, and move the fixups in the next merge window
71394     to be usable by all targets.
71395
71396     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71397
71398 commit 41bb76e941929f54a73206fb132f7a4c275543a3
71399 Author: Grant Likely <grant.likely@secretlab.ca>
71400 Date:   Thu Sep 6 09:46:17 2007 -0600
71401
71402     libfdt: add convenience function fdt_find_and_setprop()
71403
71404     Given the path to a node, fdt_find_and_setprop() allows a property value
71405     to be set directly.
71406
71407     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71408
71409 commit 80767a6cead9990d9e77e62be947843c2c72f469
71410 Author: Peter Pearse <peter.pearse@arm.com>
71411 Date:   Wed Sep 5 16:04:41 2007 +0100
71412
71413     Changed API name to coloured_led.h
71414     Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
71415     Tidied other cpu/arm920t/start.S code
71416
71417 commit 56a9270521baaa00e12639a978302a67f61ef060
71418 Author: Kumar Gala <galak@kernel.crashing.org>
71419 Date:   Thu Aug 30 16:18:18 2007 -0500
71420
71421     Fix ULI RTC support on MPC8544 DS
71422
71423     The RTC on the M1575 ULI chipset requires a dummy read before
71424     we are able to talk to the RTC.  We accomplish this by adding a
71425     second memory region to the PHB the ULI is on and read from it.
71426
71427     The second region is added to maintain compatiabilty with Linux's
71428     view of the PCI memory map.
71429
71430     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
71431
71432 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
71433 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
71434 Date:   Thu Aug 30 01:58:48 2007 -0500
71435
71436     ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
71437
71438     pcie is now differentiated from pci.  Add 8641 bus-range updates.
71439
71440     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
71441
71442 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
71443 Author: Peter Pearse <peter.pearse@arm.com>
71444 Date:   Tue Sep 4 16:18:38 2007 +0100
71445
71446     Add coloured led interface for ARM boards.
71447     Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
71448
71449 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
71450 Author: Peter Pearse <peter.pearse@arm.com>
71451 Date:   Tue Sep 4 14:49:28 2007 +0100
71452
71453     Move include/led.h to board/at91rm9200dk
71454
71455 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
71456 Author: Peter Pearse <peter.pearse@arm.com>
71457 Date:   Tue Sep 4 14:25:51 2007 +0100
71458
71459     Ran Lindent on drivers/at45.c
71460
71461 commit 557ab89d294f08dd532f21d19861b40093200a33
71462 Author: Peter Pearse <peter.pearse@arm.com>
71463 Date:   Tue Sep 4 14:23:50 2007 +0100
71464
71465     Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
71466
71467 commit 81b73dec16fd1227369a191e725e10044a9d56b8
71468 Author: Gary Jennejohn <garyj@denx.de>
71469 Date:   Fri Aug 31 15:21:46 2007 +0200
71470
71471     ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
71472
71473     The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
71474     set to non-zero, because it doesn't support MRM (memory-read-
71475     multiple) correctly. We now added the possibility to configure
71476     this register in the board config file, so that the default value
71477     of 8 can be overridden.
71478
71479     Here the details of this patch:
71480
71481     o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
71482       board-specific settings. As an example the sequoia board requires 0.
71483       Idea from Stefan Roese <sr@denx.de>.
71484     o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
71485       PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
71486     o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
71487       CFG_PCI_CACHE_LINE_SIZE to 0.
71488
71489     Signed-off-by: Gary Jennejohn <garyj@denx.de>
71490     Signed-off-by: Stefan Roese <sr@denx.de>
71491
71492 commit 60174746c668b309378a91488dded898e9553eae
71493 Author: Wolfgang Denk <wd@denx.de>
71494 Date:   Fri Aug 31 10:01:51 2007 +0200
71495
71496     Fix TFTP OACK code for short packets.
71497
71498     The old code had a loop limit overflow bug which caused a semi-
71499     infinite loop for small packets, because in "i<len-8", "i" was signed,
71500     but "len" was unsigned, and "len-8" became a huge number for small
71501     values of "len".
71502
71503     This is a workaround which replaces broken commit 8f1bc284.
71504
71505     Signed-off-by: Wolfgang Denk <wd@denx.de>
71506
71507 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
71508 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
71509 Date:   Thu Aug 30 15:03:05 2007 +0200
71510
71511     Reduce BOOTDELAY variable to 1 second by default for STK1002
71512
71513     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
71514     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
71515
71516 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
71517 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
71518 Date:   Thu Aug 30 15:03:04 2007 +0200
71519
71520     Remove double quotation marks around MAC address for STK1002
71521
71522     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
71523     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
71524
71525 commit ff13ac8c7bbebb238e339592de765c546dba1073
71526 Author: Wolfgang Denk <wd@denx.de>
71527 Date:   Thu Aug 30 14:42:15 2007 +0200
71528
71529     Backout commit 8f1bc284 as it causes TFTP to fail.
71530
71531     Signed-off-by: Wolfgang Denk <wd@denx.de>
71532
71533 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
71534 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
71535 Date:   Thu Aug 30 02:26:17 2007 -0500
71536
71537     Revert "Fix MPC8544DS PCIe3 scsi."
71538
71539     This reverts commit 9468e680.
71540     Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
71541
71542     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
71543
71544 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
71545 Author: Grant Likely <grant.likely@secretlab.ca>
71546 Date:   Wed Aug 29 18:26:24 2007 -0600
71547
71548     tftp: don't implicity trust the format of recevied packets
71549
71550     The TFTP OACK code trusts that the incoming packet is formated as
71551     ASCII text and can be processed by string functions. It also has a
71552     loop limit overflow bug where if the packet length is less than 8, it
71553     ends up looping over *all* of memory to find the 'blksize' string.
71554
71555     This patch solves the problem by forcing the packet to be null
71556     terminated and using strstr() to search for the sub string.
71557
71558     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71559
71560 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
71561 Author: Stefan Roese <sr@denx.de>
71562 Date:   Wed Aug 29 16:31:18 2007 +0200
71563
71564     ppc4xx: Change lwmon5 default environment to support Linux RTC
71565
71566     The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
71567     to supply the RTC I2C address as bootline parameter. This patch
71568     adds support for this rtc probing parameter to the bootargs:
71569
71570     "rtc-pcf8563.probe=0,0x51"
71571
71572     Signed-off-by: Stefan Roese <sr@denx.de>
71573
71574 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
71575 Author: Kim Phillips <kim.phillips@freescale.com>
71576 Date:   Wed Aug 29 09:06:05 2007 -0500
71577
71578     sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
71579
71580     this had slipped through the cracks, since the sbc board was added
71581     after I wrote the original patch to remove all these symbols, and
71582     before it was merged.
71583
71584     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71585
71586 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
71587 Author: Wolfgang Denk <wd@denx.de>
71588 Date:   Wed Aug 29 14:05:30 2007 +0200
71589
71590     Add mii_init() prototype
71591
71592     to get rid of a *lot* of compiler warnings.
71593
71594     Signed-off-by: Wolfgang Denk <wd@denx.de>
71595
71596 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
71597 Author: Wolfgang Denk <wd@denx.de>
71598 Date:   Wed Aug 29 13:35:03 2007 +0200
71599
71600     Disable network support on cmi_mpc5xx board
71601
71602     ..because it caused compiler errors and there seems to be no
71603     board maintainer to take care of this.
71604
71605     Signed-off-by: Wolfgang Denk <wd@denx.de>
71606
71607 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
71608 Author: Kumar Gala <galak@kernel.crashing.org>
71609 Date:   Mon Aug 20 09:44:00 2007 -0500
71610
71611     Fix MPC8544DS PCIe3 scsi.
71612
71613     <ed.swarthout@freescale.com>
71614
71615     The problem is pciauto_setup_device() getting called from fsl_pci_init.c
71616     is allocating memory space it doesn't need.
71617
71618     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
71619     Signed-off-by: Andy Fleming <afleming@freescale.com>
71620
71621 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
71622 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
71623 Date:   Tue Aug 21 09:38:59 2007 -0500
71624
71625     8548cds fixes
71626
71627     Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
71628     correct consoledev needed for linux boot.
71629     Standardize on fdt{file,addr} var to hold dtb file name.
71630
71631     Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
71632
71633     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
71634
71635 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
71636 Author: Haiying Wang <Haiying.Wang@freescale.com>
71637 Date:   Thu Aug 23 15:20:54 2007 -0400
71638
71639     Enable L2 cache for MPC8568MDS board
71640
71641     The L2 cache size is 512KB for 8568, print out the correct informaiton.
71642
71643     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
71644
71645 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
71646 Author: Jason Jin <Jason.jin@freescale.com>
71647 Date:   Wed Aug 22 17:54:49 2007 +0800
71648
71649     Remove the bios emulator binary files from MAI board
71650
71651     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
71652
71653 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
71654 Author: Kim Phillips <kim.phillips@freescale.com>
71655 Date:   Tue Aug 21 17:00:17 2007 -0500
71656
71657     support board vendor-common makefiles
71658
71659     if a board/$(VENDOR)/common/Makefile exists, build it.
71660
71661     also add the first such case, board/freescale/common/Makefile, to
71662     handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
71663     dictated by board configuration.
71664
71665     thusly get rid of alternate build dir errors such as:
71666
71667     FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
71668
71669     by putting the common/ mkdir command in its proper place (the common
71670     Makefile). Common bits from existing individual board Makefiles have
71671     been removed.
71672
71673     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71674
71675 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
71676 Author: stefano babic <sbabic@denx.de>
71677 Date:   Tue Aug 21 15:52:33 2007 +0200
71678
71679     Fix: TFTP is not working on little endian systems
71680
71681     TFTP does not work anymore after multicast tftp
71682     patch was applied on little endian systems.
71683     This patch fix it.
71684
71685     Signed-off-by: Stefano Babic <sbabic@denx.de>
71686
71687 commit 5f470948570526e9186f053a3003da7719604e90
71688 Author: stefano babic <sbabic@denx.de>
71689 Date:   Tue Aug 21 15:50:33 2007 +0200
71690
71691     Fix MAC address setting in DM9000 driver.
71692
71693     The logic to check if there is a correct MAC address in the DM9000
71694     EEPROM, added in the last patch, is wrong. Now the MAC address is
71695     always taken from the environment, even if a suitable MAC is present
71696     in the EEPROM.
71697
71698     Signed-off-by: Stefano Babic <sbabic@denx.de>
71699
71700 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
71701 Author: Martin Krause <martin.krause@tqs.de>
71702 Date:   Tue Aug 21 12:40:34 2007 +0200
71703
71704     MPC5xxx: fix some compiler warnings in USB code
71705
71706     Fix the following warnings:
71707     - usb.c:xx: warning: function declaration isn't a prototype
71708     - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
71709       from pointer wihtout a cast
71710
71711     Signed-off-by: Martin Krause <martin.krase@tqs.de>
71712
71713 commit 16e23c3f5dab6937f5109365416808c7f15c122b
71714 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
71715 Date:   Mon Aug 20 23:55:33 2007 -0500
71716
71717     fsl_pci_init - Remove self PCSRBAR allocation
71718
71719     CPU physical address space was being wasted by allocating a
71720     PCSRBAR PCI inbound region to it's memory space.
71721
71722     As a rule, PCSRBAR should be left alone since it does not affect
71723     transactions from self and other masters may have changed it.
71724
71725     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
71726
71727 commit 0e700ce03a23bb1921149bc77008ace7103d5289
71728 Author: Martin Krause <martin.krause@tqs.de>
71729 Date:   Mon Aug 20 13:56:47 2007 +0200
71730
71731     Fix compiler warning in include/s3c2410.h
71732
71733     This patch fixes the "type qualifiers ignored on fuction return tpye"
71734     warning for include/s3c2410.h
71735
71736     Signed-off-by: Martin Krause <martin.krause@tqs.de>
71737
71738 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
71739 Author: Dirk Behme <dirk.behme@googlemail.com>
71740 Date:   Mon Aug 20 07:09:05 2007 +0200
71741
71742     Fix compilation error for omap2420h4_config.
71743
71744     omap2420h4 switched to cfi, so remove old (already disabled) flash.c
71745     and flash_probe() calls in env_flash.c.
71746
71747     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
71748
71749 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
71750 Author: Kim Phillips <kim.phillips@freescale.com>
71751 Date:   Fri Aug 10 14:34:14 2007 -0500
71752
71753     fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
71754
71755     and make some minor corrections to the FDT part of the README.
71756
71757     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71758
71759 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
71760 Author: Wolfgang Denk <wd@denx.de>
71761 Date:   Wed Aug 29 01:32:05 2007 +0200
71762
71763     Minor coding style cleanup.
71764
71765     Signed-off-by: Wolfgang Denk <wd@denx.de>
71766
71767 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
71768 Author: Heiko Schocher <hs@pollux.denx.de>
71769 Date:   Tue Aug 28 17:40:33 2007 +0200
71770
71771     [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
71772
71773     Signed-off-by: Heiko Schocher <hs@denx.de>
71774
71775 commit f98984cb194bb34dbe1db9429d3b51133af30d07
71776 Author: Heiko Schocher <hs@pollux.denx.de>
71777 Date:   Tue Aug 28 17:39:14 2007 +0200
71778
71779     IDE:        - make ide_inb () and ide_outb () "weak", so boards can
71780               define there own I/O functions.
71781               (Needed for the pcs440ep board).
71782             - The default I/O Functions are again 8 Bit accesses.
71783             - Added CONFIG_CMD_IDE for the pcs440ep Board.
71784
71785     Signed-off-by: Heiko Schocher <hs@denx.de>
71786
71787 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
71788 Author: Semih Hazar <semih.hazar@indefia.com>
71789 Date:   Mon Aug 20 19:00:01 2007 +0300
71790
71791     AVR32: Change prototype of memset
71792
71793     Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
71794     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
71795
71796 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
71797 Author: Yuri Tikhonov <yur@emcraft.com>
71798 Date:   Sat Aug 25 05:07:16 2007 +0200
71799
71800     POST: limit memory test area to not touch global data anymore
71801
71802     As experienced on lwmon5, on some boards the POST memory test can
71803     corrupt the global data buffer (bd). This patch fixes this issue
71804     by checking and limiting this area.
71805
71806     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
71807     Signed-off-by: Stefan Roese <sr@denx.de>
71808
71809 commit 75e1a84d483e36be10e206e539b028c4889e1158
71810 Author: Stefan Roese <sr@denx.de>
71811 Date:   Fri Aug 24 15:41:42 2007 +0200
71812
71813     ppc4xx: Add RTC POST test to lwmon5 board configuration
71814
71815     Since this RTC POST test is taking quite a while to complete
71816     it's only initiated upon special keypress same as the complete
71817     memory POST.
71818
71819     Signed-off-by: Stefan Roese <sr@denx.de>
71820
71821 commit d7bfa620037a6d2210159387571bdf93aa32c162
71822 Author: Stefan Roese <sr@denx.de>
71823 Date:   Fri Aug 24 15:19:10 2007 +0200
71824
71825     ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
71826
71827     Signed-off-by: Stefan Roese <sr@denx.de>
71828
71829 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
71830 Author: Stefan Roese <sr@denx.de>
71831 Date:   Thu Aug 23 11:02:37 2007 +0200
71832
71833     ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
71834
71835     This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
71836     board. Now the "eeprom" command can be used to read/write from/to this
71837     device. Additionally a new command was added "eepromwp" to en-/disable
71838     the write-protect of this 2nd EEPROM.
71839
71840     The 1st EEPROM is not affected by this write-protect command.
71841
71842     Signed-off-by: Stefan Roese <sr@denx.de>
71843
71844 commit c64fb30e4c5976007d56fc1789c7a0666082b536
71845 Author: Stefan Roese <sr@denx.de>
71846 Date:   Wed Aug 22 08:56:09 2007 +0200
71847
71848     ppc4xx: Remove unused option CFG_INIT_RAM_OCM
71849
71850     Signed-off-by: Stefan Roese <sr@denx.de>
71851
71852 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
71853 Author: Stefan Roese <sr@denx.de>
71854 Date:   Tue Aug 21 16:27:57 2007 +0200
71855
71856     ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
71857
71858     This patch adds support for the matrix keyboard on the lwmon5 board.
71859     Since the implementation in the dsPCI is kind of compatible with the
71860     "old" lwmon board, most of the code is copied from the lwmon
71861     board directory.
71862
71863     Signed-off-by: Stefan Roese <sr@denx.de>
71864
71865 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
71866 Author: Wolfgang Denk <wd@denx.de>
71867 Date:   Sun Aug 19 10:27:34 2007 +0200
71868
71869     Fix some build errors.
71870
71871     Signed-off-by: Wolfgang Denk <wd@denx.de>
71872
71873 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
71874 Author: Wolfgang Denk <wd@denx.de>
71875 Date:   Sat Aug 18 22:00:38 2007 +0200
71876
71877     Update CHANGELOG.
71878
71879 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
71880 Author: Kim Phillips <kim.phillips@freescale.com>
71881 Date:   Thu Aug 16 22:52:39 2007 -0500
71882
71883     lib_ppc: make board_add_ram_info weak
71884
71885     platforms wishing to display RAM diagnostics in addition to size,
71886     can do so, on one line, in their own board_add_ram_info()
71887     implementation.
71888
71889     this consequently eliminates CONFIG_ADD_RAM_INFO.
71890
71891     Thanks to Stefan for the hint.
71892
71893     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71894
71895 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
71896 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
71897 Date:   Fri Aug 17 12:43:44 2007 +0900
71898
71899     PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
71900
71901     This patch has been sent on:
71902     - 6 Jun 2007
71903
71904     Many users of PCI config read routines tend to ignore the function
71905     ret value, and are only concerned about the contents of *val. Based
71906     on this, pci_hose_read_config_{byte,word}_via_dword should initialize
71907     the *val on dword read error.
71908
71909     Without this fix, for example, we'll go on scanning bus with vendor or
71910     header_type uninitialized. This brings many unnecessary config trials.
71911
71912     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
71913
71914 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
71915 Author: Stefan Roese <sr@denx.de>
71916 Date:   Sat Aug 18 14:37:52 2007 +0200
71917
71918     ColdFire: Fix some remaining problems with CFG_CMD_
71919
71920     Signed-off-by: Stefan Roese <sr@denx.de>
71921
71922 commit 8280f6a1c43247616b68224675188e5ccd124650
71923 Author: Stefan Roese <sr@denx.de>
71924 Date:   Sat Aug 18 14:33:02 2007 +0200
71925
71926     Coding style cleanup
71927
71928     Signed-off-by: Stefan Roese <sr@denx.de>
71929
71930 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
71931 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
71932 Date:   Thu Aug 16 19:23:50 2007 -0500
71933
71934     ColdFire: Add M5235EVB Platform for MCF523x
71935
71936     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
71937
71938 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
71939 Author: Kim Phillips <kim.phillips@freescale.com>
71940 Date:   Fri Aug 17 09:30:00 2007 -0500
71941
71942     mpc83xx: fix typo in DDR2 programming
71943
71944     introduced in the implement board_add_ram_info patch as I was cleaning out the
71945     magic numbers.  sorry.
71946
71947     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71948
71949 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
71950 Author: Kim Phillips <kim.phillips@freescale.com>
71951 Date:   Thu Aug 16 22:53:09 2007 -0500
71952
71953     mpc83xx: move freescale boards to boards/freescale
71954
71955     includes build fixes.
71956
71957     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71958
71959 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
71960 Author: Kim Phillips <kim.phillips@freescale.com>
71961 Date:   Thu Aug 16 22:52:59 2007 -0500
71962
71963     mpc83xx: suppress unused variable 'val8' warning
71964
71965     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71966
71967 commit bbea46f76f767b919070b4829bf34c86bd223248
71968 Author: Kim Phillips <kim.phillips@freescale.com>
71969 Date:   Thu Aug 16 22:52:48 2007 -0500
71970
71971     mpc83xx: implement board_add_ram_info
71972
71973     add board_add_ram_info, to make memory diagnostic output more
71974     consistent. u-boot banner output now looks like:
71975
71976     DRAM:  256 MB (DDR1, 64-bit, ECC on)
71977
71978     and for boards with SDRAM on the local bus, a line such as this is
71979     added:
71980
71981     SDRAM: 64 MB (local bus)
71982
71983     also replaced some magic numbers with their equivalent define names.
71984
71985     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71986
71987 commit 14778585d1389d86d5846efec29e5fce892680ce
71988 Author: Tony Li <tony.li@freescale.com>
71989 Date:   Fri Aug 17 10:35:59 2007 +0800
71990
71991     mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
71992
71993     The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
71994     And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
71995
71996     Signed-off-by Tony Li <tony.li@freescale.com>
71997
71998 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
71999 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72000 Date:   Thu Aug 16 15:05:11 2007 -0500
72001
72002     ColdFire: Add M54455EVB for MCF5445x
72003
72004     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72005
72006 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
72007 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72008 Date:   Thu Aug 16 13:20:50 2007 -0500
72009
72010     ColdFire: Add M5253EVBE platform for MCF52x2
72011
72012     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72013
72014 commit a605aacd8324094199402816cc6d9124aba57b8d
72015 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72016 Date:   Thu Aug 16 05:04:31 2007 -0500
72017
72018     ColdFire: Add M5249EVB platform for MCF52x2
72019
72020     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72021
72022 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
72023 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72024 Date:   Wed Aug 15 20:32:06 2007 -0500
72025
72026     ColdFire: Update Freescale MCF52x2 platforms
72027
72028     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72029
72030 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
72031 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72032 Date:   Wed Aug 15 19:55:10 2007 -0500
72033
72034     ColdFire: Update EB+MCF-EV123 platform
72035
72036     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72037
72038 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
72039 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72040 Date:   Wed Aug 15 19:46:38 2007 -0500
72041
72042     ColdFire: update TASREG platform for MCF52x2
72043
72044     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72045
72046 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
72047 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72048 Date:   Wed Aug 15 19:45:51 2007 -0500
72049
72050     ColdFire: update r5200 platform for MCF52x2
72051
72052     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72053
72054 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
72055 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72056 Date:   Wed Aug 15 19:43:20 2007 -0500
72057
72058     ColdFire: idmr platform MCF52x2 update
72059
72060     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72061
72062 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
72063 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72064 Date:   Wed Aug 15 19:41:06 2007 -0500
72065
72066     ColdFire: cobra5272 platform for MCF52x2 update
72067
72068     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72069
72070 commit 56115665b4a64c10c01440c57749b265e0908fa4
72071 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72072 Date:   Wed Aug 15 19:38:15 2007 -0500
72073
72074     ColdFire: MCF52x2 Header files update
72075
72076     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72077
72078 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
72079 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72080 Date:   Wed Aug 15 19:21:21 2007 -0500
72081
72082     ColdFire: MCF52x2 update
72083
72084     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72085
72086 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
72087 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72088 Date:   Wed Aug 15 18:46:11 2007 -0500
72089
72090     ColdFire: MCF5329 update cache
72091
72092     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72093
72094 commit 7171977fb8fd77cfb6676953fa9a05789c450513
72095 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72096 Date:   Wed Aug 15 15:40:20 2007 -0500
72097
72098     ColdFire: MCF5329 header file clean up
72099
72100     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72101
72102 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
72103 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72104 Date:   Wed Aug 15 15:39:17 2007 -0500
72105
72106     ColdFire: MCF5329 Update and cleanup
72107
72108     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72109
72110 commit 10327dc5541f947c0cf7e31fef86c4706169607a
72111 Author: Andy Fleming <afleming@freescale.com>
72112 Date:   Thu Aug 16 16:35:02 2007 -0500
72113
72114     Add CONFIG_HAS_ETH0 to all boards with TSEC
72115
72116     The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
72117     to update TSEC1's device-tree node, so we need to add it
72118     to all the boards with TSECs.  Do this for 83xx and 86xx, too,
72119     since they will eventually do something similar.
72120
72121     Signed-off-by: Andy Fleming <afleming@freescale.com>
72122
72123 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
72124 Author: Kumar Gala <galak@kernel.crashing.org>
72125 Date:   Thu Aug 16 15:05:04 2007 -0500
72126
72127     Update MPC8544 DS PCI memory map
72128
72129     The PCIe bus that the ULI M1575 is connected to has no possible way of
72130     needing more than the fixed amount of IO & Memory space needed by the ULI.
72131
72132     So make it use far less IO & memory space and have it use the shared LAW.  This
72133     free's up a LAW for PCIe1 IO space.  Also reduce the amount of IO space needed
72134     by each bus.
72135
72136     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
72137
72138 commit ea5877e31ed63ade948fd1293895ec23fe01472e
72139 Author: Kumar Gala <galak@kernel.crashing.org>
72140 Date:   Thu Aug 16 11:01:21 2007 -0500
72141
72142     Fix up some fdt issues on 8544DS
72143
72144     It looks like we had a merge issue that duplicated a bit of code
72145     in ft_board_setup.  Also, we need to set CONFIG_HAS_ETH0 to get
72146     the MAC address properly set in the device tree on boot for TSEC1
72147
72148     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
72149
72150 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
72151 Author: Niklaus Giger <niklaus.giger@netstal.com>
72152 Date:   Thu Aug 16 15:16:03 2007 +0200
72153
72154     PPC4xx:HCU4/5 cleanup
72155
72156     Minor cleanups to confirm to the u-boot coding style.
72157     Some german expressions -> english.
72158     HCU5 enforces a unique IP adress for a given slot in the rack.
72159
72160     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
72161
72162 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
72163 Author: Niklaus Giger <niklaus.giger@netstal.com>
72164 Date:   Thu Aug 16 15:16:02 2007 +0200
72165
72166     PPC4xx:HCU4/5 cleanup ecc/sdram init
72167
72168     Make ecc initialisation robust, as DDR2-ECC errors may be generated
72169     while zeroing the RAM.
72170
72171     Return 16 bytes (a cacheline) less than the available memory, as the
72172     board and/or PPC440EPx might have problems accessing the last bytes.
72173
72174     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
72175
72176 commit d35b508a55508535b6e8445b718585d27df733d3
72177 Author: Kim Phillips <kim.phillips@freescale.com>
72178 Date:   Wed Aug 15 22:29:56 2007 -0500
72179
72180     fdt: suppress unused variable 'bd' warning
72181
72182     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72183
72184 commit 82bd9ee77490588d4da785d75829ca63d0176baf
72185 Author: Andy Fleming <afleming@freescale.com>
72186 Date:   Wed Aug 15 20:06:50 2007 -0500
72187
72188     Fix warnings from of_data copy fix
72189
72190     Forgot to cast of_flat_tree to ulong.
72191
72192     Signed-off-by: Andy Fleming <afleming@freescale.com>
72193
72194 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
72195 Author: Andy Fleming <afleming@freescale.com>
72196 Date:   Wed Aug 15 20:03:44 2007 -0500
72197
72198     Don't wait for disconnected TSECs
72199
72200     The TSEC driver's PHY code waits a long time for autonegotiation to
72201     complete, even if the link is down.  The PHY knows the link is
72202     down or up before autonegotiation completes, so we can short-circuit
72203     the process if the link is down.
72204
72205     Signed-off-by: Andy Fleming <afleming@freescale.com>
72206
72207 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
72208 Author: Andy Fleming <afleming@freescale.com>
72209 Date:   Wed Aug 15 20:03:34 2007 -0500
72210
72211     Fix numerous bugs in the 8568 UEC support
72212
72213     Actually, fixed a large bug in the UEC for *all* platforms.
72214     How did this ever work?
72215
72216     uec_init() did not follow the spec for eth_init(), and returned
72217     0 on success.  Switch it to return the link like tsec_init()
72218     (and 0 on error)
72219
72220     The immap for the 8568 was defined based on MPC8568, rather than
72221     CONFIG_MPC8568
72222
72223     CONFIG_QE was off
72224
72225     CONFIG_ETHPRIME was set to "Freescale GETH".  Now is "FSL UEC0"
72226
72227     Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
72228     enabled
72229
72230     Signed-off-by: Andy Fleming <afleming@freescale.com>
72231
72232 commit 3a79013e2adda53332dfd0b511066a805e929a9d
72233 Author: Andy Fleming <afleming@freescale.com>
72234 Date:   Wed Aug 15 20:03:25 2007 -0500
72235
72236     Define tsec flag values in config files
72237
72238     The tsec_info structure and array has a "flags" field for each
72239     ethernet controller.  This field is the only reason there are
72240     settings.  Switch to defining TSECn_FLAGS for each controller
72241     in the config header, and we can greatly simplify the array, and
72242     also simplify the addition of future boards.
72243
72244     Signed-off-by: Andy Fleming <afleming@freescale.com>
72245
72246 commit ec7238229507e7f47533a611ea8c53319d234cf3
72247 Author: Andy Fleming <afleming@freescale.com>
72248 Date:   Wed Aug 15 20:03:13 2007 -0500
72249
72250     Add support for building all boards with a TSEC
72251
72252     Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
72253     Now we can do a MAKEALL test on all of them!
72254
72255     Signed-off-by: Andy Fleming <afleming@freescale.com>
72256
72257 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
72258 Author: Andy Fleming <afleming@freescale.com>
72259 Date:   Wed Aug 15 17:30:56 2007 -0500
72260
72261     Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
72262
72263     The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
72264     neglected to *also* put the code inside the similar #ifdef
72265     for CONFIG_OF_FLAT_TREE.
72266
72267     Signed-off-by: Andy Fleming <afleming@freescale.com>
72268
72269 commit 78f9fef7f406078c8bf7191e665a73f795157746
72270 Author: Scott Wood <scottwood@freescale.com>
72271 Date:   Wed Aug 15 15:46:46 2007 -0500
72272
72273     mpc885ads: Don't define CONFIG_BZIP2.
72274
72275     bzip2 requires a significant chunk of malloc space, and there isn't
72276     enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
72277     and a downloaded image at 0x400000.
72278
72279     Signed-off-by: Scott Wood <scottwood@freescale.com>
72280
72281 commit 002275a3ed8b114885f6702d6d544d0780dfe689
72282 Author: Michal Simek <Monstr@seznam.cz>
72283 Date:   Thu Aug 16 08:54:10 2007 +0200
72284
72285     Bios emulator - fix microblaze toolchain problem
72286
72287     microblaze CPU have problem with bios_emulator code.
72288     Microblaze toolchain doesn't support PRAGMA PACK.
72289
72290     Signed-off-by: Michal Simek <monstr@monstr.eu>
72291
72292 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
72293 Author: Wolfgang Denk <wd@denx.de>
72294 Date:   Thu Aug 16 11:51:04 2007 +0200
72295
72296     Minor Coding Style fix; Update CHANGELOG file.
72297
72298     Signed-off-by: Wolfgang Denk <wd@denx.de>
72299
72300 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
72301 Author: Stefan Roese <sr@denx.de>
72302 Date:   Thu Aug 16 11:21:49 2007 +0200
72303
72304     ppc4xx: Remove #warning in esd auto_update.c
72305
72306     Signed-off-by: Stefan Roese <sr@denx.de>
72307
72308 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
72309 Author: Stefan Roese <sr@denx.de>
72310 Date:   Fri Jun 22 17:32:28 2007 +0200
72311
72312     ppc7xx: Update CPCI750 board
72313
72314     This small CPCI750 update extends the board specific command
72315     "show_config" to display the Marvell strapping registers and
72316     extends the PCI IDE controller.
72317
72318     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
72319     Signed-off-by: Stefan Roese <sr@denx.de>
72320
72321 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
72322 Author: Michal Simek <monstr@monstr.eu>
72323 Date:   Thu Aug 16 10:46:28 2007 +0200
72324
72325     [FIX] Changes for bios_emulator code for others architecture
72326
72327 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
72328 Author: Michal Simek <monstr@monstr.eu>
72329 Date:   Thu Aug 16 10:45:09 2007 +0200
72330
72331     [FIX] Remove unused include file
72332
72333 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
72334 Author: Stefan Roese <sr@denx.de>
72335 Date:   Thu Aug 16 10:18:33 2007 +0200
72336
72337     ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
72338
72339     Signed-off-by: Stefan Roese <sr@denx.de>
72340
72341 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
72342 Author: Stefan Roese <sr@denx.de>
72343 Date:   Thu Aug 16 09:54:51 2007 +0200
72344
72345     Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
72346
72347     Signed-off-by: Stefan Roese <sr@denx.de>
72348
72349 commit 02ba7022f62bb75908296c58c63866e1d294b69a
72350 Author: Stefan Roese <sr@denx.de>
72351 Date:   Thu Aug 16 09:52:29 2007 +0200
72352
72353     ppc4xx: Update Sequoia/Rainier bootstrap command
72354
72355     As suggested by David Mitchell, here an update for the Sequoia/Rainier
72356     bootstrap command.
72357
72358     Signed-off-by: Stefan Roese <sr@denx.de>
72359
72360 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
72361 Author: Kim Phillips <kim.phillips@freescale.com>
72362 Date:   Wed Aug 15 22:30:39 2007 -0500
72363
72364     mpc83xx: enable libfdt by default on freescale boards
72365
72366     this enables libfdt code by default for the
72367     freescale mpc8313erdb, mpc832xemds, mpc8349emds,
72368     mpc8349itx and gp boards.
72369
72370     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72371
72372 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
72373 Author: Kim Phillips <kim.phillips@freescale.com>
72374 Date:   Wed Aug 15 22:30:33 2007 -0500
72375
72376     mpc83xx: migrate remaining freescale boards to libfdt
72377
72378     this adds libfdt support code for the freescale
72379     mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
72380     and gp boards.
72381
72382     Boards remain compatible with OF_FLAT_TREE.
72383
72384     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72385
72386 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
72387 Author: Kim Phillips <kim.phillips@freescale.com>
72388 Date:   Wed Aug 15 22:30:26 2007 -0500
72389
72390     mpc83xx: move common /memory node update mechanism to cpu.c
72391
72392     also adds common prototypes to include/common.h.
72393
72394     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72395
72396 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
72397 Author: Kim Phillips <kim.phillips@freescale.com>
72398 Date:   Wed Aug 15 22:30:19 2007 -0500
72399
72400     mpc83xx: remaining 8360 libfdt fixes
72401
72402     PCI clocks and QE frequencies weren't being updated, and the core clock
72403     was being updated incorrectly.  This patch also adds a /memory node if
72404     it doesn't already exist prior to update.
72405
72406     plus some cosmetic trimming to single line comments.
72407
72408     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72409
72410 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
72411 Author: Kim Phillips <kim.phillips@freescale.com>
72412 Date:   Wed Aug 15 22:30:12 2007 -0500
72413
72414     mpc83xx: fix UEC2->1 typo in libfdt setup code
72415
72416     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72417
72418 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
72419 Author: Kim Phillips <kim.phillips@freescale.com>
72420 Date:   Wed Aug 15 22:30:05 2007 -0500
72421
72422     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
72423
72424     and reorder the existing 83xx maintainers alpha.
72425
72426     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72427
72428 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
72429 Author: Michal Simek <monstr@monstr.eu>
72430 Date:   Wed Aug 15 21:15:05 2007 +0200
72431
72432     [FIX] Resolve problem with warnings
72433     microblaze toolchain don't support PRAGMA PACK.
72434
72435 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
72436 Author: Michal Simek <monstr@monstr.eu>
72437 Date:   Wed Aug 15 21:05:07 2007 +0200
72438
72439     [FIX] Correction command setting for Microblaze boards
72440
72441 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
72442 Author: Michal Simek <monstr@monstr.eu>
72443 Date:   Wed Aug 15 21:03:41 2007 +0200
72444
72445     [FIX] Correction command definition
72446
72447 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
72448 Author: Jon Loeliger <jdl@freescale.com>
72449 Date:   Wed Aug 15 11:55:35 2007 -0500
72450
72451     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
72452
72453     Remove a leftover in net/tftp.c while we're at it.
72454
72455     Signed-off-by: Jon Loeliger <jdl@freescale.com>
72456
72457 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
72458 Author: Jon Loeliger <jdl@freescale.com>
72459 Date:   Wed Aug 15 12:20:40 2007 -0500
72460
72461     Move the MPC8641HPCN board under board/freescale.
72462
72463     Minor path corrections needed to ensure buildability.
72464
72465     Signed-off-by: Jon Loeliger <jdl@freescale.com>
72466
72467 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
72468 Author: Jon Loeliger <jdl@freescale.com>
72469 Date:   Wed Aug 15 11:46:22 2007 -0500
72470
72471     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
72472
72473     Remove a leftover in net/tftp.c while we're at it.
72474
72475     Signed-off-by: Jon Loeliger <jdl@freescale.com>
72476
72477 commit 210f463c71917b7a4495c2103c228b9c179ae64d
72478 Author: Jerry Van Baren <gvb.uboot@gmail.com>
72479 Date:   Wed Aug 15 11:13:15 2007 -0400
72480
72481     Fix where the #ifdef CFG_BOOTMAPSZ is placed.
72482
72483     Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
72484     interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
72485     when it should have gone inside of the conditional.  As a result, it
72486     broke non-LIBFDT board builds.
72487
72488     Also added a missing "not." to the comment.
72489
72490     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
72491
72492 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
72493 Author: Niklaus Giger <niklaus.giger@netstal.com>
72494 Date:   Wed Aug 15 12:14:23 2007 +0200
72495
72496     PPC4xx:HCU4/5-Board fix compile warning
72497
72498     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
72499
72500 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
72501 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
72502 Date:   Tue Aug 14 14:06:45 2007 -0500
72503
72504     Fix malloc size error in ahci_init_one.
72505
72506     Typically this causes scsi init to corrupt the
72507     devlist and break the coninfo command.
72508     Fix a compiler size warning.
72509
72510     Signed-off-by: Jason Jin <jason.jin@freescale.com>
72511     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72512     Acked-by: Andy Fleming <afleming@freescale.com>
72513
72514 commit b361acd64fd2525c081b9b288b0804efe209c0e9
72515 Author: ksi@koi8.net <ksi@koi8.net>
72516 Date:   Tue Aug 14 10:02:16 2007 -0700
72517
72518     TI DaVinci - fix unsupported %hhx format
72519
72520     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
72521
72522 commit f01dbb5424a81453c81190dd30e945891466f621
72523 Author: Wolfgang Denk <wd@denx.de>
72524 Date:   Tue Aug 14 18:42:36 2007 +0200
72525
72526     Coding style cleanup. Update CHANGELOG.
72527
72528     Signed-off-by: Wolfgang Denk <wd@denx.de>
72529
72530 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
72531 Author: Andy Fleming <afleming@freescale.com>
72532 Date:   Tue Aug 14 10:32:59 2007 -0500
72533
72534     Fix initrd/dtb interaction
72535
72536     The original code would wrongly relocate the blob to be right before
72537     the initrd if it existed.  The blob *must* be within CFG_BOOTMAPSZ,
72538     if it is defined.  So we make two changes:
72539
72540     1) flag the blob for relocation whenever its address is above BOOTMAPSZ
72541
72542     2) If the blob is being relocated, relocate it before kbd, not initrd
72543
72544     Signed-off-by: Andy Fleming <afleming@freescale.com>
72545
72546 commit e54b970173769307a116bd34028b6d0c2eea2a4e
72547 Author: Peter Pearse <peter.pearse@arm.com>
72548 Date:   Tue Aug 14 15:40:00 2007 +0100
72549
72550     Supply spi interface in at45.c
72551
72552 commit 4ce846ec59f36b85d6644a769690ad3feb667575
72553 Author: Stefan Roese <sr@denx.de>
72554 Date:   Tue Aug 14 15:12:01 2007 +0200
72555
72556     POST: Fix merge problem
72557
72558     Signed-off-by: Stefan Roese <sr@denx.de>
72559
72560 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
72561 Author: Stefan Roese <sr@denx.de>
72562 Date:   Tue Aug 14 15:03:17 2007 +0200
72563
72564     Coding style cleanup
72565
72566     Signed-off-by: Stefan Roese <sr@denx.de>
72567
72568 commit 779e975117a75e91fcebe226a63104dbfb924ab1
72569 Author: Stefan Roese <sr@denx.de>
72570 Date:   Tue Aug 14 14:44:41 2007 +0200
72571
72572     ppc4xx: Add initial Zeus (PPC405EP) board support
72573
72574     Signed-off-by: Stefan Roese <sr@denx.de>
72575
72576 commit c5a172a5fd636c12467429e3f7910e53773979c6
72577 Author: Stefan Roese <sr@denx.de>
72578 Date:   Tue Aug 14 14:41:55 2007 +0200
72579
72580     POST: Add option for external ethernet loopback test
72581
72582     When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
72583     is not done using an internal loopback connection, but by assuming
72584     that an external loopback connector is plugged into the board.
72585
72586     Signed-off-by: Stefan Roese <sr@denx.de>
72587
72588 commit eb2b4010ae426245172988804ee8d9193fb41038
72589 Author: Stefan Roese <sr@denx.de>
72590 Date:   Tue Aug 14 14:39:44 2007 +0200
72591
72592     POST: Add ppc405 support to cache and UART POST
72593
72594     Signed-off-by: Stefan Roese <sr@denx.de>
72595
72596 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
72597 Author: Peter Pearse <peter.pearse@arm.com>
72598 Date:   Tue Aug 14 10:46:32 2007 +0100
72599
72600     Replace lost end of at45.c.
72601
72602 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
72603 Author: Peter Pearse <peter.pearse@arm.com>
72604 Date:   Tue Aug 14 10:30:06 2007 +0100
72605
72606     Update Makefiles for merged and split at45.c.
72607
72608 commit 3454cece2db57cb9eb7087995f7e73066a163f71
72609 Author: Peter Pearse <peter.pearse@arm.com>
72610 Date:   Tue Aug 14 10:21:06 2007 +0100
72611
72612     Delete the merged files.
72613
72614 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
72615 Author: Peter Pearse <peter.pearse@arm.com>
72616 Date:   Tue Aug 14 10:14:05 2007 +0100
72617
72618     Add the files.
72619
72620 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
72621 Author: Peter Pearse <peter.pearse@arm.com>
72622 Date:   Tue Aug 14 10:10:52 2007 +0100
72623
72624     Add MACH_TYPE records for several AT91 boards.
72625     Merge to two at45.c files into a common file, split to at45.c and spi.c
72626     Fix spelling error in DM9161 PHY Support.
72627     Initialize at91rm9200 board (and set LED).
72628     Add PIO control for at91rm9200dk LEDs and Mux.
72629     Change dataflash partition boundaries to be compatible with Linux 2.6.
72630
72631     Signed-off-by:      Peter Pearse <peter.pearse@arm.com>
72632     Signed-off-by:      Ulf Samuelsson <ulf@atmel.com>
72633
72634 commit 4ef35e53c693556c54b0c22d6f873de87bade253
72635 Author: Wolfgang Denk <wd@denx.de>
72636 Date:   Tue Aug 14 09:54:46 2007 +0200
72637
72638     Coding style cleanup, update CHANGELOG
72639
72640     Signed-off-by: Wolfgang Denk <wd@denx.de>
72641
72642 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
72643 Author: Wolfgang Denk <wd@denx.de>
72644 Date:   Tue Aug 14 09:47:27 2007 +0200
72645
72646     Coding style cleanup; rebuild CHANGELOG
72647
72648 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
72649 Author: Randy Vinson <rvinson@linuxbox.(none)>
72650 Date:   Tue Feb 27 19:42:22 2007 -0700
72651
72652     85xxCDS: Add make targets for legacy systems.
72653
72654     The PCI ID select values on the Arcadia main board differ depending
72655     on the version of the hardware. The standard configuration supports
72656     Rev 3.1. The legacy target supports Rev 2.x.
72657
72658     Signed-off-by Randy Vinson <rvinson@mvista.com>
72659
72660 commit e41094c7e38177c755fbd9b182018069614f080d
72661 Author: Andy Fleming <afleming@freescale.com>
72662 Date:   Tue Aug 14 01:50:09 2007 -0500
72663
72664     85xxCDS: Enable the VIA PCI-to-ISA bridge.
72665
72666     Author: Randy Vinson <rvinson@linuxbox.(none)>
72667
72668     Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
72669     Arcadia main board.
72670
72671     Signed-off-by: Randy Vinson <rvinson@mvista.com>
72672     Signed-off-by: York Sun <yorksun@freescale.com>
72673
72674 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
72675 Author: Andy Fleming <afleming@freescale.com>
72676 Date:   Tue Aug 14 00:14:25 2007 -0500
72677
72678     Add support for UEC to 8568
72679
72680     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
72681     Signed-off-by: Andy Fleming <afleming@freescale.com>
72682
72683 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
72684 Author: Haiying Wang <Haiying.Wang@freescale.com>
72685 Date:   Tue Jun 19 14:18:34 2007 -0400
72686
72687     Add PCI support for MPC8568MDS board
72688
72689     This patch is against u-boot-mpc85xx.git of www.denx.com
72690
72691     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
72692     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
72693
72694 commit d111d6382c99fdea08c2312eeeae8786945e189a
72695 Author: Haiying Wang <Haiying.Wang@freescale.com>
72696 Date:   Tue Jun 19 14:18:32 2007 -0400
72697
72698     Empirically set cpo and clk_adjust for mpc85xx DDR2 support
72699
72700     This patch is against u-boot-mpc85xx.git of www.denx.com
72701
72702     Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
72703     both MPC8548CDS board and MPC8568MDS board, especially for supporting
72704     533MHz DDR2.
72705
72706     Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
72707     DDR2 on all current board versions especially ver 1.92 or later to bring
72708     up.
72709
72710     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
72711
72712 commit 3db0bef59eab1155801618cef5c481e97553b597
72713 Author: Kumar Gala <galak@kernel.crashing.org>
72714 Date:   Tue Aug 7 18:07:27 2007 -0500
72715
72716     Use an absolute address when jumping out of 4k boot page
72717
72718     On e500 when we leave the 4k boot page we should use an absolute address since
72719     we don't know where the board code may want us to be really running at.
72720
72721     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
72722
72723 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
72724 Author: Andy Fleming <afleming@freescale.com>
72725 Date:   Mon Aug 13 14:49:59 2007 -0500
72726
72727     MPC85xx BA bits not set for 3-bit bank address DIMM
72728
72729     The current implementation does not set the number of bank address bits
72730     (BA) in the processor. The default assumes 2 logical bank bits. This
72731     works fine for a DIMM that uses devices with 4 internal banks (SPD
72732     byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
72733     devices with 8 internal banks (SPD byte17 = 0x8).
72734
72735     Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
72736
72737 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
72738 Author: Andy Fleming <afleming@freescale.com>
72739 Date:   Mon Aug 13 14:38:06 2007 -0500
72740
72741     Fix minor 85xx warnings
72742
72743     Some patches had inserted warnings into the build:
72744     * mpc8560ads declared data without using it
72745     * cpu_init declared ecm and immap without using it in all CONFIGs
72746     * MPC8548CDS.h had its default filenames changed so that they contained
72747       "\m" in the paths.  Made the defaults not Windows-specific (or
72748       anything-specific)
72749
72750     Signed-off-by: Andy Fleming <afleming@freescale.com>
72751
72752 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
72753 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
72754 Date:   Fri Jul 27 01:50:52 2007 -0500
72755
72756     8548cds PCIE support.
72757
72758     Make the early L1 cache stack region guarded to prevent speculative
72759     fetches outside the locked range.
72760
72761     Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
72762     init.S whitespace cleanup.
72763
72764     Allow TEXT_BASE value to be specified on command line.  This allows it
72765     to be set to 0xfffc0000 which cuts the uboot binary in half.
72766
72767     Clear and enable lbc and ecm errors.
72768
72769     Update last_busno in device-tree for pci and pcie.
72770
72771     Remove load of obsolete cpu/mpc85xx/pci.0
72772
72773     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72774     Acked-by: Andy Fleming <afleming@freescale.com>
72775
72776 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
72777 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
72778 Date:   Fri Jul 27 01:50:51 2007 -0500
72779
72780     8544ds PCIE support
72781
72782     PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
72783
72784     Enable LBC and ECM errors and clear error registers.
72785
72786     Add tftpflash env var to get uboot from tftp server and flash it.
72787
72788     Add pci/pcie convenience env vars to display register space:
72789       "run pcie3regs" to see all pcie3 ccsr registers
72790       "run pcie3cfg" to see all cfg registers
72791     Whitespace cleanup and MPC8544DS.h
72792
72793     Enable CONFIG_INTERRUPTS.
72794
72795     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72796     Acked-by: Andy Fleming <afleming@freescale.com>
72797
72798 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
72799 Author: Andy Fleming <afleming@freescale.com>
72800 Date:   Tue Aug 14 01:34:21 2007 -0500
72801
72802     85xx start.S cleanup and exception support
72803
72804     From: Ed Swarthout <Ed.Swarthout@freescale.com>
72805
72806     Support external interrupts from platform to eliminate system hangs.
72807     Define CONFIG_INTERRUPTS board configure option to enable.
72808     Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
72809
72810     Remove extra cpu initialization redundant with hardware initialization.
72811     Whitespace cleanup.
72812
72813     Define and use _START_OFFSET consistent with other processors using
72814     ppc_asm.tmpl
72815
72816     Move additional code from .text to boot page to make room for
72817     exception vectors at start of image.
72818
72819     Handle Machine Check, External and Critical exceptions.
72820
72821     Fix e500 machine check error determination in traps.c
72822
72823     TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
72824
72825     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72826     Acked-by: Andy Fleming <afleming@freescale.com>
72827
72828 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
72829 Author: Andy Fleming <afleming@freescale.com>
72830 Date:   Tue Aug 14 01:33:18 2007 -0500
72831
72832     Add MPC8544DS README
72833
72834     Signed-off-by: Andy Fleming <afleming@freescale.com>
72835
72836 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
72837 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
72838 Date:   Fri Jul 27 01:50:48 2007 -0500
72839
72840     85xx allow debugger to configure ddr.
72841
72842     Only check for mpc8548 rev 1 when compiled for 8548.
72843
72844     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72845     Acked-by: Andy Fleming <afleming@freescale.com>
72846
72847 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
72848 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
72849 Date:   Fri Jul 27 01:50:47 2007 -0500
72850
72851     mpc85xx L2 cache reporting and SRAM relocation option.
72852
72853     Allow debugger to override flash cs0/cs1 settings to enable alternate
72854     boot regions
72855
72856     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72857     Acked-by: Andy Fleming <afleming@freescale.com>
72858
72859 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
72860 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
72861 Date:   Fri Jul 27 01:50:46 2007 -0500
72862
72863     e500 needs ppc_asm.tmp MCK_EXCEPTION
72864
72865     Always define MCK_EXCEPTION macro - so e500 can use it too.
72866
72867     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72868     Acked-by: Andy Fleming <afleming@freescale.com>
72869
72870 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
72871 Author: David Updegraff <dave@cray.com>
72872 Date:   Mon Jun 11 10:41:07 2007 -0500
72873
72874     multicast tftp: RFC2090
72875
72876     Implemented IETF RFC2090, Multicast TFTP.  Initial implementation
72877     on Realtek RTL8139 and Freescale TSEC.
72878
72879     Signed-off-by: David Updegraff <dave@cray.com>
72880     Signed-off-by: Ben Warren <bwarren@qstreams.com>
72881
72882 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
72883 Author: Wilson Callan <wcallan@savantav.com>
72884 Date:   Sat Jul 28 10:56:13 2007 -0400
72885
72886     New CONFIG_BOOTP_SERVERIP option
72887
72888     Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
72889     from the bootp server
72890
72891     Signed-off-by: Wilson Callan <wcallan@savantav.com>
72892     Signed-off-by: Ben Warren <bwarren@qstreams.com>
72893
72894 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
72895 Author: Mike Rapoport <mike@compulab.co.il>
72896 Date:   Sun Aug 12 08:48:27 2007 +0300
72897
72898     Add ability to take MAC address from the environment to DM9000 driver
72899
72900     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
72901     Signed-off-by: Ben Warren <bwarren@qstreams.com>
72902
72903 commit be5d72d10d47609326226225181e301fb9a33b58
72904 Author: Wolfgang Denk <wd@denx.de>
72905 Date:   Mon Aug 13 21:57:53 2007 +0200
72906
72907     Minor coding style cleanup. Update CHANGELOG.
72908
72909     Signed-off-by: Wolfgang Denk <wd@denx.de>
72910
72911 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
72912 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
72913 Date:   Sat Aug 11 06:54:58 2007 -0500
72914
72915     Modify SBC8641D to use new Freescale PCI routines
72916
72917     PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
72918     adapter.
72919
72920     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
72921     Signde-off-by: Jon Loeliger <jdl@freescale.com>
72922
72923 commit a08458303e7f9db67f296980036d3292c35cb45c
72924 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72925 Date:   Fri Jun 29 18:38:51 2007 +0200
72926
72927     atmel_mci: Fix data timeout value
72928
72929     Calculate the data timeout based on values from the CSD instead of
72930     just using a hardcoded DTOR value. This is a backport of a similar fix
72931     in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
72932     instead of down.
72933
72934     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72935
72936 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
72937 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72938 Date:   Mon Aug 13 17:22:31 2007 +0200
72939
72940     AVR32: Include <div64.h> instead of <asm/div64.h>
72941
72942     include/asm-avr32/div64.h was recently moved to include/div64.h, but
72943     cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
72944     the patch was merged perhaps?)
72945
72946     This patch updates cpu/at32ap/interrupts.c so that the avr32 port
72947     compiles again.
72948
72949     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72950
72951 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
72952 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72953 Date:   Wed Jun 27 13:34:26 2007 +0200
72954
72955     atmel_mci: Use 512 byte blocksize if possible
72956
72957     Instead of always using the largest blocksize the card supports, check
72958     if it can support smaller block sizes and use 512 bytes if possible.
72959     Most cards do support this, and other parts of u-boot seem to have
72960     trouble with block sizes different from 512 bytes.
72961
72962     Also enable underrun/overrun protection.
72963
72964     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72965     Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
72966
72967 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
72968 Author: Stefan Roese <sr@denx.de>
72969 Date:   Mon Aug 13 09:05:33 2007 +0200
72970
72971     ppc4xx: Fix problem in PLL clock calculation
72972
72973     This patch was originall provided by David Mitchell <dmitchell@amcc.com>
72974     and fixes a bug in the PLL clock calculation.
72975
72976     Signed-off-by: Stefan Roese <sr@denx.de>
72977
72978 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
72979 Author: Wolfgang Denk <wd@denx.de>
72980 Date:   Sun Aug 12 21:34:50 2007 +0200
72981
72982     Update CHANGELOG
72983
72984 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
72985 Author: Wolfgang Denk <wd@denx.de>
72986 Date:   Sun Aug 12 21:34:34 2007 +0200
72987
72988     Minor alignment of output, 2nd try.
72989     Also update CHANGELOG
72990
72991     Signed-off-by: Wolfgang Denk <wd@denx.de>
72992
72993 commit 6b309f22a724fad8418e811751a0741b893419cf
72994 Author: Wolfgang Denk <wd@denx.de>
72995 Date:   Sun Aug 12 20:35:49 2007 +0200
72996
72997     Minor alignment of output
72998
72999     Signed-off-by: Wolfgang Denk <wd@denx.de>
73000
73001 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
73002 Author: Wolfgang Denk <wd@denx.de>
73003 Date:   Sun Aug 12 18:28:18 2007 +0200
73004
73005     Cleanup output on ADS5121 board
73006
73007     Signed-off-by: Wolfgang Denk
73008
73009 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
73010 Author: Wolfgang Denk <wd@denx.de>
73011 Date:   Sun Aug 12 15:11:38 2007 +0200
73012
73013     Adapt board configuration and fix kernel crash on MCC200 board.
73014
73015     The update procedure was modified to turn off the USB subsystem
73016     before exit for MCC200 and TRAB. This is necessary as otherwise the
73017     USB controller continues to write periodically to system memory!
73018
73019     MCC200-specific notes:
73020     - the patch disables the magic key check for MCC200
73021     - the patch contains the configuration changes made
73022       for the new revision of the board.
73023
73024     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
73025     Signed-off-by: Wolfgang Denk <wd@denx.de>
73026
73027 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
73028 Author: Wolfgang Denk <wd@denx.de>
73029 Date:   Sun Aug 12 14:47:54 2007 +0200
73030
73031     Adjust default configuration of ADS5121 board.
73032
73033     Signed-off-by: Wolfgang Denk <wd@denx.de>
73034
73035 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
73036 Author: Wolfgang Denk <wd@denx.de>
73037 Date:   Sun Aug 12 14:27:39 2007 +0200
73038
73039     Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
73040
73041     Signed-off-by: Wolfgang Denk <wd@denx.de>
73042
73043 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
73044 Author: Gerald Van Baren <vanbaren@cideas.com>
73045 Date:   Tue Aug 7 21:14:22 2007 -0400
73046
73047     Improve error print messages.
73048
73049     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73050
73051 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
73052 Author: Kim Phillips <kim.phillips@freescale.com>
73053 Date:   Tue Jul 17 13:57:04 2007 -0500
73054
73055     fdt: allow for builds that don't want env and bd_t nodes
73056
73057     protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
73058     area.
73059
73060     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73061
73062 commit 91148bf7aeba142d6f348805db7625db7da64d6f
73063 Author: Kim Phillips <kim.phillips@freescale.com>
73064 Date:   Tue Jul 17 13:56:53 2007 -0500
73065
73066     fdt: do board setup based on fdt address specified on bootm line
73067
73068     The last fdt patch to bootm did board setup based on the address
73069     specified by a prior fdt address command invocation.  The bootm
73070     code, as its call to fdt_chosen does, should use the fdt specified
73071     by the user on the bootm command.  Note this restores full
73072     functionality for the 8360's existing default boot environment
73073     values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
73074     before booting a kernel).
73075
73076     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73077
73078 commit e125a2ffc209dd34794e326c7175658253beadf3
73079 Author: Gerald Van Baren <vanbaren@cideas.com>
73080 Date:   Tue Jul 10 20:40:39 2007 -0400
73081
73082     Call ft_board_setup() from the bootm command.
73083
73084     In the patch titled "Create new fdt boardsetup command..." I removed the
73085     call to ft_board_setup() from the routine fdt_chosen(), but I forgot
73086     to add a direct call back into cmd_bootm.c
73087
73088     This fixes the oversight by adding the direct call to the bootm command.
73089
73090     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73091
73092 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
73093 Author: Gerald Van Baren <vanbaren@cideas.com>
73094 Date:   Mon Jun 25 23:25:28 2007 -0400
73095
73096     Create new fdt boardsetup command, fix bug parsing [] form of set values.
73097
73098     Previously ft_board_setup() was called by fdt_chosen() which was not
73099     really correctly structured.  This splits ft_board_setup() out by creating
73100     a new fdt boardsetup command.
73101
73102     Fix a bug when parsing fdt set command values which have the square
73103     bracket form [00 11 22 33] - the length was updated incorrectly in when
73104     parsing that form.
73105
73106     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73107
73108 commit 6f35ded9e85493595e0eb66a82b502a95326d049
73109 Author: Gerald Van Baren <vanbaren@cideas.com>
73110 Date:   Mon Jun 25 20:55:58 2007 -0400
73111
73112     Tighten up the error messages.
73113
73114     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73115
73116 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
73117 Author: Gerald Van Baren <vanbaren@cideas.com>
73118 Date:   Mon Jun 25 19:52:23 2007 -0400
73119
73120     Asthetic improvements: error messages and line lengths.
73121
73122     Tighten up the error messages, split overlength lines.
73123
73124     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73125
73126 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
73127 Author: Gerald Van Baren <vanbaren@cideas.com>
73128 Date:   Fri May 25 22:08:57 2007 -0400
73129
73130     Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
73131
73132     The fdt_chosen() function was adding/seting some properties ad-hoc
73133       improperly and duplicated (poorly) what was done in ft_board_setup()
73134
73135     Clean up long lines (setting properties, printing errors).
73136
73137     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73138
73139 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
73140 Author: Gerald Van Baren <vanbaren@cideas.com>
73141 Date:   Mon May 21 23:27:16 2007 -0400
73142
73143     For fdt_find_node_by_path(), handle the root path properly.
73144
73145     Also removes the special case root path detection in cmd_fdt.c since it
73146     is no longer necessary.
73147
73148     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73149
73150 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
73151 Author: Gerald Van Baren <vanbaren@cideas.com>
73152 Date:   Thu May 17 23:54:36 2007 -0400
73153
73154     Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
73155
73156     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
73157     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
73158
73159 commit 1a861169bc3758f9de3aead62b058736c6891246
73160 Author: Gerald Van Baren <vanbaren@cideas.com>
73161 Date:   Wed Jun 6 22:47:58 2007 -0400
73162
73163     Replace fdt_node_offset() with fdt_find_node_by_path().
73164
73165     The new name matches more closely the kernel's name, which is also
73166     a much better description.
73167
73168     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
73169     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
73170
73171 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
73172 Author: Gerald Van Baren <vanbaren@cideas.com>
73173 Date:   Wed May 16 22:39:59 2007 -0400
73174
73175     Fix cmd_fdt line lengths, refactor code.
73176
73177     Break lines that were greater than 80 characters in length.
73178     Move the fdt print and property parsing code to separate static functions
73179       to reduce coding clutter in the fdt_cmd handling body.
73180
73181     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73182
73183 commit 25114033ab21788810c48ba4df103b649da1223b
73184 Author: Gerald Van Baren <vanbaren@cideas.com>
73185 Date:   Sat May 12 09:47:25 2007 -0400
73186
73187     FDT command improvements.
73188
73189     Fix "fdt set" so that it will create a non-existing property.
73190     Add "fdt mknode" to create nodes.
73191
73192     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73193
73194 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
73195 Author: Gerald Van Baren <vanbaren@cideas.com>
73196 Date:   Sat May 12 09:45:46 2007 -0400
73197
73198     Reorganize and fix problems (returns) in the bootm command.
73199
73200     Do *NOT* return after the "point of no return" has been passed.
73201       If something goes wrong, the board must be reset after that point.
73202     Move the "Transferring control to Linux" debug message back to where it
73203       belongs: just before transferring control to linux.
73204
73205     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73206
73207 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
73208 Author: Gerald Van Baren <vanbaren@cideas.com>
73209 Date:   Tue May 8 21:27:35 2007 -0400
73210
73211     Fix bugs in the CONFIG_OF_LIBFDT
73212
73213     Stupid coding mistakes (identified by Timur Tabi, thanks).
73214
73215     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73216
73217 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
73218 Author: Gerald Van Baren <vanbaren@cideas.com>
73219 Date:   Wed Apr 25 22:47:15 2007 -0400
73220
73221     Improve fdt move length handling.
73222
73223     Make the length parameter optional: if not specified, do the move using
73224     the current size unchanged.
73225
73226     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73227
73228 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
73229 Author: Gerald Van Baren <vanbaren@cideas.com>
73230 Date:   Wed Apr 25 22:23:36 2007 -0400
73231
73232     Minor code clean up.
73233
73234     Declare the variable fdt properly as extern.
73235     Call the "set_fn" function pointer the "short way" without the full
73236       dereferencing syntax.
73237
73238     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73239
73240 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
73241 Author: Gerald Van Baren <vanbaren@cideas.com>
73242 Date:   Wed Apr 25 21:24:27 2007 -0400
73243
73244     Improve error messages, more informative.
73245
73246     Print more than the raw libfdt error message strings.  This is especially
73247     useful for cluing in the user when the bootm command aborts due to
73248     blob problems.
73249
73250     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73251
73252 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
73253 Author: Gerald Van Baren <vanbaren@cideas.com>
73254 Date:   Fri Apr 20 22:46:53 2007 -0400
73255
73256     libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
73257
73258     This is the way u-boot reduces configured-out code.  At Wolfgang
73259     Grandegger and Wolfgang Denk's request, make libfdt conform.
73260
73261     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73262
73263 commit 923efd286411ed052d9e074f59f8986d6081061c
73264 Author: Bruce Adler <bruce.adler@ccpu.com>
73265 Date:   Fri Aug 10 14:54:47 2007 -0700
73266
73267     add image size and descriptors for Spartan 3E FPGA chips
73268
73269     Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
73270
73271     Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
73272
73273 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
73274 Author: Kim Phillips <kim.phillips@freescale.com>
73275 Date:   Fri Aug 10 15:34:48 2007 -0500
73276
73277     make MAKEALL more immune to merge conflicts
73278
73279     ..by placing board entries one per line, as suggested by jdl.
73280
73281     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73282
73283 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
73284 Author: Kim Phillips <kim.phillips@freescale.com>
73285 Date:   Fri Aug 10 13:28:25 2007 -0500
73286
73287     README: Remove outdated cpu type, board type, and NAME_config lists
73288
73289     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73290
73291 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
73292 Author: Dave Liu <r63238@freescale.com>
73293 Date:   Fri Aug 10 15:48:59 2007 +0800
73294
73295     mpc83xx: Suppress the warning 'burstlen'
73296
73297     suppress the warning 'burstlen' of spd_sdram.
73298
73299     Signed-off-by: Dave Liu <daveliu@freescale.com>
73300
73301 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
73302 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
73303 Date:   Thu Aug 9 15:11:03 2007 -0500
73304
73305     Add support for SBC8641D. Config files.
73306
73307     Add support for Wind River's SBC8641D reference board.
73308
73309     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
73310     Acked-by: Wolfgang Denk <wd@denx.de>
73311     Acked-by: Jon Loeliger <jdl@freescale.com>
73312
73313 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
73314 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
73315 Date:   Thu Aug 9 15:10:53 2007 -0500
73316
73317     Add support for SBC8641D.  Board files.
73318
73319     Add support for Wind River's SBC8641D reference board.
73320
73321     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
73322     Acked-by: Wolfgang Denk <wd@denx.de>
73323     Acked-by: Jon Loeliger <jdl@freescale.com>
73324
73325 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
73326 Author: Stefan Roese <sr@denx.de>
73327 Date:   Fri Aug 10 20:34:58 2007 +0200
73328
73329     Conding style cleanup
73330
73331     Signed-off-by: Stefan Roese <sr@denx.de>
73332
73333 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
73334 Author: Sergey Kubushyn <ksi@koi8.net>
73335 Date:   Fri Aug 10 20:26:18 2007 +0200
73336
73337     [ARM] TI DaVinci support, hopefully final
73338
73339     Add support for the following DaVinci boards:
73340     - DV_EVM
73341     - SCHMOOGIE
73342     - SONATA
73343
73344     Changes:
73345
73346     - Split into separate board directories
73347     - Removed changes to MTD_DEBUG (or whatever it's called)
73348     - New CONFIG_CMD party line followed
73349     - Some cosmetic fixes, cleanup etc.
73350     - Patches against the latest U-Boot tree as of now.
73351     - Fixed CONFIG_CMD_NET in net files.
73352     - Fixed CONFIG_CMD_EEPROM for schmoogie.
73353     - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
73354        DV_EVM. Can't check if it works on SONATA, don't have a board any more,
73355        but it at least compiles.
73356
73357     Here is an excerpt from session log on SCHMOOGIE...
73358
73359     U-Boot 1.2.0-g6c33c785-dirty (Aug  7 2007 - 13:07:17)
73360
73361     DRAM:  128 MB
73362     NAND:  128 MiB
73363     In:    serial
73364     Out:   serial
73365     Err:   serial
73366     ARM Clock : 297MHz
73367     DDR Clock : 162MHz
73368     ETH PHY   : DP83848 @ 0x01
73369     U-Boot > iprobe
73370     Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
73371     U-Boot > ping 192.168.253.10
73372     host 192.168.253.10 is alive
73373     U-Boot >
73374
73375     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
73376     Acked-by: Dirk Behme <dirk.behme@gmail.com>
73377     Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
73378     Acked-by: Stefan Roese <sr@denx.de>
73379
73380 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
73381 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
73382 Date:   Fri Jul 27 01:50:45 2007 -0500
73383
73384     fsl_pci_init cleanup.
73385
73386     Do not enable normal errors created during probe (master abort, perr,
73387     and pcie Invalid Configuration access).
73388
73389     Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
73390
73391     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73392     Acked-by: Andy Fleming <afleming@freescale.com>
73393
73394 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
73395 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
73396 Date:   Fri Jul 27 01:50:44 2007 -0500
73397
73398     pciauto_setup_device bars_num fix
73399
73400     Passing bars_num=0 to pciauto_setup_device should assign no bars.
73401
73402     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73403     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
73404     Acked-by: Andy Fleming <afleming@freescale.com>
73405
73406 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
73407 Author: Jon Loeliger <jdl@freescale.com>
73408 Date:   Mon Aug 6 17:39:44 2007 -0500
73409
73410     8641hpcn: Do correct sized pointer math.
73411
73412     When I rebased Ed's patch and cleaned up a few compilation
73413     problems, I apparently rebased my brain on crack first.
73414     Fix that by doing (char *) sized pointer math as needed.
73415
73416     Signed-off-by: Jon Loeliger <jdl@freescale.com>
73417
73418 commit cfc7a7f5bb3273c9951173c788001d45118f141f
73419 Author: Jon Loeliger <jdl@freescale.com>
73420 Date:   Thu Aug 2 14:42:20 2007 -0500
73421
73422     cpu/86xx fixes.
73423
73424     Remove rev 1 fixes.
73425     Always set PICGCR_MODE.
73426     Enable machine check and provide board config option
73427     to set and handle SoC error interrupts.
73428
73429     Include MSSSR0 in error message.
73430
73431     Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
73432
73433     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73434     Signed-off-by: Jon Loeliger <jdl@freescale.com>
73435
73436 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
73437 Author: Stefan Roese <sr@denx.de>
73438 Date:   Fri Aug 10 10:42:25 2007 +0200
73439
73440     Coding style cleanup
73441
73442     Signed-off-by: Stefan Roese <sr@denx.de>
73443
73444 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
73445 Author: Dirk Behme <dirk.behme@googlemail.com>
73446 Date:   Thu Aug 2 17:42:08 2007 +0200
73447
73448     Make use of generic 64bit division in nand_util.c
73449
73450     Use generic 64bit division in nand_util.c. This makes nand_util.c
73451     independent of any toolchain 64bit division.
73452
73453     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
73454
73455 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
73456 Author: Dirk Behme <dirk.behme@googlemail.com>
73457 Date:   Thu Aug 2 17:41:14 2007 +0200
73458
73459     Move 64bit division from avr32 to generic lib
73460
73461     Move the 64bit division from lib_avr32 to lib_generic. With this, all
73462     boards can do_div/__div64_32 if needed, not only avr one. Code is put
73463     to lib_generic, so no larger memory footprint if not used. No code
73464     modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
73465
73466     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
73467
73468 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
73469 Author: Niklaus Giger <niklausgiger@gmx.ch>
73470 Date:   Fri Jul 27 11:31:22 2007 +0200
73471
73472     Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
73473
73474     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73475
73476 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
73477 Author: Niklaus Giger <niklausgiger@gmx.ch>
73478 Date:   Fri Jul 27 11:30:33 2007 +0200
73479
73480     Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
73481
73482     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73483
73484 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
73485 Author: Niklaus Giger <niklausgiger@gmx.ch>
73486 Date:   Fri Jul 27 11:38:26 2007 +0200
73487
73488     Add PPC4xx-HCU4 and HCU5 boards: common files
73489
73490     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73491
73492 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
73493 Author: Niklaus Giger <niklausgiger@gmx.ch>
73494 Date:   Fri Jul 27 11:28:44 2007 +0200
73495
73496     Add PPC4xx-HCU4 and HCU5 boards: make related
73497
73498     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73499
73500 commit 137fdd9f474ecb853efdace5200576308c67f18d
73501 Author: Niklaus Giger <niklausgiger@gmx.ch>
73502 Date:   Fri Jul 27 11:28:03 2007 +0200
73503
73504     Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
73505
73506     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73507
73508 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
73509 Author: Niklaus Giger <niklausgiger@gmx.ch>
73510 Date:   Fri Jul 27 11:27:15 2007 +0200
73511
73512     Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
73513
73514     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73515
73516 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
73517 Author: Niklaus Giger <niklausgiger@gmx.ch>
73518 Date:   Fri Jul 27 11:25:31 2007 +0200
73519
73520     Add PPC4xx-HCU4 and HCU5 boards: READMEs
73521
73522     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73523
73524 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
73525 Author: Niklaus Giger <niklausgiger@gmx.ch>
73526 Date:   Fri Jul 27 11:37:40 2007 +0200
73527
73528     Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
73529
73530     This series of patches adds support for 2 boards from Netstal Maschinen.
73531
73532     The HCU4 has a PPC405Gpr and
73533     the HCU5 has a PPC440EPX.
73534
73535     The HCU4 has a somehow complicated flash setup, as the booteprom is
73536     only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
73537     elegant solution.
73538
73539     The HCU5 has only a booteprom as the whole code will be downloaded from a
73540     different board which has HD, CD-ROM, etc and where all code is stored.
73541
73542     This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
73543     Thanks them a lot.
73544
73545     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73546
73547 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
73548 Author: Stefan Roese <sr@denx.de>
73549 Date:   Fri Aug 10 08:42:55 2007 +0200
73550
73551     ppc4xx: Update lwmon5 POST configuration
73552
73553     Signed-off-by: Stefan Roese <sr@denx.de>
73554
73555 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
73556 Author: Yuri Tikhonov <yur@emcraft.com>
73557 Date:   Fri Aug 10 08:25:22 2007 +0200
73558
73559     POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
73560
73561     The patch adds support for UART POST on ppc44x-based boards with no
73562     external serial clocks installed.
73563
73564     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
73565     Acked-by: Stefan Roese <sr@denx.de>
73566
73567 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
73568 Author: Kim Phillips <kim.phillips@freescale.com>
73569 Date:   Mon Aug 6 18:18:34 2007 -0500
73570
73571     mpc83xx: fix ITX[GP] O=builddir builds
73572
73573     make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'.  Stop.
73574
73575     Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
73576     "BUILD_DIR=<some dir> ./MAKEALL ..."
73577
73578     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73579
73580 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
73581 Author: Dave Liu <r63238@freescale.com>
73582 Date:   Wed Aug 1 15:00:59 2007 +0800
73583
73584     mpc83xx: Correct the README for DDR ECC
73585
73586     Update the README for DDR ECC, change the name
73587     to README.mpc83xx.ddrecc.
73588
73589     Signed-off-by: Dave Liu <daveliu@freescale.com>
73590     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73591
73592 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
73593 Author: Dave Liu <r63238@freescale.com>
73594 Date:   Wed Aug 1 15:00:15 2007 +0800
73595
73596     mpc83xx: Consolidate the ECC support of 83xx
73597
73598     Remove the duplicated source code of ecc command on the <board>.c,
73599     for reused, move these code to cpu/mpc83xx directory.
73600
73601     Signed-off-by: Dave Liu <daveliu@freescale.com>
73602     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73603
73604 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
73605 Author: Dave Liu <r63238@freescale.com>
73606 Date:   Sat Aug 4 13:37:39 2007 +0800
73607
73608     mpc83xx: Correct the burst length for DDR2 with 32 bits
73609
73610     The burst length should be 4 for DDR2 with 32 bits bus
73611
73612     Signed-off-by: Dave Liu <daveliu@freescale.com>
73613
73614 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
73615 Author: Kim Phillips <kim.phillips@freescale.com>
73616 Date:   Wed Jul 25 19:25:33 2007 -0500
73617
73618     mpc83xx: add support for the MPC8323E RDB
73619
73620     MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
73621     five 10/100 ethernet ports connected via an ICPlus IP175C
73622     switch, one PCI slot, and serial.  Features not supported
73623     in this patch are SD card interface, 2 USB ports, and the
73624     two phone ports.
73625
73626     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
73627     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73628
73629 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
73630 Author: Kim Phillips <kim.phillips@freescale.com>
73631 Date:   Wed Jul 25 19:25:28 2007 -0500
73632
73633     mpc83xx: fixup generic pci for libfdt
73634
73635     add libfdt support to the generic 83xx pci code
73636
73637     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73638
73639 commit f57ac7a7b37109245b69db80839ebee26179966a
73640 Author: Kim Phillips <kim.phillips@freescale.com>
73641 Date:   Wed Jul 25 19:25:22 2007 -0500
73642
73643     mpc83xx: fix 8360 and cpu functions to update fdt being passed
73644
73645     ..and not the global fdt. Rename local fdt vars to blob so as not to
73646     be confused with the global var with the same three-letter name.
73647
73648     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73649
73650 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
73651 Author: Jerry Van Baren <gvb.uboot@gmail.com>
73652 Date:   Wed Jul 4 21:34:24 2007 -0400
73653
73654     mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
73655
73656     Several node strings were not correct (trailing slashes and properties
73657       in the strings)
73658     Added setting of the timebase-frequency.
73659     Improved error messages and use debug() instead of printf().
73660
73661     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73662     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73663
73664 commit 26d02c9bbac1751c5e19294f000100b48d43a920
73665 Author: Jerry Van Baren <gvb.uboot@gmail.com>
73666 Date:   Wed Jul 4 21:27:30 2007 -0400
73667
73668     mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
73669
73670     The new name matches more closely the kernel's name, which is also
73671     a much better description.
73672
73673     These are the mpc83xx changes made necessary by the function name change.
73674
73675     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
73676     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
73677     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73678
73679 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
73680 Author: Dave Liu <daveliu@freescale.com>
73681 Date:   Mon Jun 25 10:41:56 2007 +0800
73682
73683     mpc83xx: Add support for the display of reset status
73684
73685     83xx processor family has many reset sources, such as
73686     power on reset, software hard reset, software soft reset,
73687     JTAG, bus monitor, software watchdog, check stop reset,
73688     external hard reset, external software reset.
73689     sometimes, to figure out the fault of system, we need to
73690     know the cause of reset early before the prompt of
73691     u-boot present.
73692
73693     Signed-off-by: Dave Liu <daveliu@freescale.com>
73694     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73695
73696 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
73697 Author: Dave Liu <daveliu@freescale.com>
73698 Date:   Mon Jun 25 10:41:04 2007 +0800
73699
73700     mpc83xx: Fix the align bug of SDMA buffer
73701
73702     According to the latest user manual, the SDMA temporary
73703     buffer base address must be 4KB aligned.
73704
73705     Signed-off-by: Dave Liu <daveliu@freescale.com>
73706     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73707
73708 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
73709 Author: Dave Liu <daveliu@freescale.com>
73710 Date:   Mon Jun 25 13:21:12 2007 +0800
73711
73712     mpc83xx: Revise the MPC8360EMDS readme doc
73713
73714     When the rev2.x silicon mount on the MPC8360EMDS baord,
73715     and if you are using the u-boot version after the commit
73716     3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
73717     to make the ethernet interface usable, we have to setup
73718     the jumpers correctly.
73719
73720     Signed-off-by: Dave Liu <daveliu@freescale.com>
73721     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73722
73723 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
73724 Author: Timur Tabi <timur@freescale.com>
73725 Date:   Tue Jul 3 13:46:32 2007 -0500
73726
73727     FSL I2C driver programs the two I2C busses differently
73728
73729     The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
73730     The second I2C bus has its slave address programmed incorrectly and is
73731     missing a 5-us delay.
73732
73733     Signed-off-by: Timur Tabi <timur@freescale.com>
73734     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73735
73736 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
73737 Author: Timur Tabi <timur@freescale.com>
73738 Date:   Tue Jul 3 13:04:34 2007 -0500
73739
73740     Update SCCR programming in cpu_init_f() to support all 83xx processors
73741
73742     Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
73743     bitfields for all 83xx processors.  The code to update some bitfields was
73744     compiled only on some processors.  Now, the bitfields are programmed as long
73745     as the corresponding CFG_SCCR option is defined in the board header file.
73746     This means that the board header file should not define any CFG_SCCR macros
73747     for bitfields that don't exist on that processor, otherwise the SCCR will be
73748     programmed incorrectly.
73749
73750     Signed-off-by: Timur Tabi <timur@freescale.com>
73751     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73752
73753 commit 9546266999f0b9b51372636614211b88d90f0f25
73754 Author: Martin Krause <martin.krause@tqs.de>
73755 Date:   Fri Jun 22 13:04:22 2007 +0200
73756
73757     TQM834x: cleanup configuraton
73758
73759     Remove irritating #undef DEBUG
73760
73761     Signed-off-by: Martin Krause <martin.krause@tqs.de>
73762     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73763
73764 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
73765 Author: david.saada <David.Saada@ecitele.com>
73766 Date:   Mon Jun 18 09:09:53 2007 -0700
73767
73768     MPC83xx: Fix makefile to generate config.h file in the build directory
73769
73770     MPC83xx: Fix the Makefile config sections to generate the include/config.h
73771     file in the build directory instead of the source directory.
73772
73773     Signed-off-by: David Saada <david.saada@ecitele.com>
73774     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73775
73776 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
73777 Author: Lee Nipper <Lee.Nipper@freescale.com>
73778 Date:   Thu Jun 14 20:07:33 2007 -0500
73779
73780     mpc83xx: Add support for 8360 silicon revision 2.1
73781
73782     This change adds 8360 silicon revision 2.1 support to u-boot.
73783
73784     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
73785     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73786
73787 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
73788 Author: Kumar Gala <galak@kernel.crashing.org>
73789 Date:   Wed Aug 8 04:14:28 2007 -0500
73790
73791     Treat ppc64 host as ppc
73792
73793     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
73794
73795 commit 0dc4279b08ff82472bec2e2c90858602459febe8
73796 Author: Jason Jin <Jason.jin@freescale.com>
73797 Date:   Wed Aug 8 09:01:46 2007 +0800
73798
73799     Minor fix for bios emulator makefile
73800
73801     Add $(obj) to LIB avoiding objects be built in the source dir
73802
73803     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
73804
73805 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
73806 Author: Jason Jin <Jason.jin@freescale.com>
73807 Date:   Wed Aug 8 08:33:11 2007 +0800
73808
73809     Add CONFIG_BIOSEMU define to guard all the bios emulator code
73810
73811     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
73812
73813     This patch fix the compile issue on the board that did not enable the bios emulator
73814
73815 commit ed8106433522f2ea8933e9808346860d061d7731
73816 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
73817 Date:   Tue Jul 31 12:27:25 2007 -0500
73818
73819     tsec: fix multiple PHY support
73820
73821     The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
73822     broke multiple PHY support in tsec.c.  This fixes it.
73823
73824     Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
73825     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73826
73827 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
73828 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
73829 Date:   Thu Aug 9 09:08:18 2007 -0500
73830
73831     tsec: Allow Ten Bit Interface address to be configurable
73832
73833     Allow the address of the Ten Bit Interface (TBI) to be changed in the
73834     event of a conflict with another device.
73835
73836     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
73837
73838 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
73839 Author: Stefan Roese <sr@denx.de>
73840 Date:   Wed Aug 8 09:54:26 2007 +0200
73841
73842     Coding style cleanup
73843
73844     Signed-off-by: Stefan Roese <sr@denx.de>
73845
73846 commit a41de1f0d373e09c782dea558385a06247111ba5
73847 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73848 Date:   Sun Aug 5 05:15:18 2007 -0500
73849
73850     Port enabled for I2C signals and chipselects port configuration.
73851
73852     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73853
73854 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
73855 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73856 Date:   Sun Aug 5 04:31:18 2007 -0500
73857
73858     Added NAND support
73859
73860     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73861
73862 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
73863 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73864 Date:   Sun Aug 5 04:11:20 2007 -0500
73865
73866     Added I2C support
73867
73868     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73869
73870 commit 99c03c175d2689093176facf17c58ce2cb320001
73871 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73872 Date:   Sun Aug 5 03:58:52 2007 -0500
73873
73874     Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
73875
73876     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73877
73878 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
73879 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73880 Date:   Sun Aug 5 03:55:21 2007 -0500
73881
73882     Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
73883
73884     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73885
73886 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
73887 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73888 Date:   Sun Aug 5 03:43:30 2007 -0500
73889
73890     Moved sync() from board file to include/asm-m68k/io.h
73891
73892     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73893
73894 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
73895 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73896 Date:   Sun Aug 5 03:30:44 2007 -0500
73897
73898     Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
73899
73900     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73901
73902 commit 9998bd37ead85e93953559720710d3b0685c81e6
73903 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73904 Date:   Sun Aug 5 03:19:10 2007 -0500
73905
73906     Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
73907
73908     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
73909
73910 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
73911 Author: Jason Jin <Jason.jin@freescale.com>
73912 Date:   Tue Aug 7 16:17:06 2007 +0800
73913
73914     Add CONFIG_BIOSEMU define to guard all the bios emulator code
73915
73916     This patch fix the compile issue on the board that did not enable the bios emulator
73917
73918 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
73919 Author: Wolfgang Denk <wd@denx.de>
73920 Date:   Tue Aug 7 16:02:13 2007 +0200
73921
73922     Fix missing brace error in fs/fat/fat.c
73923     [pointed out by Roderik Wildenburg]
73924
73925     Signed-off-by: Wolfgang Denk <wd@denx.de>
73926
73927 commit 706714d97a0d08d59eda4de2268c39f504688329
73928 Author: Michal Simek <monstr@monstr.eu>
73929 Date:   Mon Aug 6 23:41:53 2007 +0200
73930
73931     [FIX] remove cute code
73932
73933 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
73934 Author: Michal Simek <monstr@monstr.eu>
73935 Date:   Mon Aug 6 23:35:26 2007 +0200
73936
73937     [FIX] Fix romfs code
73938
73939 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
73940 Author: Michal Simek <monstr@monstr.eu>
73941 Date:   Mon Aug 6 23:31:49 2007 +0200
73942
73943     [FIX] Coding style cleanup - Wolfgang's suggestions
73944
73945 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
73946 Author: Wolfgang Denk <wd@denx.de>
73947 Date:   Mon Aug 6 23:21:05 2007 +0200
73948
73949     Fixed typo in README (pointed out by Martin Jost).
73950
73951     Signed-off-by: Wolfgang Denk <wd@denx.de>
73952
73953 commit 537223afa61f64480df31ce440a9cb386df4a814
73954 Author: Stefan Roese <sr@denx.de>
73955 Date:   Mon Aug 6 21:10:17 2007 +0200
73956
73957     ppc4xx: Update AMCC Bamboo README doc/README.bamboo
73958
73959     As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
73960     here an updated Bamboo README.
73961
73962     Signed-off-by: Stefan Roese <sr@denx.de>
73963
73964 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
73965 Author: Wolfgang Denk <wd@denx.de>
73966 Date:   Mon Aug 6 02:17:36 2007 +0200
73967
73968     Coding style cleanup. Update CHANGELOG.
73969
73970     Signed-off-by: Wolfgang Denk <wd@denx.de>
73971
73972 commit 221838cc7eb178370ff62aa05920a582e12ac322
73973 Author: Jason Jin <Jason.jin@freescale.com>
73974 Date:   Tue Jul 10 09:03:22 2007 +0800
73975
73976     Remove the bios emulator from MAI board.
73977
73978     The bios emulator in the MAI board can not pass compile
73979     and have a lot of crap in it. remove it and will have a
73980     clean and small bios emulator in the drivers directory
73981     which can be uesed for every board.
73982
73983     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
73984
73985 commit 5618332409bb96f4448d1712899369fc80c0b489
73986 Author: Jason Jin <Jason.jin@freescale.com>
73987 Date:   Fri Jul 13 12:14:59 2007 +0800
73988
73989     Fix some compile issues for MAI board.
73990
73991     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
73992
73993 commit 0f460a1ee148b648ee242c3157650287d4296260
73994 Author: Jason Jin <Jason.jin@freescale.com>
73995 Date:   Fri Jul 13 12:14:58 2007 +0800
73996
73997     Configurations for ATI video card BIOS emulator
73998
73999     This patch add definition of the BIOS emulator and the ATI framebuffer
74000     driver for MPC8641HPCN board.
74001
74002     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
74003     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
74004
74005 commit ece92f85053b8df613edcf05b26a416cbc3d629c
74006 Author: Jason Jin <Jason.jin@freescale.com>
74007 Date:   Fri Jul 6 08:34:56 2007 +0800
74008
74009     This is a BIOS emulator, porting from SciTech for u-boot, mainly for
74010     ATI video card BIOS. and can be used for x86 code emulation by some
74011     modifications.
74012
74013     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
74014
74015 commit 5072188acabde3178fac7f5a597150e6e74fd40c
74016 Author: Jason Jin <Jason.jin@freescale.com>
74017 Date:   Fri Jul 6 08:33:33 2007 +0800
74018
74019     This is a framebuffer driver for ATI video card, can work for PCI9200,
74020     X300, X700, X800 ATI video cards.
74021
74022     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
74023     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
74024
74025 commit 5728be389e65fd47f34b33c2596271eb4db751ae
74026 Author: Wolfgang Denk <wd@denx.de>
74027 Date:   Mon Aug 6 01:01:49 2007 +0200
74028
74029     Coding style cleanup. Update CHANGELOG.
74030
74031     Signed-off-by: Wolfgang Denk <wd@denx.de>
74032
74033 commit 8092fef4c29b395958bb649647da7e3775731517
74034 Author: Martin Krause <Martin.Krause@tqs.de>
74035 Date:   Tue Dec 12 14:26:01 2006 +0100
74036
74037     Add functions to list of exported functions
74038
74039     Additionally export the following fuctions (to make trab_config build again):
74040     - simple_strtol()
74041     - strcmp()
74042
74043     Also bump the ABI version to reflect this change
74044
74045     Signed-off-by: Martin Krause <martin.krause@tqs.de>
74046
74047 commit 63cec5814fab5d2b1c86982327433807a5ac0249
74048 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74049 Date:   Thu Aug 2 14:09:49 2007 -0500
74050
74051     Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
74052
74053     All of the PCI/PCI-Express driver and initialization code that
74054     was in the MPC8641HPCN port has now been moved into the common
74055     drivers/fsl_pci_init.c.  In a subsequent patch, this will be
74056     utilized by the 85xx ports as well.
74057
74058     Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
74059
74060     Also enable the second PCI-Express controller on 8641
74061     by getting its BATS and CFG_ setup right.
74062
74063     Fixed a u16 vendor compiler warning in AHCI driver too.
74064
74065     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74066     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
74067     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74068
74069 commit a274ca4f6d68830e7c916f897561cff8c4101c38
74070 Author: Michal Simek <monstr@monstr.eu>
74071 Date:   Sun Aug 5 22:33:05 2007 +0200
74072
74073     [FIX] Coding style cleanup
74074
74075 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
74076 Author: Michal Simek <monstr@monstr.eu>
74077 Date:   Sun Aug 5 16:13:31 2007 +0200
74078
74079     [FIX] Xilinx Uartlite driver
74080     Because PPC405 can use UARTLITE serial interface and
74081     Microblaze can use Uart16550 serial interface not only Uartlite.
74082
74083 commit 98889edd50aadf862071eb5664747ad0d568a20e
74084 Author: Michal Simek <monstr@monstr.eu>
74085 Date:   Sun Aug 5 15:54:53 2007 +0200
74086
74087     [FIX] Change configuration for XUPV2P Microblaze board
74088
74089 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
74090 Author: Michal Simek <monstr@monstr.eu>
74091 Date:   Sun Aug 5 15:53:50 2007 +0200
74092
74093     [PATCH] Added support for Xilinx Emac community driver
74094
74095 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
74096 Author: Bartlomiej Sieka <tur@semihalf.com>
74097 Date:   Fri Aug 3 12:08:16 2007 +0200
74098
74099     cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
74100
74101     Add the ability for modules from the Schindler cm5200 family to use a
74102     single U-Boot image:
74103     - rename cm1_qp1 to cm5200
74104     - add run-time module detection
74105     - parametrize SDRAM configuration according to the module we are running on
74106
74107     Few minor, board-specific fixes included in this patch:
74108     - better MAC address handling
74109     - updated default environment ('update' command uses +{filesize} now)
74110     - improved error messages in the auto-update code
74111     - allow booting U-Boot from RAM (CFG_RAMBOOT)
74112
74113     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
74114     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
74115     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
74116
74117 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
74118 Author: Andy Fleming <afleming@freescale.com>
74119 Date:   Fri Aug 3 04:05:25 2007 -0500
74120
74121     Add Marvell 1149 PHY support to the TSEC
74122
74123 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
74124 Author: Wolfgang Denk <wd@denx.de>
74125 Date:   Thu Aug 2 21:27:46 2007 +0200
74126
74127     Coding style cleanup, update CHANGELOG
74128
74129     Signed-off-by: Wolfgang Denk <wd@denx.de>
74130
74131 commit 63e22764d2f8653f68888c667eb65b3996b52680
74132 Author: Wolfgang Denk <wd@denx.de>
74133 Date:   Thu Aug 2 10:11:18 2007 +0200
74134
74135     Minor cleanup of <board>_nand build rules.
74136
74137 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
74138 Author: Stefan Roese <sr@denx.de>
74139 Date:   Thu Aug 2 08:33:56 2007 +0200
74140
74141     ppc4xx: Code cleanup
74142
74143     Signed-off-by: Stefan Roese <sr@denx.de>
74144
74145 commit c92409812206ac67a7fa7aae298539a9c3804a46
74146 Author: Grzegorz Bernacki <gjb@semihalf.com>
74147 Date:   Tue Jul 31 18:51:48 2007 +0200
74148
74149     [ppc440SPe] Graceful recovery from machine check during PCIe configuration
74150
74151     During config transactions on the PCIe bus an attempt to scan for a
74152     non-existent device can lead to a machine check exception with certain
74153     peripheral devices. In order to avoid crashing in such scenarios the
74154     instrumented versions of the config cycle read routines are introduced, so
74155     the exceptions fixups framework can gracefully recover.
74156
74157     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
74158     Acked-by: Rafal Jaworowski <raj@semihalf.com>
74159
74160 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
74161 Author: Rafal Jaworowski <raj@semihalf.com>
74162 Date:   Tue Jul 31 18:19:54 2007 +0200
74163
74164     [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
74165
74166     This brings back separate settings for PCIe bus numbers depending on chip
74167     revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
74168     commit. 440SPe rev. A does NOT work properly with the same settings as for
74169     the rev. B (no devices are seen on the bus during enumeration).
74170
74171     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
74172
74173 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
74174 Author: Wolfgang Denk <wd@denx.de>
74175 Date:   Thu Aug 2 00:48:45 2007 +0200
74176
74177     Fix build errors and warnings / code cleanup.
74178
74179     Signed-off-by: Wolfgang Denk <wd@denx.de>
74180
74181 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
74182 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
74183 Date:   Tue Jul 31 10:24:56 2007 +0200
74184
74185     ppc4xx: Update AMCC Bamboo 440EP support
74186
74187     Changed storage type of cfg_simulate_spd_eeprom to const
74188     Changed storage type of gpio_tab to stack storage
74189     (Cannot access global data declarations in .bss until afer code relocation)
74190
74191     Improved SDRAM tests to catch problems where data is not uniquely addressable
74192     (e.g. incorrectly programmed SDRAM row or columns)
74193
74194     Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
74195     Fixed AM29LV320DT (OpCode Flash) sector map
74196
74197     Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
74198     Signed-off-by: Stefan Roese <sr@denx.de>
74199
74200 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
74201 Author: Stefan Roese <sr@denx.de>
74202 Date:   Tue Jul 31 08:37:01 2007 +0200
74203
74204     ppc4xx: Update 440EPx lwmon5 board support
74205
74206     - Clear ECC status regs after ECC POST test
74207     - Set dcbz for ECC generation with caches enabled as default
74208     - Code cleanup
74209
74210     Signed-off-by: Stefan Roese <sr@denx.de>
74211
74212 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
74213 Author: Stefan Roese <sr@denx.de>
74214 Date:   Mon Jul 30 11:04:57 2007 +0200
74215
74216     ppc4xx: Only print ECC related info when the error bis are set
74217
74218     Signed-off-by: Stefan Roese <sr@denx.de>
74219
74220 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
74221 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
74222 Date:   Fri Jul 27 16:44:31 2007 +0200
74223
74224     new FPGA image for PLU405 board
74225
74226     new FPGA image for PLU405 board with improved CompactFlash timing
74227
74228     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
74229
74230 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
74231 Author: Rafal Jaworowski <raj@semihalf.com>
74232 Date:   Fri Jul 27 14:43:59 2007 +0200
74233
74234     [ADS5121] Support for the ADS5121 board
74235
74236     The following MPC5121e subsystems are supported:
74237
74238     - low-level CPU init
74239     - NOR Boot Flash (common CFI driver)
74240     - DDR SDRAM
74241     - FEC
74242     - I2C
74243     - Watchdog
74244
74245     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
74246     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
74247     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
74248
74249 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
74250 Author: Rafal Jaworowski <raj@semihalf.com>
74251 Date:   Fri Jul 27 14:22:04 2007 +0200
74252
74253     [PPC] Remove unused MSR_USER definition
74254
74255     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
74256
74257 commit d4024bb72dd81695ec099b2199eda0d27c623e62
74258 Author: John Otken <john@softadvances.com>
74259 Date:   Thu Jul 26 17:49:11 2007 +0200
74260
74261     ppc4xx: Add support for AMCC 405EP Taihu board
74262
74263     Signed-off-by: John Otken <john@softadvances.com>
74264
74265 commit b66091de6c7390620312c2501db23d8391e7cabb
74266 Author: Anatolij Gustschin <agust@denx.de>
74267 Date:   Thu Jul 26 15:08:01 2007 +0200
74268
74269     ppc4xx: lwmon5: Update Lime initialization
74270
74271     Change Lime SDRAM initialization to now support 100MHz and
74272     133MHz (if enabled). Also the framebuffer is initialized to
74273     display a blue rectangle with a white border.
74274
74275     Signed-off-by: Anatolij Gustschin <agust@denx.de>
74276     Signed-off-by: Stefan Roese <sr@denx.de>
74277
74278 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
74279 Author: Stefan Roese <sr@denx.de>
74280 Date:   Tue Jul 24 09:52:52 2007 +0200
74281
74282     ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
74283
74284     The used Intel NOR FLASH chips have internally two dies, and are now
74285     treated as two seperate chips.
74286
74287     Signed-off-by: Stefan Roese <sr@denx.de>
74288
74289 commit aedf5bde179ecfbd0a96130d18996a96518b785f
74290 Author: Stefan Roese <sr@denx.de>
74291 Date:   Tue Jul 24 07:20:09 2007 +0200
74292
74293     ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
74294
74295     As suggested by Hakan Eryigit, here an updated setup for the lwmon5
74296     interrupt controller.
74297
74298     Signed-off-by: Stefan Roese <sr@denx.de>
74299
74300 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
74301 Author: Stefan Roese <sr@denx.de>
74302 Date:   Fri Jul 20 15:03:44 2007 +0200
74303
74304     ppc4xx: Fix bug with default GPIO output value
74305
74306     As spotted by Matthias Fuchs, the default output values for all GPIO1
74307     outputs were not setup correctly. This patch fixes this issue.
74308
74309     Signed-off-by: Stefan Roese <sr@denx.de>
74310
74311 commit 531e3e8b831f357056448fa573137d5fb37000fd
74312 Author: Pavel Kolesnikov <concord@emcraft.com>
74313 Date:   Fri Jul 20 15:03:03 2007 +0200
74314
74315     POST: Add ECC POST for the lwmon5 board
74316
74317     This patch adds ECC Post test for the Lwmon5 board based
74318     on PPC440EPx to U-Boot.
74319
74320     Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
74321     Acked-by: Yuri Tikhonov <yur@emcraft.com>
74322     Acked-by: Stefan Roese <sr@denx.de>
74323
74324 commit cc3023b9f95d7ac959a764471a65001062aecf41
74325 Author: Rafal Jaworowski <raj@semihalf.com>
74326 Date:   Thu Jul 19 17:12:28 2007 +0200
74327
74328     Fix breakage of 8xx boards from recent commit.
74329
74330     This patch fixes the negative consequences for 8xx of the recent
74331     "ppc4xx: Clean up 440 exceptions handling" commit.
74332
74333     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
74334
74335 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
74336 Author: Stefan Roese <sr@denx.de>
74337 Date:   Mon Jul 16 13:11:12 2007 +0200
74338
74339     Coding style cleanup
74340
74341     Signed-off-by: Stefan Roese <sr@denx.de>
74342
74343 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
74344 Author: Stefan Roese <sr@denx.de>
74345 Date:   Mon Jul 16 10:02:12 2007 +0200
74346
74347     ppc4xx: Code cleanup
74348
74349     Signed-off-by: Stefan Roese <sr@denx.de>
74350
74351 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
74352 Author: Stefan Roese <sr@denx.de>
74353 Date:   Mon Jul 16 10:01:38 2007 +0200
74354
74355     ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
74356
74357     Signed-off-by: Stefan Roese <sr@denx.de>
74358
74359 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
74360 Author: Stefan Roese <sr@denx.de>
74361 Date:   Mon Jul 16 10:00:43 2007 +0200
74362
74363     ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
74364
74365     The new boardspecific DDR2 controller configuration is used for the Yucca
74366     board. Now the Yucca board with 440SPe Rev. A chips is also supported.
74367
74368     Signed-off-by: Stefan Roese <sr@denx.de>
74369
74370 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
74371 Author: Stefan Roese <sr@denx.de>
74372 Date:   Mon Jul 16 09:57:00 2007 +0200
74373
74374     ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
74375
74376     The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
74377     support non default, boardspecific DDR(2) controller configuration.
74378
74379     Signed-off-by: Stefan Roese <sr@denx.de>
74380
74381 commit 5743a9207a370b90f09b20ebd61167c806b937f3
74382 Author: Stefan Roese <sr@denx.de>
74383 Date:   Mon Jul 16 08:53:51 2007 +0200
74384
74385     ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
74386
74387     The new function remove_tlb() can be used to remove the TLB's used to
74388     map a specific memory region. This is especially useful for the DDR(2)
74389     setup routines which configure the SDRAM area temporarily as a cached
74390     area (for speedup on auto-calibration and ECC generation) and later
74391     need this area uncached for normal usage.
74392
74393     Signed-off-by: Stefan Roese <sr@denx.de>
74394
74395 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
74396 Author: Michal Simek <monstr@monstr.eu>
74397 Date:   Mon Jul 16 00:31:07 2007 +0200
74398
74399     [PATCH] Support for Xilinx EmacLite controller
74400
74401 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
74402 Author: Wolfgang Denk <wd@denx.de>
74403 Date:   Sat Jul 14 22:51:02 2007 +0200
74404
74405     Update CHANGELOG
74406
74407     Signed-off-by: Wolfgang Denk <wd@denx.de>
74408
74409 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
74410 Author: Michal Simek <monstr@monstr.eu>
74411 Date:   Sat Jul 14 13:11:28 2007 +0200
74412
74413     [FIX] support for simply measuring time
74414
74415 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
74416 Author: Michal Simek <monstr@monstr.eu>
74417 Date:   Sat Jul 14 12:41:23 2007 +0200
74418
74419     [FS] Added support for ROMFS
74420
74421 commit 011595307731a7a67a7445d107c279d031e8ab97
74422 Author: Heiko Schocher <hs@pollux.denx.de>
74423 Date:   Sat Jul 14 01:06:58 2007 +0200
74424
74425     [PCS440EP]  - fix compile error, if BUILD_DIR is used
74426
74427 commit 5a2f1098d81ad58b309e5e558d0492643166a799
74428 Author: Michal Simek <monstr@monstr.eu>
74429 Date:   Sat Jul 14 00:18:48 2007 +0200
74430
74431     [PATCH] Support time without timer
74432
74433 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
74434 Author: Michal Simek <monstr@monstr.eu>
74435 Date:   Fri Jul 13 21:43:55 2007 +0200
74436
74437     [PATCH] Remove problem with disabled BARREL SHIFTER
74438
74439 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
74440 Author: Michal Simek <monstr@monstr.eu>
74441 Date:   Fri Jul 13 21:41:44 2007 +0200
74442
74443     [FIX] correct help for rspr
74444
74445 commit fad63407154f46246ce80d53a9c669a44362ac67
74446 Author: Heiko Schocher <hs@pollux.denx.de>
74447 Date:   Fri Jul 13 09:54:17 2007 +0200
74448
74449     make show_boot_progress () weak.
74450
74451     Signed-off-by: Heiko Schocher <hs@denx.de>
74452
74453 commit 907902472391b6ca1876ec300687562ecaf459b1
74454 Author: Heiko Schocher <hs@pollux.denx.de>
74455 Date:   Fri Jul 13 08:26:05 2007 +0200
74456
74457     [PCS440EP]  - The DIAG LEDs are now blinking, if an error occur
74458                 - fix compile error, if BUILD_DIR is used
74459
74460     Signed-off-by: Heiko Schocher <hs@denx.de>
74461
74462 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
74463 Author: Stefan Roese <sr@denx.de>
74464 Date:   Thu Jul 12 16:32:08 2007 +0200
74465
74466     ppc4xx: Change receive buffer handling in the 4xx emac driver
74467
74468     This change fixes a bug in the receive buffer handling, that
74469     could lead to problems upon high network traffic (broadcasts...).
74470
74471     Signed-off-by: Stefan Roese <sr@denx.de>
74472
74473 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
74474 Author: Wolfgang Denk <wd@denx.de>
74475 Date:   Thu Jul 12 01:45:34 2007 +0200
74476
74477     Update CHANGELOG, minor coding style cleanup.
74478
74479     Signed-off-by: Wolfgang Denk <wd@denx.de>
74480
74481 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
74482 Author: Andy Fleming <afleming@freescale.com>
74483 Date:   Fri Jun 8 16:41:18 2007 -0500
74484
74485     Remove erroneous errata code from Marvel 88E1111S driver
74486
74487     The Marvel 88E1111S driver for the TSEC was copied from the
74488     88E1101 driver, and included a fix for an erratum which does not
74489     exist on that part.  Now it is removed
74490
74491     Signed-off-by: Andy Fleming <afleming@freescale.com>
74492
74493 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
74494 Author: Andy Fleming <afleming@freescale.com>
74495 Date:   Tue Jun 5 16:38:44 2007 -0500
74496
74497     From: eran liberty <eran.liberty@gmail.com>
74498
74499     adds the reset register to 85xx immap
74500
74501     Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
74502     Signed-off-by: Andy Fleming <afleming@freescale.com>
74503
74504 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
74505 Author: Andy Fleming <afleming@freescale.com>
74506 Date:   Thu May 10 17:50:01 2007 -0500
74507
74508     Polished the 85xx ADS config files
74509
74510     Made the boot commands use device trees by default.
74511     Also moved the ramdisk to 1000000 (I think the previous address
74512     was getting overridden during boot).
74513
74514     Signed-off-by: Andy Fleming <afleming@freescale.com>
74515
74516 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
74517 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74518 Date:   Wed May 9 11:03:32 2007 -0500
74519
74520     8544ds: Fix Makefile after moving pixis to board/freescale.
74521
74522     The OBJTREE != SRCTREE build scenario was broken.
74523     This fixes it.
74524
74525     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74526     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74527
74528 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
74529 Author: Andy Fleming <afleming@freescale.com>
74530 Date:   Wed May 9 00:54:20 2007 -0500
74531
74532     tsec: Fix PHY code to match first driver
74533
74534     Jarrold Wen noticed that the generic PHY code always matches
74535     under the current implementation.  Change it so the first match
74536     wins, and *only* unknown PHYs trigger the generic driver
74537
74538     Signed-off-by: Andy Fleming <afleming@freescale.com>
74539
74540 commit ccc091aac61a38cd998d575d92f7232e256d6312
74541 Author: Andy Fleming <afleming@freescale.com>
74542 Date:   Tue May 8 17:27:43 2007 -0500
74543
74544     Add support for CPM device tree configuration to 8560 ADS
74545
74546     * Adds code to modify CPM frequencies
74547     * Cleans up the config file to #define TSEC and (for now) #undef FCC
74548     * Adds the MII command for all 8560 ADS configurations
74549     * Updates config file to provide convenience commands for booting
74550       with a device tree
74551
74552     Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
74553     Signed-off-by: Andy Fleming <afleming@freescale.com>
74554
74555 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
74556 Author: Andy Fleming <afleming@freescale.com>
74557 Date:   Tue May 8 17:23:02 2007 -0500
74558
74559     Fix Marvell 88e1145 PHY init code
74560
74561     Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
74562     where the reset was being done after the errata code instead of
74563     before.
74564
74565     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
74566     Signed-off-by: Andy Fleming <afleming@freescale.com>
74567
74568 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
74569 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74570 Date:   Wed Jul 11 14:52:16 2007 -0500
74571
74572     Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
74573
74574     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74575
74576 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
74577 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74578 Date:   Wed Jul 11 14:52:08 2007 -0500
74579
74580     pciauto setup bridge
74581
74582     The P2P bridge bus numbers programmed into the device are relative to
74583     hose->first_busno.
74584
74585     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74586
74587 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
74588 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74589 Date:   Wed Jul 11 14:52:01 2007 -0500
74590
74591     Support PCIe extended config registers
74592
74593     FSL PCIe block has extended cfg registers in the 100 and 400 range.
74594     For example, to read the LTSSM register: pci display <busn>.0 404 1
74595
74596     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74597
74598 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
74599 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74600 Date:   Wed Jul 11 14:51:48 2007 -0500
74601
74602     Minor improvements to drivers/pci_auto.c
74603
74604     - Make pciauto_{pre,post}scan_setup_bridge non-static
74605     - Added physical address display in debug messages.
74606
74607     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74608
74609 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
74610 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74611 Date:   Wed Jul 11 14:51:35 2007 -0500
74612
74613     Start pci hose scan from hose->current_busno.
74614
74615     Ensure hose->current_busno is not less than first_busno.  This fixes
74616     broken board code which leaves current_busno=0 when first_busno is
74617     greater than 0 for the cases with multiple controllers.
74618
74619     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74620
74621 commit 3865b1fb7843a08ad49a6319a36415752276ff48
74622 Author: Stefan Roese <sr@denx.de>
74623 Date:   Wed Jul 11 12:13:53 2007 +0200
74624
74625     Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
74626
74627     Signed-off-by: Stefan Roese <sr@denx.de>
74628
74629 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
74630 Author: Bartlomiej Sieka <tur@semihalf.com>
74631 Date:   Wed Jul 11 20:11:07 2007 +0200
74632
74633     CM1.QP1: Support for the Schindler CM1.QP1 board.
74634
74635     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
74636     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
74637
74638 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
74639 Author: Heiko Schocher <hs@pollux.denx.de>
74640 Date:   Wed Jul 11 18:39:11 2007 +0200
74641
74642     [PCS440EP]  - Show on the DIAG LEDs, if the SHA1 check failed
74643                 - now the Flash ST M29W040B is supported (not tested)
74644                 - fix the "led" command
74645                 - fix compile error, if BUILD_DIR is used
74646
74647     Signed-off-by: Heiko Schocher <hs@denx.de>
74648
74649 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
74650 Author: Stefan Roese <sr@denx.de>
74651 Date:   Sun Jul 8 13:44:27 2007 +0200
74652
74653     Fix malloc problem introduced with the relocation fixup for the PPC platform
74654
74655     The relocation fixup didn't handle the malloc pointer initialization
74656     correctly. This patch fixes this problem. Tested successfully on 4xx.
74657     The relocation fixup patches for 4xx will follow soon.
74658
74659     Signed-off-by: Stefan Roese <sr@denx.de>
74660
74661 commit 0dca874db62718e41253659e60f3a1de7eb418ce
74662 Author: TsiChung <tcliew@Goku.(none)>
74663 Date:   Tue Jul 10 15:45:43 2007 -0500
74664
74665     Cache update and added CFG_UNIFY_CACHE
74666
74667     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.
74668
74669     Signed-off-by: TsiChung <tcliew@Goku.(none)>
74670
74671 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
74672 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74673 Date:   Thu Jul 5 23:36:16 2007 -0500
74674
74675     Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
74676
74677     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
74678
74679     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74680
74681 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
74682 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74683 Date:   Thu Jul 5 23:31:25 2007 -0500
74684
74685     Update header files
74686
74687     Include immap.h and renamed mcfrtc.h to rtc.h
74688
74689     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74690
74691 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
74692 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74693 Date:   Thu Jul 5 23:29:21 2007 -0500
74694
74695     Add mcffec_initialize()
74696
74697     Added mcffec_initialize() in eth_initialize()
74698
74699     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74700
74701 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
74702 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74703 Date:   Thu Jul 5 23:27:40 2007 -0500
74704
74705     Update header file and clean up
74706
74707     Include immap.h
74708
74709     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74710
74711 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
74712 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74713 Date:   Thu Jul 5 23:23:15 2007 -0500
74714
74715     New uart structure and defines
74716
74717     Seperated from mcfuart.h
74718
74719     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74720
74721 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
74722 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74723 Date:   Thu Jul 5 23:22:31 2007 -0500
74724
74725     New timer structure and defines
74726
74727     Seperated from mcftimer.h
74728
74729     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74730
74731 commit e04acb2eba4782489417240eff76e20e176aec10
74732 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74733 Date:   Thu Jul 5 23:21:09 2007 -0500
74734
74735     Rename mcfrtc to rtc
74736
74737     Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
74738
74739     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74740
74741 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
74742 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74743 Date:   Thu Jul 5 23:17:36 2007 -0500
74744
74745     Rename mcfserial.c. Update include header
74746
74747     Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
74748
74749     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74750
74751 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
74752 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74753 Date:   Thu Jul 5 23:13:58 2007 -0500
74754
74755     Header file update, clean up and cache handling
74756
74757     Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
74758
74759     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74760
74761 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
74762 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74763 Date:   Thu Jul 5 23:10:40 2007 -0500
74764
74765     Create interrupts.c and modify Makefile
74766
74767     interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
74768
74769     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74770
74771 commit ddd104f1ed655eda50c06ba636237a83ed943f34
74772 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74773 Date:   Thu Jul 5 23:06:55 2007 -0500
74774
74775     Enable Icache
74776
74777     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74778
74779 commit b9bf3de377b2bae70c983c9b97feae914999e735
74780 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74781 Date:   Thu Jul 5 23:05:31 2007 -0500
74782
74783     Update header file and some clean up
74784
74785     Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
74786
74787     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74788
74789 commit 84a015b52ec820a5ae173717d78516de731c89c2
74790 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74791 Date:   Thu Jul 5 23:03:28 2007 -0500
74792
74793     Update header file and enable icache
74794
74795     Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
74796
74797     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74798
74799 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
74800 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74801 Date:   Thu Jul 5 23:01:22 2007 -0500
74802
74803     Update header file and removed interrupt_init()
74804
74805     Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
74806
74807     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74808
74809 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
74810 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74811 Date:   Thu Jul 5 22:57:46 2007 -0500
74812
74813     Update for flash.o and mii.o
74814
74815     Removed flash.o and added mii.o
74816
74817     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74818
74819 commit c5ded275d839e4ff79f41718d50a835d989f57bc
74820 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74821 Date:   Thu Jul 5 22:56:19 2007 -0500
74822
74823     MII functions calls.
74824
74825     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74826
74827 commit 427c814104560e29bda14955c67703245aaaa5b4
74828 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74829 Date:   Thu Jul 5 22:54:42 2007 -0500
74830
74831     Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
74832
74833     The removed MII routines will be placed in mii.c.
74834
74835     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74836
74837 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
74838 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74839 Date:   Thu Jul 5 22:51:05 2007 -0500
74840
74841     Duplicate code
74842
74843     There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
74844
74845     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74846
74847 commit 2744354a8437b8f78db178e30660215688bff570
74848 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74849 Date:   Thu Jul 5 22:46:38 2007 -0500
74850
74851     Seperate old structure defines and new structure defines
74852
74853     Removed new uart structure and defines to uart.h
74854
74855     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74856
74857 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
74858 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74859 Date:   Thu Jul 5 22:45:01 2007 -0500
74860
74861     Seperate old structure defines and new structure defines
74862
74863     New timer structure and defines will move to new timer.h
74864
74865     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74866
74867 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
74868 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74869 Date:   Thu Jul 5 22:42:23 2007 -0500
74870
74871     Clean up
74872
74873     Removed whitespace
74874
74875     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74876
74877 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
74878 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74879 Date:   Thu Jul 5 22:41:24 2007 -0500
74880
74881     Clean up
74882
74883     Replaced whitespace with tabs
74884
74885     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74886
74887 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
74888 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74889 Date:   Thu Jul 5 22:39:07 2007 -0500
74890
74891     Create new header file and move peripherals base address from configs file to new header file.
74892
74893     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.
74894
74895     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74896
74897 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
74898 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74899 Date:   Thu Jul 5 22:24:58 2007 -0500
74900
74901     Revert file mode
74902
74903     Changed MAKEALL file mode to executable, removed executable file mode from Makefile
74904
74905     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74906
74907 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
74908 Author: Jon Loeliger <jdl@freescale.com>
74909 Date:   Tue Jul 10 11:19:50 2007 -0500
74910
74911     disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
74912
74913     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
74914     Those always evaluated TRUE, and thus were always compiled
74915     even when IDE really wasn't defined/wanted.
74916
74917     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74918
74919 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
74920 Author: Jon Loeliger <jdl@freescale.com>
74921 Date:   Tue Jul 10 11:13:21 2007 -0500
74922
74923     drivers/: Remove lingering references to CFG_CMD_* symbols.
74924
74925     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
74926     Those always evaluated TRUE, and thus were always compiled
74927     even when IDE really wasn't defined/wanted.
74928
74929     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74930
74931 commit f40a7f3e3888b42a43674b099e5470022c8c544c
74932 Author: Jon Loeliger <jdl@freescale.com>
74933 Date:   Tue Jul 10 11:07:56 2007 -0500
74934
74935     fs/: Remove lingering references to CFG_CMD_* symbols.
74936
74937     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
74938     Those always evaluated TRUE, and thus were always compiled
74939     even when IDE really wasn't defined/wanted.
74940
74941     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74942
74943 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
74944 Author: Jon Loeliger <jdl@freescale.com>
74945 Date:   Tue Jul 10 11:05:02 2007 -0500
74946
74947     net/: Remove lingering references to CFG_CMD_* symbols.
74948
74949     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
74950     Those always evaluated TRUE, and thus were always compiled
74951     even when IDE really wasn't defined/wanted.
74952
74953     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74954
74955 commit 902531788376046da212afd1661cffb62f3daa1c
74956 Author: Jon Loeliger <jdl@freescale.com>
74957 Date:   Tue Jul 10 11:02:44 2007 -0500
74958
74959     common/: Remove lingering references to CFG_CMD_* symbols.
74960
74961     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
74962     Those always evaluated TRUE, and thus were always compiled
74963     even when IDE really wasn't defined/wanted.
74964
74965     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74966
74967 commit d39b57415838c73fb0a37eca84de3c68ba990586
74968 Author: Jon Loeliger <jdl@freescale.com>
74969 Date:   Tue Jul 10 10:48:22 2007 -0500
74970
74971     board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
74972
74973     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
74974     Those always evaluated TRUE, and thus were always compiled
74975     even when IDE really wasn't defined/wanted.
74976
74977     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74978
74979 commit 77a318545d57aefa844752465b94c7e09a3f26d0
74980 Author: Jon Loeliger <jdl@freescale.com>
74981 Date:   Tue Jul 10 10:39:10 2007 -0500
74982
74983     board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
74984
74985     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
74986     Those always evaluated TRUE, and thus were always compiled
74987     even when IDE really wasn't defined/wanted.
74988
74989     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74990
74991 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
74992 Author: Jon Loeliger <jdl@freescale.com>
74993 Date:   Tue Jul 10 10:27:39 2007 -0500
74994
74995     cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
74996
74997     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74998
74999 commit 079a136c3588814784561d6e4856970ee82d6e2a
75000 Author: Jon Loeliger <jdl@freescale.com>
75001 Date:   Tue Jul 10 10:12:10 2007 -0500
75002
75003     include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
75004
75005     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75006     used to be included but CONFIG_BOOTP_MASK was not defined.
75007
75008     Remove lingering references to CFG_CMD_* symbols.
75009
75010     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75011
75012 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
75013 Author: Jon Loeliger <jdl@freescale.com>
75014 Date:   Tue Jul 10 09:38:02 2007 -0500
75015
75016     include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
75017
75018     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75019     used to be included but CONFIG_BOOTP_MASK was not defined.
75020
75021     Remove lingering references to CFG_CMD_* symbols.
75022
75023     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75024
75025 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
75026 Author: Jon Loeliger <jdl@freescale.com>
75027 Date:   Tue Jul 10 09:29:01 2007 -0500
75028
75029     include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
75030
75031     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75032     used to be included but CONFIG_BOOTP_MASK was not defined.
75033
75034     Remove lingering references to CFG_CMD_* symbols.
75035
75036     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75037
75038 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
75039 Author: Jon Loeliger <jdl@freescale.com>
75040 Date:   Tue Jul 10 09:22:23 2007 -0500
75041
75042     include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
75043
75044     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75045     used to be included but CONFIG_BOOTP_MASK was not defined.
75046
75047     Remove lingering references to CFG_CMD_* symbols.
75048
75049     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75050
75051 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
75052 Author: Jon Loeliger <jdl@freescale.com>
75053 Date:   Tue Jul 10 09:10:49 2007 -0500
75054
75055     include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
75056
75057     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75058     used to be included but CONFIG_BOOTP_MASK was not defined.
75059
75060     Remove lingering references to CFG_CMD_* symbols.
75061
75062     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75063
75064 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
75065 Author: Jon Loeliger <jdl@freescale.com>
75066 Date:   Tue Jul 10 09:02:57 2007 -0500
75067
75068     include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
75069
75070     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75071     used to be included but CONFIG_BOOTP_MASK was not defined.
75072
75073     Remove lingering references to CFG_CMD_* symbols.
75074
75075     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75076
75077 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
75078 Author: Jon Loeliger <jdl@freescale.com>
75079 Date:   Mon Jul 9 22:08:34 2007 -0500
75080
75081     Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
75082
75083     All of the choices for CONFIG_BOOTP_ are now documented in
75084     the README file.  You must now individually select exactly
75085     the set that you want using a series of
75086         #define CONFIG_BOOTP_<x>
75087     statements in the board port config files now.
75088
75089     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75090
75091 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
75092 Author: Jon Loeliger <jdl@freescale.com>
75093 Date:   Mon Jul 9 21:57:31 2007 -0500
75094
75095     include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75096
75097     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75098
75099 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
75100 Author: Jon Loeliger <jdl@freescale.com>
75101 Date:   Mon Jul 9 21:48:26 2007 -0500
75102
75103     include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75104
75105     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75106
75107 commit 37d4bb70586659dedef1658ce1bed071be098aec
75108 Author: Jon Loeliger <jdl@freescale.com>
75109 Date:   Mon Jul 9 21:38:02 2007 -0500
75110
75111     include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75112
75113     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75114
75115 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
75116 Author: Jon Loeliger <jdl@freescale.com>
75117 Date:   Mon Jul 9 21:31:24 2007 -0500
75118
75119     include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75120
75121     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75122
75123 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
75124 Author: Jon Loeliger <jdl@freescale.com>
75125 Date:   Mon Jul 9 21:24:19 2007 -0500
75126
75127     include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75128
75129     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75130
75131 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
75132 Author: Jon Loeliger <jdl@freescale.com>
75133 Date:   Mon Jul 9 21:16:53 2007 -0500
75134
75135     include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75136
75137     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75138
75139 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
75140 Author: Jon Loeliger <jdl@freescale.com>
75141 Date:   Mon Jul 9 19:12:30 2007 -0500
75142
75143     Retire CONFIG_COMMANDS finally.
75144     Strip old CFG_CMD_* symbols out.
75145
75146     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75147
75148 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
75149 Author: Jon Loeliger <jdl@freescale.com>
75150 Date:   Mon Jul 9 19:10:03 2007 -0500
75151
75152     Update README.* to reference new CONFIG_CMD_* names now.
75153
75154     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75155
75156 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
75157 Author: Jon Loeliger <jdl@freescale.com>
75158 Date:   Mon Jul 9 19:06:00 2007 -0500
75159
75160     cpu/m*: Remove obsolete references to CONFIG_COMMANDS
75161
75162     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75163
75164 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
75165 Author: Jon Loeliger <jdl@freescale.com>
75166 Date:   Mon Jul 9 18:57:22 2007 -0500
75167
75168     cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
75169
75170     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75171
75172 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
75173 Author: Jon Loeliger <jdl@freescale.com>
75174 Date:   Mon Jul 9 18:45:16 2007 -0500
75175
75176     board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
75177
75178     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75179
75180 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
75181 Author: Jon Loeliger <jdl@freescale.com>
75182 Date:   Mon Jul 9 18:38:39 2007 -0500
75183
75184     board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
75185
75186     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75187
75188 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
75189 Author: Jon Loeliger <jdl@freescale.com>
75190 Date:   Mon Jul 9 18:31:28 2007 -0500
75191
75192     board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
75193
75194     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75195
75196 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
75197 Author: Jon Loeliger <jdl@freescale.com>
75198 Date:   Mon Jul 9 18:24:55 2007 -0500
75199
75200     board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
75201
75202     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75203
75204 commit fcec2eb93e126400009729328e797f12bc94f1fd
75205 Author: Jon Loeliger <jdl@freescale.com>
75206 Date:   Mon Jul 9 18:19:09 2007 -0500
75207
75208     board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
75209
75210     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75211
75212 commit a593814f2be0c9cdc3133cd550b167b8a988328f
75213 Author: Jon Loeliger <jdl@freescale.com>
75214 Date:   Mon Jul 9 18:10:50 2007 -0500
75215
75216     rtc/: Remove obsolete references to CONFIG_COMMANDS
75217
75218     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75219
75220 commit 67350568f9d46e66c21829f3513b3db0caeb948b
75221 Author: Jon Loeliger <jdl@freescale.com>
75222 Date:   Mon Jul 9 18:05:38 2007 -0500
75223
75224     lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
75225
75226     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75227
75228 commit 7def6b34f910f08d7ef0a14646da067719237ca2
75229 Author: Jon Loeliger <jdl@freescale.com>
75230 Date:   Mon Jul 9 18:02:11 2007 -0500
75231
75232     lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
75233
75234     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75235
75236 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
75237 Author: Jon Loeliger <jdl@freescale.com>
75238 Date:   Mon Jul 9 17:56:50 2007 -0500
75239
75240     fs/: Remove obsolete references to CONFIG_COMMANDS
75241
75242     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75243
75244 commit c91898bbc505aff3e12a807af88e76da18efb7ee
75245 Author: Jon Loeliger <jdl@freescale.com>
75246 Date:   Mon Jul 9 17:46:09 2007 -0500
75247
75248     tools/: Remove obsolete references to CONFIG_COMMANDS
75249
75250     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75251
75252 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
75253 Author: Jon Loeliger <jdl@freescale.com>
75254 Date:   Mon Jul 9 17:45:14 2007 -0500
75255
75256     net/: Remove obsolete references to CONFIG_COMMANDS
75257
75258     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75259
75260 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
75261 Author: Jon Loeliger <jdl@freescale.com>
75262 Date:   Mon Jul 9 17:39:42 2007 -0500
75263
75264     drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
75265
75266     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75267
75268 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
75269 Author: Jon Loeliger <jdl@freescale.com>
75270 Date:   Mon Jul 9 17:30:01 2007 -0500
75271
75272     drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
75273
75274     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75275
75276 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
75277 Author: Jon Loeliger <jdl@freescale.com>
75278 Date:   Mon Jul 9 17:22:37 2007 -0500
75279
75280     disk/: Remove obsolete references to CONFIG_COMMANDS
75281
75282     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75283
75284 commit 639221c76c88215bd55af83ad174fc30d1940f8f
75285 Author: Jon Loeliger <jdl@freescale.com>
75286 Date:   Mon Jul 9 17:15:49 2007 -0500
75287
75288     include/: Remove obsolete references to CONFIG_COMMANDS
75289     Mostly removed from comments here.
75290
75291     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75292
75293 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
75294 Author: Wolfgang Denk <wd@denx.de>
75295 Date:   Tue Jul 10 00:01:28 2007 +0200
75296
75297     Coding style cleanup; update CHANGELOG.
75298
75299     Signed-off-by: Wolfgang Denk <wd@denx.de>
75300
75301 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
75302 Author: Stefan Roese <sr@denx.de>
75303 Date:   Mon Jul 9 11:00:24 2007 +0200
75304
75305     Small coding style cleanup
75306
75307     Signed-off-by: Stefan Roese <sr@denx.de>
75308
75309 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
75310 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75311 Date:   Mon Jul 9 10:10:08 2007 +0200
75312
75313     Migrate esd 405EP boards to new NAND subsystem
75314
75315     Remove unused CFG_NAND_LEGACY define
75316
75317     These boards to not have NAND.
75318
75319     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75320
75321 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
75322 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75323 Date:   Mon Jul 9 10:10:06 2007 +0200
75324
75325     Migrate esd 405EP boards to new NAND subsystem
75326
75327     Migrate esd 405EP boards to new NAND subsystem
75328
75329     -cleanup
75330     -use correct io accessors (in/out_be32())
75331
75332     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75333
75334 commit e09f7ab5749c345f924da272bea0521a73af5b11
75335 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75336 Date:   Mon Jul 9 10:10:04 2007 +0200
75337
75338     Migrate esd 405EP boards to new NAND subsystem
75339
75340     This patch prepares the migration from the legacy NAND driver
75341     to U-Boot's new NAND subsystem for esd boards.
75342
75343     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75344
75345 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
75346 Author: Jon Loeliger <jdl@freescale.com>
75347 Date:   Sun Jul 8 18:10:08 2007 -0500
75348
75349     common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
75350
75351     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75352
75353 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
75354 Author: Jon Loeliger <jdl@freescale.com>
75355 Date:   Sun Jul 8 18:05:39 2007 -0500
75356
75357     common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
75358
75359     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75360
75361 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
75362 Author: Jon Loeliger <jdl@freescale.com>
75363 Date:   Sun Jul 8 18:02:23 2007 -0500
75364
75365     common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
75366
75367     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75368
75369 commit baa26db4113679b80970ff447d91cc10217742a6
75370 Author: Jon Loeliger <jdl@freescale.com>
75371 Date:   Sun Jul 8 17:51:39 2007 -0500
75372
75373     common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
75374
75375     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75376
75377 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
75378 Author: Jon Loeliger <jdl@freescale.com>
75379 Date:   Sun Jul 8 17:02:01 2007 -0500
75380
75381     Clear up confusion over the CMD_POST and POST_DIAG mess.
75382
75383     For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
75384     when it really means just CONFIG_CMD_DIAG.  There is no CMD_POST.
75385     Clear this mess up some.
75386
75387     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75388
75389 commit b3631487105a57ab7cbadfc26efbaf9676275018
75390 Author: Jon Loeliger <jdl@freescale.com>
75391 Date:   Sun Jul 8 15:45:08 2007 -0500
75392
75393     Remove references to the old cmd_confdefs.h include file.
75394
75395     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75396
75397 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
75398 Author: Jon Loeliger <jdl@freescale.com>
75399 Date:   Sun Jul 8 15:42:59 2007 -0500
75400
75401     include/configs: Catch some CONFIG_CMD_* conversion stragglers.
75402
75403     Use new CONFIG_CMD_* in lwmon5.h board config file.
75404     Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
75405
75406     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75407
75408 commit a5562901661bd428f7e5feb333f796372cb81019
75409 Author: Jon Loeliger <jdl@freescale.com>
75410 Date:   Sun Jul 8 15:31:57 2007 -0500
75411
75412     include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
75413
75414     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75415
75416 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
75417 Author: Jon Loeliger <jdl@freescale.com>
75418 Date:   Sun Jul 8 15:02:44 2007 -0500
75419
75420     include/configs: Use new CONFIG_CMD_* in various S* named board config files.
75421
75422     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75423
75424 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
75425 Author: Jon Loeliger <jdl@freescale.com>
75426 Date:   Sun Jul 8 15:12:40 2007 -0500
75427
75428     include/configs: Use new CONFIG_CMD_* in various R* named board config files.
75429
75430     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75431
75432 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
75433 Author: Jon Loeliger <jdl@freescale.com>
75434 Date:   Sun Jul 8 14:55:07 2007 -0500
75435
75436     include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
75437
75438     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75439
75440 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
75441 Author: Jon Loeliger <jdl@freescale.com>
75442 Date:   Sun Jul 8 14:49:44 2007 -0500
75443
75444     include/configs: Use new CONFIG_CMD_* in various P* named board config files.
75445
75446     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75447
75448 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
75449 Author: Jon Loeliger <jdl@freescale.com>
75450 Date:   Sun Jul 8 14:21:43 2007 -0500
75451
75452     include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
75453
75454     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75455
75456 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
75457 Author: Jon Loeliger <jdl@freescale.com>
75458 Date:   Sun Jul 8 14:14:17 2007 -0500
75459
75460     include/configs: Use new CONFIG_CMD_* in various M* named board config files.
75461
75462     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75463
75464 commit 348f258f24253433e4a2302a0bbceb6740a67246
75465 Author: Jon Loeliger <jdl@freescale.com>
75466 Date:   Sun Jul 8 13:46:18 2007 -0500
75467
75468     include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
75469
75470     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75471
75472 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
75473 Author: Jon Loeliger <jdl@freescale.com>
75474 Date:   Sun Jul 8 10:09:35 2007 -0500
75475
75476     include/configs: Use new CONFIG_CMD_* in various H* named board config files.
75477
75478     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75479
75480 commit 60a0876b5106b34220e459c208bbf648073306c0
75481 Author: Jon Loeliger <jdl@freescale.com>
75482 Date:   Sat Jul 7 21:04:26 2007 -0500
75483
75484     include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
75485
75486     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75487
75488 commit dcaa71562826a2466e894c868d132509dcda8444
75489 Author: Jon Loeliger <jdl@freescale.com>
75490 Date:   Sat Jul 7 20:56:05 2007 -0500
75491
75492     include/configs: Use new CONFIG_CMD_* in various E* named board config files.
75493
75494     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75495
75496 commit 3c3227f3c737502311b25b72084573901cbbf17d
75497 Author: Jon Loeliger <jdl@freescale.com>
75498 Date:   Sat Jul 7 20:40:43 2007 -0500
75499
75500     include/configs: Use new CONFIG_CMD_* in various D* named board config files.
75501
75502     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75503
75504 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
75505 Author: Jon Loeliger <jdl@freescale.com>
75506 Date:   Thu Jul 5 19:52:35 2007 -0500
75507
75508     include/configs: Use new CONFIG_CMD_* in various C* named board config files.
75509
75510     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75511
75512 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
75513 Author: Jon Loeliger <jdl@freescale.com>
75514 Date:   Thu Jul 5 19:32:07 2007 -0500
75515
75516     include/configs: Use new CONFIG_CMD_* in various B* named board config files.
75517
75518     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75519
75520 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
75521 Author: Jon Loeliger <jdl@freescale.com>
75522 Date:   Thu Jul 5 19:13:52 2007 -0500
75523
75524     include/configs: Use new CONFIG_CMD_* in various A* named board config files.
75525
75526     Since ADS860.h includes "board/fads/fads.h" with ramifications
75527     on the CONFIG_COMMAND treatment, it too has to be adjusted to
75528     exclude already configured commands in this same commit.
75529
75530     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75531
75532 commit 10e038932f22ee80ebd53de312531e70e6590a2f
75533 Author: Thomas Knobloch <knobloch@siemens.com>
75534 Date:   Fri Jul 6 14:58:39 2007 +0200
75535
75536     [NAND] Bad block skipping for command nboot
75537
75538     The old implementation of command nboot does not support reading the image from
75539     NAND flash with skipping of bad blocks. The patch implements a new version of
75540     the nboot command: by calling nboot.jffs2 from the u-boot command line the
75541     command will load the image from NAND flash with respect to bad blocks (by using
75542     nand_read_opts()). This is similar to e.g. the NAND read command: "nand
75543     read.jffs2 ...".
75544
75545     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
75546     Signed-off-by: Stefan Roese <sr@denx.de>
75547
75548 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
75549 Author: Stefan Roese <sr@denx.de>
75550 Date:   Fri Jul 6 12:26:51 2007 +0200
75551
75552     ppc4xx: Update lwmon5 default environment
75553
75554     Signed-off-by: Stefan Roese <sr@denx.de>
75555
75556 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
75557 Author: Stefan Roese <sr@denx.de>
75558 Date:   Fri Jul 6 11:48:24 2007 +0200
75559
75560     ppc4xx: Update lwmon5 board
75561
75562     Add unlock=yes environment variable to default variables to unlock
75563     the CFI flash by default.
75564
75565     Signed-off-by: Stefan Roese <sr@denx.de>
75566
75567 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
75568 Author: Stefan Roese <sr@denx.de>
75569 Date:   Fri Jul 6 09:45:47 2007 +0200
75570
75571     Fix problem with get/setdcr commands introduced by cfg patches
75572
75573     Signed-off-by: Stefan Roese <sr@denx.de>
75574
75575 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
75576 Author: Wolfgang Denk <wd@denx.de>
75577 Date:   Fri Jul 6 02:50:19 2007 +0200
75578
75579     Code cleanup and default config update for STC GP3 SSA board.
75580
75581     Signed-off-by: Wolfgang Denk <wd@denx.de>
75582
75583 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
75584 Author: Wolfgang Denk <wd@denx.de>
75585 Date:   Thu Jul 5 17:56:27 2007 +0200
75586
75587     Fixing some typos etc. introduced mainly by cfg patches.
75588
75589     Signed-off-by: Wolfgang Denk <wd@denx.de>
75590
75591 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
75592 Author: Wolfgang Denk <wd@denx.de>
75593 Date:   Thu Jul 5 11:12:16 2007 +0200
75594
75595     Minor coding style cleanup. Update CHANGELOG.
75596
75597 commit dca3b3d6d6396b67e5e84af53452164923c73443
75598 Author: Jon Loeliger <jdl@jdl.com>
75599 Date:   Wed Jul 4 22:33:46 2007 -0500
75600
75601     include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
75602
75603     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75604
75605 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
75606 Author: Jon Loeliger <jdl@jdl.com>
75607 Date:   Wed Jul 4 22:33:38 2007 -0500
75608
75609     include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
75610
75611     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75612
75613 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
75614 Author: Jon Loeliger <jdl@jdl.com>
75615 Date:   Wed Jul 4 22:33:30 2007 -0500
75616
75617     include/configs: Use new CONFIG_CMD_* in various s* named board config files.
75618
75619     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75620
75621 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
75622 Author: Jon Loeliger <jdl@jdl.com>
75623 Date:   Wed Jul 4 22:33:23 2007 -0500
75624
75625     include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
75626
75627     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75628
75629 commit 26a34560d56a9df5bc2ae23525d9229736134757
75630 Author: Jon Loeliger <jdl@jdl.com>
75631 Date:   Wed Jul 4 22:33:17 2007 -0500
75632
75633     include/configs: Use new CONFIG_CMD_* in various p* named board config files.
75634
75635     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75636
75637 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
75638 Author: Jon Loeliger <jdl@jdl.com>
75639 Date:   Wed Jul 4 22:33:13 2007 -0500
75640
75641     include/configs: Use new CONFIG_CMD_* in various o* named board config files.
75642
75643     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75644
75645 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
75646 Author: Jon Loeliger <jdl@jdl.com>
75647 Date:   Wed Jul 4 22:33:07 2007 -0500
75648
75649     include/configs: Use new CONFIG_CMD_* in various n* named board config files.
75650
75651     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75652
75653 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
75654 Author: Jon Loeliger <jdl@jdl.com>
75655 Date:   Wed Jul 4 22:33:01 2007 -0500
75656
75657     include/configs: Use new CONFIG_CMD_* in various m* named board config files.
75658
75659     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75660
75661 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
75662 Author: Jon Loeliger <jdl@jdl.com>
75663 Date:   Wed Jul 4 22:32:57 2007 -0500
75664
75665     include/configs: Use new CONFIG_CMD_* in various l* named board config files.
75666
75667     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75668
75669 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
75670 Author: Jon Loeliger <jdl@jdl.com>
75671 Date:   Wed Jul 4 22:32:51 2007 -0500
75672
75673     include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
75674
75675     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75676
75677 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
75678 Author: Jon Loeliger <jdl@jdl.com>
75679 Date:   Wed Jul 4 22:32:32 2007 -0500
75680
75681     include/configs: Use new CONFIG_CMD_* in various i* named board config files.
75682
75683     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75684
75685 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
75686 Author: Jon Loeliger <jdl@jdl.com>
75687 Date:   Wed Jul 4 22:32:25 2007 -0500
75688
75689     include/configs: Use new CONFIG_CMD_* in various h* named board config files.
75690
75691     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75692
75693 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
75694 Author: Jon Loeliger <jdl@jdl.com>
75695 Date:   Wed Jul 4 22:32:19 2007 -0500
75696
75697     include/configs: Use new CONFIG_CMD_* in various g* named board config files.
75698
75699     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75700
75701 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
75702 Author: Jon Loeliger <jdl@jdl.com>
75703 Date:   Wed Jul 4 22:32:10 2007 -0500
75704
75705     include/configs: Use new CONFIG_CMD_* in various e* named board config files.
75706
75707     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75708
75709 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
75710 Author: Jon Loeliger <jdl@jdl.com>
75711 Date:   Wed Jul 4 22:32:03 2007 -0500
75712
75713     include/configs: Use new CONFIG_CMD_* in various d* named board config files.
75714
75715     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75716
75717 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
75718 Author: Jon Loeliger <jdl@jdl.com>
75719 Date:   Wed Jul 4 22:31:56 2007 -0500
75720
75721     include/configs: Use new CONFIG_CMD_* in various c* named board config files.
75722
75723     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75724
75725 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
75726 Author: Jon Loeliger <jdl@jdl.com>
75727 Date:   Wed Jul 4 22:31:49 2007 -0500
75728
75729     include/configs: Use new CONFIG_CMD_* in various b* named board config files.
75730
75731     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75732
75733 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
75734 Author: Jon Loeliger <jdl@jdl.com>
75735 Date:   Wed Jul 4 22:31:42 2007 -0500
75736
75737     include/configs: Use new CONFIG_CMD_* in various a* named board config files.
75738
75739     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75740
75741 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
75742 Author: Jon Loeliger <jdl@jdl.com>
75743 Date:   Wed Jul 4 22:31:35 2007 -0500
75744
75745     include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
75746
75747     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75748
75749 commit d794cfefead5fc177cf4f41164e80382e9c9484a
75750 Author: Jon Loeliger <jdl@jdl.com>
75751 Date:   Wed Jul 4 22:31:15 2007 -0500
75752
75753     include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
75754
75755     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75756
75757 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
75758 Author: Jon Loeliger <jdl@jdl.com>
75759 Date:   Wed Jul 4 22:31:07 2007 -0500
75760
75761     include/configs: Use new CONFIG_CMD_* in STx board config files.
75762
75763     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75764
75765 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
75766 Author: Jon Loeliger <jdl@jdl.com>
75767 Date:   Wed Jul 4 22:30:58 2007 -0500
75768
75769     include/configs: Use new CONFIG_CMD_* in sbc* board config files.
75770
75771     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75772
75773 commit 2694690e285acaa34922f55f4b5ae030da60c55a
75774 Author: Jon Loeliger <jdl@jdl.com>
75775 Date:   Wed Jul 4 22:30:50 2007 -0500
75776
75777     include/configs: Use new CONFIG_CMD_* in TQM board config files.
75778
75779     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75780
75781 commit 1cc4c458329765b58e584a19821e796b3c10e976
75782 Author: Jon Loeliger <jdl@jdl.com>
75783 Date:   Wed Jul 4 22:30:28 2007 -0500
75784
75785     include/configs: Use new CONFIG_CMD_* in 82xx board config files.
75786
75787     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75788
75789 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
75790 Author: Jon Loeliger <jdl@jdl.com>
75791 Date:   Wed Jul 4 22:30:06 2007 -0500
75792
75793     include/configs: Use new CONFIG_CMD_* in 83xx board config files.
75794
75795     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75796
75797 commit b44896215a09c60fa40cae906f7ed207bbc2c492
75798 Author: Sergei Poselenov <sposelenov@emcraft.com>
75799 Date:   Thu Jul 5 08:17:37 2007 +0200
75800
75801     Merged POST framework with the current TOT.
75802
75803     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
75804
75805 commit b24629fa377214d63bb40d1360e354b6d3e4af56
75806 Author: Jon Loeliger <jdl@jdl.com>
75807 Date:   Wed Jun 13 13:23:15 2007 -0500
75808
75809     mpc86xx: Remove old CFG_CMD_* references.
75810
75811     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75812
75813 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
75814 Author: Jon Loeliger <jdl@jdl.com>
75815 Date:   Wed Jun 13 13:22:54 2007 -0500
75816
75817     Add MPC8568MDS to MAKEALL 85xx target.
75818
75819     It was missing from the original port submission.
75820
75821     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75822
75823 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
75824 Author: Jon Loeliger <jdl@jdl.com>
75825 Date:   Wed Jun 13 13:22:08 2007 -0500
75826
75827     include/configs: Use new CONFIG_CMD_* in 85xx board config files.
75828
75829     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75830
75831 commit 56b304ac2091689506088a9ae67f63fd6300cf16
75832 Author: Jon Loeliger <jdl@jdl.com>
75833 Date:   Wed Jun 13 13:21:37 2007 -0500
75834
75835     Fix #if typo in CONFIG_CMD_* changes.
75836
75837     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75838
75839 commit f780b83316d9af1f61d71cc88b1917b387b9b995
75840 Author: Niklaus Giger <niklausgiger@gmx.ch>
75841 Date:   Wed Jun 27 18:11:38 2007 +0200
75842
75843     resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
75844
75845     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
75846
75847 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
75848 Author: Stefan Roese <sr@denx.de>
75849 Date:   Wed Jul 4 10:06:30 2007 +0200
75850
75851     ppc4xx: Update lwmon5 board
75852
75853     - Add optional ECC generation routine to preserve existing
75854       RAM values. This is needed for the Linux log-buffer support
75855     - Add optional DDR2 setup with CL=4
75856     - GPIO50 not used anymore
75857     - Lime register setup added
75858
75859     Signed-off-by: Stefan Roese <sr@denx.de>
75860
75861 commit 6810a34677dbc446334f5e451f1682426dd33b49
75862 Author: Grant Likely <grant.likely@secretlab.ca>
75863 Date:   Tue Jul 3 00:17:28 2007 -0600
75864
75865     Fix Makefile to use $(MKCONFIG) macro for all board ports
75866
75867     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75868
75869 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
75870 Author: Grant Likely <grant.likely@secretlab.ca>
75871 Date:   Tue Jul 3 00:17:28 2007 -0600
75872
75873     Fix Makefile to use $(MKCONFIG) macro for all board ports
75874
75875     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75876
75877 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
75878 Author: Grant Likely <grant.likely@secretlab.ca>
75879 Date:   Tue Jul 3 00:34:49 2007 -0600
75880
75881     Correct fixup relocation for mpc83xx
75882
75883     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75884
75885 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
75886 Author: Grant Likely <grant.likely@secretlab.ca>
75887 Date:   Tue Jul 3 00:34:44 2007 -0600
75888
75889     Correct fixup relocation for mpc8260
75890
75891     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75892
75893 commit f3a52fe05923935db86985daf9438e2f70ac39aa
75894 Author: Grant Likely <grant.likely@secretlab.ca>
75895 Date:   Tue Jul 3 00:34:39 2007 -0600
75896
75897     Correct fixup relocation for mpc824x
75898
75899     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75900
75901 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
75902 Author: Grant Likely <grant.likely@secretlab.ca>
75903 Date:   Tue Jul 3 00:34:34 2007 -0600
75904
75905     Correct fixup relocation for mpc8220
75906
75907     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75908
75909 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
75910 Author: Grant Likely <grant.likely@secretlab.ca>
75911 Date:   Tue Jul 3 00:34:29 2007 -0600
75912
75913     Correct fixup relocation for MPC5xxx
75914
75915     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75916
75917 commit 3649cd99ba815b6601868735765602f00ef3692b
75918 Author: Grant Likely <grant.likely@secretlab.ca>
75919 Date:   Tue Jul 3 00:34:24 2007 -0600
75920
75921     Correct relocation fixup for mpc5xx
75922
75923     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75924
75925 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
75926 Author: Grant Likely <grant.likely@secretlab.ca>
75927 Date:   Tue Jul 3 00:34:19 2007 -0600
75928
75929     Don't set gd->reloc_off if relocation of .fixup works correctly
75930
75931     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75932
75933 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
75934 Author: Grant Likely <grant.likely@secretlab.ca>
75935 Date:   Tue Jul 3 00:34:14 2007 -0600
75936
75937     Remove obsolete mpc83xx linker scripts
75938
75939     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75940
75941 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
75942 Author: Grant Likely <grant.likely@secretlab.ca>
75943 Date:   Tue Jul 3 00:34:09 2007 -0600
75944
75945     Consolidate mpc8260 linker scripts
75946
75947     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75948
75949 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
75950 Author: Grant Likely <grant.likely@secretlab.ca>
75951 Date:   Tue Jul 3 00:34:04 2007 -0600
75952
75953     Remove obsolete mpc824x linker scripts
75954
75955     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75956
75957 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
75958 Author: Grant Likely <grant.likely@secretlab.ca>
75959 Date:   Tue Jul 3 00:33:59 2007 -0600
75960
75961     Remove obsolete mpc824x linker scripts (3 of 4)
75962
75963     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75964
75965 commit a71c084f3ac7fedf144537db2b2da47323068833
75966 Author: Grant Likely <grant.likely@secretlab.ca>
75967 Date:   Tue Jul 3 00:33:53 2007 -0600
75968
75969     Remove obsolete mpc824x linker scripts (2 of 4)
75970
75971     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75972
75973 commit f670a15468d1365241d40022b9408e1004181f5e
75974 Author: Grant Likely <grant.likely@secretlab.ca>
75975 Date:   Tue Jul 3 00:33:48 2007 -0600
75976
75977     Remove obsolete mpc824x linker scripts (1 of 4)
75978
75979     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75980
75981 commit 09555bd45a04c0e54f172528d21bc18896550d28
75982 Author: Grant Likely <grant.likely@secretlab.ca>
75983 Date:   Tue Jul 3 00:33:43 2007 -0600
75984
75985     Remove obsolete mpc8220 linker scripts
75986
75987     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75988
75989 commit 5efb992f046e51225c93d52f80fecbe433abd789
75990 Author: Grant Likely <grant.likely@secretlab.ca>
75991 Date:   Tue Jul 3 00:33:38 2007 -0600
75992
75993     Remove obsolete mpc5xxx linker scripts (3 of 3)
75994
75995     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75996
75997 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
75998 Author: Grant Likely <grant.likely@secretlab.ca>
75999 Date:   Tue Jul 3 00:33:33 2007 -0600
76000
76001     Remove obsolete mpc5xxx linker scripts (2 of 3)
76002
76003     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76004
76005 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
76006 Author: Grant Likely <grant.likely@secretlab.ca>
76007 Date:   Tue Jul 3 00:33:28 2007 -0600
76008
76009     Remove obsolete mpc5xxx linker scripts (1 of 3)
76010
76011     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76012
76013 commit b7d8e05f8675249b5f208aa73babeed384a4519d
76014 Author: Grant Likely <grant.likely@secretlab.ca>
76015 Date:   Tue Jul 3 00:33:23 2007 -0600
76016
76017     Remove obsolete mpc5xx linker scripts
76018
76019     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76020
76021 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
76022 Author: Grant Likely <grant.likely@secretlab.ca>
76023 Date:   Tue Jul 3 00:33:18 2007 -0600
76024
76025     Consolidate mpc83xx linker scripts
76026
76027     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76028
76029 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
76030 Author: Grant Likely <grant.likely@secretlab.ca>
76031 Date:   Tue Jul 3 00:33:13 2007 -0600
76032
76033     Consolidate mpc8260 linker scripts
76034
76035     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76036
76037 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
76038 Author: Grant Likely <grant.likely@secretlab.ca>
76039 Date:   Tue Jul 3 00:33:08 2007 -0600
76040
76041     Consolidate mpc824x linker scripts
76042
76043     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76044
76045 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
76046 Author: Grant Likely <grant.likely@secretlab.ca>
76047 Date:   Tue Jul 3 00:33:03 2007 -0600
76048
76049     Consolidate mpc8220 linker scripts
76050
76051     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76052
76053 commit d181c9a15cd41863fe24840d17848429f27d3c8c
76054 Author: Grant Likely <grant.likely@secretlab.ca>
76055 Date:   Tue Jul 3 00:32:58 2007 -0600
76056
76057     Consolidate mpc5xxx linker scripts
76058
76059     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76060
76061 commit 287ac924adb7291bebe5086652a362a30ab28b13
76062 Author: Grant Likely <grant.likely@secretlab.ca>
76063 Date:   Tue Jul 3 00:32:53 2007 -0600
76064
76065     Consolidate mpc5xx linker scripts
76066
76067     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76068
76069 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
76070 Author: Wolfgang Denk <wd@denx.de>
76071 Date:   Wed Jul 4 00:43:53 2007 +0200
76072
76073     Fix a few file permission problems.
76074
76075     Signed-off-by: Wolfgang Denk <wd@denx.de>
76076
76077 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
76078 Author: Wolfgang Denk <wd@denx.de>
76079 Date:   Wed Jul 4 00:38:38 2007 +0200
76080
76081     Minor coding style cleanup. Rebuild CHANGELOG file.
76082
76083 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
76084 Author: Jon Loeliger <jdl@jdl.com>
76085 Date:   Mon Jun 11 19:03:44 2007 -0500
76086
76087     configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
76088
76089     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76090
76091 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
76092 Author: Jon Loeliger <jdl@jdl.com>
76093 Date:   Mon Jun 11 19:03:39 2007 -0500
76094
76095     README: Rewrite command line config to use CONFIG_CMD_* names.
76096
76097     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76098
76099 commit 72a074cec68e5bad60d63206c050974e08afd804
76100 Author: Jon Loeliger <jdl@jdl.com>
76101 Date:   Mon Jun 11 19:03:34 2007 -0500
76102
76103     include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76104
76105     This is a compatibility step that allows both the older form
76106     and the new form to co-exist for a while until the older can
76107     be removed entirely.
76108
76109     All transformations are of the form:
76110     Before:
76111         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76112     After:
76113         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76114
76115     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76116
76117 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
76118 Author: Jon Loeliger <jdl@jdl.com>
76119 Date:   Mon Jun 11 19:03:28 2007 -0500
76120
76121     tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76122
76123     This is a compatibility step that allows both the older form
76124     and the new form to co-exist for a while until the older can
76125     be removed entirely.
76126
76127     All transformations are of the form:
76128     Before:
76129         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76130     After:
76131         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76132
76133     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76134
76135 commit 9107ebe0d352420895ab69b715697bdebc8caf50
76136 Author: Jon Loeliger <jdl@jdl.com>
76137 Date:   Mon Jun 11 19:03:23 2007 -0500
76138
76139     board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76140
76141     This is a compatibility step that allows both the older form
76142     and the new form to co-exist for a while until the older can
76143     be removed entirely.
76144
76145     All transformations are of the form:
76146     Before:
76147         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76148     After:
76149         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76150
76151     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76152
76153 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
76154 Author: Jon Loeliger <jdl@jdl.com>
76155 Date:   Mon Jun 11 19:03:19 2007 -0500
76156
76157     board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76158
76159     This is a compatibility step that allows both the older form
76160     and the new form to co-exist for a while until the older can
76161     be removed entirely.
76162
76163     All transformations are of the form:
76164     Before:
76165         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76166     After:
76167         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76168
76169     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76170
76171 commit 737184114ec9c9e0ab94d6713536126073bd2472
76172 Author: Jon Loeliger <jdl@jdl.com>
76173 Date:   Mon Jun 11 19:03:15 2007 -0500
76174
76175     cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76176
76177     This is a compatibility step that allows both the older form
76178     and the new form to co-exist for a while until the older can
76179     be removed entirely.
76180
76181     All transformations are of the form:
76182     Before:
76183         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76184     After:
76185         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76186
76187     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76188
76189 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
76190 Author: Jon Loeliger <jdl@jdl.com>
76191 Date:   Mon Jun 11 19:03:08 2007 -0500
76192
76193     cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76194
76195     This is a compatibility step that allows both the older form
76196     and the new form to co-exist for a while until the older can
76197     be removed entirely.
76198
76199     All transformations are of the form:
76200     Before:
76201         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76202     After:
76203         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76204
76205     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76206
76207 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
76208 Author: Jon Loeliger <jdl@jdl.com>
76209 Date:   Mon Jun 11 19:03:03 2007 -0500
76210
76211     lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76212
76213     This is a compatibility step that allows both the older form
76214     and the new form to co-exist for a while until the older can
76215     be removed entirely.
76216
76217     All transformations are of the form:
76218     Before:
76219         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76220     After:
76221         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76222
76223     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76224
76225 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
76226 Author: Jon Loeliger <jdl@jdl.com>
76227 Date:   Mon Jun 11 19:02:58 2007 -0500
76228
76229     lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76230
76231     This is a compatibility step that allows both the older form
76232     and the new form to co-exist for a while until the older can
76233     be removed entirely.
76234
76235     All transformations are of the form:
76236     Before:
76237         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76238     After:
76239         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76240
76241     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76242
76243 commit 98b79003c21c2578206003256de4e781d6b36ca8
76244 Author: Jon Loeliger <jdl@jdl.com>
76245 Date:   Mon Jun 11 19:02:53 2007 -0500
76246
76247     rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76248
76249     This is a compatibility step that allows both the older form
76250     and the new form to co-exist for a while until the older can
76251     be removed entirely.
76252
76253     All transformations are of the form:
76254     Before:
76255         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76256     After:
76257         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76258
76259     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76260
76261 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
76262 Author: Jon Loeliger <jdl@jdl.com>
76263 Date:   Mon Jun 11 19:02:49 2007 -0500
76264
76265     net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76266
76267     This is a compatibility step that allows both the older form
76268     and the new form to co-exist for a while until the older can
76269     be removed entirely.
76270
76271     All transformations are of the form:
76272     Before:
76273         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76274     After:
76275         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76276
76277     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76278
76279 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
76280 Author: Jon Loeliger <jdl@jdl.com>
76281 Date:   Mon Jun 11 19:02:34 2007 -0500
76282
76283     disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76284
76285     This is a compatibility step that allows both the older form
76286     and the new form to co-exist for a while until the older can
76287     be removed entirely.
76288
76289     All transformations are of the form:
76290     Before:
76291         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76292     After:
76293         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76294
76295     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76296
76297 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
76298 Author: Jon Loeliger <jdl@jdl.com>
76299 Date:   Mon Jun 11 19:02:20 2007 -0500
76300
76301     fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76302
76303     This is a compatibility step that allows both the older form
76304     and the new form to co-exist for a while until the older can
76305     be removed entirely.
76306
76307     All transformations are of the form:
76308     Before:
76309         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76310     After:
76311         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76312
76313     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76314
76315 commit d5be43de93ff905c465e509d45a3164ef48d26e7
76316 Author: Jon Loeliger <jdl@jdl.com>
76317 Date:   Mon Jun 11 19:02:10 2007 -0500
76318
76319     drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76320
76321     This is a compatibility step that allows both the older form
76322     and the new form to co-exist for a while until the older can
76323     be removed entirely.
76324
76325     All transformations are of the form:
76326     Before:
76327         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76328     After:
76329         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76330
76331     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76332
76333 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
76334 Author: Jon Loeliger <jdl@jdl.com>
76335 Date:   Mon Jun 11 19:02:05 2007 -0500
76336
76337     common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76338
76339     This is a compatibility step that allows both the older form
76340     and the new form to co-exist for a while until the older can
76341     be removed entirely.
76342
76343     All transformations are of the form:
76344     Before:
76345         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76346     After:
76347         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76348
76349     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76350
76351 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
76352 Author: Jon Loeliger <jdl@jdl.com>
76353 Date:   Mon Jun 11 19:01:54 2007 -0500
76354
76355     common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76356
76357     This is a compatibility step that allows both the older form
76358     and the new form to co-exist for a while until the older can
76359     be removed entirely.
76360
76361     All transformations are of the form:
76362     Before:
76363         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76364     After:
76365         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76366
76367     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76368
76369 commit a76adc8142c1d956385a109e0b70f9319ede4d66
76370 Author: Jon Loeliger <jdl@jdl.com>
76371 Date:   Mon Jun 11 19:01:43 2007 -0500
76372
76373     common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76374
76375     This is a compatibility step that allows both the older form
76376     and the new form to co-exist for a while until the older can
76377     be removed entirely.
76378
76379     All transformations are of the form:
76380     Before:
76381         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76382     After:
76383         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76384
76385     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76386
76387 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
76388 Author: Jon Loeliger <jdl@jdl.com>
76389 Date:   Mon Jun 11 19:01:34 2007 -0500
76390
76391     Introduce initial versions of new Command Config files.
76392
76393     Derive three new files from cmd_confdefs.h:
76394         config_bootp.h - Has BOOTP related config options, not commands
76395         config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
76396         config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
76397
76398     For now, include "config_bootp.h" for compatability until all
76399     users of it directly include it properly.
76400
76401     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76402
76403 commit 1f2a05898658900dc5717761e27abf2052e67e13
76404 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
76405 Date:   Sat Jun 30 18:50:48 2007 +0200
76406
76407     Fix S-ATA support.
76408
76409     Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
76410
76411 commit a5d71e290f3673269be8eefb4ec44f53412f9461
76412 Author: Heiko Schocher <hs@pollux.denx.de>
76413 Date:   Mon Jun 25 19:11:37 2007 +0200
76414
76415     [PCS440EP]  get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
76416
76417     Signed-off-by: Heiko Schocher <hs@denx.de>
76418
76419 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
76420 Author: Niklaus Giger <niklaus.giger@nestal.com>
76421 Date:   Mon Jun 25 17:03:13 2007 +0200
76422
76423     ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
76424
76425     This patch prints the DDR status registers upon machine check
76426     interrupt on the 440EPx/GRx. This can be useful especially when
76427     ECC support is enabled.
76428
76429     I added some small changes to the original patch from Niklaus to
76430     make it compile clean.
76431
76432     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
76433     Signed-off-by: Stefan Roese <sr@denx.de>
76434
76435 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
76436 Author: Niklaus Giger <niklaus.giger@nestal.com>
76437 Date:   Mon Jun 25 16:50:55 2007 +0200
76438
76439     ppc4xx: Fix O=buildir builds
76440
76441     This patch fixes the problem to assemble cpu/ppc4xx/start.S
76442     experienced last week where building failed having specified
76443     O=../build.sequoia.
76444
76445     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
76446
76447 commit 466fff1a7bb5fe764a06450626f6098219f446b8
76448 Author: Stefan Roese <sr@denx.de>
76449 Date:   Mon Jun 25 15:57:39 2007 +0200
76450
76451     ppc4xx: Add pci_pre_init() for 405 boards
76452
76453     This patch removes the CFG_PCI_PRE_INIT option completely, since
76454     it's not needed anymore with the patch from Matthias Fuchs with
76455     the "weak" pci_pre_init() implementation.
76456
76457     Signed-off-by: Stefan Roese <sr@denx.de>
76458
76459 commit 6f35c53166213c24a5a0e2390ed861136ff73870
76460 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
76461 Date:   Sun Jun 24 17:41:21 2007 +0200
76462
76463     ppc4xx: Maintenance patch for esd's CPCI405 derivats
76464
76465     -add pci_pre_init() for pci interrupt fixup code
76466     -disable phy sleep mode via reset_phy() function
76467     -use correct io accessors
76468     -cleanup
76469
76470     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
76471
76472 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
76473 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
76474 Date:   Sun Jun 24 17:23:41 2007 +0200
76475
76476     ppc4xx: Add pci_pre_init() for 405 boards
76477
76478     This patch adds support for calling a plattform dependant
76479     pci_pre_init() function for 405 boards. This can be used to
76480     move the current pci_405gp_fixup_irq() function into the
76481     board code.
76482
76483     This patch also makes the CFG_PCI_PRE_INIT define obsolete.
76484     A default function with 'weak' attribute is used when
76485     a board specific pci_pre_init() is not implemented.
76486
76487     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
76488
76489 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
76490 Author: Wolfgang Denk <wd@denx.de>
76491 Date:   Fri Jun 22 23:59:00 2007 +0200
76492
76493     Coding stylke cleanup; rebuild CHANGELOG
76494
76495 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
76496 Author: Igor Lisitsin <igor@emcraft.com>
76497 Date:   Wed Apr 18 14:55:19 2007 +0400
76498
76499     Adapt log buffer code to support Linux 2.6
76500
76501     A new environment variable, "logversion", selects the log buffer
76502     behaviour. If it is not set or set to a value other than 2, then the
76503     old, Linux 2.4.4, behaviour is selected.
76504
76505     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
76506     --
76507
76508 commit a11e06965ec91270c51853407ff1261d3c740386
76509 Author: Igor Lisitsin <igor@emcraft.com>
76510 Date:   Wed Mar 28 19:06:19 2007 +0400
76511
76512     Extend POST support for PPC440
76513
76514     Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
76515
76516     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
76517     --
76518
76519 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
76520 Author: Heiko Schocher <hs@pollux.denx.de>
76521 Date:   Fri Jun 22 19:11:54 2007 +0200
76522
76523     [PCS440EP]      upgrade the PCS440EP board:
76524                     - Show on the Status LEDs, some States of the board.
76525                     - Get the MAC addresses from the EEProm
76526                     - use PREBOOT
76527                     - use the CF on the board.
76528                     - check the U-Boot image in the Flash with a SHA1
76529                       checksum.
76530                     - use dynamic TLB entries generation for the SDRAM
76531
76532     Signed-off-by: Heiko Schocher <hs@denx.de>
76533
76534 commit 3a1f5c81b0b9557817a789bece839905581c2205
76535 Author: Stefan Roese <sr@denx.de>
76536 Date:   Fri Jun 22 16:58:40 2007 +0200
76537
76538     ppc4xx: Fix problem with extended program_tlb() funtion
76539
76540     The recently extended program_tlb() function had a problem when
76541     multiple TLB's had to be setup (for example with 512MB of SDRAM). The
76542     virtual address was not incremented. This patch fixes this issue
76543     and is tested on Katmai with 512MB SDRAM.
76544
76545     Signed-off-by: Stefan Roese <sr@denx.de>
76546
76547 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
76548 Author: Rafal Jaworowski <raj@semihalf.com>
76549 Date:   Fri Jun 22 14:58:04 2007 +0200
76550
76551     [ppc] Fix build breakage for all non-4xx PowerPC variants.
76552
76553     - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
76554     - minor 4xx cleanup
76555
76556 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
76557 Author: Mike Frysinger <vapier@gentoo.org>
76558 Date:   Fri Jun 22 10:34:12 2007 +0200
76559
76560     [patch] add nand_init() prototype to nand.h
76561
76562     since nand_init() is expected to be called by other parts of u-boot, there
76563     should be a prototype for it in nand.h
76564
76565     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
76566     Signed-off-by: Stefan Roese <sr@denx.de>
76567
76568 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
76569 Author: Wolfgang Denk <wd@denx.de>
76570 Date:   Wed Jun 20 18:14:24 2007 +0200
76571
76572     Coding style cleanup. Refresh CHANGELOG.
76573
76574 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
76575 Author: Stefan Roese <sr@denx.de>
76576 Date:   Tue Jun 19 17:22:44 2007 +0200
76577
76578     ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
76579
76580     This patch adds a board command to configure the I2C bootstrap EEPROM
76581     values. Right now 533 and 667MHz are supported for booting either via NOR
76582     or NAND FLASH. Here the usage:
76583
76584     => bootstrap 533 nor        ;to configure the board for 533MHz NOR booting
76585     => bootstrap 667 nand       ;to configure the board for 667MHz NNAND booting
76586
76587     Signed-off-by: Stefan Roese <sr@denx.de>
76588
76589 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
76590 Author: Stefan Roese <sr@denx.de>
76591 Date:   Tue Jun 19 16:42:31 2007 +0200
76592
76593     [ppc4xx] Fix problem with NAND booting on AMCC Acadia
76594
76595     The latest changes showed a problem with the location of the NAND-SPL
76596     image in the OCM and the init-data area (incl. cache). This patch
76597     fixes this problem.
76598
76599     Signed-off-by: Stefan Roese <sr@denx.de>
76600
76601 commit 86ba99e34194394052d24c04dc40d1263d29a26f
76602 Author: Stefan Roese <sr@denx.de>
76603 Date:   Tue Jun 19 16:40:58 2007 +0200
76604
76605     [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
76606
76607     Signed-off-by: Stefan Roese <sr@denx.de>
76608
76609 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
76610 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
76611 Date:   Mon Jun 18 13:50:13 2007 -0500
76612
76613     Added M5329AFEE and M5329BFEE Platforms
76614
76615     Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
76616     drivers/serial,  immap_5329.h, m5329.h, mcfrtc.h,
76617     include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
76618     rtc/mcfrtc.c
76619
76620     Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
76621     common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
76622     include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
76623     include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
76624     include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
76625     lib_m68k/time.c, net/eth.c and rtc/Makefile
76626
76627     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
76628
76629 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
76630 Author: Michal Simek <monstr@monstr.eu>
76631 Date:   Sun Jun 17 19:04:11 2007 +0200
76632
76633     [fix] email reparation
76634
76635 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
76636 Author: Michal Simek <monstr@monstr.eu>
76637 Date:   Sun Jun 17 19:03:21 2007 +0200
76638
76639     [FIX] fix microblaze file permitission
76640
76641 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
76642 Author: Stefan Roese <sr@denx.de>
76643 Date:   Fri Jun 15 11:33:41 2007 +0200
76644
76645     [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
76646
76647     Now CONFIG_440 has to be defined in all PPC440 board config files.
76648
76649     Signed-off-by: Stefan Roese <sr@denx.de>
76650
76651 commit efa35cf12d914d4caba942acd5a6c45f217de302
76652 Author: Grzegorz Bernacki <gjb@semihalf.com>
76653 Date:   Fri Jun 15 11:19:28 2007 +0200
76654
76655     ppc4xx: Clean up 440 exceptions handling
76656
76657     - Introduced dedicated switches for building 440 and 405 images required
76658       for 440-specific machine instructions like 'rfmci' etc.
76659
76660     - Exception vectors moved to the proper location (_start moved away from
76661       the critical exception handler space, which it occupied)
76662
76663     - CriticalInput now serviced (with default handler)
76664
76665     - MachineCheck properly serviced (added a dedicated handler and return
76666       subroutine)
76667
76668     - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
76669       unhandled and those not relevant for 4xx were eliminated)
76670
76671     - Eliminated Linux leftovers, removed dead code
76672
76673     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
76674     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
76675     Signed-off-by: Stefan Roese <sr@denx.de>
76676
76677 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
76678 Author: Stefan Roese <sr@denx.de>
76679 Date:   Fri Jun 15 08:18:01 2007 +0200
76680
76681     [ppc4xx] Add initial lwmon5 board support
76682
76683     This patch adds initial support for the Liebherr lwmon5 board euqipped
76684     with an AMCC 440EPx PowerPC.
76685
76686     Signed-off-by: Stefan Roese <sr@denx.de>
76687
76688 commit 85f737376d5ff3d5f0d45a8b657686326d175307
76689 Author: Stefan Roese <sr@denx.de>
76690 Date:   Fri Jun 15 07:39:43 2007 +0200
76691
76692     [ppc4xx] Extend 44x GPIO setup with default output state
76693
76694     The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
76695     is extended with the default GPIO output state (level).
76696
76697     Signed-off-by: Stefan Roese <sr@denx.de>
76698
76699 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
76700 Author: Stefan Roese <sr@denx.de>
76701 Date:   Thu Jun 14 11:14:32 2007 +0200
76702
76703     [ppc4xx] Extend program_tlb() with virtual & physical addresses
76704
76705     Now program_tlb() allows to program a TLB (or multiple) with
76706     different virtual and physical addresses. With this change, now one
76707     physical region (e.g. SDRAM) can be mapped 2 times, once with caches
76708     diabled and once with caches enabled.
76709
76710     Signed-off-by: Stefan Roese <sr@denx.de>
76711
76712 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
76713 Author: Detlev Zundel <dzu@denx.de>
76714 Date:   Wed May 23 19:02:41 2007 +0200
76715
76716     Change 'repeatable' attribute of some commands to sensible values.
76717
76718     Most prominently this changes 'erase' to be non-repeatable.
76719
76720     Signed-off-by: Detlev Zundel <dzu@denx.de>
76721
76722 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
76723 Author: Detlev Zundel <dzu@denx.de>
76724 Date:   Wed May 23 18:47:48 2007 +0200
76725
76726     Fix 'run' not to continue after interrupted command
76727
76728     Signed-off-by: Detlev Zundel <dzu@denx.de>
76729
76730 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
76731 Author: Jason Jin <Jason.jin@freescale.com>
76732 Date:   Mon Jun 11 15:14:24 2007 +0200
76733
76734     USB: This patch fix readl in ohci swap reg access.
76735
76736     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
76737
76738 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
76739 Author: Bartlomiej Sieka <tur@semihalf.com>
76740 Date:   Fri Jun 8 14:52:22 2007 +0200
76741
76742     TQM5200: Add Flat Device Tree support, update default env. accordingly.
76743
76744     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
76745     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
76746
76747 commit 9045f33c023f698660a2e45d1b2194c0711abebc
76748 Author: Wolfgang Denk <wd@denx.de>
76749 Date:   Fri Jun 8 10:24:58 2007 +0200
76750
76751     Fix config problems on SC3 board; make ide_reset_timeout work.
76752
76753 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
76754 Author: Benoît Monin <bmonin@adeneo.eu>
76755 Date:   Fri Jun 8 09:55:24 2007 +0200
76756
76757     [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
76758
76759     Set the correct value in GPIOx_TCR when configuring the gpio
76760     with CFG_440_GPIO_TABLE.
76761
76762     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
76763     Signed-off-by: Stefan Roese <sr@denx.de>
76764
76765 commit f539edc076cfe52bff919dd512ba8d7af0e22092
76766 Author: Vadim Bendebury <vbendeb@google.com>
76767 Date:   Thu May 24 15:52:25 2007 -0700
76768
76769     cosmetic changes to bcm570x driver
76770
76771     This is a cosmetic only changes submission.
76772     It affects files relevant to bcm570x driver.
76773     the commands used to generate this change was
76774
76775     cd drivers
76776     Lindent -pcs -l80  bcm570x.c   bcm570x_lm.h   bcm570x_mm.h  tigon3.c  tigon3.h
76777
76778     The BMW target (the only one using this chip so far) builds cleanly, the
76779     `before and after' generated object files for drivers/bcm570x.c and
76780     drivers/tigon3.o are identical as reported by objdump -d
76781
76782     Signed-off-by: Vadim Bendebury <vbendeb@google.com>
76783     Signed-off-by: Ben Warren <bwarren@qstreams.com>
76784
76785 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
76786 Author: Wolfgang Denk <wd@denx.de>
76787 Date:   Wed Jun 6 16:26:56 2007 +0200
76788
76789     Coding Style cleanup; generate new CHANGELOG file.
76790
76791     Signed-off-by: Wolfgang Denk <wd@denx.de>
76792
76793 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
76794 Author: Markus Klotzbuecher <mk@denx.de>
76795 Date:   Wed Jun 6 11:49:44 2007 +0200
76796
76797     TRAB, USB: update trab board configuration for use of generic ohci driver
76798
76799 commit dace45acd1c1357daa9322099d07c9a9e08b0024
76800 Author: Markus Klotzbuecher <mk@denx.de>
76801 Date:   Wed Jun 6 11:49:43 2007 +0200
76802
76803     USB: ohci fixes and cleanup for ppc4xx and yosemite board.
76804
76805 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
76806 Author: Markus Klotzbuecher <mk@denx.de>
76807 Date:   Wed Jun 6 11:49:43 2007 +0200
76808
76809     USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
76810
76811 commit fc43be478f2aa37ce38acd85355038866e4162af
76812 Author: Markus Klotzbuecher <mk@denx.de>
76813 Date:   Wed Jun 6 11:49:35 2007 +0200
76814
76815     USB/OHCI: endianness cleanup in the generic ohci driver
76816
76817 commit c440bfe6d6d92d66478a7e84402b31f48413617b
76818 Author: Stefan Roese <sr@denx.de>
76819 Date:   Wed Jun 6 11:42:13 2007 +0200
76820
76821     ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
76822
76823     This patch adds NAND booting support for the AMCC Acadia eval board.
76824
76825     Please make sure to configure jumper J7 to position 2-3 when booting
76826     from NOR, and to position 1-2 when booting for NAND.
76827
76828     I also added a board command to configure the I2C bootstrap EEPROM
76829     values. Right now only 267MHz is support for booting either via NOR
76830     or NAND FLASH. Here the usage:
76831
76832     => bootstrap 267 nor        ;to configure the board for 267MHz NOR booting
76833     => bootstrap 267 nand       ;to configure the board for 267MHz NNAND booting
76834
76835     Signed-off-by: Stefan Roese <sr@denx.de>
76836
76837 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
76838 Author: Rodolfo Giometti <giometti@linux.it>
76839 Date:   Wed Jun 6 10:08:14 2007 +0200
76840
76841     Files include/linux/byteorder/{big,little}_endian.h define
76842     __BIG_ENDIAN and __LITTLE_ENDIAN.
76843
76844     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
76845
76846 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
76847 Author: Zhang Wei <wei.zhang@freescale.com>
76848 Date:   Wed Jun 6 10:08:14 2007 +0200
76849
76850     Add USB PCI-OHCI, USB keyboard and event poll support to the
76851     MPC8641HPCN board config file.
76852
76853     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
76854
76855 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
76856 Author: Zhang Wei <wei.zhang@freescale.com>
76857 Date:   Wed Jun 6 10:08:14 2007 +0200
76858
76859     USB PCI-OHCI, interrupt pipe and usb event poll support
76860
76861     This patch added USB PCI-OHCI chips support, interrupt pipe support
76862     and usb event poll support. For supporting the USB interrupt pipe, the
76863     globe urb_priv is moved to purb in ed struct. Now, we can process
76864     several urbs at one time. The interrupt pipe support codes are ported
76865     from Linux kernel 2.4.
76866
76867     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
76868
76869 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
76870 Author: Zhang Wei <wei.zhang@freescale.com>
76871 Date:   Wed Jun 6 10:08:13 2007 +0200
76872
76873     USB event poll support
76874
76875     This patch adds USB event poll support, which could be used in usbkbd
76876     and other usb devices driver when the asynchronous interrupt
76877     processing is supported.
76878
76879     Signed-off-by: Zhang Wei <wei.zhang@freescale.com
76880
76881 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
76882 Author: Rodolfo Giometti <giometti@linux.it>
76883 Date:   Wed Jun 6 10:08:12 2007 +0200
76884
76885     ISP116x: delay for crappy USB keys
76886
76887     Using some (very) slow USB keys cause the USB host controller buffers
76888     are not ready to be read by the CPU so we need an extra delay before
76889     reading the USB storage data.
76890
76891     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
76892
76893 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
76894 Author: Markus Klotzbuecher <mk@denx.de>
76895 Date:   Wed Jun 6 10:08:12 2007 +0200
76896
76897     Change duplicate usb_cpu_init_fail to usb_board_init_fail
76898
76899     Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
76900     this out.
76901
76902     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
76903
76904 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
76905 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
76906 Date:   Tue Jun 5 12:30:52 2007 -0500
76907
76908     mpc8641 image size cleanup
76909
76910     e600 does not have a bootpg restriction.
76911     Move the version string to beginning of image at fff00000.
76912     Resetvec.S is not needed.
76913     Update flash copy instructions.
76914     Add tftpflash env variable
76915
76916     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
76917     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76918
76919 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
76920 Author: Benoît Monin <bmonin@adeneo.eu>
76921 Date:   Mon Jun 4 08:36:05 2007 +0200
76922
76923     [PATCH] Fix ppc4xx bootstrap letter displayed on startup
76924
76925     The attached patch is mainly cosmetic, allowing u-boot to
76926     display the correct bootstrap option letter according to the
76927     datasheets.
76928
76929     The original patch was extended with 405EZ support by Stefan
76930     Roese.
76931
76932     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
76933     Signed-off-by: Stefan Roese <sr@denx.de>
76934
76935 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
76936 Author: Nikita V. Youshchenko <yoush@debian.org>
76937 Date:   Wed May 23 12:45:19 2007 +0400
76938
76939     fix compilation problem for mpc8349itx CFG_RAMBOOT
76940
76941     Current include/configs/MPC8349ITX.h does contain some support for building
76942     image that will be started from memory (without putting in into flash).
76943     It could be triggered by building with TEXT_BASE set to a low value.
76944
76945     However, this support is incomplete: using of low TEXT_BASE causes
76946     defining configuration macros in inconsistent way, which later leads
76947     to compilation errors. In particular. flash support is being disabled,
76948     but then flash structures get referenced.
76949
76950     This patch fixes this, making it possible to build with low TEXT_BASE.
76951
76952     Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
76953
76954     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
76955
76956 commit 8a364f0970de49949d635e60accf463c6443ef8c
76957 Author: Nikita V. Youshchenko <yoush@debian.org>
76958 Date:   Wed May 23 12:45:25 2007 +0400
76959
76960     add missing 'console' var to default mpc8349itx config
76961
76962     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
76963
76964 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
76965 Author: Stefan Roese <sr@denx.de>
76966 Date:   Fri Jun 1 16:18:17 2007 +0200
76967
76968     ppc4xx: Add missing file for Bamboo NAND booting support
76969
76970     Signed-off-by: Stefan Roese <sr@denx.de>
76971
76972 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
76973 Author: Stefan Roese <sr@denx.de>
76974 Date:   Fri Jun 1 15:58:19 2007 +0200
76975
76976     ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
76977
76978     This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
76979     suggested by AMCC it is not recommended to dynamically change the EBC
76980     speed after bootup. So we undo this change to be on the safe side.
76981
76982     Signed-off-by: Stefan Roese <sr@denx.de>
76983
76984 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
76985 Author: Stefan Roese <sr@denx.de>
76986 Date:   Fri Jun 1 15:29:04 2007 +0200
76987
76988     ppc4xx: Update Sequoia NAND booting support with ECC
76989
76990     Signed-off-by: Stefan Roese <sr@denx.de>
76991
76992 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
76993 Author: Stefan Roese <sr@denx.de>
76994 Date:   Fri Jun 1 15:27:11 2007 +0200
76995
76996     ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
76997
76998     This patch adds NAND booting support for the AMCC Bamboo eval board.
76999     Since the NAND-SPL boot image is limited to 4kbytes, this version
77000     only supports the onboard 64MBytes of DDR. The DIMM modules can't be
77001     supported, since the setup code for I2C DIMM autodetection and
77002     configuration is too big for this NAND bootloader.
77003
77004     Signed-off-by: Stefan Roese <sr@denx.de>
77005
77006 commit 42be56f53c8b107868e6125c8524ae84293e95a7
77007 Author: Stefan Roese <sr@denx.de>
77008 Date:   Fri Jun 1 15:23:04 2007 +0200
77009
77010     NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
77011
77012     The U-Boot NAND booting support is now extended to support ECC
77013     upon loading of the NAND U-Boot image.
77014
77015     Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
77016
77017     Signed-off-by: Stefan Roese <sr@denx.de>
77018
77019 commit a471db07fbb65a841ffc9f4f112562b945230f98
77020 Author: Stefan Roese <sr@denx.de>
77021 Date:   Fri Jun 1 15:19:29 2007 +0200
77022
77023     ppc4xx: Prepare Bamboo port for NAND booting support
77024
77025     This patch updates the "normal" Bamboo NOR booting port, so
77026     that it is compatible with the coming soon NAND booting
77027     Bamboo port.
77028
77029     It also enables the 2nd NAND flash on the Bamboo.
77030
77031     Signed-off-by: Stefan Roese <sr@denx.de>
77032
77033 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
77034 Author: Stefan Roese <sr@denx.de>
77035 Date:   Fri Jun 1 15:16:58 2007 +0200
77036
77037     ppc4xx: Update in_be32() functions and friends to latest Linux version
77038
77039     Signed-off-by: Stefan Roese <sr@denx.de>
77040
77041 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
77042 Author: Stefan Roese <sr@denx.de>
77043 Date:   Fri Jun 1 15:15:12 2007 +0200
77044
77045     NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
77046
77047     This patch adds hardware ECC support to the NDFC driver. It also
77048     changes the register access from using the "simple" in32/out32
77049     functions to the in_be32/out_be32 functions, which make sure
77050     that the access is correctly synced. This is the only recommended
77051     access to SoC registers in the current Linux kernel.
77052
77053     Signed-off-by: Stefan Roese <sr@denx.de>
77054
77055 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
77056 Author: Stefan Roese <sr@denx.de>
77057 Date:   Fri Jun 1 15:12:15 2007 +0200
77058
77059     NAND: Update nand_ecc.c to latest Linux version
77060
77061     This patch updates the nand_ecc code to the latest Linux version.
77062     The main reason for this is the more compact code. This makes
77063     it possible to include the ECC code into the NAND bootloader
77064     image (NAND_SPL) for PPC4xx.
77065
77066     Signed-off-by: Stefan Roese <sr@denx.de>
77067
77068 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
77069 Author: Stefan Roese <sr@denx.de>
77070 Date:   Fri Jun 1 15:09:50 2007 +0200
77071
77072     ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
77073
77074     Signed-off-by: Stefan Roese <sr@denx.de>
77075
77076 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
77077 Author: Stefan Roese <sr@denx.de>
77078 Date:   Fri Jun 1 13:45:24 2007 +0200
77079
77080     ppc4xx: Change Luan config file to support ECC
77081
77082     With the updated 44x DDR2 driver the Luan board now supports
77083     ECC generation and checking.
77084
77085     Signed-off-by: Stefan Roese <sr@denx.de>
77086
77087 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
77088 Author: Stefan Roese <sr@denx.de>
77089 Date:   Fri Jun 1 13:45:00 2007 +0200
77090
77091     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
77092
77093     Add config option for 180 degree advance clock control as needed
77094     for the AMCC Luan eval board.
77095
77096     Signed-off-by: Stefan Roese <sr@denx.de>
77097
77098 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
77099 Author: Wolfgang Denk <wd@denx.de>
77100 Date:   Thu May 31 17:20:09 2007 +0200
77101
77102     Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
77103
77104     Signed-off-by: Wolfgang Denk <wd@denx.de>
77105
77106 commit 7049288fb1f16f1b317140226cdebd07bd416395
77107 Author: Bartlomiej Sieka <tur@semihalf.com>
77108 Date:   Sun May 27 17:26:46 2007 +0200
77109
77110     Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
77111
77112     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
77113
77114 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
77115 Author: Bartlomiej Sieka <tur@semihalf.com>
77116 Date:   Sun May 27 17:06:36 2007 +0200
77117
77118     Motion-PRO: Add support for redundant environment.
77119
77120     Enable redundant environment, add a MTD partition for it; also add env.
77121     variable command for passing MTD partitions to the kernel command line.
77122
77123     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
77124     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77125
77126 commit a26eabeec31746f06d309103690892805696e344
77127 Author: Bartlomiej Sieka <tur@semihalf.com>
77128 Date:   Sun May 27 17:05:11 2007 +0200
77129
77130     Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
77131
77132     Allow passing longer command line to the kernel - useful especially
77133     for passing MTD partition layout.
77134
77135     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
77136     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77137
77138 commit 9160b96f71483a116de81c68985e8ee306d36764
77139 Author: Bartlomiej Sieka <tur@semihalf.com>
77140 Date:   Sun May 27 17:04:18 2007 +0200
77141
77142     Fix: Add missing NULL termination in strings expanded by macros parser.
77143
77144     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
77145     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77146
77147 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
77148 Author: Bartlomiej Sieka <tur@semihalf.com>
77149 Date:   Sun May 27 17:03:37 2007 +0200
77150
77151     Motion-PRO: Update EEPROM's page write bits and write delay.
77152
77153     Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
77154     have a page write capability of two bytes", and "This device offers fast (1ms)
77155     byte write". Add 3ms of extra delay.
77156
77157     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
77158     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77159
77160 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
77161 Author: Bartlomiej Sieka <tur@semihalf.com>
77162 Date:   Sun May 27 16:58:45 2007 +0200
77163
77164     MPC5XXX, Motion-PRO: Fix PHY initialization problem.
77165
77166     After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
77167     networking does not function. This commit switches PHY to TX mode by clearing
77168     the FX_SEL bit of Mode Control Register. It also reverses commit
77169     008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
77170
77171     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
77172     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77173
77174 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
77175 Author: Bartlomiej Sieka <tur@semihalf.com>
77176 Date:   Sun May 27 16:57:15 2007 +0200
77177
77178     Motion-PRO: Add support for the temperature sensor.
77179
77180     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
77181     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77182
77183 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
77184 Author: Bartlomiej Sieka <tur@semihalf.com>
77185 Date:   Sun May 27 16:55:23 2007 +0200
77186
77187     Motion-PRO: Add displaying of CPLD revision information during boot.
77188
77189     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
77190     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77191
77192 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
77193 Author: Bartlomiej Sieka <tur@semihalf.com>
77194 Date:   Sun May 27 16:53:43 2007 +0200
77195
77196     MPC5xxx: Change names of defines related to IPB and PCI clocks.
77197
77198     Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
77199     them does not cause PCI or IPB clocks to run at the specified speed.
77200     Instead, they configure divisors used to calculate said clocks. This
77201     patch renames the defines according to their real function.
77202
77203     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
77204     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77205
77206 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
77207 Author: Bartlomiej Sieka <tur@semihalf.com>
77208 Date:   Sun May 27 16:51:48 2007 +0200
77209
77210     Motion-PRO: Add LED support.
77211
77212     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
77213     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
77214     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77215
77216 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
77217 Author: Ulf Samuelsson <ulf@atmel.com>
77218 Date:   Thu May 24 12:12:47 2007 +0200
77219
77220     [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
77221
77222     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
77223     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
77224     Signed-off-by: Stefan Roese <sr@denx.de>
77225
77226 commit d756894722c888d09a9fa1df8323753772d3dcce
77227 Author: Stefan Roese <sr@denx.de>
77228 Date:   Thu May 24 09:49:00 2007 +0200
77229
77230     ppc4xx: Fix small 405EZ OCM initilization bug in start.S
77231
77232     As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
77233     fixes a small bug in the 405EZ OCM initialization. Thanks for
77234     spotting.
77235
77236     Signed-off-by: Stefan Roese <sr@denx.de>
77237
77238 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
77239 Author: Stefan Roese <sr@denx.de>
77240 Date:   Thu May 24 08:22:09 2007 +0200
77241
77242     ppc4xx: Update AMCC Acadia support for board revision 1.1
77243
77244     This patch updates the Acadia (405EZ) support for the new 1.1 board
77245     revision. It also adds support for NAND FLASH via the 4xx NDFC.
77246
77247     Please note that the jumper J7 must be in position 2-3 for this
77248     NAND support. Position 1-2 is for NAND booting only. NAND booting
77249     support will follow later.
77250
77251     Signed-off-by: Stefan Roese <sr@denx.de>
77252
77253 commit 822d55365bb557e084d0e33625a6dedcc866110b
77254 Author: Jon Loeliger <jdl@freescale.com>
77255 Date:   Wed May 23 14:09:46 2007 -0500
77256
77257     Add LIST_86xx MAKEALL target for PowerPC builds.
77258
77259     Signed-off-by: Jon Loeliger <jdl@freescale.com>
77260
77261 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
77262 Author: Stefan Roese <sr@denx.de>
77263 Date:   Tue May 22 12:48:09 2007 +0200
77264
77265     ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
77266
77267     Signed-off-by: Stefan Roese <sr@denx.de>
77268
77269 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
77270 Author: Stefan Roese <sr@denx.de>
77271 Date:   Tue May 22 12:46:10 2007 +0200
77272
77273     ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
77274
77275     This patch adds support for 405 PPC's to the 4xx NAND driver
77276     ndfc.c. This is in preparation for the new AMCC 405EZ.
77277
77278     Signed-off-by: Stefan Roese <sr@denx.de>
77279
77280 commit 10603d76767426be803dadd4fb688b97eb69481c
77281 Author: Stefan Roese <sr@denx.de>
77282 Date:   Mon May 21 07:41:22 2007 +0200
77283
77284     ppc4xx: Fix problem in 405EZ OCM initialization
77285
77286     As spotted by Bruce Adler this patch fixes an initialization problem
77287     for the 405EZ OCM.
77288
77289     Signed-off-by: Stefan Roese <sr@denx.de>
77290
77291 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
77292 Author: Peter Pearse <peter.pearse@arm.com>
77293 Date:   Fri May 18 16:47:03 2007 +0100
77294
77295     Reduce line lengths to 80 characters max.
77296
77297 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
77298 Author: Peter Pearse <peter.pearse@arm.com>
77299 Date:   Fri May 18 14:34:07 2007 +0100
77300
77301     Makefile permissions
77302
77303 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
77304 Author: Peter Pearse <peter.pearse@arm.com>
77305 Date:   Fri May 18 14:33:11 2007 +0100
77306
77307     Makefile permissions
77308
77309 commit 255a3577c848706441daee0174543efe205a77f8
77310 Author: Kim Phillips <kim.phillips@freescale.com>
77311 Date:   Wed May 16 16:52:19 2007 -0500
77312
77313     Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
77314
77315     For all practical u-boot purposes, TSECs don't differ throughout the
77316     mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
77317
77318     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
77319
77320 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
77321 Author: Stefano Babic <sbabic@denx.de>
77322 Date:   Wed May 16 14:49:12 2007 +0200
77323
77324     Fix compile problem cause my Microblaze merge
77325
77326     Signed-off-by: Stefano Babic <sbabic@denx.de>
77327
77328 commit ada4697d0230d6da552867777f98a67ec3ba2579
77329 Author: Jeffrey Mann <mannj@embeddedplanet.com>
77330 Date:   Wed May 16 13:23:10 2007 +0200
77331
77332     [PATCH] Run new sequoia boards with an EBC speed of 83MHz
77333
77334     Because the Sequoia board does not boot with an EBC faster than 66MHz,
77335     the clock divider are changed after the initial boot process.
77336
77337     This allows for maximum clocking speeds  to be achieved on newer boards.
77338     Sequoia boards with 666.66 MHz processors require that the EBC divider
77339     be set to 3 in order to start the initial boot process at a slower EBC
77340     speed. After the initial boot process, the divider can be set back to 2,
77341     which will cause the boards to run at 83.333MHz. This is backward
77342     compatible with boards with 533.33 MHz processors, as these boards will
77343     already be set with an EBC divider of 2.
77344
77345     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
77346
77347 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
77348 Author: Wolfgang Denk <wd@denx.de>
77349 Date:   Wed May 16 01:16:53 2007 +0200
77350
77351     Minor Coding Style cleanup, update CHANGELOG.
77352
77353     Signed-off-by: Wolfgang Denk <wd@denx.de>
77354
77355 commit d62f64cc23a940eafe712c776b3249e4160753d1
77356 Author: Wolfgang Denk <wd@denx.de>
77357 Date:   Wed May 16 00:13:33 2007 +0200
77358
77359     Coding Style Cleanup, new CHANGELOG
77360
77361 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
77362 Author: Wolfgang Denk <wd@denx.de>
77363 Date:   Tue May 15 23:38:05 2007 +0200
77364
77365     Minor coding style cleanup.
77366
77367 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
77368 Author: mushtaq khan <mushtaq_k@procsys.com>
77369 Date:   Fri Apr 20 14:23:02 2007 +0530
77370
77371     Add driver for S-ATA-controller on Intel processors with South
77372     Bridge, ICH-5, ICH-6 and ICH-7.
77373
77374     Implementation:
77375
77376     1. Code is divided in to two files. All functions, which are
77377        controller specific are kept in "drivers/ata_piix.c" file and
77378        functions, which are not controller specific, are kept in
77379        "common/cmd_sata.c" file.
77380
77381     2. Reading and Writing from the S-ATA drive is done using PIO method.
77382
77383     3. Driver can be configured for 48-bit addressing by defining macro
77384        CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
77385        addressing.
77386
77387     4. S-ATA read function is hooked to the File system, commands like
77388        ext2ls and ext2load file can be used. This has been tested.
77389
77390     5. U-Boot command "SATA_init" is added, which initializes the S-ATA
77391        controller and identifies the S-ATA drives connected to it.
77392
77393     6. U-Boot command "sata" is added, which is used to read/write, print
77394        partition table and get info about the drives present. This I have
77395        implemented in same way as "ide" command is implemented in U-Boot.
77396
77397     7. This driver is for S-ATA in native mode.
77398
77399     8. This driver does not support the Native command queuing and
77400        Hot-plugging.
77401
77402     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
77403
77404 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
77405 Author: mushtaq khan <mushtaq_k@procsys.com>
77406 Date:   Mon Apr 30 15:57:22 2007 +0530
77407
77408     Fixes bug clearing the bss section for i386
77409
77410     Hi,
77411     There is a bug in the code of clearing the bss section for processor
77412     i386.(File: cpu/i386/start.S)
77413     In the code, bss_start addr (starting addr of bss section) is put into
77414     the register %eax, but the code which clears the bss section refers to
77415     the addr pointed by %edi.
77416
77417     This patch fixes this bug by putting bss_start into %edi register.
77418
77419     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
77420
77421 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
77422 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
77423 Date:   Mon Apr 30 16:47:28 2007 -0500
77424
77425     Add support for BCM5464 Quad Phy
77426
77427     Added support for Broadcom's BCM5464 Quad Phy
77428
77429     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
77430
77431 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
77432 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
77433 Date:   Wed May 9 08:10:57 2007 +0800
77434
77435     Search the exception table with linear algorithm
77436
77437     Search the exception table with linear algorithm instead of
77438     bisecting algorithm.
77439     Because the exception table might be unsorted.
77440
77441     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
77442
77443 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
77444 Author: Aubrey.Li <aubrey.adi@gmail.com>
77445 Date:   Mon May 14 11:47:35 2007 +0800
77446
77447     Fix compilation issues on MACOSX
77448
77449     Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
77450     Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
77451
77452 commit 56fd7162985c412317bbf763a225fba23c64fd31
77453 Author: Stephen Williams <steve@icarus.com>
77454 Date:   Tue May 15 07:55:42 2007 -0700
77455
77456     Fix for compile of JSE target
77457
77458     The attached patch fixes the compile of the JSE board in the
77459     denx git as of 14 may 2007. It is an extremely simple patch,
77460     it just adds the missing define of CFG_SYSTEMACE_WIDTH.
77461
77462      Fix to compile JSE against 20070514 git of u-boot
77463
77464 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
77465 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
77466 Date:   Sun May 13 21:01:03 2007 +0900
77467
77468     sh: MS7750SE support.
77469
77470     This adds support for the Hitachi MS7750SE.
77471
77472     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
77473
77474 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
77475 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
77476 Date:   Sun May 13 20:58:00 2007 +0900
77477
77478     sh: First support code of SuperH.
77479
77480     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
77481
77482 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
77483 Author: Stefan Roese <sr@denx.de>
77484 Date:   Fri May 11 12:01:49 2007 +0200
77485
77486     ppc4xx: Add mtcpr/mfcpr access macros
77487
77488     Signed-off-by: Stefan Roese <sr@denx.de>
77489
77490 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
77491 Author: Stefan Roese <sr@denx.de>
77492 Date:   Fri May 11 12:01:06 2007 +0200
77493
77494     ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
77495
77496     Signed-off-by: Stefan Roese <sr@denx.de>
77497
77498 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
77499 Author: Piotr Kruszynski <ppk@semihalf.com>
77500 Date:   Thu May 10 16:55:52 2007 +0200
77501
77502     [Motion-PRO] Add MTD and JFFS2 support, also add default partition
77503     definition.
77504
77505 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
77506 Author: Peter Pearse <peter.pearse@arm.com>
77507 Date:   Wed May 9 11:42:44 2007 +0100
77508
77509     Add the board directory for SMN42
77510
77511 commit 160131bf965785419626df6c388729fe0b597992
77512 Author: Peter Pearse <peter.pearse@arm.com>
77513 Date:   Wed May 9 11:41:58 2007 +0100
77514
77515     Add the files for the SMN42 board
77516
77517 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
77518 Author: Peter Pearse <peter.pearse@arm.com>
77519 Date:   Wed May 9 11:40:34 2007 +0100
77520
77521     Remove the deleted files for the SMN42 patch
77522
77523 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
77524 Author: Peter Pearse <peter.pearse@arm.com>
77525 Date:   Wed May 9 11:37:56 2007 +0100
77526
77527     New board SMN42 branch
77528
77529 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
77530 Author: Peter Pearse <peter.pearse@arm.com>
77531 Date:   Wed May 9 10:24:38 2007 +0100
77532
77533     Makefile permissions
77534
77535 commit b84289b595731e8851df46e893845cc1322c9b9b
77536 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
77537 Date:   Tue May 8 14:17:07 2007 -0500
77538
77539     8641hpcn: Fix Makefile after moving pixis to board/freescale.
77540
77541     The OBJTREE != SRCTREE build scenario was broken.
77542     This fixes it.
77543
77544     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
77545     Signed-off-by: Jon Loeliger <jdl@freescale.com>
77546
77547 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
77548 Author: Michal Simek <monstr@monstr.eu>
77549 Date:   Tue May 8 15:57:43 2007 +0200
77550
77551     add: reading special purpose registers
77552
77553 commit 1a50f164beb065f360fbddb76029607d6b099698
77554 Author: Michal Simek <monstr@monstr.eu>
77555 Date:   Tue May 8 14:52:52 2007 +0200
77556
77557     add: Microblaze V5 exception handling
77558
77559 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
77560 Author: Michal Simek <monstr@monstr.eu>
77561 Date:   Tue May 8 14:39:11 2007 +0200
77562
77563     add: FSL control read and write
77564
77565 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
77566 Author: Piotr Kruszynski <ppk@semihalf.com>
77567 Date:   Tue May 8 13:05:44 2007 +0200
77568
77569     [Motion-PRO] Add support for I2C, EEPROM and RTC.
77570
77571 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
77572 Author: Bartlomiej Sieka <tur@semihalf.com>
77573 Date:   Tue May 8 10:23:56 2007 +0200
77574
77575     [Motion-PRO] Add ATA support. Add CF-booting commands to the default
77576     environment.
77577
77578 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
77579 Author: Bartlomiej Sieka <tur@semihalf.com>
77580 Date:   Tue May 8 09:39:12 2007 +0200
77581
77582     [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
77583     eliminates networking problems in Linux (timeouts).
77584
77585 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
77586 Author: Bartlomiej Sieka <tur@semihalf.com>
77587 Date:   Tue May 8 09:21:57 2007 +0200
77588
77589     [Motion-PRO] Enable Flat Device Tree support and modify default environment
77590     to allow booting of FDT-expecting kernels.
77591
77592 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
77593 Author: Michal Simek <monstr@monstr.eu>
77594 Date:   Mon May 7 23:58:31 2007 +0200
77595
77596     new: USE_MSR_INTR support
77597
77598 commit 008861a2f3ef2c062744d733787c7e530a1b8761
77599 Author: Bartlomiej Sieka <tur@semihalf.com>
77600 Date:   Mon May 7 22:36:15 2007 +0200
77601
77602     [MPC5xxx] There are networking problems on the Motion-PRO board with
77603     current PHY initalization code (tftp timeouts all the time). This commit
77604     temporarily disables PHY initalization sequence to make the networking
77605     operational, until a fix is found.
77606
77607 commit abca901869c3760b6c5fecb825db6c1d91a78a93
77608 Author: Wolfgang Denk <wd@denx.de>
77609 Date:   Mon May 7 22:10:36 2007 +0200
77610
77611     Get rid of duplicated file (see include/configs/sbc8560.h instead)
77612
77613     Signed-off-by: Wolfgang Denk <wd@denx.de>
77614
77615 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
77616 Author: Wolfgang Denk <wd@denx.de>
77617 Date:   Mon May 7 22:07:08 2007 +0200
77618
77619     Get rid of duplicated file (see doc/README.SBC8560 instead)
77620
77621     Signed-off-by: Wolfgang Denk <wd@denx.de>
77622
77623 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
77624 Author: Michal Simek <monstr@monstr.eu>
77625 Date:   Mon May 7 19:43:10 2007 +0200
77626
77627     fix: read and write MSR - repair number of parameters
77628
77629 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
77630 Author: Jeffrey Mann <mannj@embeddedplanet.com>
77631 Date:   Mon May 7 19:42:49 2007 +0200
77632
77633     [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
77634
77635     A '3' got cut off in the formatting of the last patch to automatically
77636     change the clock speed of the system clock on sequoia board.
77637
77638     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
77639     Signed-off-by: Stefan Roese <sr@denx.de>
77640
77641 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
77642 Author: Michal Simek <monstr@monstr.eu>
77643 Date:   Mon May 7 19:33:51 2007 +0200
77644
77645     new: fsl interrupt support
77646     FSL_Has_data is connected to INTC.
77647
77648 commit 792032baa7d625e34c981ab6df521911bd8dc861
77649 Author: Michal Simek <monstr@monstr.eu>
77650 Date:   Mon May 7 19:30:12 2007 +0200
77651
77652     fix: interrupt handler
77653     remove asm code
77654
77655 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
77656 Author: Michal Simek <monstr@monstr.eu>
77657 Date:   Mon May 7 19:25:08 2007 +0200
77658
77659     fix: remove asm code
77660
77661 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
77662 Author: Michal Simek <monstr@monstr.eu>
77663 Date:   Mon May 7 19:12:43 2007 +0200
77664
77665     fix: clean interrupt
77666
77667 commit 42efed6130c8fcf7da881385b5427065d2801757
77668 Author: Michal Simek <monstr@monstr.eu>
77669 Date:   Mon May 7 17:22:25 2007 +0200
77670
77671     fix: interrupt handler for multiple sources
77672
77673 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
77674 Author: Michal Simek <monstr@monstr.eu>
77675 Date:   Mon May 7 17:11:09 2007 +0200
77676
77677     new: add writing to msr register
77678
77679 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
77680 Author: Markus Klotzbuecher <mk@denx.de>
77681 Date:   Mon May 7 16:43:56 2007 +0200
77682
77683     Fix an ancient CHANGELOG conflict
77684
77685 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
77686 Author: Timur Tabi <timur@freescale.com>
77687 Date:   Sat May 5 08:12:30 2007 +0200
77688
77689     5xxx: write MAC address to mac-address and local-mac-address
77690
77691     Some device trees have a mac-address property, some have local-mac-address,
77692     and some have both.  To support all of these device trees, ftp_cpu_setup()
77693     should write the MAC address to mac-address and local-mac-address, if they
77694     exist.
77695
77696     Signed-off-by: Timur Tabi <timur@freescale.com>
77697     Acked-by: Grant Likely <grant.likely@secretlab.ca>
77698
77699 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
77700 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
77701 Date:   Sun Apr 29 14:01:54 2007 +0200
77702
77703     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
77704
77705     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
77706     message. Use PVR to distinguish between the two variants, and print proper CPU
77707     information.
77708
77709     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
77710     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
77711     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
77712
77713 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
77714 Author: Ladislav Michl <ladis@linux-mips.org>
77715 Date:   Wed Apr 25 16:01:26 2007 +0200
77716
77717     [PATCH] simplify silent console
77718
77719     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
77720     Acked-by: Stefan Roese <sr@denx.de>
77721
77722 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
77723 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
77724 Date:   Mon Apr 23 15:30:39 2007 +0200
77725
77726     [PATCH] Avoid assigning PCI resources from zero address
77727
77728     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
77729     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
77730     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
77731     sentence about "0" being considered an invalid address) -- so, use a reasonable
77732     starting value of 0x1000 (that's what the most Linux archs are using).
77733
77734     Alternatively, one might have fixed the calls to pci_set_region() individually
77735     (some code even seems to have taken care of this issue) but that would have
77736     been a lot more work. :-)
77737
77738     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
77739     Acked-by: Stefan Roese <sr@denx.de>
77740
77741 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
77742 Author: Jeffrey Mann <mannj@embeddedplanet.com>
77743 Date:   Mon Apr 23 14:00:11 2007 +0200
77744
77745     [patch] setenv(...) can delete environmentalvariables
77746
77747     update setenv() function so that entering a NULL value for the
77748     variable's value will delete the environmental variable
77749
77750     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
77751     Acked-by: Stefan Roese <sr@denx.de>
77752
77753 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
77754 Author: Mike Frysinger <vapier@gentoo.org>
77755 Date:   Mon Apr 23 13:54:24 2007 +0200
77756
77757     [patch] use unsigned char in smc91111 driver for mac
77758
77759     the v_mac variable in the smc91111 driver is declared as a signed char ...
77760     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
77761     because when it gets printed out, you get a display like:
77762     0xFFFFFFE0 and that's no good
77763
77764     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
77765
77766 commit ffc50f9bb194343c6303517a517708457a5eb6b8
77767 Author: Michal Simek <monstr@monstr.eu>
77768 Date:   Sat May 5 18:54:42 2007 +0200
77769
77770     new: FSL and MSR support #2
77771
77772 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
77773 Author: Michal Simek <monstr@monstr.eu>
77774 Date:   Sat May 5 18:27:16 2007 +0200
77775
77776     new: FSL and MSR support
77777
77778 commit 2f15278c2eb911c668b4fe562130b78cf554d139
77779 Author: Wolfgang Denk <wd@denx.de>
77780 Date:   Sat May 5 18:23:11 2007 +0200
77781
77782     Coding stylke cleanup; update CHANGELOG.
77783
77784     Signed-off-by: Wolfgang Denk <wd@denx.de>
77785
77786 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
77787 Author: Wolfgang Denk <wd@denx.de>
77788 Date:   Sat May 5 18:05:02 2007 +0200
77789
77790     Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
77791
77792     Signed-off-by: Wolfgang Denk <wd@denx.de>
77793
77794 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
77795 Author: Wolfgang Denk <wd@denx.de>
77796 Date:   Sat May 5 17:15:50 2007 +0200
77797
77798     Make "file" command happy with some config.mk files; update CHANGELOG
77799
77800 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
77801 Author: Jeffrey Mann <mannj@embeddedplanet.com>
77802 Date:   Sat May 5 08:32:14 2007 +0200
77803
77804     ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
77805
77806     The AMCC Secquoia board has been changed in a new revision from using a
77807     33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
77808     indicates the difference. This patch reads that bit and uses the correct
77809     clock speed for the board. This code is backward compatable will all
77810     prior boards. All prior boards will be read as 33.000.
77811
77812     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
77813     Signed-off-by: Stefan Roese <sr@denx.de>
77814
77815 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
77816 Author: Stefan Roese <sr@denx.de>
77817 Date:   Sat May 5 08:29:01 2007 +0200
77818
77819     ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
77820
77821     Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
77822     for the 4k NAND boot image so define bus_frequency to 133MHz here
77823     which is save for the refresh counter setup.
77824
77825     Signed-off-by: Stefan Roese <sr@denx.de>
77826
77827 commit 2f550ab976405300f5b07bf2890800840d0aa05f
77828 Author: Timur Tabi <timur@freescale.com>
77829 Date:   Sat May 5 08:12:30 2007 +0200
77830
77831     5xxx: write MAC address to mac-address and local-mac-address
77832
77833     Some device trees have a mac-address property, some have local-mac-address,
77834     and some have both.  To support all of these device trees, ftp_cpu_setup()
77835     should write the MAC address to mac-address and local-mac-address, if they
77836     exist.
77837
77838     Signed-off-by: Timur Tabi <timur@freescale.com>
77839     Acked-by: Grant Likely <grant.likely@secretlab.ca>
77840
77841 commit a79886590593ba1d667c840caa4940c61639f18f
77842 Author: Thomas Knobloch <knobloch@siemens.com>
77843 Date:   Sat May 5 07:04:42 2007 +0200
77844
77845     NAND: Wrong calculation of page number in nand_block_bad()
77846
77847     In case that there is no memory based bad block table available the
77848     function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
77849     nand_block_bad() directly. When parameter 'getchip' is set to zero,
77850     nand_block_bad() will not right shift the offset to calculate the
77851     correct page number.
77852
77853     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
77854     Signed-off-by: Stefan Roese <sr@denx.de>
77855
77856 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
77857 Author: Wolfgang Denk <wd@denx.de>
77858 Date:   Fri May 4 10:02:33 2007 +0200
77859
77860     Fix initrd length corruption in bootm command.
77861
77862     When using FDT Images, the length of an inital ramdisk was
77863     overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
77864
77865     Patches by Timur Tabi & Johns Daniel.
77866
77867     Signed-off-by: Wolfgang Denk <wd@denx.de>
77868
77869 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
77870 Author: Kim Phillips <kim.phillips@freescale.com>
77871 Date:   Thu May 3 19:43:52 2007 -0500
77872
77873     mpc83xx: fix trivial error in MAKEALL
77874
77875     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
77876
77877 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
77878 Author: Wolfgang Denk <wd@denx.de>
77879 Date:   Thu May 3 16:34:41 2007 +0200
77880
77881     Update board configuration for STX GP3SSA board:
77882
77883     Enable hush shell, environment in flash rather in EEPROM,
77884     more user-friendly default environment, etc.
77885     The simple EEPROM environment can be selected easily in the board
77886     config file.
77887
77888     Signed-off-by: Wolfgang Denk <wd@denx.de>
77889
77890 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
77891 Author: Wolfgang Denk <wd@denx.de>
77892 Date:   Tue Apr 24 14:37:49 2007 +0200
77893
77894     Cleanup STX GP3SSA code; fix build and compile problems.
77895
77896 commit 35171dc04e028ecacc23ad916a66295472555dbf
77897 Author: Dan Malek <dan@embeddedalley.com>
77898 Date:   Fri Jan 5 09:15:34 2007 +0100
77899
77900     Add support for STX GP3SSA (stxssa) Board
77901
77902     Signed-off-by Dan Malek, <dan@embeddedalley.com>
77903
77904 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
77905 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
77906 Date:   Wed May 2 13:31:53 2007 +0200
77907
77908     macb: Don't restart autonegotiation if we already have link
77909
77910     Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
77911     link is already up.
77912
77913     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
77914
77915 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
77916 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
77917 Date:   Wed May 2 13:22:38 2007 +0200
77918
77919     macb: Introduce a few barriers when dealing with DMA descriptors
77920
77921     There were a few theoretical possibilities that the compiler might
77922     optimize away DMA descriptor reads and/or writes and thus cause
77923     synchronization problems with the hardware. Insert barriers where
77924     we depend on reads/writes actually hitting memory.
77925
77926     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
77927
77928 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
77929 Author: Andy Fleming <afleming@freescale.com>
77930 Date:   Sat Feb 24 01:08:13 2007 -0600
77931
77932     Cleaned up some 85xx PCI bugs
77933
77934     * Cleaned up the CDS PCI Config Tables and added NULL entries to
77935       the end
77936     * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
77937     * Fixed 85xx PCI code to assign powar region sizes based on the
77938       config values (rather than hard-coding them)
77939     * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
77940
77941     Signed-off-by: Andy Fleming <afleming@freescale.com>
77942
77943 commit 6743105988fc44d5b0d30388c790607835aae7a6
77944 Author: Andy Fleming <afleming@freescale.com>
77945 Date:   Mon Apr 23 02:54:25 2007 -0500
77946
77947     Add support for the 8568 MDS board
77948
77949     This included some changes to common files:
77950     * Add 8568 processor SVR to various places
77951     * Add support for setting the qe bus-frequency value in the dts
77952     * Add the 8568MDS target to the Makefile
77953
77954     Signed-off-by: Andy Fleming <afleming@freescale.com>
77955
77956 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
77957 Author: David Updegraff <dave@cray.com>
77958 Date:   Fri Apr 20 14:34:48 2007 -0500
77959
77960     Add support for treating unknown PHYs as generic PHYs.
77961
77962     When bringing up u-boot on new boards, PHY support sometimes gets
77963     neglected.  Most PHYs don't really need any special support,
77964     though.  By adding a generic entry that always matches if nothing
77965     else does, we can provide support for "unsupported" PHYs for the
77966     tsec.
77967
77968     The generic PHY driver supports most PHYs, including gigabit.
77969
77970     Signed-off-by: David Updegraff <dave@cray.com>
77971     Signed-off-by: Andy Fleming <afleming@freescale.com>
77972
77973 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
77974 Author: James Yang <James.Yang@freescale.com>
77975 Date:   Wed Feb 7 15:28:04 2007 -0600
77976
77977     Conditionalize 8641 Rev1.0 MCM workarounds
77978
77979     Signed-off-by: James Yang <James.Yang@freescale.com>
77980     Signed-off-by: Jon Loeliger <jdl@freescale.com>
77981
77982 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
77983 Author: Timur Tabi <timur@freescale.com>
77984 Date:   Mon Apr 30 13:59:50 2007 -0500
77985
77986     Fix memory initialization on MPC8349E-mITX
77987
77988     Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
77989     This allows ddr->sdram_clk_cntl to be properly initialized.  This is necessary
77990     on some ITX boards, notably those with a revision 3.1 CPU.
77991
77992     Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
77993     ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
77994
77995     Signed-off-by: Timur Tabi <timur@freescale.com>
77996     Acked-by: Michael Benedict <MBenedict@twacs.com>
77997     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
77998
77999 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
78000 Author: Kim Phillips <kim.phillips@freescale.com>
78001 Date:   Mon Apr 30 15:26:21 2007 -0500
78002
78003     mpc83xx: replace elaborate boottime verbosity with 'clocks' command
78004
78005     and fix CPU: to align with Board: display text.
78006
78007     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
78008
78009 commit c1ab82669d9525998c34e802a12cad662723f22a
78010 Author: James Yang <James.Yang@freescale.com>
78011 Date:   Fri Mar 16 13:02:53 2007 -0500
78012
78013     Rewrote picos_to_clk() to avoid rounding errors.
78014     Clarified that conversion is to DRAM clocks rather than platform clocks.
78015     Made function static to spd_sdram.c.
78016
78017     Signed-off-by: James Yang <James.Yang@freescale.com>
78018     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78019
78020 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
78021 Author: Stefan Roese <sr@denx.de>
78022 Date:   Sun Apr 29 14:13:01 2007 +0200
78023
78024     ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
78025
78026     Signed-off-by: Stefan Roese <sr@denx.de>
78027
78028 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
78029 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
78030 Date:   Sun Apr 29 14:01:54 2007 +0200
78031
78032     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
78033
78034     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
78035     message. Use PVR to distinguish between the two variants, and print proper CPU
78036     information.
78037
78038     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
78039     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
78040     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
78041
78042 commit 5c5d3242935cf3543af01142627494434834cf98
78043 Author: Kim Phillips <kim.phillips@freescale.com>
78044 Date:   Wed Apr 25 12:34:38 2007 -0500
78045
78046     mpc83xx: minor fixups for 8313rdb introduction
78047
78048 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
78049 Author: Ladislav Michl <ladis@linux-mips.org>
78050 Date:   Wed Apr 25 16:01:26 2007 +0200
78051
78052     [PATCH] simplify silent console
78053
78054     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
78055     Acked-by: Stefan Roese <sr@denx.de>
78056
78057 commit 144876a380f5756f57412caf74c1d6dc201dd796
78058 Author: Michal Simek <monstr@monstr.eu>
78059 Date:   Tue Apr 24 23:01:02 2007 +0200
78060
78061     [PATCH] MTD partition support, JFFS2 support
78062
78063 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
78064 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
78065 Date:   Tue Apr 24 14:03:45 2007 +0200
78066
78067     ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
78068
78069     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
78070
78071 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
78072 Author: Andy Fleming <afleming@freescale.com>
78073 Date:   Mon Apr 23 02:37:47 2007 -0500
78074
78075     Reworked 85xx speed detection code
78076
78077     Changed the code to read the registers and calculate the clock
78078     rates, rather than using a "switch" statement.
78079
78080     Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
78081
78082     Signed-off-by: Andy Fleming <afleming@freescale.com>
78083
78084 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
78085 Author: Andy Fleming <afleming@freescale.com>
78086 Date:   Mon Apr 23 02:24:28 2007 -0500
78087
78088     Enable 8544 support
78089
78090     * Add support to the Makefile
78091     * Add 8544 configuration support to the tsec driver
78092     * Add 8544 SVR numbers to processor.h
78093
78094     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78095     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78096
78097 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
78098 Author: Andy Fleming <afleming@freescale.com>
78099 Date:   Fri Feb 23 17:12:25 2007 -0600
78100
78101     Support 1G size on 8548
78102
78103     e500v2 and newer cores support 1G page sizes.
78104
78105     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78106     Signed-off-by: Andy Fleming <afleming@freescale.com>
78107
78108 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
78109 Author: Andy Fleming <afleming@freescale.com>
78110 Date:   Fri Feb 23 17:11:16 2007 -0600
78111
78112     Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
78113
78114     The other pagesz constants use one letter to specify order of
78115     magnitude.  Also change the one reference to it in mpc8548cds/init.S
78116
78117     Signed-off-by: Andy Fleming <afleming@freescale.com>
78118
78119 commit 1f9a318cea14272edd10d63739e2d326c90f430e
78120 Author: Andy Fleming <afleming@freescale.com>
78121 Date:   Fri Feb 23 16:28:46 2007 -0600
78122
78123     Only set ddrioovcr for 8548 rev1.
78124
78125     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78126     Signed-off-by: Andy Fleming <afleming@freescale.com>
78127
78128 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
78129 Author: Andy Fleming <afleming@freescale.com>
78130 Date:   Sat Feb 24 01:16:45 2007 -0600
78131
78132     Tweak DDR ECC error counter
78133
78134     Enable single-bit error counter when memory was cleared by ddr controller.
78135
78136     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78137     Signed-off-by: Andy Fleming <afleming@freescale.com>
78138
78139 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
78140 Author: Timur Tabi <timur@freescale.com>
78141 Date:   Mon Feb 12 13:34:55 2007 -0600
78142
78143     85xx: write MAC address to mac-address and local-mac-address
78144
78145     Some device trees have a mac-address property, some have local-mac-address,
78146     and some have both.  To support all of these device trees, ftp_cpu_setup()
78147     should write the MAC address to mac-address and local-mac-address, if they
78148     exist.
78149
78150     Signed-off-by: Timur Tabi <timur@freescale.com>
78151
78152 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
78153 Author: Andy Fleming <afleming@freescale.com>
78154 Date:   Mon Apr 23 01:44:44 2007 -0500
78155
78156     Some 85xx cpu cleanups
78157
78158     * Cleaned up the TSR[WIS] clearing
78159     * Cleaned up DMA initialization
78160
78161     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78162     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78163     Acked-by: Andy Fleming <afleming@freescale.com>
78164
78165 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
78166 Author: Andy Fleming <afleming@freescale.com>
78167 Date:   Mon Apr 23 01:32:22 2007 -0500
78168
78169     Add cpu support for the 8544
78170
78171     Recognize new SVR values, and add a few register definitions
78172
78173     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78174     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78175     Acked-by: Andy Fleming <afleming@freescale.com>
78176
78177 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
78178 Author: Jon Loeliger <jdl@freescale.com>
78179 Date:   Wed Apr 11 16:51:02 2007 -0500
78180
78181     Add MPC8544DS basic port board files.
78182
78183     Add board port under new board/freescale directory
78184     structure and reuse existing PIXIS FPGA support there.
78185
78186     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78187     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78188
78189 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
78190 Author: Jon Loeliger <jdl@freescale.com>
78191 Date:   Wed Apr 11 16:50:57 2007 -0500
78192
78193     Add MPC8544DS main configuration file.
78194
78195     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78196     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78197
78198 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
78199 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
78200 Date:   Wed Dec 27 22:07:15 2006 +0300
78201
78202     Fix PCI I/O space mapping on Freescale MPC85x0ADS
78203
78204     The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
78205     52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
78206     describing the local address window used for the PCI I/O space accesses -- fix
78207     this and carry over the necessary changes into the MPC8560ADS code since the
78208     PCI I/O space mapping was also broken for this board (by the earlier commit
78209     087454609e47295443af793a282cddcd91a5f49c).  Add the comments clarifying how
78210     the PCI I/O space must be mapped to all the MPC85xx board config. headers.
78211
78212     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
78213
78214      board/mpc8540ads/init.S      |    4 ++--
78215      board/mpc8560ads/init.S      |    4 ++--
78216      include/configs/MPC8540ADS.h |    5 ++---
78217      include/configs/MPC8541CDS.h |    2 +-
78218      include/configs/MPC8548CDS.h |    2 +-
78219      include/configs/MPC8560ADS.h |    8 ++++----
78220      6 files changed, 12 insertions(+), 13 deletions(-)
78221
78222 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
78223 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
78224 Date:   Tue Dec 5 16:42:30 2006 +0800
78225
78226     u-boot: Fix e500 v2 core reset bug
78227
78228     The following patch fixes the e500 v2 core reset bug.
78229     For e500 v2 core, a new reset control register is added to reset the
78230     processor.
78231
78232     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
78233
78234 commit 63247a5acd58032e6cf33f525bc3923b467bac88
78235 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
78236 Date:   Wed Dec 20 11:01:00 2006 +0800
78237
78238     u-boot: v2: Remove the fixed TLB and LAW entrynubmer
78239
78240     Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
78241     entry number to control the loop.  This can reduce the potential risk
78242     for the 85xx processor increasing its TLB adn LAW entry number.
78243
78244     Signed-off-by: Swarthout Edward <swarthout@freescale.com>
78245     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
78246
78247 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
78248 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
78249 Date:   Mon Dec 18 17:01:04 2006 +0800
78250
78251     u-boot: Fix the 85xxcds tsec bug
78252
78253     Fix the 85xxcds tsec bug.
78254     When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
78255
78256     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
78257
78258 commit 7337b237ffc4aaf1b9467024fe472a880d852598
78259 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
78260 Date:   Fri Dec 15 14:43:31 2006 +0800
78261
78262     u-boot: Fix CPU2 errata on MPC8548CDS board
78263
78264     This patch apply workaround of CPU2 errata on MPC8548CDS board.
78265
78266     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
78267
78268 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
78269 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
78270 Date:   Mon Dec 18 16:25:15 2006 +0800
78271
78272     u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
78273
78274     This patch disables MPC8548CDS 2T_TIMING for DDR by default.
78275
78276     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
78277
78278 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
78279 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
78280 Date:   Thu Dec 14 14:14:55 2006 +0800
78281
78282     u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
78283
78284     Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
78285     board.
78286     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
78287
78288 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
78289 Author: Scott Wood <scottwood@freescale.com>
78290 Date:   Mon Apr 16 14:54:15 2007 -0500
78291
78292     mpc83xx: Add MPC8313ERDB support.
78293
78294     Signed-off-by: Scott Wood <scottwood@freescale.com>
78295
78296 commit 49ea3b6eafe606285ae4d5c378026153dde53200
78297 Author: Scott Wood <scottwood@freescale.com>
78298 Date:   Mon Apr 16 14:34:21 2007 -0500
78299
78300     mpc83xx: Add generic PCI setup code.
78301
78302     Board code can now request the generic setup code rather than having to
78303     copy-and-paste it for themselves.  Boards should be converted to use this
78304     once they're tested with it.
78305
78306     Signed-off-by: Scott Wood <scottwood@freescale.com>
78307
78308 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
78309 Author: Scott Wood <scottwood@freescale.com>
78310 Date:   Mon Apr 16 14:34:19 2007 -0500
78311
78312     mpc83xx: Add 831x support to speed.c.
78313
78314     Signed-off-by: Scott Wood <scottwood@freescale.com>
78315
78316 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
78317 Author: Scott Wood <scottwood@freescale.com>
78318 Date:   Mon Apr 16 14:34:18 2007 -0500
78319
78320     mpc83xx: Add 831x support to global_data.h
78321
78322     Signed-off-by: Scott Wood <scottwood@freescale.com>
78323
78324 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
78325 Author: Scott Wood <scottwood@freescale.com>
78326 Date:   Mon Apr 16 14:34:16 2007 -0500
78327
78328     mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
78329
78330     Rather than misleadingly define PVR_83xx as the specific type of 83xx
78331     being built for, the PVR of each core revision is defined. checkcpu() now
78332     prints the core that it detects, rather than aborting if it doesn't find
78333     what it thinks it wants.
78334
78335     Signed-off-by: Scott Wood <scottwood@freescale.com>
78336
78337 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
78338 Author: Scott Wood <scottwood@freescale.com>
78339 Date:   Mon Apr 16 14:34:15 2007 -0500
78340
78341     mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
78342
78343     Signed-off-by: Scott Wood <scottwood@freescale.com>
78344
78345 commit d87c57b201b4572d16f1b642998faa00c9912b16
78346 Author: Scott Wood <scottwood@freescale.com>
78347 Date:   Mon Apr 16 14:31:55 2007 -0500
78348
78349     mpc83xx: Add register definitions for MPC831x.
78350
78351     Signed-off-by: Scott Wood <scottwood@freescale.com>
78352
78353 commit 7fc4c71a143be8666d70803fb25ae60379c95622
78354 Author: Stefan Roese <sr@denx.de>
78355 Date:   Mon Apr 23 15:39:59 2007 +0200
78356
78357     Fix file mode
78358
78359     Signed-off-by: Stefan Roese <sr@denx.de>
78360
78361 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
78362 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
78363 Date:   Mon Apr 23 15:30:39 2007 +0200
78364
78365     [PATCH] Avoid assigning PCI resources from zero address
78366
78367     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
78368     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
78369     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
78370     sentence about "0" being considered an invalid address) -- so, use a reasonable
78371     starting value of 0x1000 (that's what the most Linux archs are using).
78372
78373     Alternatively, one might have fixed the calls to pci_set_region() individually
78374     (some code even seems to have taken care of this issue) but that would have
78375     been a lot more work. :-)
78376
78377     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
78378     Acked-by: Stefan Roese <sr@denx.de>
78379
78380 commit afb903a2eb9436baa9270ccc0c27082d86497d89
78381 Author: Jeffrey Mann <mannj@embeddedplanet.com>
78382 Date:   Mon Apr 23 14:00:11 2007 +0200
78383
78384     [patch] setenv(...) can delete environmentalvariables
78385
78386     update setenv() function so that entering a NULL value for the
78387     variable's value will delete the environmental variable
78388
78389     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
78390     Acked-by: Stefan Roese <sr@denx.de>
78391
78392 commit 36f104e5caa747d568eff26b369565af57c2ffa6
78393 Author: Mike Frysinger <vapier@gentoo.org>
78394 Date:   Mon Apr 23 13:54:24 2007 +0200
78395
78396     [patch] use unsigned char in smc91111 driver for mac
78397
78398     the v_mac variable in the smc91111 driver is declared as a signed char ...
78399     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
78400     because when it gets printed out, you get a display like:
78401     0xFFFFFFE0 and that's no good
78402
78403     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
78404
78405 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
78406 Author: Rodolfo Giometti <giometti@enneenne.com>
78407 Date:   Mon Apr 23 13:10:52 2007 +0200
78408
78409     USB: (Another) delay for crappy USB keys.
78410
78411     Some USB keys are slow in giving back an answer when the Root HUB
78412     enables power lines.
78413
78414     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
78415
78416 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
78417 Author: Stefan Roese <sr@denx.de>
78418 Date:   Mon Apr 23 12:00:22 2007 +0200
78419
78420     Remove BOARDLIBS usage completely
78421
78422     Signed-off-by: Stefan Roese <sr@denx.de>
78423
78424 commit 32556443840f127170e4baa8bdd5b567039f6c36
78425 Author: Michal Simek <monstr@monstr.eu>
78426 Date:   Sat Apr 21 21:07:22 2007 +0200
78427
78428     [PATCH] SystemACE support for Microblaze
78429
78430 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
78431 Author: Michal Simek <monstr@monstr.eu>
78432 Date:   Sat Apr 21 21:02:40 2007 +0200
78433
78434     16bit read/write little endian
78435
78436 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
78437 Author: Michal Simek <monstr@monstr.eu>
78438 Date:   Sat Apr 21 20:53:31 2007 +0200
78439
78440     Change ML401 parameters - Xilinx BSP
78441
78442 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
78443 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
78444 Date:   Wed Feb 28 05:37:29 2007 -0600
78445
78446     mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
78447
78448     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78449
78450 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
78451 Author: Zhang Wei <wei.zhang@freescale.com>
78452 Date:   Fri Jan 19 10:42:37 2007 +0800
78453
78454     Enable LAWs for MPC8641 PCI-Ex2.
78455
78456     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
78457     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78458
78459 commit bd7851ce1e1f140665b520026abf1042968b1102
78460 Author: Jon Loeliger <jdl@freescale.com>
78461 Date:   Fri Apr 20 14:12:26 2007 -0500
78462
78463     mpc86xx; Write MAC address to mac-address and local-mac-address
78464
78465     Some device trees have a mac-address property, some have local-mac-address,
78466     and some have both.  To support all of these device trees, ftp_cpu_setup()
78467     should write the MAC address to mac-address and local-mac-address, if they
78468     exist.
78469
78470     Signed-off-by: Timur Tabi <timur@freescale.com>
78471     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78472
78473 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
78474 Author: Jon Loeliger <jdl@freescale.com>
78475 Date:   Fri Apr 20 14:11:38 2007 -0500
78476
78477     mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
78478
78479     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
78480     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78481
78482 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
78483 Author: Wolfgang Denk <wd@denx.de>
78484 Date:   Fri Apr 20 17:43:28 2007 +0200
78485
78486     Cleanup compiler warnings, update CHANGELOG
78487
78488     Signed-off-by: Wolfgang Denk <wd@denx.de>
78489
78490 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
78491 Author: Detlev Zundel <dzu@denx.de>
78492 Date:   Fri Apr 20 12:01:47 2007 +0200
78493
78494     Fix breakage of NC650 board with respect to nand support.
78495
78496     Signed-off-by: Detlev Zundel <dzu@denx.de>
78497
78498 commit 39f23cd90947639ac278a18ff277ec786b5ac167
78499 Author: Domen Puncer <domen.puncer@telargo.com>
78500 Date:   Fri Apr 20 11:13:16 2007 +0200
78501
78502     [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
78503
78504     G2 core reference manual says decrementer and time base
78505     are decreasing/increasing once every 4 bus clock cycles.
78506     Lets fix it, so time in Linux won't run twice as fast
78507
78508     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
78509     Acked-by: Grant Likely <grant.likely@secretlab.ca>
78510
78511 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
78512 Author: Gerald Van Baren <vanbaren@cideas.com>
78513 Date:   Thu Apr 19 23:14:39 2007 -0400
78514
78515     Fix serious pointer bug with bootm and reserve map.
78516
78517     What was suppose to be a stack variable was declared as a pointer,
78518       overwriting random memory.
78519     Also moved the libfdt.a requirement into the main Makefile.  That is
78520       The U-Boot Way.
78521
78522 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
78523 Author: Stefan Roese <sr@denx.de>
78524 Date:   Thu Apr 19 09:53:52 2007 +0200
78525
78526     ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
78527
78528     Previous versions used full wait states for the chip select #1 which
78529     is connected to the Xilinix SystemACE controller on the AMCC Katmai
78530     evaluation board. This leads to really slow access and therefore low
78531     performance. This patch now sets up the chip select a lot faster
78532     resulting in much better read/write performance of the Linux driver.
78533
78534     Signed-off-by: Stefan Roese <sr@denx.de>
78535
78536 commit 37837828d89084879bee2f2b8c7c68d4695940df
78537 Author: Wolfgang Denk <wd@denx.de>
78538 Date:   Wed Apr 18 17:49:29 2007 +0200
78539
78540     Clenaup, update CHANGELOG
78541
78542     Signed-off-by: Wolfgang Denk <wd@denx.de>
78543
78544 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
78545 Author: Wolfgang Denk <wd@denx.de>
78546 Date:   Wed Apr 18 17:20:58 2007 +0200
78547
78548     Update CHANGELOG
78549
78550     Signed-off-by: Wolfgang Denk <wd@denx.de>
78551
78552 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
78553 Author: Wolfgang Denk <wd@denx.de>
78554 Date:   Wed Apr 18 17:07:26 2007 +0200
78555
78556     Cleanup, update CHANGELOG
78557
78558     Sigend-off-by: Wolfgang Denk <wd@denx.de>
78559
78560 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
78561 Author: Wolfgang Denk <wd@denx.de>
78562 Date:   Wed Apr 18 16:17:46 2007 +0200
78563
78564     Update CHANGELOG
78565
78566 commit ad4eb555671d97f96dc56eab55103b1f86874b01
78567 Author: Wolfgang Denk <wd@denx.de>
78568 Date:   Wed Apr 18 14:30:39 2007 +0200
78569
78570     MCC200 board: remove warning which is obsolete after PSoC firmware changes
78571
78572     Signed-off-by: Wolfgang Denk <wd@denx.de>
78573
78574 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
78575 Author: Domen Puncer <domen.puncer@telargo.com>
78576 Date:   Wed Apr 18 12:11:05 2007 +0200
78577
78578     [PATCH] icecube/lite5200b: document wakeup from low-power support
78579
78580     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
78581
78582 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
78583 Author: Stefan Roese <sr@denx.de>
78584 Date:   Wed Apr 18 12:07:47 2007 +0200
78585
78586     ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
78587
78588     Signed-off-by: Stefan Roese <sr@denx.de>
78589
78590 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
78591 Author: Stefan Roese <sr@denx.de>
78592 Date:   Wed Apr 18 12:05:59 2007 +0200
78593
78594     ppc4xx: Add output for bootrom location to 405EZ ports
78595
78596     Now 405EZ ports also show upon bootup from which boot device
78597     they are configured to boot:
78598
78599     U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
78600
78601     CPU:   AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
78602            Bootstrap Option E - Boot ROM Location EBC (32 bits)
78603            16 kB I-Cache 16 kB D-Cache
78604     Board: Acadia - AMCC PPC405EZ Evaluation Board
78605
78606     Signed-off-by: Stefan Roese <sr@denx.de>
78607
78608 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
78609 Author: Peter Pearse <peter.pearse@arm.com>
78610 Date:   Tue Apr 17 13:30:33 2007 +0100
78611
78612     Move ppearse to ARM board list
78613     Add Konstantin Kletschke for scb9328.
78614     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
78615
78616 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
78617 Author: Domen Puncer <domen.puncer@telargo.com>
78618 Date:   Mon Apr 16 14:00:13 2007 +0200
78619
78620     [PATCH] icecube/lite5200b: wakeup from low-power support
78621
78622     U-Boot part of Lite5200b low power mode support.
78623     Puts SDRAM out of self-refresh and transfers control to
78624     address saved at physical 0x0.
78625
78626     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
78627     Acked-by: Grant Likely <grant.likely@secretlab.ca>
78628
78629 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
78630 Author: Gerald Van Baren <vanbaren@cideas.com>
78631 Date:   Sun Apr 15 13:54:26 2007 -0400
78632
78633     Fix the ft_cpu_setup() property settings.
78634
78635     Use "setter" functions instead of flags, cleaner and more flexible.
78636     It also fixes the problem noted by Timur Tabi that the ethernet MAC
78637     addresses were all being set incorrectly to the same MAC address.
78638
78639 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
78640 Author: Gerald Van Baren <vanbaren@cideas.com>
78641 Date:   Sat Apr 14 22:51:24 2007 -0400
78642
78643     Improve the bootm command for CONFIG_OF_LIBFDT
78644
78645     In bootm, create the "/chosen" node only if it doesn't already exist
78646       (better matches the previous behavior).
78647     Update for proper reserved memory map handling for initrd.
78648
78649 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
78650 Author: Gerald Van Baren <vanbaren@cideas.com>
78651 Date:   Sat Apr 14 22:46:41 2007 -0400
78652
78653     Add some utilities to manipulate the reserved memory map.
78654
78655 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
78656 Author: Wolfgang Denk <wd@denx.de>
78657 Date:   Sat Apr 14 21:16:54 2007 +0200
78658
78659     Update CHANGELOG
78660
78661 commit 8e6875183cdca91c134408d119d4abcd48ef6856
78662 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78663 Date:   Sun Dec 17 18:56:46 2006 +0100
78664
78665     AVR32: Enable MMC support
78666
78667     Set up the portmux for the MMC interface and enable the MMC driver
78668     along with support for DOS partitions, ext2 and FAT filesystems.
78669
78670     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78671
78672 commit fc26c97bb6df41b4a95662c34054fe912387bf38
78673 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78674 Date:   Fri Jan 20 10:03:53 2006 +0100
78675
78676     Atmel MCI driver
78677
78678     Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
78679
78680     The AT91 ARM-based CPUs use basically the same hardware, so it should
78681     be possible to share this driver, but no effort has been made so far.
78682
78683     Hardware documentation can be found in the AT32AP7000 data sheet,
78684     which can be downloaded from
78685
78686     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
78687
78688     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78689
78690 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
78691 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78692 Date:   Sun Dec 17 18:55:37 2006 +0100
78693
78694     AVR32: Add clk and gpio infrastructure for mmci
78695
78696     Implement functions for configuring the mmci pins, as well as
78697     functions for getting the clock rate of the mmci controller.
78698
78699     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78700
78701 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
78702 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78703 Date:   Sun Dec 17 18:53:56 2006 +0100
78704
78705     Enable partition support with MMC
78706
78707     Include implementations of init_part() and get_partition_info() when
78708     CONFIG_MMC is set.
78709
78710     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78711
78712 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
78713 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78714 Date:   Sun Dec 17 17:14:30 2006 +0100
78715
78716     AVR32: Enable networking
78717
78718     Implement MACB initialization for AVR32 and ATSTK1000, and turn
78719     everything on, including the MACB driver.
78720
78721     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78722
78723 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
78724 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78725 Date:   Fri Jan 20 10:03:34 2006 +0100
78726
78727     Atmel MACB ethernet driver
78728
78729     Driver for the Atmel MACB on-chip ethernet controller.
78730
78731     This driver has been tested on the ATSTK1000 board with a AT32AP7000
78732     CPU. It should probably work on AT91SAM926x as well with some minor
78733     modifications.
78734
78735     Hardware documentation can be found in the AT32AP7000 data sheet,
78736     which can be downloaded from
78737
78738     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
78739
78740     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78741
78742 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
78743 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78744 Date:   Sun Dec 17 16:56:14 2006 +0100
78745
78746     AVR32: Add clk and gpio infrastructure for macb0 and macb1
78747
78748     Implement functions for configuring the macb0 and macb1 pins, as
78749     well as functions for getting the clock rate of the various
78750     busses the macb ethernet controllers are connected to.
78751
78752     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78753
78754 commit d5acb95b16a0a74c643524342c3437e765426d05
78755 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78756 Date:   Sun Dec 17 15:39:15 2006 +0100
78757
78758     AVR32: Implement simple DMA memory allocator
78759
78760     Implement dma_alloc_coherent() which returns cache-aligned
78761     uncacheable memory.
78762
78763     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78764
78765 commit 91975b0fea773c9e681fea8cf3349669f27685ee
78766 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78767 Date:   Sun Dec 17 15:46:02 2006 +0100
78768
78769     Import <linux/mii.h> from the Linux kernel
78770
78771     Instead of creating yet another set of MII register definitions
78772     in the macb driver, here's a complete set of definitions for everyone
78773     to use.
78774
78775     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78776
78777 commit 1b804b229556a4d862da93c0ec94e79419364b2c
78778 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78779 Date:   Wed Mar 21 19:47:36 2007 +0100
78780
78781     AVR32: Include more commands for ATSTK1000
78782
78783     Include the imi, imls and jffs commands sets by default on ATSTK1000.
78784     Also define CONFIG_BOOTARGS to something more useful, define
78785     CONFIG_BOOTCOMMAND and enable autoboot by default.
78786
78787     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78788
78789 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
78790 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78791 Date:   Wed Mar 21 19:44:48 2007 +0100
78792
78793     AVR32: Provide a definition of struct stat
78794
78795     Copy the definition of struct stat from the Linux kernel.
78796
78797     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78798
78799 commit 12f099c08167a7a51aeee623bc16dafd0841271c
78800 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78801 Date:   Sun Dec 17 14:46:06 2006 +0100
78802
78803     AVR32: Use initdram() instead of board_init_memories()
78804
78805     Conform to the "standard" interface and use initdram() instead of
78806     board_init_memories() on AVR32. This enables us to get rid of the
78807     sdram_size member of the global_data struct as well.
78808
78809     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78810
78811 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
78812 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78813 Date:   Mon Nov 20 15:53:10 2006 +0100
78814
78815     AVR32: Relocate u-boot to SDRAM
78816
78817     Relocate the u-boot image into SDRAM like everyone else does. This
78818     means that we can handle much larger .data and .bss than we used to.
78819
78820     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78821
78822 commit df548d3c3e2bbc40258713167859ffc2ce99a900
78823 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78824 Date:   Sun Nov 19 18:06:53 2006 +0100
78825
78826     AVR32: Resource management rewrite
78827
78828     Rewrite the resource management code (i.e. I/O memory, clock gating,
78829     gpio) so it doesn't depend on any global state. This is necessary
78830     because this code is heavily used before relocation to RAM, so we
78831     can't write to any global variables.
78832
78833     As an added bonus, this makes u-boot's memory footprint a bit smaller,
78834     although some functionality has been left out; all clocks are enabled
78835     all the time, and there's no checking for gpio line conflicts.
78836
78837     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78838
78839 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
78840 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78841 Date:   Sat Nov 18 18:01:13 2006 +0100
78842
78843     AVR32: Clean up memory-map.h for at32ap7000
78844
78845     Convert spaces to tabs (must have missed this one last time around),
78846     sort the entries by address and group them together by bus
78847     connectivity.
78848
78849     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78850
78851 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
78852 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78853 Date:   Sat Nov 18 17:32:31 2006 +0100
78854
78855     AVR32: Build position-independent u-boot
78856
78857     Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
78858     position independent. This will make relocation a lot easier.
78859
78860     -mno-init-got means that gcc shouldn't emit code to load the GOT
78861     address into r6 in every function prologue. We do it once and for
78862     all in the early startup assembly code, so enabling this option
78863     makes u-boot a bit faster and smaller.
78864
78865     The assembly parts have always been position-independent, so no code
78866     changes should be necessary.
78867
78868     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78869
78870 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
78871 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78872 Date:   Sat Nov 18 17:24:31 2006 +0100
78873
78874     AVR32: Use avr32-linux- cross-compilation prefix by default
78875
78876     It doesn't really matter which toolchain you use to compile u-boot,
78877     but the avr32-linux one is probably what most people have installed.
78878
78879     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78880
78881 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
78882 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78883 Date:   Sat Nov 18 17:15:30 2006 +0100
78884
78885     AVR32: Split start_u_boot into board_init_f and board_init_r
78886
78887     Split the avr32 initialization code into a function to run before
78888     relocation, board_init_f and a function to run after relocation,
78889     board_init_r. For now, board_init_f simply calls board_init_r
78890     at the end.
78891
78892     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78893
78894 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
78895 Author: Heiko Schocher <hs@pollux.denx.de>
78896 Date:   Sat Apr 14 05:26:48 2007 +0200
78897
78898     [Fix]       Set the LED status register on the UC101 for the LXT971 PHY.
78899             clear the Display after reset.
78900
78901     Signed-off-by: Heiko Schocher <hs@denx.de>
78902
78903 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
78904 Author: Denis Peter <d.peter@mpl.ch>
78905 Date:   Fri Apr 13 09:13:33 2007 +0200
78906
78907     [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
78908
78909     Fix bug introduced by "Fix get_partition_info() parameter error in all
78910     other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
78911     to use diskboot or scsiboot form another device than 0.
78912
78913     Signed-off-by: Denis Peter <d.peter@mpl.ch>
78914
78915 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
78916 Author: Greg Lopp <lopp@pobox.com>
78917 Date:   Fri Apr 13 08:02:24 2007 +0200
78918
78919     [PATCH] Fix use of "void *" for block dev read/write buffer pointers
78920
78921     Signed-of-by: Greg Lopp <lopp@pobox.com>
78922     Acked-by: Grant Likely <grant.likely@secretlab.ca>
78923
78924 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
78925 Author: Xie Xiaobo <r63061@freescale.com>
78926 Date:   Fri Mar 9 19:08:25 2007 +0800
78927
78928     Fix two bugs for MPC83xx DDR2 controller SPD Init
78929
78930     There are a few bugs in the cpu/mpc83xx/spd_sdram.c
78931     the first bug is that the picos_to_clk routine introduces a huge
78932     rounding error in 83xx.
78933     the second bug is that the mode register write recovery field is
78934     tWR-1, not tWR >> 1.
78935
78936 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
78937 Author: Jeffrey Mann <mannj@embeddedplanet.com>
78938 Date:   Thu Apr 12 14:15:59 2007 +0200
78939
78940     ppc4xx: Fix i2c divisor calcularion for PPC4xx
78941
78942     This patch fixes changes the i2c_init(...) function to use the function
78943     get_OPB_freq() rather than calculating the OPB speed by
78944     sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
78945     specific per processor. The prior method was not and so was calculating
78946     the wrong speed for some PPC4xx processors.
78947
78948     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
78949     Signed-off-by: Stefan Roese <sr@denx.de>
78950
78951 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
78952 Author: Wolfgang Denk <wd@denx.de>
78953 Date:   Wed Apr 11 17:25:01 2007 +0200
78954
78955     Update CHANGELOG
78956
78957     Signed-off-by: Wolfgang Denk <wd@denx.de>
78958
78959 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
78960 Author: Wolfgang Denk <wd@denx.de>
78961 Date:   Wed Apr 11 17:22:55 2007 +0200
78962
78963     Update for SC3 board
78964
78965     * Make IDE timeout configurable through ide_reset_timeout variable.
78966     * Use Newline as "password" string
78967     * Use just a single partition in NAND flash
78968
78969 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
78970 Author: Haiying Wang <haiying.wang@freescale.com>
78971 Date:   Mon Jan 22 12:37:30 2007 -0600
78972
78973     Add PIXIS FPGA support for MPC8641HPCN board.
78974
78975     Move the 8641HPCN's PIXIS code to the new directory
78976     board/freescale/common/ as it will be shared by
78977     future boards not in the same processor family.
78978
78979     Write a "pixis_reset" command that utilizes the FPGA
78980     reset sequencer to support alternate soft-reset options
78981     such as using the "alternate" flash bank, enabling
78982     the watch dog, or choosing different CPU frequencies.
78983
78984     Add documentation for the pixis_reset to README.mpc8641hpcn.
78985
78986     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
78987     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78988
78989 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
78990 Author: Gerald Van Baren <vanbaren@cideas.com>
78991 Date:   Fri Apr 6 14:19:43 2007 -0400
78992
78993     Moved fdt command support code to fdt_support.c
78994
78995     ...in preparation for improving the bootm command's handling of fdt blobs.
78996     Also cleaned up some coding sloppiness.
78997
78998 commit 6679f9299534e488a171a9bb8f9bb891de247aab
78999 Author: Gerald Van Baren <vanbaren@cideas.com>
79000 Date:   Fri Apr 6 14:17:14 2007 -0400
79001
79002     libfdt: Make fdt_check_header() public
79003
79004     Changed _fdt_check_header() to fdt_check_header() and made it part of
79005     the interface - it is a useful routine.
79006
79007     Also did some asthetics cleanup to the include files (headers).
79008
79009 commit c0707ce65677650b5ceab0500ee50ae5168afef2
79010 Author: Aubrey Li <aubrey.adi@gmail.com>
79011 Date:   Thu Apr 5 18:34:06 2007 +0800
79012
79013     [Blackfin][PATCH] Kill off a bunch of common local prototypes
79014
79015 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
79016 Author: Aubrey Li <aubrey.adi@gmail.com>
79017 Date:   Thu Apr 5 18:33:04 2007 +0800
79018
79019     [Blackfin][PATCH] Fix dynamic CPLB generation issue
79020
79021 commit 0445e3a264251d75b1be45ef713c70726a2952f0
79022 Author: Aubrey Li <aubrey.adi@gmail.com>
79023 Date:   Thu Apr 5 18:31:47 2007 +0800
79024
79025     [Blackfin][PATCH] minior cleanup
79026
79027 commit 155fd766573981090e638b493d5857562151862e
79028 Author: Aubrey Li <aubrey.adi@gmail.com>
79029 Date:   Thu Apr 5 18:31:18 2007 +0800
79030
79031     [Blackfin][PATCH] Fix copyright and update license
79032
79033 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
79034 Author: Aubrey Li <aubrey.adi@gmail.com>
79035 Date:   Thu Apr 5 18:30:25 2007 +0800
79036
79037     [Blackfin][PATCH] Add BF537 EMAC driver initialization
79038
79039 commit 889256e8604e0c68db1d866d720894dffede9df6
79040 Author: Aubrey Li <aubrey.adi@gmail.com>
79041 Date:   Thu Apr 5 18:29:55 2007 +0800
79042
79043     [Blackfin][PATCH] call real the system synchronize instruction
79044
79045 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
79046 Author: Aubrey Li <aubrey.adi@gmail.com>
79047 Date:   Thu Apr 5 18:29:17 2007 +0800
79048
79049     [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
79050
79051 commit dfeeab2cd680df047e68e723b246adf6f33bb556
79052 Author: Aubrey Li <aubrey.adi@gmail.com>
79053 Date:   Thu Apr 5 18:28:34 2007 +0800
79054
79055     [Blackfin][PATCH]: fix flash unaligned copy issue
79056
79057 commit 443feb740584e406efa203af909fe2926608e8d5
79058 Author: Igor Marnat <marny@rambler.ru>
79059 Date:   Wed Mar 21 09:55:01 2007 +0300
79060
79061     Update usage of 'nc' in README.NetConsole
79062
79063     Added information about usage of NetConsole on systems where the -l and -p
79064     switches are mutually exclusive.
79065
79066     Signed-off-by: Igor Marnat <marny@rambler.ru>
79067     Signed-off-by: Ben Warren <bwarren@qstreams.com>
79068
79069 commit 31c98a88228021b314c89ebb8104fb6473da4471
79070 Author: Wolfgang Denk <wd@denx.de>
79071 Date:   Wed Apr 4 02:09:30 2007 +0200
79072
79073     Minor coding style cleanup.
79074
79075 commit 94abd7c0583ebe01e799b25f451201deeaab550d
79076 Author: Wolfgang Denk <wd@denx.de>
79077 Date:   Wed Apr 4 01:49:15 2007 +0200
79078
79079     Minor cleanup.
79080
79081 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
79082 Author: Rodolfo Giometti <giometti@enneenne.com>
79083 Date:   Tue Apr 3 14:27:18 2007 +0200
79084
79085     Support for the Philips ISP116x HCD (Host Controller Driver)
79086
79087     Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
79088
79089 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
79090 Author: Markus Klotzbuecher <mk@denx.de>
79091 Date:   Tue Apr 3 14:27:08 2007 +0200
79092
79093     USB: cleanup monahans usb support. Remove dead code.
79094
79095     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
79096
79097 commit a65c5768e5537530bd1780af3d3fddc3113a163c
79098 Author: Stefan Roese <sr@denx.de>
79099 Date:   Mon Apr 2 10:09:30 2007 +0200
79100
79101     ppc4xx: Change SysACE address on Katmai
79102
79103     With this new base address of the Xilinx SystemACE controller
79104     the Linux driver will be easier to adapt, since it can now be
79105     mapped via the "normal" ioremap() call.
79106
79107     Signed-off-by: Stefan Roese <sr@denx.de>
79108
79109 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
79110 Author: Gerald Van Baren <vanbaren@cideas.com>
79111 Date:   Sat Mar 31 14:30:53 2007 -0400
79112
79113     Fix some minor whitespace violations.
79114
79115 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
79116 Author: Gerald Van Baren <vanbaren@cideas.com>
79117 Date:   Sat Mar 31 12:23:51 2007 -0400
79118
79119     Add a flattened device tree (fdt) command (2 of 2)
79120
79121     Modifications to the existing code to support the new fdt command.
79122
79123 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
79124 Author: Gerald Van Baren <vanbaren@cideas.com>
79125 Date:   Sat Mar 31 12:22:10 2007 -0400
79126
79127     Add a flattened device tree (fdt) command (1 of 2)
79128
79129     The fdt command uses David Gibson's libfdt library to manipulate as well
79130     as print the flattened device tree.  This patch is the new command,
79131     the second part is the modifications to the existing code.
79132
79133 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
79134 Author: Gerald Van Baren <vanbaren@cideas.com>
79135 Date:   Sat Mar 31 12:13:43 2007 -0400
79136
79137     libfdt: Enhanced and published fdt_next_tag()
79138
79139     Enhanced the formerly private function _fdt_next_tag() to allow stepping
79140       through the tree, used to produce a human-readable dump, and made
79141       it part of the published interface.
79142     Also added some comments.
79143
79144 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
79145 Author: Gerald Van Baren <vanbaren@cideas.com>
79146 Date:   Sat Mar 31 12:05:39 2007 -0400
79147
79148     libfdt: Customizations for use by u-boot.
79149
79150     Changes to David Gibson's original source to fit into u-boot's
79151     environment.  No functionality changes.
79152
79153 commit 35748177c64a4a83a00057e93bb33e40278a2a96
79154 Author: Gerald Van Baren <vanbaren@cideas.com>
79155 Date:   Sat Mar 31 12:00:56 2007 -0400
79156
79157     libfdt: Import libfdt source (2 of 2)
79158
79159     This adds the applicable libfdt source files (unmodified) and a README
79160     to explain where the source came from.
79161
79162 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
79163 Author: Gerald Van Baren <vanbaren@cideas.com>
79164 Date:   Sat Mar 31 11:59:59 2007 -0400
79165
79166     libfdt: Import libfdt source (1 of 2)
79167
79168     This adds the applicable libfdt source files (unmodified) and a README
79169     to explain where the source came from.
79170
79171 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
79172 Author: Stefan Roese <sr@denx.de>
79173 Date:   Sat Mar 31 13:16:23 2007 +0200
79174
79175     ppc4xx: Update Katmai bootstrap command
79176
79177     Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
79178     is selected.
79179
79180     Signed-off-by: Stefan Roese <sr@denx.de>
79181
79182 commit cabee756a6532986729477c3cc1ea16ef8517ad2
79183 Author: Stefan Roese <sr@denx.de>
79184 Date:   Sat Mar 31 13:15:06 2007 +0200
79185
79186     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
79187
79188     Additional RAM information is now printed upon powerup, like
79189     DDR2 frequency and CAS latency.
79190
79191     Signed-off-by: Stefan Roese <sr@denx.de>
79192
79193 commit 60723803431ac75cad085690789e433d5ab9174e
79194 Author: Stefan Roese <sr@denx.de>
79195 Date:   Sat Mar 31 08:48:36 2007 +0200
79196
79197     ppc4xx: Change Yucca config file to support ECC
79198
79199     With the updated 44x DDR2 driver the Yucca board now supports
79200     ECC generation and checking.
79201
79202     Signed-off-by: Stefan Roese <sr@denx.de>
79203
79204 commit 490e5730c674b20d708b783a2c5ffd7208f83873
79205 Author: Stefan Roese <sr@denx.de>
79206 Date:   Sat Mar 31 08:47:34 2007 +0200
79207
79208     ppc4xx: Fix "bootstrap" command for Katmai board
79209
79210     The board specific "bootstrap" command is now fixed and can
79211     be used for the AMCC Katmai board to configure different
79212     CPU/PLB/OPB frequencies.
79213
79214     Signed-off-by: Stefan Roese <sr@denx.de>
79215
79216 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
79217 Author: Stefan Roese <sr@denx.de>
79218 Date:   Sat Mar 31 08:46:08 2007 +0200
79219
79220     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
79221
79222     Fix a bug in the auto calibration routine. This driver now runs
79223     more reliable with the tested modules. It's also tested with
79224     167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
79225
79226     Signed-off-by: Stefan Roese <sr@denx.de>
79227
79228 commit 342cd097be1e7affe82f42ab3da220959a699e64
79229 Author: Michal Simek <monstr@monstr.eu>
79230 Date:   Fri Mar 30 22:52:09 2007 +0200
79231
79232     [PATCH] Clean include dependence
79233
79234 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
79235 Author: Michal Simek <monstr@monstr.eu>
79236 Date:   Fri Mar 30 22:42:45 2007 +0200
79237
79238     [CLEAN] Remove inefficient Suzaku code
79239
79240 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
79241 Author: Stefan Roese <sr@denx.de>
79242 Date:   Wed Mar 28 15:03:16 2007 +0200
79243
79244     Merge some AMCC make targets to keep the top-level Makefile smaller
79245
79246     Signed-off-by: Stefan Roese <sr@denx.de>
79247
79248 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
79249 Author: Stefan Roese <sr@denx.de>
79250 Date:   Wed Mar 28 14:52:12 2007 +0200
79251
79252     i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
79253
79254     The "old" i2c commands (iprobe, imd...) are now compiled in again,
79255     even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
79256     config option.
79257
79258     Signed-off-by: Stefan Roese <sr@denx.de>
79259
79260 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
79261 Author: Michal Simek <monstr@monstr.eu>
79262 Date:   Tue Mar 27 00:32:16 2007 +0200
79263
79264     PATCH: Resolve GPL license problem
79265
79266 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
79267 Author: Rodolfo Giometti <giometti@enneenne.com>
79268 Date:   Mon Mar 26 12:03:36 2007 +0200
79269
79270     PXA: pxa27x USB OHCI support
79271
79272     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
79273
79274 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
79275 Author: Markus Klotzbuecher <mk@denx.de>
79276 Date:   Mon Mar 26 11:21:05 2007 +0200
79277
79278     USB: remove the S3C24X0_merge #define, which was introduced while
79279     merging OHCI drivers.
79280
79281     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
79282
79283 commit 1798049522f594013aea29457d46794298c6ae15
79284 Author: Michal Simek <root@monstr.eu>
79285 Date:   Mon Mar 26 01:39:07 2007 +0200
79286
79287     Support for XUPV2P board
79288     Reset support
79289     BSP autoconfig support
79290
79291 commit 0d974d5297349504a2ddfa09314be573b5df320a
79292 Author: Stefan Roese <sr@denx.de>
79293 Date:   Sat Mar 24 15:57:09 2007 +0100
79294
79295     [PATCH] Add 4xx GPIO functions
79296
79297     This patch adds some 4xx GPIO functions. It also moves some of the
79298     common code and defines into a common 4xx GPIO header file.
79299
79300     Signed-off-by: Stefan Roese <sr@denx.de>
79301
79302 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
79303 Author: Stefan Roese <sr@denx.de>
79304 Date:   Sat Mar 24 15:55:58 2007 +0100
79305
79306     [PATCH] Small Sequoia cleanup
79307
79308     Signed-off-by: Stefan Roese <sr@denx.de>
79309
79310 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
79311 Author: Stefan Roese <sr@denx.de>
79312 Date:   Sat Mar 24 15:45:34 2007 +0100
79313
79314     [PATCH] Clean up 40EZ/Acadia support
79315
79316     This patch cleans up all the open issue of the preliminary
79317     Acadia support.
79318
79319     Signed-off-by: Stefan Roese <sr@denx.de>
79320
79321 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
79322 Author: Jon Loeliger <jdl@freescale.com>
79323 Date:   Tue Dec 12 11:02:20 2006 -0600
79324
79325     Fix 8641HPCN problem with ld version 2.16
79326
79327     (Dot outside sections problem).
79328
79329     This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
79330
79331     Signed-off-by: Jon Loeliger <jdl@freescale.com>
79332
79333 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
79334 Author: Haiying Wang <haiying.wang@freescale.com>
79335 Date:   Thu Dec 7 10:35:55 2006 -0600
79336
79337     Set Rev 2.x 86xx PIC in mixed mode.
79338
79339     Prevent false interrupt from hanging Linux as MSR[EE] is set
79340     to enable interrupts by changing the PIC out of the default
79341     pass through mode into mixed mode.
79342
79343     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
79344     Signed-off-by: Jon Loeliger <jdl@freescale.com>
79345
79346 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
79347 Author: Jason Jin <jason.jin@freescale.com>
79348 Date:   Thu Dec 7 10:32:35 2006 -0600
79349
79350     Add flash cmd function to 8641HPCN ramboot
79351
79352     Also fixes some commmand for 8641 HPCN ramboot case.
79353
79354     Signed-off-by: Jason Jin <jason.jin@freescale.com>
79355     Signed-off-by: Jon Loeliger <jdl@freescale.com>
79356
79357 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
79358 Author: Ed Swarthout <ed.swarthout@freescale.com>
79359 Date:   Thu Dec 7 10:34:14 2006 -0600
79360
79361     Add support for 8641 Rev 2 silicon.
79362
79363     Without this patch, I am unable to get to the prompt on rev 2 silicon.
79364     Only set ddrioovcr for rev1.
79365
79366     Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
79367     Signed-off-by: Jon Loeliger <jdl@freescale.com>
79368
79369 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
79370 Author: Wolfgang Denk <wd@denx.de>
79371 Date:   Thu Mar 22 00:13:12 2007 +0100
79372
79373     Code cleanup / re-insert previous Copyright entries.
79374
79375     Signed-off-by: Wolfgang Denk <wd@denx.de>
79376
79377 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
79378 Author: Wolfgang Denk <wd@denx.de>
79379 Date:   Wed Mar 21 23:26:15 2007 +0100
79380
79381     Code cleanup. Update CHANGELOG
79382
79383 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
79384 Author: Stefan Roese <sr@denx.de>
79385 Date:   Wed Mar 21 14:54:29 2007 +0100
79386
79387     ppc4xx: Fix file mode of include/configs/acadia.h
79388
79389     Signed-off-by: Stefan Roese <sr@denx.de>
79390
79391 commit d5f4614c9350d9333e575100fb250aab774d0258
79392 Author: Markus Klotzbuecher <mk@denx.de>
79393 Date:   Wed Mar 21 14:41:46 2007 +0100
79394
79395     SPC1920: fix small clock routing bug
79396
79397     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
79398
79399 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
79400 Author: Stefan Roese <sr@denx.de>
79401 Date:   Wed Mar 21 13:39:57 2007 +0100
79402
79403     [PATCH] Add AMCC Acadia (405EZ) eval board support
79404
79405     This patch adds support for the new AMCC Acadia eval board.
79406
79407     Please note that this Acadia/405EZ support is still in a beta stage.
79408     Still lot's of cleanup needed but we need a preliminary release now.
79409
79410     Signed-off-by: Stefan Roese <sr@denx.de>
79411
79412 commit e01bd218b00af73499331a1a701625a852cd286f
79413 Author: Stefan Roese <sr@denx.de>
79414 Date:   Wed Mar 21 13:38:59 2007 +0100
79415
79416     [PATCH] Add AMCC PPC405EZ support
79417
79418     This patch adds support for the new AMCC 405EZ PPC. It is in
79419     preparation for the AMCC Acadia board support.
79420
79421     Please note that this Acadia/405EZ support is still in a beta stage.
79422     Still lot's of cleanup needed but we need a preliminary release now.
79423
79424     Signed-off-by: Stefan Roese <sr@denx.de>
79425
79426 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
79427 Author: Heiko Schocher <hs@pollux.denx.de>
79428 Date:   Wed Mar 21 08:45:17 2007 +0100
79429
79430     [PATCH] TQM8272: dont change the bits given from the HRCW
79431                      for the SIUMCR and BCR Register.
79432                      Fix the calculation for the EEprom Size
79433
79434     Signed-off-by: Heiko Schocher <hs@denx.de>
79435
79436 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
79437 Author: Aubrey Li <aubrey.adi@gmail.com>
79438 Date:   Tue Mar 20 18:16:24 2007 +0800
79439
79440     [Blackfin][PATCH] Add BF561 EZKIT board support
79441
79442 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
79443 Author: Aubrey Li <aubrey.adi@gmail.com>
79444 Date:   Mon Mar 19 22:55:58 2007 +0800
79445
79446     [Blackfin][PATCH] minor cleanup
79447
79448 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
79449 Author: Wolfgang Denk <wd@denx.de>
79450 Date:   Mon Mar 19 13:10:08 2007 +0100
79451
79452     Remove obsoleted POST files.
79453
79454     Signed-off-by: Wolfgang Denk <wd@denx.de>
79455
79456 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
79457 Author: Aubrey Li <aubrey.adi@gmail.com>
79458 Date:   Mon Mar 19 01:26:11 2007 +0800
79459
79460     [PATCH] Add flash chip M29W320ET/B support
79461
79462 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
79463 Author: Aubrey Li <aubrey.adi@gmail.com>
79464 Date:   Mon Mar 19 01:24:52 2007 +0800
79465
79466     [Blackfin][PATCH] Add BF537 stamp board support
79467
79468 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
79469 Author: Stefan Roese <sr@denx.de>
79470 Date:   Fri Mar 16 21:11:42 2007 +0100
79471
79472     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
79473
79474     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
79475     DDR memory are dynamically programmed matching the total size
79476     of the equipped memory (DIMM modules).
79477
79478     Signed-off-by: Stefan Roese <sr@denx.de>
79479
79480 commit 76d1466f918b881cda2d259254761e73885093c2
79481 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79482 Date:   Tue Mar 13 13:38:05 2007 +0100
79483
79484     [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
79485             boards in terms of unification.
79486
79487     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79488
79489 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
79490 Author: Wolfgang Denk <wd@denx.de>
79491 Date:   Tue Mar 13 16:05:55 2007 +0100
79492
79493     Make SC3 board build with 'make O='; use 'addcons' consistently
79494     (SC3 and Jupiter used to use 'addcon' instead).
79495
79496     Signed-off-by: Wolfgang Denk wd@denx.de
79497
79498 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
79499 Author: Heiko Schocher <hs@pollux.denx.de>
79500 Date:   Tue Mar 13 09:40:59 2007 +0100
79501
79502     [PATCH] update board config for jupiter Board:
79503             added Hush Shell,
79504                   CONFIG_CMDLINE_EDITING,
79505                   CFG_ENV_ADDR_REDUND activated
79506
79507     Signed-off-by: Heiko Schocher <hs@denx.de>
79508
79509 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
79510 Author: Aubrey Li <aubrey.adi@gmail.com>
79511 Date:   Mon Mar 12 12:11:55 2007 +0800
79512
79513     [Blackfin][PATCH] minor cleanup
79514
79515 commit bfa5754a58477ac917d21527cd0f079d87cf188e
79516 Author: Aubrey Li <aubrey.adi@gmail.com>
79517 Date:   Mon Mar 12 01:42:06 2007 +0800
79518
79519     [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
79520
79521 commit 8440bb14581a294375c34b91b42512f9753d1130
79522 Author: Aubrey Li <aubrey.adi@gmail.com>
79523 Date:   Mon Mar 12 00:25:14 2007 +0800
79524
79525     [Blackfin][PATCH] code cleanup
79526
79527 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
79528 Author: Michal Simek <monstr@monstr.eu>
79529 Date:   Sun Mar 11 13:48:24 2007 +0100
79530
79531     [Microblaze][PATCH] part 2
79532     timer support
79533     interrupt controller support
79534     flash support
79535     ethernet support
79536     cache support
79537     board information support
79538     env support
79539     booting image support
79540
79541     adding support for Xilinx ML401
79542
79543 commit 76316a318de91f6184e7c22a10e02d275ade2441
79544 Author: Michal Simek <monstr@monstr.eu>
79545 Date:   Sun Mar 11 13:42:58 2007 +0100
79546
79547     [Microblaze][PATCH]
79548     timer support
79549     interrupt controller support
79550     flash support
79551     ethernet support
79552     cache support
79553     board information support
79554     env support
79555     booting image support
79556
79557     adding support for Xilinx ML401
79558
79559 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
79560 Author: Aubrey Li <aubrey.adi@gmail.com>
79561 Date:   Sat Mar 10 23:49:29 2007 +0800
79562
79563     [Blackfin][PATCH] code cleanup
79564
79565 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
79566 Author: Aubrey.Li <aubrey.adi@gmail.com>
79567 Date:   Fri Mar 9 13:40:56 2007 +0800
79568
79569     [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
79570
79571 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
79572 Author: Aubrey.Li <aubrey.adi@gmail.com>
79573 Date:   Fri Mar 9 13:38:44 2007 +0800
79574
79575     [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
79576
79577 commit 992423ab43c2bcf6b704853bd00af77450915e20
79578 Author: Stefan Roese <sr@denx.de>
79579 Date:   Thu Mar 8 23:00:08 2007 +0100
79580
79581     ppc4xx: Fix file mode of sequoia.c
79582
79583     Signed-off-by: Stefan Roese <sr@denx.de>
79584
79585 commit eb92f613556800f7483666db09d9a237ad911d4a
79586 Author: Wolfgang Denk <wd@pollux.denx.de>
79587 Date:   Thu Mar 8 22:52:51 2007 +0100
79588
79589     Minor cleanup.
79590
79591 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
79592 Author: John Otken john@softadvances.com <john@softadvances.com>
79593 Date:   Thu Mar 8 09:39:48 2007 -0600
79594
79595     ppc4xx: Clear Sequoia/Rainier security engine reset bits
79596
79597     Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
79598
79599 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
79600 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79601 Date:   Thu Mar 8 16:26:52 2007 +0100
79602
79603     [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
79604
79605     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79606
79607 commit d9fc703246840c4b268debf48c334ba55c597dc0
79608 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79609 Date:   Thu Mar 8 16:25:47 2007 +0100
79610
79611     [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
79612
79613     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79614
79615 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
79616 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79617 Date:   Thu Mar 8 16:23:11 2007 +0100
79618
79619     [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
79620
79621     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79622
79623 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
79624 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79625 Date:   Thu Mar 8 16:20:32 2007 +0100
79626
79627     [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
79628
79629     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79630
79631 commit f9fc6a5852a6335840882fa2111925010eea1abe
79632 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79633 Date:   Wed Mar 7 15:32:01 2007 +0100
79634
79635     fixed ethernet phy configuration for plu405 board
79636
79637     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79638
79639 commit 769104c9356594deb2092e204a39c05b33202d6c
79640 Author: Wolfgang Denk <wd@pollux.denx.de>
79641 Date:   Thu Mar 8 21:49:27 2007 +0100
79642
79643     Minor cleanup
79644
79645 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
79646 Author: Stefan Roese <sr@denx.de>
79647 Date:   Thu Mar 8 10:13:16 2007 +0100
79648
79649     [PATCH] Update AMCC Luan 440SP eval board support
79650
79651     The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
79652     inititializition. This includes DDR auto calibration and support
79653     for different DIMM modules, instead of the fixed setup used in
79654     the earlier version.
79655
79656     This patch also enables the cache in FLASH for the startup
79657     phase of U-Boot (while running from FLASH). After relocating to
79658     SDRAM the cache is disabled again. This will speed up the boot
79659     process, especially the SDRAM setup, since there are some loops
79660     for memory testing (auto calibration).
79661
79662     Signed-off-by: Stefan Roese <sr@denx.de>
79663
79664 commit 2f5df47351910a2936c7741cf111855829200943
79665 Author: Stefan Roese <sr@denx.de>
79666 Date:   Thu Mar 8 10:10:18 2007 +0100
79667
79668     [PATCH] Update AMCC Yucca 440SPe eval board support
79669
79670     The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
79671     inititializition. This includes DDR auto calibration and support
79672     for different DIMM modules, instead of the fixed setup used in
79673     the earlier version.
79674
79675     Signed-off-by: Stefan Roese <sr@denx.de>
79676
79677 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
79678 Author: Stefan Roese <sr@denx.de>
79679 Date:   Thu Mar 8 10:07:18 2007 +0100
79680
79681     ppc4xx: Small AMCC Katmai 440SPe update
79682
79683     Signed-off-by: Stefan Roese <sr@denx.de>
79684
79685 commit df294497479b1dca6dd86318b2a912f72fede0df
79686 Author: Stefan Roese <sr@denx.de>
79687 Date:   Thu Mar 8 10:06:09 2007 +0100
79688
79689     ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
79690
79691     Signed-off-by: Stefan Roese <sr@denx.de>
79692
79693 commit 83853178bd36bca6f0f8f1331476620c84a587fc
79694 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
79695 Date:   Wed Mar 7 12:14:50 2007 -0600
79696
79697     net - Support ping reply when processing net-loop
79698
79699     Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
79700
79701     This permits the ping command to test the phy interface when the phy
79702     is put in loopback mode (typically by setting register 0 bit 14).
79703
79704     It also allows the port to respond to an external ping when u-boot is
79705     processing some other net command (such as tftp).  This is useful when
79706     tftp appears to hang.
79707
79708     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
79709     Signed-off-by: Ben Warren <bwarren@qstreams.com>
79710
79711 commit fa1aef15bcd47736687be1af544506e90fba545d
79712 Author: Stefan Roese <sr@denx.de>
79713 Date:   Wed Mar 7 16:43:00 2007 +0100
79714
79715     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
79716
79717     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
79718     DDR memory are dynamically programmed matching the total size
79719     of the equipped memory (DIMM modules).
79720
79721     Signed-off-by: Stefan Roese <sr@denx.de>
79722
79723 commit e2ebe696818939e2b974628be9c921ea3fe9de13
79724 Author: Stefan Roese <sr@denx.de>
79725 Date:   Wed Mar 7 16:39:36 2007 +0100
79726
79727     [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
79728
79729     This patch fixes a problem that occurs when 2 DIMM's are
79730     used. This problem was first spotted and fixed by Gerald Jackson
79731     <gerald.jackson@reaonixsecurity.com> but this patch fixes the
79732     problem in a little more clever way.
79733
79734     This patch also adds the nice functionality to dynamically
79735     create the TLB entries for the SDRAM (tlb.c). So we should
79736     never run into such problems with wrong (too short) TLB
79737     initialization again on these platforms.
79738
79739     As this feature is new to the "old" 44x SPD DDR driver, it
79740     has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
79741
79742     Signed-off-by: Stefan Roese <sr@denx.de>
79743
79744 commit 39218433983417b9df087976a79e3f80dd5e83d6
79745 Author: Wolfgang Denk <wd@denx.de>
79746 Date:   Wed Mar 7 16:33:44 2007 +0100
79747
79748     UC101: fix compiler warnings
79749
79750 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
79751 Author: Wolfgang Denk <wd@pollux.denx.de>
79752 Date:   Wed Mar 7 16:19:46 2007 +0100
79753
79754     HMI1001: fix build error, cleanup compiler warnings.
79755
79756 commit ad5bb451ade552c44bef9119d907929ebc2c126f
79757 Author: Wolfgang Denk <wd@pollux.denx.de>
79758 Date:   Tue Mar 6 18:08:43 2007 +0100
79759
79760     Restructure POST directory to support of other CPUs, boards, etc.
79761
79762 commit a5284efd125967675b2e9c6ef7b95832268ad360
79763 Author: Wolfgang Denk <wd@pollux.denx.de>
79764 Date:   Tue Mar 6 18:01:47 2007 +0100
79765
79766     Fix HOSTARCH handling.
79767     Patch by Mike Frysinger, Mar 05 2007
79768
79769 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
79770 Author: Stefan Roese <sr@denx.de>
79771 Date:   Tue Mar 6 07:47:04 2007 +0100
79772
79773     [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
79774
79775     As provided by the AMCC applications team, this patch optimizes the
79776     DDR2 setup for 166MHz bus speed. The values provided are also save
79777     to use on a "normal" 133MHz PLB bus system. Only the refresh counter
79778     setup has to be adjusted as done in this patch.
79779
79780     For this the NAND booting version had to include the "speed.c" file
79781     from the cpu/ppc4xx directory. With this addition the NAND SPL image
79782     will just fit into the 4kbytes of program space. gcc version 4.x as
79783     provided with ELDK 4.x is needed to generate this optimized code.
79784
79785     Signed-off-by: Stefan Roese <sr@denx.de>
79786
79787 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
79788 Author: Wolfgang Denk <wd@pollux.denx.de>
79789 Date:   Sun Mar 4 01:36:05 2007 +0100
79790
79791     Some code cleanup.
79792
79793 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
79794 Author: Kim Phillips <kim.phillips@freescale.com>
79795 Date:   Wed Feb 28 00:02:04 2007 -0600
79796
79797     mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
79798
79799     (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
79800
79801 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
79802 Author: Kumar Gala <galak@kernel.crashing.org>
79803 Date:   Tue Feb 27 23:51:42 2007 -0600
79804
79805     mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
79806
79807     The config value for:
79808     * CFG_ACR_PIPE_DEP
79809     * CFG_ACR_RPTCNT
79810     * CFG_SPCR_TSEC1EP
79811     * CFG_SPCR_TSEC2EP
79812     * CFG_SCCR_TSEC1CM
79813     * CFG_SCCR_TSEC2CM
79814
79815     Were not being used when setting the appropriate register
79816
79817     Added:
79818     * CFG_SCCR_USBMPHCM
79819     * CFG_SCCR_USBDRCM
79820     * CFG_SCCR_PCICM
79821     * CFG_SCCR_ENCCM
79822
79823     To allow full config of the SCCR.
79824
79825     Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
79826     that were just bogus.
79827
79828     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
79829
79830 commit d51b3cf371cd441030460ef19d36b2924c361b1a
79831 Author: Kim Phillips <kim.phillips@freescale.com>
79832 Date:   Thu Feb 22 20:06:57 2007 -0600
79833
79834     mpc83xx: update [local-]mac-address properties on UEC based devices
79835
79836     8360 and 832x weren't updating their [local-]mac-address
79837     properties. This patch fixes that.
79838
79839     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
79840
79841 commit 61f4f912acbe60776c5e00df1ec94094ce672957
79842 Author: Timur Tabi <timur@freescale.com>
79843 Date:   Tue Feb 13 10:41:42 2007 -0600
79844
79845     mpc83xx: write MAC address to mac-address and local-mac-address
79846
79847     Some device trees have a mac-address property, some have local-mac-address,
79848     and some have both.  To support all of these device trees, this patch
79849     updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
79850     This function already updates local-mac-address.
79851
79852     Signed-off-by: Timur Tabi <timur@freescale.com>
79853
79854 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
79855 Author: Kim Phillips <kim.phillips@freescale.com>
79856 Date:   Tue Feb 27 18:41:08 2007 -0600
79857
79858     mpc83xx: add command line editing by default
79859
79860 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
79861 Author: Kim Phillips <kim.phillips@freescale.com>
79862 Date:   Wed Feb 14 19:50:53 2007 -0600
79863
79864     mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
79865
79866     Disable G1TXCLK, G2TXCLK h/w buffers. This patch
79867     fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
79868
79869     Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
79870
79871     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
79872     Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
79873
79874 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
79875 Author: Xie Xiaobo <r63061@freescale.com>
79876 Date:   Wed Feb 14 18:27:17 2007 +0800
79877
79878     mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
79879
79880     The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
79881     it pass DDR/DDR2 compliance tests.
79882
79883     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
79884
79885 commit b110f40bd180c6b560276589beedf753e97c46ce
79886 Author: Xie Xiaobo <r63061@freescale.com>
79887 Date:   Wed Feb 14 18:27:06 2007 +0800
79888
79889     mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
79890
79891     MPC8360E rev2.0 have new spridr,and PVR value,
79892     The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
79893
79894     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
79895
79896 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
79897 Author: Xie Xiaobo <r63061@freescale.com>
79898 Date:   Wed Feb 14 18:26:44 2007 +0800
79899
79900     mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
79901
79902     MPC8349E rev3.1 have new spridr,and PVR value,
79903     The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
79904
79905     Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
79906
79907 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
79908 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
79909 Date:   Wed Jan 31 11:04:19 2007 +0100
79910
79911     mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
79912
79913     Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
79914     which is used to se if an slave will ACK after receiving its address.
79915
79916     Correct i2c probing to use this method as the old method could upset
79917     a slave as it wrote a data byte to it.
79918
79919     Add a small delay in i2c_init() to let the controller
79920     shutdown any ongoing I2C activity.
79921
79922     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
79923
79924 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
79925 Author: Timur Tabi <timur@freescale.com>
79926 Date:   Wed Jan 31 15:54:29 2007 -0600
79927
79928     mpc83xx: Add support for the MPC8349E-mITX-GP
79929
79930     Add support for the MPC8349E-mITX-GP, a stripped-down version of the
79931     MPC8349E-mITX.  Bonus features include support for low-boot (BMS bit in
79932     HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
79933
79934     Signed-off-by: Timur Tabi <timur@freescale.com>
79935
79936 commit fab16807adad350f618024350c6950165c247c72
79937 Author: Timur Tabi <timur@freescale.com>
79938 Date:   Wed Jan 31 15:54:20 2007 -0600
79939
79940     mpc83xx: Delete sdram_init() for MPC8349E-mITX
79941
79942     There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
79943     never does anything.  This patch deletes it.
79944
79945     Signed-off-by: Timur Tabi <timur@freescale.com>
79946
79947 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
79948 Author: Dave Liu <daveliu@freescale.com>
79949 Date:   Fri Jan 19 10:43:26 2007 +0800
79950
79951     mpc83xx: Fix the LAW1/3 bug
79952
79953     The patch solves the alignment problem of the local bus access windows to
79954     render accessible the memory bank and PHY registers of UPC 1 (starting at
79955     0xf801 0000). What we actually did was to adjust the sizes of the bus
79956     access windows so that the base address alignment requirement would be met.
79957
79958     Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
79959     Signed-off-by: Gridish Shlomi <gridish@freescale.com>
79960     Signed-off-by: Dave Liu <daveliu@freescale.com>
79961
79962 commit 97c4b397dce236a7318b304667bf89e59d08b17c
79963 Author: Kim Phillips <kim.phillips@freescale.com>
79964 Date:   Tue Jan 30 16:15:31 2007 -0600
79965
79966     mpc83xx: don't hang if watchdog configured on 8360, 832x
79967
79968     don't hang if watchdog configured on 8360, 832x
79969
79970     The watchdog programming model is the same across all 83xx devices;
79971     make the code reflect that.
79972
79973 commit b70047478570e371ce7223be342ce98afea0f7d6
79974 Author: Kim Phillips <kim.phillips@freescale.com>
79975 Date:   Tue Jan 30 16:15:21 2007 -0600
79976
79977     mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
79978
79979     protect memcpy to bad address if a local-mac-address is missing from dt
79980
79981 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
79982 Author: Kim Phillips <kim.phillips@freescale.com>
79983 Date:   Tue Jan 30 16:15:04 2007 -0600
79984
79985     mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
79986
79987     make 8360 default environment fdt be 8360 (not 8349)
79988
79989 commit a28899c910024a0226331df07207b1038c300c93
79990 Author: Emilian Medve <Emilian.Medve@freescale.com>
79991 Date:   Tue Jan 30 16:14:50 2007 -0600
79992
79993     mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
79994
79995     The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
79996     be used for busy-waiting since it strips the 'volatile' property from
79997     the bd variable. gcc3 was working by pure luck.
79998
79999     This is a follow on patch to "Fix the UEC driver bug of QE"
80000
80001 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
80002 Author: Kumar Gala <galak@kernel.crashing.org>
80003 Date:   Tue Jan 30 14:08:30 2007 -0600
80004
80005     mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
80006
80007     The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
80008     MPC834X class processors.  Change the protections from CONFIG_MPC8349 to
80009     CONFIG_MPC834X so they are more generic.
80010
80011     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
80012
80013 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
80014 Author: Kim Phillips <kim.phillips@freescale.com>
80015 Date:   Thu Jan 25 13:40:55 2007 -0600
80016
80017     mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
80018
80019 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
80020 Author: Kim Phillips <kim.phillips@freescale.com>
80021 Date:   Wed Jan 24 17:18:37 2007 -0600
80022
80023     mpc83xx: sort Makefile targets
80024
80025     reordered targets alphabetically
80026
80027 commit 91e25769771c1164ed63ffca0add49f934ae3343
80028 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
80029 Date:   Tue Jan 16 11:38:14 2007 -0500
80030
80031     mpc83xx: U-Boot support for Wind River SBC8349
80032
80033     I've redone the SBC8349 support to match git-current, which
80034     incorporates all the MPC834x updates from Freescale since the 1.1.6
80035     release,  including the DDR changes.
80036
80037     I've kept all the SBC8349 files as parallel as possible to the
80038     MPC8349EMDS ones for ease of maintenance and to allow for easy
80039     inspection of what was changed to support this board.  Hence the SBC8349
80040     U-Boot has FDT support and everything else that the MPC8349EMDS has.
80041
80042     Fortunately the Freescale updates added support for boards using CS0,
80043     but I had to change spd_sdram.c to allow for board specific settings for
80044     the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
80045     default if the board doesn't specify a value.)
80046
80047     Hopefully this should be mergeable as-is and require no whitespace
80048     cleanups or similar, but if something doesn't measure up then let me
80049     know and I'll fix it.
80050
80051     Thanks,
80052     Paul.
80053
80054 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
80055 Author: Sam Song <samsongshu@yahoo.com.cn>
80056 Date:   Thu Dec 14 19:03:21 2006 +0800
80057
80058     mpc83xx: Remove a redundant semicolon in mpc8349itx.c
80059
80060     A redundant semicolon existed in mpc8349itx.c
80061     should be removed.
80062
80063     Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
80064
80065 commit f35f358241c549be3f75cfe2eaa642914275b7ba
80066 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
80067 Date:   Wed Dec 6 21:23:55 2006 -0500
80068
80069     mpc83xx: Put the version (and magic) after the HRCW.
80070
80071     Put the version (and magic) after the HRCW.  This puts it in a fixed
80072     location in flash, not at the start of flash but as close as we can get.
80073
80074     Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
80075
80076 commit 48aecd969171a6e99a55fae04933857787f9a5bd
80077 Author: Dave Liu <r63238@freescale.com>
80078 Date:   Thu Dec 7 21:14:51 2006 +0800
80079
80080     mpc83xx: Add the MPC832XEMDS board readme
80081
80082     Add the MPC832XEMDS board readme
80083
80084     Signed-off-by: Dave Liu <daveliu@freescale.com>
80085
80086 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
80087 Author: Dave Liu <r63238@freescale.com>
80088 Date:   Thu Dec 7 21:13:15 2006 +0800
80089
80090     mpc83xx: Add support for the MPC832XEMDS board
80091
80092     This patch supports DUART, ETH3/4 and PCI etc.
80093
80094     Signed-off-by: Dave Liu <daveliu@freescale.com>
80095
80096 commit e080313c32322e15ab5a18eb896a252858c57284
80097 Author: Dave Liu <r63238@freescale.com>
80098 Date:   Thu Dec 7 21:11:58 2006 +0800
80099
80100     mpc83xx: streamline the 83xx immr head file
80101
80102     For better format and style, I streamlined the 83xx head files,
80103     including immap_83xx.h and mpc83xx.h. In the old head files, 1)
80104     duplicated macro definition appear in the both files; 2) the structure
80105     of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
80106     macro definition put inside the each structure. So, I cleaned up the
80107     structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
80108     moved the macro definition to mpc83xx.h, Just like MPC8260.
80109
80110     CHANGELOG
80111
80112     *streamline the 83xx immr head file
80113
80114     Signed-off-by: Dave Liu <daveliu@freescale.com>
80115
80116 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
80117 Author: Dave Liu <r63238@freescale.com>
80118 Date:   Wed Dec 6 11:38:17 2006 +0800
80119
80120     mpc83xx: Fix the UEC driver bug of QE
80121
80122     The patch prevents the GCC tool chain from striping useful code for
80123     optimization. It will make UEC ethernet driver workable, Otherwise the
80124     UEC will fail in tx when you are using gcc4.x. but the driver can work
80125     when using gcc3.4.3.
80126
80127     CHANGELOG
80128
80129     *Prevent the GCC from striping code for optimization, Otherwise the UEC
80130     will tx failed when you are using gcc4.x.
80131
80132     Signed-off-by: Dave Liu <daveliu@freescale.com>
80133
80134 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
80135 Author: Stefan Roese <sr@denx.de>
80136 Date:   Thu Mar 1 21:11:36 2007 +0100
80137
80138     [PATCH] Update AMCC Katmai 440SPe eval board support
80139
80140     This patch updates the recently added Katmai board support. The biggest
80141     change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
80142     driver.
80143
80144     Please note, that still some problems are left with some memory
80145     configurations. See the driver for more details.
80146
80147     Signed-off-by: Stefan Roese <sr@denx.de>
80148
80149 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
80150 Author: Stefan Roese <sr@denx.de>
80151 Date:   Thu Mar 1 07:03:25 2007 +0100
80152
80153     [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
80154
80155     Signed-off-by: Stefan Roese <sr@denx.de>
80156
80157 commit ccbc7036648e465697ca298ba51e0e76dda352a0
80158 Author: Wolfgang Denk <wd@pollux.denx.de>
80159 Date:   Wed Feb 28 01:28:53 2007 +0100
80160
80161     SC3: fix typo in default environment
80162
80163 commit e344568b1b46af85ec32d815586f91bc115d6223
80164 Author: Sergei Poselenov <sposelenov@emcraft.com>
80165 Date:   Tue Feb 27 20:15:30 2007 +0300
80166
80167     MCC200: Fixes for update procedure
80168
80169     - fix logic error in image type handling
80170     - make sure file system images (cramfs etc.) get stored in flash
80171       with image header stripped so they can be mounted through MTD
80172
80173 commit 743571145b37182757d4e688a77860b36ee77573
80174 Author: Wolfgang Denk <wd@pollux.denx.de>
80175 Date:   Tue Feb 27 14:26:04 2007 +0100
80176
80177     Minor code cleanup.
80178
80179 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
80180 Author: Sergei Poselenov <sposelenov@emcraft.com>
80181 Date:   Tue Feb 27 12:40:16 2007 +0300
80182
80183     MCC200 update - add LCD Progress Indicator
80184
80185 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
80186 Author: Stefan Roese <sr@denx.de>
80187 Date:   Thu Feb 22 07:43:34 2007 +0100
80188
80189     [PATCH] get_dev() now unconditionally uses manual relocation
80190
80191     Since the relocation fix is not included yet and we're not sure how
80192     it will be added, this patch removes code that required relocation
80193     to be fixed for now.
80194
80195     Signed-off-by: Stefan Roese <sr@denx.de>
80196
80197 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
80198 Author: Stefan Roese <sr@denx.de>
80199 Date:   Thu Feb 22 07:40:23 2007 +0100
80200
80201     [PATCH] Change systemace driver to select 8 & 16bit mode
80202
80203     As suggested by Grant Likely this patch enables the Xilinx SystemACE
80204     driver to select 8 or 16bit mode upon startup.
80205
80206     Signed-off-by: Stefan Roese <sr@denx.de>
80207
80208 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
80209 Author: Haiying Wang <Haiying.Wang@freescale.com>
80210 Date:   Wed Feb 21 16:52:31 2007 +0100
80211
80212     [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
80213
80214     Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
80215     is fully finished. The sync() is defined in each CPU's io.h file. For
80216     those CPUs which do not need sync for now, a dummy sync() is defined in
80217     their io.h as well.
80218
80219     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
80220
80221 commit da04995c7dc6772013a9a0dc5c767f190c402478
80222 Author: Stefan Roese <sr@denx.de>
80223 Date:   Wed Feb 21 13:44:34 2007 +0100
80224
80225     [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
80226
80227     Signed-off-by: Stefan Roese <sr@denx.de>
80228
80229 commit 751bb57107d78978ae08e697c3deba816f5be091
80230 Author: Stefan Roese <sr@denx.de>
80231 Date:   Tue Feb 20 13:21:57 2007 +0100
80232
80233     [PATCH] Fix relocation problem with "new" get_dev() function
80234
80235     This patch enables the "new" get_dev() function for block devices
80236     introduced by Grant Likely to be used on systems that still suffer
80237     from the relocation problems (manual relocation neede because of
80238     problems with linker script).
80239
80240     Hopefully we can resolve this relocation issue soon for all platform
80241     so we don't need this additional code anymore.
80242
80243     Signed-off-by: Stefan Roese <sr@denx.de>
80244
80245 commit d93e2212f962668b3dce091ff5edc33f2347fe37
80246 Author: Stefan Roese <sr@denx.de>
80247 Date:   Tue Feb 20 13:17:42 2007 +0100
80248
80249     [PATCH] Update SystemACE driver for 16bit access
80250
80251     This patch removes some problems when the Xilinx SystemACE driver
80252     is used with 16bit access on an big endian platform (like the
80253     AMCC Katmai).
80254
80255     Signed-off-by: Stefan Roese <sr@denx.de>
80256
80257 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
80258 Author: Stefan Roese <sr@denx.de>
80259 Date:   Tue Feb 20 13:15:40 2007 +0100
80260
80261     [PATCH] Clean up Katmai (440SPe) linker script
80262
80263     Signed-off-by: Stefan Roese <sr@denx.de>
80264
80265 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
80266 Author: Stefan Roese <sr@denx.de>
80267 Date:   Tue Feb 20 10:57:08 2007 +0100
80268
80269     [PATCH] Add support for the AMCC Katmai (440SPe) eval board
80270
80271     Signed-off-by: Stefan Roese <sr@denx.de>
80272
80273 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
80274 Author: Stefan Roese <sr@denx.de>
80275 Date:   Tue Feb 20 10:51:26 2007 +0100
80276
80277     [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
80278
80279     This patch switches to the desired I2C bus when the date/dtt
80280     commands are called. This can be configured using the
80281     CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
80282
80283     Signed-off-by: Stefan Roese <sr@denx.de>
80284
80285 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
80286 Author: Stefan Roese <sr@denx.de>
80287 Date:   Tue Feb 20 10:43:34 2007 +0100
80288
80289     [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
80290
80291     This patch adds support for the DDR2 controller used on the
80292     440SP and 440SPe. It is tested on the Katmai (440SPe) eval
80293     board and works fine with the following DIMM modules:
80294
80295     - Corsair CM2X512-5400C4 (512MByte per DIMM)
80296     - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
80297     - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
80298
80299     This patch also adds the nice functionality to dynamically
80300     create the TLB entries for the SDRAM (tlb.c). So we should
80301     never run into such problems with wrong (too short) TLB
80302     initialization again on these platforms.
80303
80304     Signed-off-by: Stefan Roese <sr@denx.de>
80305
80306 commit 36d830c9830379045f5daa9f542ac1c990c70068
80307 Author: Stefan Roese <sr@denx.de>
80308 Date:   Tue Feb 20 10:35:42 2007 +0100
80309
80310     [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
80311
80312     Since the existing 4xx SPD SDRAM initialization routines for the
80313     405 SDRAM controller and the 440 DDR controller don't have much in
80314     common this patch splits both drivers into different files.
80315
80316     This is in preparation for the 440 DDR2 controller support (440SP/e).
80317
80318     Signed-off-by: Stefan Roese <sr@denx.de>
80319
80320 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
80321 Author: Stefan Roese <sr@denx.de>
80322 Date:   Tue Feb 20 10:27:08 2007 +0100
80323
80324     [PATCH] PPC4xx: Add support for multiple I2C busses
80325
80326     This patch adds support for multiple I2C busses on the PPC4xx
80327     platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
80328     to make use of this feature.
80329
80330     It also merges the 405 and 440 i2c header files into one common
80331     file 4xx_i2c.h.
80332
80333     Also the 4xx i2c reset procedure is reworked since I experienced
80334     some problems with the first access on the 440SPe Katmai board.
80335
80336     Signed-off-by: Stefan Roese <sr@denx.de>
80337
80338 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
80339 Author: Grant Likely <grant.likely@secretlab.ca>
80340 Date:   Tue Feb 20 09:05:45 2007 +0100
80341
80342     [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
80343
80344     Block device read/write is anonymous data; there is no need to use a
80345     typed pointer.  void * is fine.  Also add a hook for block_read functions
80346
80347     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80348
80349 commit 53758fa20e935cc87eeb0519ed365df753a6f289
80350 Author: Grant Likely <grant.likely@secretlab.ca>
80351 Date:   Tue Feb 20 09:05:38 2007 +0100
80352
80353     [PATCH 8_9] Add block_write hook to block_dev_desc_t
80354
80355     Preparation for future patches which support block device writing
80356
80357     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80358
80359 commit f4852ebe6ca946a509667eb68be42026f837be76
80360 Author: Grant Likely <grant.likely@secretlab.ca>
80361 Date:   Tue Feb 20 09:05:31 2007 +0100
80362
80363     [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
80364
80365     Register read/write does not need to be wrapped in a full function.  The
80366     patch replaces them with macros.
80367
80368     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80369
80370 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
80371 Author: Grant Likely <grant.likely@secretlab.ca>
80372 Date:   Tue Feb 20 09:05:23 2007 +0100
80373
80374     [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
80375
80376     The code in this file is not a command; it is a device driver.  Put it in
80377     the correct place.  There are zero functional changes in this patch, it
80378     only moves the file.
80379
80380     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80381
80382 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
80383 Author: Grant Likely <grant.likely@secretlab.ca>
80384 Date:   Tue Feb 20 09:05:16 2007 +0100
80385
80386     [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
80387
80388     This patch is in preparation of additional changes to the sysace driver.
80389     May as well take this opportunity to fixup the inconsistent whitespace since
80390     this file is about to undergo major changes anyway.
80391
80392     There are zero functional changes in this patch.  It only cleans up the
80393     the whitespace.
80394
80395     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80396
80397 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
80398 Author: Grant Likely <grant.likely@secretlab.ca>
80399 Date:   Tue Feb 20 09:05:07 2007 +0100
80400
80401     [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
80402
80403     isprint is already defined in ctype.c
80404
80405     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80406
80407 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
80408 Author: Grant Likely <grant.likely@secretlab.ca>
80409 Date:   Tue Feb 20 09:05:00 2007 +0100
80410
80411     [PATCH 3_9] Move buffer print code from md command to common function
80412
80413     Printing a buffer is a darn useful thing.  Move the buffer print code
80414     into print_buffer() in lib_generic/
80415
80416     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80417
80418 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
80419 Author: Grant Likely <grant.likely@secretlab.ca>
80420 Date:   Tue Feb 20 09:04:52 2007 +0100
80421
80422     [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
80423
80424     Change the xilinx device drivers and board code to include config.h
80425     instead of xparameters.h directly.  config.h always includes the
80426     correct xparameters file.  This change reduces the posibility of
80427     including the wrong file when adding a new xilinx board port
80428
80429     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80430
80431 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
80432 Author: Grant Likely <grant.likely@secretlab.ca>
80433 Date:   Tue Feb 20 09:04:34 2007 +0100
80434
80435     [PATCH 1_4] Merge common get_dev() routines for block devices
80436
80437     Each of the filesystem drivers duplicate the get_dev routine.  This change
80438     merges them into a single function in part.c
80439
80440     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80441
80442 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
80443 Author: Wolfgang Denk <wd@pollux.denx.de>
80444 Date:   Mon Feb 19 23:09:51 2007 +0100
80445
80446     MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
80447     as root file system images.
80448
80449 commit 489c696ae7211218961d159e43e722d74c36fcbc
80450 Author: Sergei Poselenov <sposelenov@emcraft.com>
80451 Date:   Wed Feb 14 14:30:28 2007 +0300
80452
80453     MCC200: Extensions to Software Update Mechanism
80454
80455     Update / extend Software Update Mechanism for MCC200 board:
80456
80457     - Add support for rootfs image added. The environment variables
80458       "rootfs_st" and "rootfs_nd" can be used to override the default
80459       values of the image start and end.
80460     - Remove excessive key check code.
80461     - Code cleanup.
80462
80463 commit 4be23a12f23f1372634edc3215137b09768b7949
80464 Author: Stefan Roese <sr@denx.de>
80465 Date:   Mon Feb 19 08:23:15 2007 +0100
80466
80467     [PATCH] Update Sequoia EBC configuration (NOR FLASH)
80468
80469     As spotted by Matthias Fuchs, the READY input should not be
80470     enabled for the NOR FLASH on the Sequoia board.
80471
80472     Signed-off-by: Stefan Roese <sr@denx.de>
80473
80474 commit 2605e90bf676d48123afe5719a846d2b52b24aac
80475 Author: Heiko Schocher <hs@pollux.denx.de>
80476 Date:   Fri Feb 16 07:57:42 2007 +0100
80477
80478     [PATCH] Added support for the jupiter board.
80479
80480     Signed-off-by: Heiko Schocher <hs@denx.de>
80481
80482 commit 497d012e5be0194e1084073d0081eb1a844796b2
80483 Author: Gary Jennejohn <garyj@pollux.denx.de>
80484 Date:   Mon Feb 12 13:11:50 2007 +0100
80485
80486     LPC2292: patch from Siemens.
80487
80488 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
80489 Author: Stefan Roese <sr@denx.de>
80490 Date:   Sat Feb 10 08:49:31 2007 +0100
80491
80492     [PATCH] Add missing p3mx.h file to repository (ups)
80493
80494     Signed-off-by: Stefan Roese <sr@denx.de>
80495
80496 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
80497 Author: Bartlomiej Sieka <tur@semihalf.com>
80498 Date:   Fri Feb 9 10:45:42 2007 +0100
80499
80500     [Motion-PRO] Preliminary support for the Motion-PRO board.
80501
80502 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
80503 Author: Stefan Roese <sr@denx.de>
80504 Date:   Wed Feb 7 16:51:08 2007 +0100
80505
80506     [PATCH] Update some AMCC 4xx board config files (set initrd_high)
80507
80508     Some boards that can have more than 768MBytes of SDRAM need to
80509     set "initrd_high", so that the initrd can be accessed by the
80510     Linux kernel.
80511
80512     Signed-off-by: Stefan Roese <sr@denx.de>
80513
80514 commit 7372ca68227930d03cffa548310524cad5b96733
80515 Author: Stefan Roese <sr@denx.de>
80516 Date:   Fri Feb 2 12:44:22 2007 +0100
80517
80518     [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
80519
80520     Previously the strapping DCR/SDR was read to determine if the internal PCI
80521     arbiter is enabled or not. This strapping bit can be overridden, so now
80522     the current status is read from the correct DCR/SDR register.
80523
80524     Signed-off-by: Stefan Roese <sr@denx.de>
80525
80526 commit 2aa54f651a42d198673318f07a20c89a43e4d197
80527 Author: Stefan Roese <sr@denx.de>
80528 Date:   Fri Feb 2 12:42:08 2007 +0100
80529
80530     [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
80531
80532     Signed-off-by: Stefan Roese <sr@denx.de>
80533
80534 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
80535 Author: Stefan Roese <sr@denx.de>
80536 Date:   Thu Feb 1 13:22:41 2007 +0100
80537
80538     [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
80539
80540     When PCI PNP is enabled the pci pnp configuration routine is called
80541     which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
80542     problems with some PCI cards. For now disable the PCI PNP configuration.
80543
80544     Signed-off-by: Stefan Roese <sr@denx.de>
80545
80546 commit 2902fadade3be7659467e8d074048c6b7068f5c0
80547 Author: Stefan Roese <sr@denx.de>
80548 Date:   Wed Jan 31 16:56:10 2007 +0100
80549
80550     [PATCH] Update 440EPx/440GRx cpu detection
80551
80552     Signed-off-by: Stefan Roese <sr@denx.de>
80553
80554 commit d5ea287b02a6945c3977410e364a879dd1a555c8
80555 Author: Stefan Roese <sr@denx.de>
80556 Date:   Wed Jan 31 16:38:04 2007 +0100
80557
80558     [PATCH] Update esd cpci5200 files
80559
80560     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
80561
80562 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
80563 Author: Stefan Roese <sr@denx.de>
80564 Date:   Wed Jan 31 16:37:34 2007 +0100
80565
80566     [PATCH] Add support for esd mecp5200 board
80567
80568     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
80569
80570 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
80571 Author: Stefan Roese <sr@denx.de>
80572 Date:   Wed Jan 31 12:38:50 2007 +0100
80573
80574     [PATCH] Remove unneccessary yellowstone board config file
80575
80576     Signed-off-by: Stefan Roese <sr@denx.de>
80577
80578 commit e802594b6fa1b166308820c276b96dc0d7cc731c
80579 Author: Stefan Roese <sr@denx.de>
80580 Date:   Tue Jan 30 17:06:10 2007 +0100
80581
80582     [PATCH] Update Sequoia (440EPx) config file
80583
80584     The config file now handles the 2nd target, the Rainier (440GRx)
80585     evaluation board better. Additionally the PPC input clock was
80586     adjusted to match the correct value of 33.0 MHz.
80587
80588     Signed-off-by: Stefan Roese <sr@denx.de>
80589
80590 commit 700200c67e73b83751418abe7815840dca8fd6cb
80591 Author: Stefan Roese <sr@denx.de>
80592 Date:   Tue Jan 30 17:04:19 2007 +0100
80593
80594     [PATCH] Merge Yosemite & Yellowstone board ports
80595
80596     Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
80597     share one config file and all board specific files. This way we
80598     don't have to maintain two different sets of files for nearly
80599     identical boards.
80600
80601     Signed-off-by: Stefan Roese <sr@denx.de>
80602
80603 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
80604 Author: Stefan Roese <sr@denx.de>
80605 Date:   Tue Jan 30 15:01:49 2007 +0100
80606
80607     [PATCH] Update Prodrive SCPU (PDNB3 variant) board
80608
80609     SCPU doesn't use redundant environment in flash.
80610
80611     Signed-off-by: Stefan Roese <sr@denx.de>
80612
80613 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
80614 Author: Stefan Roese <sr@denx.de>
80615 Date:   Tue Jan 30 12:51:07 2007 +0100
80616
80617     [PATCH] alpr: Update alpr board config file
80618
80619     Signed-off-by: Stefan Roese <sr@denx.de>
80620
80621 commit f8db84f132b1e335f20f96138a1f09ed97b08664
80622 Author: Wolfgang Denk <wd@pollux.denx.de>
80623 Date:   Tue Jan 30 00:50:40 2007 +0100
80624
80625     LPC2292 SODIMM port coding style cleanup.
80626
80627 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
80628 Author: Gary Jennejohn <garyj@pollux.denx.de>
80629 Date:   Wed Jan 24 12:16:56 2007 +0100
80630
80631     Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
80632
80633 commit 2daf046ba627f85f44195815778140039636244e
80634 Author: Bartlomiej Sieka <tur@semihalf.com>
80635 Date:   Tue Jan 23 17:22:06 2007 +0100
80636
80637     [iDMR] Add MTD and JFFS2 support, also add default partition definition.
80638
80639 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
80640 Author: Bartlomiej Sieka <tur@semihalf.com>
80641 Date:   Tue Jan 23 14:21:14 2007 +0100
80642
80643     [iDMR] Flash driver on initialisation write-protects some sectors,
80644     currently sectors 0-3. Sector 3 does not need to be protected, though
80645     (U-boot occupies sectors 0-1 and the environment sector 2). This commit
80646     fixes this, i.e., only sectors 0-2 are protected.
80647
80648 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
80649 Author: Bartlomiej Sieka <tur@semihalf.com>
80650 Date:   Tue Jan 23 14:11:22 2007 +0100
80651
80652     [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
80653     "mii device" results in "Unexpected exception"). Fixing this properly
80654     requires some clean-up in the FEC drivers infrastructure for ColdFire, so
80655     this commit disables MII commads for now.
80656
80657 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
80658 Author: Bartlomiej Sieka <tur@semihalf.com>
80659 Date:   Tue Jan 23 13:25:22 2007 +0100
80660
80661     [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
80662     Identification Register (CIR).
80663
80664 commit fdef388758506765d4d6a7155c8f1584c63ff581
80665 Author: roy zang <tie-fei.zang@freescale.com>
80666 Date:   Mon Jan 22 13:19:21 2007 +0800
80667
80668     use  CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
80669     The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
80670     fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
80671     mpc7448hpc2 board.
80672
80673 commit a4012396645533aef218354eeba754dff0deace8
80674 Author: Wolfgang Denk <wd@pollux.denx.de>
80675 Date:   Fri Jan 19 23:08:39 2007 +0100
80676
80677     Minor code cleanup.
80678
80679 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
80680 Author: Heiko Schocher <hs@pollux.denx.de>
80681 Date:   Fri Jan 19 19:57:10 2007 +0100
80682
80683     [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
80684
80685     Signed-off-by: Heiko Schocher <hs@denx.de>
80686
80687 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
80688 Author: Heiko Schocher <hs@pollux.denx.de>
80689 Date:   Fri Jan 19 18:05:26 2007 +0100
80690
80691     [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
80692                  if you must swap the bytes between reading/writing.
80693                  (Needed for the SC3 board)
80694
80695     Signed-off-by: Heiko Schocher <hs@denx.de>
80696
80697 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
80698 Author: Stefan Roese <sr@denx.de>
80699 Date:   Thu Jan 18 16:05:47 2007 +0100
80700
80701     [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
80702
80703     Signed-off-by: Stefan Roese <sr@denx.de>
80704
80705 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
80706 Author: Stefan Roese <sr@denx.de>
80707 Date:   Thu Jan 18 11:54:52 2007 +0100
80708
80709     [PATCH] Update Prodrive P3Mx support
80710
80711     Signed-off-by: Stefan Roese <sr@denx.de>
80712
80713 commit 34167a36c29ee946b727465db5c014746a08e978
80714 Author: Stefan Roese <sr@denx.de>
80715 Date:   Thu Jan 18 11:48:10 2007 +0100
80716
80717     [PATCH] Add missing Taishan config file
80718
80719     Signed-off-by: Stefan Roese <sr@denx.de>
80720
80721 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
80722 Author: Heiko Schocher <hs@pollux.denx.de>
80723 Date:   Thu Jan 18 11:28:51 2007 +0100
80724
80725     [PATCH] Fix: Compilerwarnings for SC3 board.
80726                  The EBC Configuration Register is now by CFG_EBC_CFG definable
80727                  Added JFFS2 support for the SC3 board.
80728
80729     Signed-off-by: Heiko Schocher <hs@denx.de>
80730
80731 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
80732 Author: Stefan Roese <sr@denx.de>
80733 Date:   Thu Jan 18 10:25:34 2007 +0100
80734
80735     [PATCH] Add support for AMCC Taishan PPC440GX eval board
80736
80737     Signed-off-by: Stefan Roese <sr@denx.de>
80738
80739 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
80740 Author: Wolfgang Denk <wd@pollux.denx.de>
80741 Date:   Tue Jan 16 18:30:50 2007 +0100
80742
80743     Raname solidcard3 into sc3; add redundant env for sc3
80744
80745 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
80746 Author: Wolfgang Denk <wd@pollux.denx.de>
80747 Date:   Tue Jan 16 12:46:35 2007 +0100
80748
80749     Update default environment for Solidcard3
80750
80751 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
80752 Author: Stefan Roese <sr@denx.de>
80753 Date:   Mon Jan 15 09:46:29 2007 +0100
80754
80755     [PATCH] Fix 440SPe rev B detection from previous patch
80756
80757     Signed-off-by: Stefan Roese <sr@denx.de>
80758
80759 commit a443d31410c571ee8f970da819a44d698fdd6b1f
80760 Author: Heiko Schocher <hs@pollux.denx.de>
80761 Date:   Sun Jan 14 13:35:31 2007 +0100
80762
80763         [FIX] correct I2C Writes for the LM81 Sensor.
80764
80765         Signed-off-by: Heiko Schocher <hs@denx.de>
80766
80767 commit 0bba5452835f19a61204edcda3a58112fd8e2208
80768 Author: Wolfgang Denk <wd@pollux.denx.de>
80769 Date:   Sat Jan 13 11:17:10 2007 +0100
80770
80771     Undo commit 3033ebb2: reset command does not take any arguments
80772
80773     Haiying Wang's modification to the reset command was broken, undo it.
80774
80775     Signed-off-by: Wolfgang Denk <wd@denx.de>
80776
80777 commit 95981778cff0038fd9941044d6a3eda810e33258
80778 Author: Stefan Roese <sr@denx.de>
80779 Date:   Sat Jan 13 08:01:03 2007 +0100
80780
80781     [PATCH] Update 440SP(e) cpu revisions
80782
80783     Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
80784
80785     Signed-off-by: Stefan Roese <sr@denx.de>
80786
80787 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
80788 Author: Stefan Roese <sr@denx.de>
80789 Date:   Sat Jan 13 07:59:56 2007 +0100
80790
80791     [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
80792
80793     Now the board revision and the current PCI bus speed are printed after
80794     the board message.
80795
80796     Also the EBC initialising is now done via defines in the board config
80797     file.
80798
80799     Signed-off-by: Stefan Roese <sr@denx.de>
80800
80801 commit 36adff362c2c0141ff8a810d42a7e478f779130f
80802 Author: Stefan Roese <sr@denx.de>
80803 Date:   Sat Jan 13 07:59:19 2007 +0100
80804
80805     [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
80806
80807     Now the board revision and the current PCI bus speed are printed after
80808     the board message.
80809
80810     Also the EBC initialising is now done via defines in the board config
80811     file.
80812
80813     Signed-off-by: Stefan Roese <sr@denx.de>
80814
80815 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
80816 Author: Stefan Roese <sr@denx.de>
80817 Date:   Sat Jan 13 07:57:51 2007 +0100
80818
80819     [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
80820
80821     Now the board revision and the current PCI bus speed are printed after
80822     the board message.
80823
80824     Signed-off-by: Stefan Roese <sr@denx.de>
80825
80826 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
80827 Author: Heiko Schocher <hs@pollux.denx.de>
80828 Date:   Thu Jan 11 15:44:44 2007 +0100
80829
80830         Added support for the SOLIDCARD III board from Eurodesign
80831
80832         Signed-off-by: Heiko Schocher <hs@denx.de>
80833
80834 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
80835 Author: Reinhard Thies <Reinhard.Thies@web.de>
80836 Date:   Wed Jan 10 14:41:14 2007 +0100
80837
80838     Adjusted default environment for cam5200 board.
80839
80840 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
80841 Author: Wolfgang Denk <wd@pollux.denx.de>
80842 Date:   Wed Jan 10 15:35:52 2007 +0100
80843
80844     Update CHANGELOG
80845
80846 commit 787fa15860a57833e50bd30555079a9cd4e519b8
80847 Author: Wolfgang Denk <wd@pollux.denx.de>
80848 Date:   Wed Jan 10 01:28:39 2007 +0100
80849
80850     Fix auto_update for MCC200 board.
80851
80852     The invocation of do_auto_update() is moved to the end of the
80853     misc_init_r() function, after the flash mappings have been
80854     initialized. Please find attached a patch that implements that
80855     change.
80856
80857     Also correct the decoding of the keypad status. With this update, the
80858     key that will trigger the update is Column 2, Row 2.
80859
80860 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
80861 Author: Marian Balakowicz <m8@semihalf.com>
80862 Date:   Wed Jan 10 00:26:15 2007 +0100
80863
80864     CAM5200 flash driver modifications:
80865     - use CFI driver (replaces custom flash driver) for main 'cam5200' target
80866     - add second build target 'cam5200_niosflash' which still uses custom driver
80867
80868 commit 67fea022fa957f59653b5238c7496f80a6b70432
80869 Author: Markus Klotzbuecher <mk@denx.de>
80870 Date:   Tue Jan 9 16:02:48 2007 +0100
80871
80872     SPC1920: cleanup memory contoller setup
80873
80874 commit 8fc2102faa23593c80381437c09f7745a14deb40
80875 Author: Markus Klotzbuecher <mk@denx.de>
80876 Date:   Tue Jan 9 14:57:14 2007 +0100
80877
80878     Fix the cpu speed setup to work with all boards.
80879
80880 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
80881 Author: Markus Klotzbuecher <mk@denx.de>
80882 Date:   Tue Jan 9 14:57:13 2007 +0100
80883
80884     SPC1920: add support for the FM18L08 Ramtron FRAM
80885
80886 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
80887 Author: Markus Klotzbuecher <mk@denx.de>
80888 Date:   Tue Jan 9 14:57:13 2007 +0100
80889
80890     SPC1920: update the HPI register addresses to work with the second
80891     generation of hardware
80892
80893 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
80894 Author: Markus Klotzbuecher <mk@creamnet.de>
80895 Date:   Tue Jan 9 14:57:13 2007 +0100
80896
80897     Miscellanious spc1920 related cleanups
80898
80899 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
80900 Author: Markus Klotzbuecher <mk@denx.de>
80901 Date:   Tue Jan 9 14:57:12 2007 +0100
80902
80903     SPC1920 GO/NOGO led should be set to color red in U-Boot
80904
80905 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
80906 Author: Markus Klotzbuecher <mk@creamnet.de>
80907 Date:   Tue Jan 9 14:57:12 2007 +0100
80908
80909     Add support for the DS3231 RTC
80910
80911 commit 8139567b60d678584b05f0718a681f2047c5e14f
80912 Author: Markus Klotzbuecher <mk@creamnet.de>
80913 Date:   Tue Jan 9 14:57:11 2007 +0100
80914
80915     SMC1 uses external CLK4 instead of BRG on spc1920
80916
80917 commit d8d9de1a02fbd880b613d607143d1f57342affc7
80918 Author: Markus Klotzbuecher <mk@creamnet.de>
80919 Date:   Tue Jan 9 14:57:10 2007 +0100
80920
80921     Update the SPC1920 CMB PLD driver
80922
80923 commit 3f34f869162750e5e999fd140f884f5de952bcfe
80924 Author: Markus Klotzbuecher <mk@creamnet.de>
80925 Date:   Tue Jan 9 14:57:10 2007 +0100
80926
80927     Add / enable I2C support on the spc1920 board
80928
80929 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
80930 Author: Markus Klotzbuecher <mk@creamnet.de>
80931 Date:   Tue Jan 9 14:57:10 2007 +0100
80932
80933     Add support for the tms320671x host port interface (HPI)
80934
80935 commit f4eb54529bb3664c3a562e488b460fe075f79d67
80936 Author: Wolfgang Denk <wd@pollux.denx.de>
80937 Date:   Sun Jan 7 00:13:11 2007 +0100
80938
80939     Prepare for release 1.2.0
80940
80941 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
80942 Author: Stefan Roese <sr@denx.de>
80943 Date:   Sat Jan 6 15:58:09 2007 +0100
80944
80945     [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
80946
80947     This patch fixes a problem with an incorrect setup for the refresh
80948     timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
80949
80950     Signed-off-by: Stefan Roese <sr@denx.de>
80951
80952 commit f16c1da9577f06c5fc08651a4065537407de4635
80953 Author: Stefan Roese <sr@denx.de>
80954 Date:   Sat Jan 6 15:56:13 2007 +0100
80955
80956     [PATCH] Update ALPR board files
80957
80958     This update brings the ALPR board support to the newest version.
80959     It also fixes a problem with the NAND driver.
80960
80961     Signed-off-by: Stefan Roese <sr@denx.de>
80962
80963 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
80964 Author: Stefan Roese <sr@denx.de>
80965 Date:   Fri Jan 5 11:46:05 2007 +0100
80966
80967     [PATCH] nand: Fix problem with oobsize calculation
80968
80969     Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
80970
80971     The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
80972     returns a 0x15. In the code fragment below bits [1:0] determine the
80973     page size, it is ANDed via "(extid & 0x3)" then shifted out. The
80974     next field is also ANDed with 0x3. However this is a one bit field
80975     as defined in the Hynix and Samsung parts in the 4th ID byte that
80976     determins the oobsize, not a two bit field. It works on Samsung as
80977     bits[3:2] are 01. However for the Hynix there is a 11 in these two
80978     bits, so the oob size gets messed up.
80979
80980     I checked the correct linux code and the suggested fix from Brian is
80981     also available in the linux nand mtd driver.
80982
80983     Signed-off-by: Stefan Roese <sr@denx.de>
80984
80985 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
80986 Author: Stefan Roese <sr@denx.de>
80987 Date:   Fri Jan 5 10:40:36 2007 +0100
80988
80989     [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
80990
80991     This fix will make the MAL burst disabling patch for the Linux
80992     EMAC driver obsolete.
80993
80994     Signed-off-by: Stefan Roese <sr@denx.de>
80995
80996 commit 023889838282b6237b401664f22dd22dfba2c066
80997 Author: Stefan Roese <sr@denx.de>
80998 Date:   Fri Jan 5 10:38:05 2007 +0100
80999
81000     [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
81001
81002     This code will optimize the DDR2 controller setup on a board specific
81003     basis.
81004
81005     Note: This code doesn't work right now on the NAND booting image for the
81006     Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
81007
81008     Signed-off-by: Stefan Roese <sr@denx.de>
81009
81010 commit cce4acbb68398634b8d011ed7bb0d12269c84230
81011 Author: Bartlomiej Sieka <tur@semihalf.com>
81012 Date:   Thu Dec 28 19:08:21 2006 +0100
81013
81014     Few V38B changes:
81015       - fix a typo in V38B config file
81016       - move watchdog initialisation earlier in the boot process
81017       - add "wdt=off" to default kernel command line (disables kernel watchdog)
81018
81019 commit 92eb729bad876725aeea908d2addba0800620840
81020 Author: Wolfgang Denk <wd@pollux.denx.de>
81021 Date:   Wed Dec 27 01:26:13 2006 +0100
81022
81023     Fix bug in adaption of Stefano Babic's CFI driver patch.
81024
81025 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
81026 Author: Wolfgang Denk <wd@pollux.denx.de>
81027 Date:   Sun Dec 24 01:42:57 2006 +0100
81028
81029     Minor code cleanup.
81030
81031 commit d784fdb05900ada3686d5778783e1fb328e9fb66
81032 Author: Stefano Babic <sbabic@denx.de>
81033 Date:   Tue Dec 12 00:22:42 2006 +0100
81034
81035     Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
81036
81037 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
81038 Author: Stefan Roese <sr@denx.de>
81039 Date:   Fri Dec 22 14:29:40 2006 +0100
81040
81041     [PATCH] Fix sequoia flash autodetection (finally correct)
81042
81043     Now 32MByte and 64MByte FLASH is know to work and other
81044     configurations should work too.
81045
81046     Signed-off-by: Stefan Roese <sr@denx.de>
81047
81048 commit 82e5236a8b719543643fd26d5827938ab2b94818
81049 Author: Wolfgang Denk <wd@pollux.denx.de>
81050 Date:   Fri Dec 22 10:30:26 2006 +0100
81051
81052     Minor code cleanup; update CHANGELOG.
81053
81054 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
81055 Author: Heiko Schocher <hs@pollux.denx.de>
81056 Date:   Thu Dec 21 17:17:02 2006 +0100
81057
81058     Added support for the TQM8272 board from TQ
81059
81060     Signed-off-by: Heiko Schocher <hs@denx.de>
81061
81062 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
81063 Author: Heiko Schocher <hs@pollux.denx.de>
81064 Date:   Thu Dec 21 16:14:48 2006 +0100
81065
81066     [PATCH] Add support for the UC101 board from MAN.
81067
81068     Signed-off-by: Heiko Schocher <hs@denx.de>
81069
81070 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
81071 Author: Bartlomiej Sieka <tur@semihalf.com>
81072 Date:   Wed Dec 20 00:29:43 2006 +0100
81073
81074     Fix to make the baudrate changes immediate for the MCF52x2 family.
81075
81076 commit daa6e418bcc0c717752e8de939c213c790286096
81077 Author: Bartlomiej Sieka <tur@semihalf.com>
81078 Date:   Wed Dec 20 00:27:32 2006 +0100
81079
81080     Preliminary support for the iDMR board (ColdFire).
81081
81082 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
81083 Author: Andrei Safronov <safronov@pollux.denx.de>
81084 Date:   Fri Dec 8 16:23:08 2006 +0100
81085
81086     automatic update mechanism
81087
81088 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
81089 Author: roy zang <tie-fei.zang@freescale.com>
81090 Date:   Mon Dec 4 17:56:59 2006 +0800
81091
81092     Slight code clean up.
81093     Add comments, delete duplicate define and remove spaces.
81094     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81095
81096 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
81097 Author: roy zang <tie-fei.zang@freescale.com>
81098 Date:   Mon Dec 4 17:54:21 2006 +0800
81099
81100     Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
81101     multiplier table can not refect the real PLL clock behavior of these
81102     processors. Please refer to the hardware specification for detailed
81103     information of the corresponding processors.
81104     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81105
81106 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
81107 Author: roy zang <tie-fei.zang@freescale.com>
81108 Date:   Mon Dec 4 14:46:23 2006 +0800
81109
81110     Remove the static MAC address, ip address, server ip, netmask and
81111     gateway ip for network setting.
81112     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81113
81114 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
81115 Author: roy zang <tie-fei.zang@freescale.com>
81116 Date:   Mon Dec 4 14:33:08 2006 +0800
81117
81118     Remove the duplicate memory test code for mpc744ihpc2 board.
81119     If a memory test is needed, please use the functions in
81120     post/memory.c or memtest command.
81121     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81122
81123 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
81124 Author: roy zang <tie-fei.zang@freescale.com>
81125 Date:   Fri Dec 1 19:01:25 2006 +0800
81126
81127     Fix the exception occuring in RAM table search issue.
81128     The original search_one_table() function code can only processes the search
81129     for the exception occurring in FLASH/ROM, because the exception and fixup
81130     table usually locate in FLASH. If the exception address is also in
81131     FLASH, it will be OK.
81132     If the exception occurs in RAM, after the u-boot relocation, a
81133     relocation offset should be added.
81134
81135     clean up the code in cpu/74xx_7xx/cpu.c
81136
81137     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81138
81139 commit ee311214e0d216f904feea269599d0934bf71f23
81140 Author: roy zang <tie-fei.zang@freescale.com>
81141 Date:   Fri Dec 1 11:47:36 2006 +0800
81142
81143     Clean up the code according to codestyle:
81144     (1) remove some C++ comments.
81145     (2) remove trailing white space.
81146     (3) remove trailing empty line.
81147     (4) Indentation by table.
81148     (5) remove {} in one line condition.
81149     (6) add space before '(' in function call.
81150     Remove some weird printf () output.
81151     Add necessary comments.
81152     Modified Makefile to support building in a separate directory.
81153
81154 commit dd520bf314c7add4183c5191692180f576f96b60
81155 Author: Wolfgang Denk <wd@pollux.denx.de>
81156 Date:   Thu Nov 30 18:02:20 2006 +0100
81157
81158     Code cleanup.
81159
81160 commit 8d9a8610b8256331132227e9e6585c6bd5742787
81161 Author: Wolfgang Denk <wd@pollux.denx.de>
81162 Date:   Thu Nov 30 01:54:07 2006 +0100
81163
81164     Code cleanup. Update CHANGELOG.
81165
81166 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
81167 Author: Grant Likely <grant.likely@secretlab.ca>
81168 Date:   Wed Nov 29 16:23:42 2006 +0100
81169
81170     [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
81171
81172     The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
81173     not the XLB frequency.
81174
81175     This patch depends on the previous patches for MPC52xx device tree support
81176
81177     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
81178     Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
81179
81180 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
81181 Author: Stefan Roese <sr@denx.de>
81182 Date:   Wed Nov 29 15:42:37 2006 +0100
81183
81184     [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
81185
81186     This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
81187     and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
81188     quite similar and share the same board directory "prodrive/p3mx"
81189     and the same config file "p3mx.h".
81190
81191     Signed-off-by: Stefan Roese <sr@denx.de>
81192
81193 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
81194 Author: Stefan Roese <sr@denx.de>
81195 Date:   Wed Nov 29 12:53:15 2006 +0100
81196
81197     [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
81198
81199     In the bootvx command the load address was only read from the env
81200     variable "loadaddr" and not optionally passed as paramter as described
81201     in the help. This is fixed with this patch. The behaviour is now the
81202     same as in the bootelf command.
81203
81204     Signed-off-by: Stefan Roese <sr@denx.de>
81205
81206 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
81207 Author: Stefan Roese <sr@denx.de>
81208 Date:   Wed Nov 29 12:03:57 2006 +0100
81209
81210     [PATCH] include/ppc440.h minor error affecting interrupts
81211
81212     Fixed include/ppc440.c for UIC address Bug
81213
81214     Corrects bug affecting the addresses for the universal interrupt
81215     controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
81216
81217     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
81218     Signed-off-by: Stefan Roese <sr@denx.de>
81219
81220 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
81221 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
81222 Date:   Tue Nov 28 16:17:27 2006 -0600
81223
81224     Make fsl-i2c not conflict with SOFT I2C
81225
81226     Signed-off-by: Timur Tabi <timur@freescale.com>
81227
81228 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
81229 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
81230 Date:   Tue Nov 28 16:17:18 2006 -0600
81231
81232     Fix I2C master address initialization.
81233
81234     Signed-off-by: Timur Tabi <timur@freescale.com>
81235
81236 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
81237 Author: Kim Phillips <kim.phillips@freescale.com>
81238 Date:   Tue Nov 28 23:31:19 2006 -0600
81239
81240     Assign maintainers for mpc8349emds and mpc8360emds
81241
81242     Dave for mpc8360emds, and me for mpc8349emds.
81243
81244 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
81245 Author: Kim Phillips <kim.phillips@freescale.com>
81246 Date:   Tue Nov 28 23:28:33 2006 -0600
81247
81248     Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
81249
81250     give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
81251     since they are passed by reference to ucc_get_cmxucr_reg and assigned.
81252
81253 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
81254 Author: Timur Tabi <timur@freescale.com>
81255 Date:   Tue Nov 28 12:09:35 2006 -0600
81256
81257     mpc83xx: Miscellaneous code style fixes
81258
81259     Implement various code style fixes and similar changes.
81260
81261     Signed-off-by: Timur Tabi <timur@freescale.com>
81262
81263 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
81264 Author: Stefan Roese <sr@denx.de>
81265 Date:   Tue Nov 28 17:55:49 2006 +0100
81266
81267     [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
81268
81269     This patch adds the code and configuration necessary to boot with an
81270     arch/powerpc Linux kernel.
81271
81272     Signed-off-by: Grant Likely <grant.likely@gmail.com>
81273     Acked-by: Jon Loeliger <jdl@freescale.com>
81274
81275 commit e732faec95a83cb468b4850ae807c8301dde8f6a
81276 Author: Stefan Roese <sr@denx.de>
81277 Date:   Tue Nov 28 16:09:24 2006 +0100
81278
81279     [PATCH] PPC4xx: 440SP Rev. C detection added
81280
81281     Signed-off-by: Stefan Roese <sr@denx.de>
81282
81283 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
81284 Author: Stefan Roese <sr@denx.de>
81285 Date:   Tue Nov 28 11:04:45 2006 +0100
81286
81287     [PATCH] nand: Fix patch merge problem
81288
81289     Signed-off-by: Stefan Roese <sr@denx.de>
81290
81291 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
81292 Author: Stefan Roese <sr@denx.de>
81293 Date:   Tue Nov 28 11:04:45 2006 +0100
81294
81295     [PATCH] nand: Fix patch merge problem
81296
81297     Signed-off-by: Stefan Roese <sr@denx.de>
81298
81299 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
81300 Author: Wolfgang Denk <wd@pollux.denx.de>
81301 Date:   Mon Nov 27 22:53:53 2006 +0100
81302
81303     Update CHANGELOG
81304
81305 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
81306 Author: Stefan Roese <sr@denx.de>
81307 Date:   Mon Nov 27 17:43:25 2006 +0100
81308
81309     [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
81310
81311     Patch below corrects the setting of the zmiifer register, it was
81312     overwritting the register rather than ORing the settings.
81313
81314     Signed-off-by: Neil Wilson <NWilson@airspan.com>
81315     Signed-off-by: Stefan Roese <sr@denx.de>
81316
81317 commit d1a72545296800b7e219f93104ad5836f0003d66
81318 Author: Stefan Roese <sr@denx.de>
81319 Date:   Mon Nov 27 17:34:10 2006 +0100
81320
81321     [PATCH] Select NAND embedded environment from board configuration
81322
81323     The current NAND Bootloader setup forces the environment
81324     variables to be in line with the bootloader. This change
81325     enables the configuration to be made in the board include
81326     file instead so that it can be individually enabled.
81327
81328     Signed-off-by: Nick Spence <nick.spence@freescale.com>
81329     Signed-off-by: Stefan Roese <sr@denx.de>
81330
81331 commit 15784862857c3c2214498defcfed84ff137fb81e
81332 Author: Stefan Roese <sr@denx.de>
81333 Date:   Mon Nov 27 17:22:19 2006 +0100
81334
81335     [PATCH] nand_wait() timeout fixes
81336
81337     Two fixes for the nand_wait() function in
81338     drivers/nand/nand_base.c:
81339
81340     1. Use correct timeouts. The original timeouts in Linux
81341     source are 400ms and 20ms not 40s and 20s
81342
81343     2. Return correct error value in case of timeout. 0 is
81344     interpreted as OK.
81345
81346     Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
81347     Signed-off-by: Stefan Roese <sr@denx.de>
81348
81349 commit da5553b095bf04f4f109ad7e565dae3aba47b230
81350 Author: Stefan Roese <sr@denx.de>
81351 Date:   Mon Nov 27 17:04:06 2006 +0100
81352
81353     [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
81354
81355     This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
81356     arguments to bootm.  It removes the getenv("disable_of") test that used
81357     to be used for this purpose.
81358
81359     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
81360     Acked-by: Jon Loeliger <jdl@freescale.com>
81361
81362 commit a9398e018593782c5fa7d0741955fc1256b34c1e
81363 Author: Wolfgang Denk <wd@pollux.denx.de>
81364 Date:   Mon Nov 27 15:32:42 2006 +0100
81365
81366     Minor code cleanup. Update CHANGELOG.
81367
81368 commit 1729b92cde575476684bffe819d0b7791b57bff2
81369 Author: Stefan Roese <sr@denx.de>
81370 Date:   Mon Nov 27 14:52:04 2006 +0100
81371
81372     [PATCH] 4xx: Fix problem with board specific reset code (now for real)
81373
81374     Signed-off-by: Stefan Roese <sr@denx.de>
81375
81376 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
81377 Author: Stefan Roese <sr@denx.de>
81378 Date:   Mon Nov 27 14:49:51 2006 +0100
81379
81380     [PATCH] alpr: remove unused board specific flash driver
81381
81382     Signed-off-by: Stefan Roese <sr@denx.de>
81383
81384 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
81385 Author: Stefan Roese <sr@denx.de>
81386 Date:   Mon Nov 27 14:48:41 2006 +0100
81387
81388     [PATCH] 4xx: Fix problem with board specific reset code
81389
81390     Signed-off-by: Stefan Roese <sr@denx.de>
81391
81392 commit ec0c2ec725aec9524a177a77ce75559e644a931a
81393 Author: Stefan Roese <sr@denx.de>
81394 Date:   Mon Nov 27 14:46:06 2006 +0100
81395
81396     [PATCH] Remove testing 4xx enet PHY setup
81397
81398     Signed-off-by: Stefan Roese <sr@denx.de>
81399
81400 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
81401 Author: Stefan Roese <sr@denx.de>
81402 Date:   Mon Nov 27 14:12:17 2006 +0100
81403
81404     [PATCH] Update Prodrive ALPR board support (440GX)
81405
81406     Signed-off-by: Stefan Roese <sr@denx.de>
81407
81408 commit 58b485776698c3d71ec5a215e392123b4c15afa3
81409 Author: Markus Klotzbuecher <mk@denx.de>
81410 Date:   Mon Nov 27 11:51:21 2006 +0100
81411
81412     Add a small README with information on the generic ohci driver.
81413
81414 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
81415 Author: Markus Klotzbuecher <mk@denx.de>
81416 Date:   Mon Nov 27 11:46:46 2006 +0100
81417
81418     Fix some endianness issues related to the generic ohci driver
81419
81420 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
81421 Author: Markus Klotzbuecher <mk@denx.de>
81422 Date:   Mon Nov 27 11:44:58 2006 +0100
81423
81424     Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
81425     to choose between the old and the generic OHCI drivers.
81426
81427 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
81428 Author: Markus Klotzbuecher <mk@denx.de>
81429 Date:   Mon Nov 27 11:43:09 2006 +0100
81430
81431     Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
81432     and adapted board configs TQM5200 and yosemite accordingly. This commit
81433     also makes the maximum number of root hub ports configurable
81434     (CFG_USB_OHCI_MAX_ROOT_PORTS).
81435
81436 commit 78d620ebb5871d252270dedfad60c6568993b780
81437 Author: Wolfgang Denk <wd@atlas.denx.de>
81438 Date:   Thu Nov 23 22:58:58 2006 +0100
81439
81440     Updates for TQM5200 modules:
81441     - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
81442     - simplify "udate" definitions
81443
81444 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
81445 Author: Stefan Roese <sr@denx.de>
81446 Date:   Wed Nov 22 13:20:50 2006 +0100
81447
81448     [PATCH] PPC4xx start.S: Fix for processor errata
81449
81450     Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
81451     errata 1.12: 440_33 by moving patch up in code.
81452
81453     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
81454     Signed-off-by: Stefan Roese <sr@denx.de>
81455
81456 commit 4ef6251403f637841000e0fef9e832aa01339822
81457 Author: Stefan Roese <sr@denx.de>
81458 Date:   Mon Nov 20 20:39:52 2006 +0100
81459
81460     [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
81461
81462     Signed-off-by: Stefan Roese <sr@denx.de>
81463
81464 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
81465 Author: Wolfgang Denk <wd@pollux.denx.de>
81466 Date:   Mon Nov 20 10:28:30 2006 +0100
81467
81468     Update CHANGELOG
81469
81470 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
81471 Author: Stefan Roese <sr@denx.de>
81472 Date:   Mon Nov 13 13:55:24 2006 +0100
81473
81474     [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
81475
81476        * Adds support for AMD command set Top Boot flash geometry reversal
81477        * Adds support for reading JEDEC Manufacturer ID and Device ID
81478        * Adds support for displaying command set, manufacturer id and
81479          device ids (flinfo)
81480        * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
81481        * Removes outdated change history (refer to git log instead)
81482
81483     Signed-off-by: Tolunay Orkun <listmember@orkun.us>
81484     Signed-off-by: Stefan Roese <sr@denx.de>
81485
81486 commit b21b511d4c50408f4853f46f06b601272196223f
81487 Author: Wolfgang Denk <wd@pollux.denx.de>
81488 Date:   Sun Nov 12 21:13:23 2006 +0100
81489
81490     Update CHANGELOG
81491
81492 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
81493 Author: Bartlomiej Sieka <tur@semihalf.com>
81494 Date:   Sat Nov 11 22:48:22 2006 +0100
81495
81496     Disable the watchdog in the default config for the V38B board.
81497
81498 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
81499 Author: Bartlomiej Sieka <tur@semihalf.com>
81500 Date:   Sat Nov 11 22:43:00 2006 +0100
81501
81502     Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
81503     group is enabled for USB earlier (in cpu_init_f() instead of
81504     usb_lowlevel_init()).
81505
81506 commit 91650b3e4de688038d4f71279c44858e3e2c6870
81507 Author: Wolfgang Denk <wd@pollux.denx.de>
81508 Date:   Mon Nov 6 17:06:36 2006 +0100
81509
81510     Sequential accesses to non-existent memory must be synchronized,
81511     at least on G2 cores.
81512
81513     This fixes get_ram_size() problems on MPC5200 Rev. B boards.
81514
81515 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
81516 Author: Timur Tabi <timur@freescale.com>
81517 Date:   Fri Nov 3 19:15:00 2006 -0600
81518
81519     mpc83xx: Update 83xx to use fsl_i2c.c
81520
81521     Update the 83xx tree to use I2C support in drivers/fsl_i2c.c.  Delete
81522     cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
81523     Added multiple I2C bus support to fsl_i2c.c.
81524
81525     Signed-off-by: Timur Tabi <timur@freescale.com>
81526
81527 commit d239d74b1c937984bc519083a8e7de373a390f06
81528 Author: Timur Tabi <timur@freescale.com>
81529 Date:   Fri Nov 3 12:00:28 2006 -0600
81530
81531     mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
81532
81533     Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
81534     tree matches the other 8xxx trees.
81535
81536     Signed-off-by: Timur Tabi <timur@freescale.com>
81537
81538 commit f7fb2e703ec9688541416962724adff70a7322cb
81539 Author: Kim Phillips <kim.phillips@freescale.com>
81540 Date:   Thu Nov 2 19:47:11 2006 -0600
81541
81542     mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
81543
81544 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
81545 Author: Dave Liu <daveliu@freescale.com>
81546 Date:   Thu Nov 2 18:05:50 2006 -0600
81547
81548     mpc83xx: Fix the incorrect dcbz operation
81549
81550     The 834x rev1.x silicon has one CPU5 errata.
81551
81552     The issue is when the data cache locked with
81553     HID0[DLOCK], the dcbz instruction looks like no-op inst.
81554
81555     The right behavior of the data cache is when the data cache
81556     Locked with HID0[DLOCK], the dcbz instruction allocates
81557     new tags in cache.
81558
81559     The 834x rev3.0 and later and 8360 have not this bug inside.
81560
81561     So, when 834x rev3.0/8360 are working with ECC, the dcbz
81562     instruction will corrupt the stack in cache, the processor will
81563     checkstop reset.
81564
81565     However, the 834x rev1.x can work with ECC with these code,
81566     because the sillicon has this cache bug. The dcbz will not
81567     corrupt the stack in cache.
81568     Really, it is the fault code running on fault sillicon.
81569
81570     This patch fix the incorrect dcbz operation. Instead of
81571     CPU FP writing to initialise the ECC.
81572
81573     CHANGELOG:
81574     * Fix the incorrect dcbz operation instead of CPU FP
81575     writing to initialise the ECC memory. Otherwise, it
81576     will corrupt the stack in cache, The processor will checkstop
81577     reset.
81578
81579     Signed-off-by: Dave Liu <daveliu@freescale.com>
81580
81581 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
81582 Author: Kim Phillips <kim.phillips@freescale.com>
81583 Date:   Wed Nov 1 00:10:40 2006 -0600
81584
81585     mpc83xx: add OF_FLAT_TREE bits to 83xx boards
81586
81587     add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
81588     STDOUT_PATH configuration bits to mpc8349emds,
81589     mpc8349itx, and mpc8360emds board code.
81590
81591     redo environment to use bootm with the fdtaddr
81592     for booting ARCH=powerpc kernels by default,
81593     and provide default fdtaddr values.
81594
81595 commit 48041365b3420589ad464ebc7752e0053538b729
81596 Author: Kim Phillips <kim.phillips@freescale.com>
81597 Date:   Wed Nov 1 00:07:25 2006 -0600
81598
81599     mpc83xx: change ft code to modify local-mac-address property
81600
81601     Update 83xx OF code to update local-mac-address properties
81602     for ethernet instead of the obsolete 'address' property.
81603
81604 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
81605 Author: Timur Tabi <timur@freescale.com>
81606 Date:   Tue Oct 31 21:23:16 2006 -0600
81607
81608     mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
81609
81610     This patch also adds an improved I2C set_speed(), which handles all clock
81611     frequencies.
81612
81613     Signed-off-by: Timur Tabi <timur@freescale.com>
81614
81615 commit ac4b5622ce050b5ee1e154b98df630d778661632
81616 Author: Dave Liu <daveliu@freescale.com>
81617 Date:   Tue Oct 31 19:54:59 2006 -0600
81618
81619     mpc83xx: add the README.mpc8360emds
81620
81621     add doc/README.mpc8360emds to accompany the new board support
81622
81623 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
81624 Author: Dave Liu <daveliu@freescale.com>
81625 Date:   Fri Nov 3 12:11:15 2006 -0600
81626
81627     mpc83xx: add QE ethernet support
81628
81629     this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
81630
81631 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
81632 Author: Dave Liu <daveliu@freescale.com>
81633 Date:   Fri Nov 3 19:33:44 2006 -0600
81634
81635     mpc83xx: Add MPC8360EMDS basic board support
81636
81637     Add support for the Freescale MPC8360EMDS board.
81638     Includes DDR, DUART, Local Bus, PCI.
81639
81640 commit 23892e49352de74f7fac36ff90bb1be143d195e3
81641 Author: Dave Liu <daveliu@freescale.com>
81642 Date:   Tue Oct 31 19:30:40 2006 -0600
81643
81644     mpc83xx: add the QUICC Engine (QE) immap file
81645
81646     common QE immap file.  Also required for 8360.
81647
81648 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
81649 Author: Dave Liu <daveliu@freescale.com>
81650 Date:   Tue Oct 31 19:25:38 2006 -0600
81651
81652     mpc83xx: Add 8360 specifics to 83xx immap
81653
81654     Mainly add QE device dependencies, with appropriate 8360 protection.
81655     Lindent also run.
81656
81657 commit 988833324a7fda482c8ac3ca23eb539f8232e404
81658 Author: Timur Tabi <timur@freescale.com>
81659 Date:   Tue Oct 31 19:14:41 2006 -0600
81660
81661     mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
81662
81663     PREREQUISITE PATCHES:
81664
81665     * This patch can only be applied after the following patches have been applied:
81666
81667       1) DNX#2006092142000015 "Add support for the MPC8349E-mITX  1/2"
81668       2) DNX#2006092142000024 "Add support for the MPC8349E-mITX  2/2"
81669
81670     CHANGELOG:
81671
81672     * For the 8349E-mITX, fix some size values in pci_init_board(), enable
81673       the clock for the 2nd USB board (Linux kernel will hang otherwise),
81674       and fix the CONFIG_BOOTARGS macro.
81675
81676     Signed-off-by: Timur Tabi <timur@freescale.com>
81677
81678 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
81679 Author: Timur Tabi <timur@freescale.com>
81680 Date:   Tue Oct 31 18:44:42 2006 -0600
81681
81682     mpc83xx: Add support for the MPC8349E-mITX
81683
81684     PREREQUISITE PATCHES:
81685
81686     * This patch can only be applied after the following patches have been applied:
81687
81688       1) DNX#2006090742000024 "Add support for multiple I2C buses"
81689       2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
81690       3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
81691       4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
81692       5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
81693
81694     CHANGELOG:
81695
81696     * Add support for the Freescale MPC8349E-mITX reference design platform.
81697       The second TSEC (Vitesse 7385 switch) is not supported at this time.
81698
81699     Signed-off-by: Timur Tabi <timur@freescale.com>
81700
81701 commit 183da6d9b446cc12123455844ad1187e2375626f
81702 Author: Ben Warren <bwarren@qstreams.com>
81703 Date:   Tue Sep 12 10:15:53 2006 -0400
81704
81705     Additional MPC8349 support for multibus i2c
81706
81707     Hello,
81708
81709     Here is a patch for a file that was accidentally left out of a previous
81710     attempt.
81711
81712     It accompanies the patch with ticket DNX#2006090742000024
81713
81714     CHANGELOG:
81715             Change PCI initialization to use new multi-bus I2C API.
81716
81717     regards,
81718     Ben
81719
81720 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
81721 Author: Ben Warren <bwarren@qstreams.com>
81722 Date:   Thu Sep 7 16:51:04 2006 -0400
81723
81724     Multi-bus I2C implementation of MPC834x
81725
81726     Hello,
81727
81728     Attached is a patch implementing multiple I2C buses on the MPC834x CPU
81729     family and the MPC8349EMDS board in particular.
81730     This patch requires Patch 1 (Add support for multiple I2C buses).
81731     Testing was performed on a 533MHz board.
81732
81733     /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
81734
81735     Signed-off-by: Ben Warren <bwarren@qstreams.com>
81736
81737     CHANGELOG:
81738             Implemented driver-level code to support two I2C buses on the
81739     MPC834x CPU family and the MPC8349EMDS board.  Available I2C bus speeds
81740     are 50kHz, 100kHz and 400kHz on each bus.
81741
81742     regards,
81743     Ben
81744
81745 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
81746 Author: Ben Warren <bwarren@qstreams.com>
81747 Date:   Thu Sep 7 16:50:54 2006 -0400
81748
81749     Add support for multiple I2C buses
81750
81751     Hello,
81752
81753     Attached is a patch providing support for multiple I2C buses at the
81754     command level.  The second part of the patch includes an implementation
81755     for the MPC834x CPU and MPC8349EMDS board.
81756
81757     /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
81758
81759     Signed-off-by: Ben Warren <bwarren@qstreams.com>
81760
81761     Overview:
81762
81763     1. Include new 'i2c' command (based on USB implementation) using
81764     CONFIG_I2C_CMD_TREE.
81765
81766     2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS.  Note that
81767     the commands to change bus number and speed are only available under the
81768     new 'i2c' command mentioned in the first bullet.
81769
81770     3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
81771     systems.  When CONFIG_I2C_MULTI_BUS is used, this option takes the form
81772     of an array of bus-device pairs.  Otherwise, it is an array of uchar.
81773
81774     CHANGELOG:
81775             Added new 'i2c' master command for all I2C interaction.  This is
81776     conditionally compiled with CONFIG_I2C_CMD_TREE.  New commands added for
81777     setting I2C bus speed as well as changing the active bus if the board
81778     has more than one (conditionally compiled with
81779     CONFIG_I2C_MULTI_BUS).  Updated NOPROBE logic to handle multiple buses.
81780     Updated README.
81781
81782     regards,
81783     Ben
81784
81785 commit bed85caf872714ebf53013967a695c9d63acfc68
81786 Author: Timur Tabi <timur@freescale.com>
81787 Date:   Tue Oct 31 18:13:36 2006 -0600
81788
81789     mpc83xx: Add support for Errata DDR6 on MPC 834x systems
81790
81791     CHANGELOG:
81792
81793     * Errata DDR6, which affects all current MPC 834x processors, lists changes
81794       required to maintain compatibility with various types of DDR memory.  This
81795       patch implements those changes.
81796
81797     Signed-off-by: Timur Tabi <timur@freescale.com>
81798
81799 commit afd6e470f639883002c7c59d562690a5cb0f4865
81800 Author: Timur Tabi <timur@freescale.com>
81801 Date:   Wed Oct 25 18:45:23 2006 -0500
81802
81803     mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
81804
81805 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
81806 Author: Timur Tabi <timur@freescale.com>
81807 Date:   Tue Aug 22 17:07:00 2006 -0500
81808
81809     mpc83xx: Add support for variable flash memory sizes on 83xx systems
81810
81811     CHANGELOG:
81812
81813     * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
81814        window registers, instead of using a hard-coded value of 8MB.
81815
81816     Signed-off-by: Timur Tabi <timur@freescale.com>
81817
81818 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
81819 Author: Tanya Jiang <tanya.jiang@freescale.com>
81820 Date:   Thu Aug 3 18:38:13 2006 +0800
81821
81822     mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
81823
81824     Unified TQM834x variable names with 83xx and consolidated macro
81825     in preparation for the 8360 and other upcoming 83xx devices.
81826
81827     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
81828
81829 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
81830 Author: Dave Liu <daveliu@freescale.com>
81831 Date:   Wed Oct 25 14:41:21 2006 -0500
81832
81833     mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
81834
81835     Incorporated the common unified variable names and the changes in preparation
81836     for releasing mpc8360 patches.
81837
81838     Signed-off-by: Dave Liu <daveliu@freescale.com>
81839
81840 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
81841 Author: Tanya Jiang <tanya.jiang@freescale.com>
81842 Date:   Thu Aug 3 18:36:02 2006 +0800
81843
81844     mpc83xx: Fix missing build for mpc8349emds pci.c
81845
81846     Make pci build for mpc8349emds
81847
81848     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
81849
81850 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
81851 Author: Tanya Jiang <tanya.jiang@freescale.com>
81852 Date:   Thu Aug 3 18:39:49 2006 +0800
81853
81854     mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
81855
81856     Removed unused file resetvec.S for mpc83xx cpu
81857
81858     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
81859
81860 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
81861 Author: Nick Spence <Nick.Spence@freescale.com>
81862 Date:   Sat Sep 30 00:32:59 2006 -0700
81863
81864     NAND Flash verify across block boundaries
81865
81866     This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
81867     defined
81868     and the write crosses a block boundary. The pointer to the verification
81869     buffer (bufstart) is not being updated to reflect the starting of the
81870     new
81871     block so the verification of the second block fails.
81872
81873     CHANGELOG:
81874
81875     * Fix NAND FLASH page verification across block boundaries
81876
81877 commit f484dc791a3932537213c43c654cc1295c64b84c
81878 Author: Nick Spence <nick.spence@freescale.com>
81879 Date:   Thu Sep 7 07:39:46 2006 -0700
81880
81881     Added RGMII support to the TSECs and Marvell 881111 Phy
81882
81883     Added a phy initialization to adjust the RGMII RX and TX timing
81884     Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
81885
81886     Signed-off-by: Nick Spence <nick.spence@freescale.com>
81887
81888 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
81889 Author: roy zang <tie-fei.zang@freescale.com>
81890 Date:   Fri Nov 3 13:10:00 2006 +0800
81891
81892     Remove some unused CFG define.
81893     undef CFG_DRAM_TEST
81894
81895 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
81896 Author: roy zang <tie-fei.zang@freescale.com>
81897 Date:   Fri Nov 3 13:07:36 2006 +0800
81898
81899     Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
81900     Both work. 0xFF000000 seems more reasonable.
81901
81902 commit c59200443072353044aa4bf737a5a60f9a9af231
81903 Author: Wolfgang Denk <wd@pollux.denx.de>
81904 Date:   Thu Nov 2 15:15:01 2006 +0100
81905
81906     Release U-Boot 1.1.6
81907
81908 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
81909 Author: roy zang <tie-fei.zang@freescale.com>
81910 Date:   Thu Nov 2 19:14:48 2006 +0800
81911
81912     This patch comes from Yuli's posted patch on 8/8/2006
81913     titled "CFI Driver Little-Endian write Issue".
81914
81915     http://sourceforge.net/mailarchive/message.php?msg_id=36311999
81916
81917     If that patch applied, please discard this one.
81918     Until now , I do not see his patch is applied. So please apply this one.
81919
81920     Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
81921     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81922
81923 commit b825f158e449e1e9cf74c08e572955e122394c96
81924 Author: roy zang <tie-fei.zang@freescale.com>
81925 Date:   Thu Nov 2 19:12:31 2006 +0800
81926
81927     Tsi108 on chip i2c support.
81928
81929     The i2c  Interface provides a master-only, serial interface that can be
81930     used for initializing Tsi108/Tsi109 registers from an EEPROM after a
81931     device reset.
81932
81933     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
81934     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81935
81936 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
81937 Author: roy zang <tie-fei.zang@freescale.com>
81938 Date:   Thu Nov 2 19:11:06 2006 +0800
81939
81940     Tsi108 on chip pci controller support.
81941
81942     If there is no pci card, the tsi108/109 pci configure read will
81943     cause a machine check exception to the processor. PCI error should
81944     also be cleared after the read.
81945
81946     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
81947     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81948
81949 commit d1927cee977126e547ceeba23e4f978f377cfb8f
81950 Author: roy zang <tie-fei.zang@freescale.com>
81951 Date:   Thu Nov 2 19:08:55 2006 +0800
81952
81953     Tundra tsi108 on chip Ethernet controller support.
81954
81955     The following is a brief description of the Ethernet controller:
81956     The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
81957     Gigabit Ethernet ports,E0 and E1.  It uses a single Management interface
81958     to manage the two physical connection devices (PHYs).  Each Ethernet port
81959     has its own statistics monitor that tracks and reports key interface
81960     statistics.  Each port supports a 256-entry hash table for address
81961     filtering.  In addition, each port is bridged to the Switch Fabric
81962     through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
81963
81964     Each Ethernet port also has a pair of internal Ethernet DMA channels to
81965     support the transmit and receive data flows.  The Ethernet DMA channels
81966     use descriptors set up in memory, the memory map of the device, and
81967     access via the Switch Fabric.  The Ethernet Controller?s DMA arbiter
81968     handles arbitration for the Switch Fabric.  The Controller also
81969     has a register businterface for register accesses and status monitor
81970     control.
81971
81972     The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
81973     modes.  The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
81974     The GMII and TBI modes are used to connect with Gigabit PMDs.  Internal
81975     data flows to and from the Ethernet Controller through the Switch Fabric.
81976
81977     Each Ethernet port uses its transmit and receive DMA channels to manage
81978     data flows through buffer descriptors that are predefined by the
81979     system (the descriptors can exist anywhere in the system memory map).
81980     These descriptors are data structures that point to buffers filled
81981     with data ready to transmit over Ethernet, or they point to empty
81982     buffers ready to receive data from Ethernet.
81983
81984     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
81985     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81986
81987 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
81988 Author: roy zang <tie-fei.zang@freescale.com>
81989 Date:   Thu Nov 2 19:01:33 2006 +0800
81990
81991     Tundra tsi108 header file.
81992
81993     The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
81994     PowerPC processors that offers numerous system interconnect options for
81995     embedded application designers. The Tsi108 can interconnect 60x or
81996     MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
81997     and Flash. Provided the macro define for tsi108 chip.
81998
81999     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82000     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82001
82002 commit 87c4db09699c6b89176b31004afcb83eb1585d47
82003 Author: roy zang <tie-fei.zang@freescale.com>
82004 Date:   Thu Nov 2 18:59:15 2006 +0800
82005
82006     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
82007     mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
82008
82009     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82010     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82011
82012 commit 27801b8ab11c61b577e45742a515bb3b23b80241
82013 Author: roy zang <tie-fei.zang@freescale.com>
82014 Date:   Thu Nov 2 18:57:21 2006 +0800
82015
82016     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
82017     Make ,config.mk and link file for the mpc7448hpc2 board.
82018
82019     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82020     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82021
82022 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
82023 Author: roy zang <tie-fei.zang@freescale.com>
82024 Date:   Thu Nov 2 18:55:04 2006 +0800
82025
82026     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
82027     The mpc7448hpc2 board support header file.
82028
82029     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82030     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82031
82032 commit 625bb5ddb50b243f931262ca8c46956409471917
82033 Author: roy zang <tie-fei.zang@freescale.com>
82034 Date:   Thu Nov 2 18:52:21 2006 +0800
82035
82036     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
82037     The mpc7448hpc2 board support low level assemble language init code.
82038
82039     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82040     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82041
82042 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
82043 Author: roy zang <tie-fei.zang@freescale.com>
82044 Date:   Thu Nov 2 18:49:51 2006 +0800
82045
82046     General code modification for mpc7448hpc2 board support.
82047     1. Add 7447A and 7448 processor support.
82048     2. Add the following flags.
82049
82050     CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
82051     (such as by switch on board), this flag should be set.
82052
82053     CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
82054     relocates to RAM, this flag should be set.
82055
82056     CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
82057     system hang in exception, this flag should be set.
82058
82059     There is a design issue for tsi108/109 pci configure  read. When pci scan
82060     the slots, if there is no pci card, the tsi108/9 will cause a machine
82061     check exception for mpc7448 processor.
82062
82063     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82064     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82065
82066 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
82067 Author: roy zang <tie-fei.zang@freescale.com>
82068 Date:   Thu Nov 2 18:34:47 2006 +0800
82069
82070     Add README file for mpc7448hpc2 board.
82071     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82072
82073 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
82074 Author: Bartlomiej Sieka <tur@semihalf.com>
82075 Date:   Wed Nov 1 02:04:38 2006 +0100
82076
82077     Finish up support for MarelV38B board
82078      - add watchdog support
82079      - enable GPIO_WKUP_7 pin for input
82080      - code cleanup
82081
82082 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
82083 Author: Bartlomiej Sieka <tur@semihalf.com>
82084 Date:   Wed Nov 1 01:45:46 2006 +0100
82085
82086     - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
82087           * remove warnings when compiling ethaddr.c
82088           * adjust linker script (fixes a crash resulting from incorrect
82089           definition of __u_boot_cmd_start)
82090     - Some MarelV38B code cleanup.
82091
82092 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
82093 Author: Bartlomiej Sieka <tur@semihalf.com>
82094 Date:   Wed Nov 1 01:38:16 2006 +0100
82095
82096     - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
82097       MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
82098       Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
82099       MPC5XXX_WU_GPIO_DATA_O for affected boards.
82100
82101     - Add defintions for some MPC5XXX GPIO pins.
82102
82103 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
82104 Author: Bartlomiej Sieka <tur@semihalf.com>
82105 Date:   Wed Nov 1 01:34:29 2006 +0100
82106
82107     Changed MarelV38B board make target to lowercase. Config file cleanup.
82108
82109 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
82110 Author: Wolfgang Denk <wd@pollux.denx.de>
82111 Date:   Sun Oct 29 01:03:51 2006 +0200
82112
82113     Automatically adjust ARFLAGS so "make -s" is really silent.
82114
82115 commit fae684e89844856383bdf101440889557df3e6b1
82116 Author: Stefan Roese <sr@denx.de>
82117 Date:   Sat Oct 28 16:45:00 2006 +0200
82118
82119     [PATCH] omap925.c: Remove unused functions
82120
82121     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
82122     Signed-off-by: Stefan Roese <sr@denx.de>
82123
82124 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
82125 Author: Stefan Roese <sr@denx.de>
82126 Date:   Sat Oct 28 17:12:58 2006 +0200
82127
82128     [PATCH] Add some missing machtypes for netstar & voiceblue boards
82129
82130     Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
82131     numbers in code.
82132
82133     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
82134     Signed-off-by: Stefan Roese <sr@denx.de>
82135
82136 commit 856f054410cef52d868feb330168b2a4c4091328
82137 Author: Stefan Roese <sr@denx.de>
82138 Date:   Sat Oct 28 15:55:52 2006 +0200
82139
82140     [PATCH] NAND: Partition name support added to NAND subsystem
82141
82142     chpart, nboot and NAND subsystem related commands now accept also partition
82143     name to specify offset.
82144
82145     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
82146     Signed-off-by: Stefan Roese <sr@denx.de>
82147
82148 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
82149 Author: Wolfgang Denk <wd@pollux.denx.de>
82150 Date:   Sat Oct 28 02:29:44 2006 +0200
82151
82152     Update CHANGELOG.
82153
82154 commit 2751a95abd1b96911081c357e96a12fa97b40dee
82155 Author: Wolfgang Denk <wd@pollux.denx.de>
82156 Date:   Sat Oct 28 02:29:14 2006 +0200
82157
82158     Enable commandline editing and hush shell on all TQM boards.
82159
82160 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
82161 Author: Wolfgang Denk <wd@pollux.denx.de>
82162 Date:   Sat Oct 28 02:28:02 2006 +0200
82163
82164     README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
82165
82166 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
82167 Author: Wolfgang Denk <wd@denx.de>
82168 Date:   Sat Oct 28 01:14:32 2006 +0200
82169
82170     Check for illegal character '=' in environment variable names.
82171
82172     Make sure the string passed as variable name does not contain a '='
82173     character. This not only prevents the common error or typing
82174     "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
82175     also closes a backdoor which allowed to delete write-protected
82176     environment variables, for example by using "setenv ethaddr=".
82177
82178 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
82179 Author: Wolfgang Denk <wd@pollux.denx.de>
82180 Date:   Sat Oct 28 00:38:39 2006 +0200
82181
82182     Minor code cleanup.
82183
82184 commit e11887a77d81077416a2d1c5e0354916fee8c034
82185 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
82186 Date:   Thu Oct 26 17:55:31 2006 +0200
82187
82188     Don't pass any debug options directly to the assembler
82189
82190     When passing the -g option to gcc, gcc automatically selects a
82191     suitable --g<format> option to pass on to the assembler.
82192     Thus, there's no point in forcing a specific debug option on the
82193     assembler using the -Wa mechanism.
82194
82195     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
82196
82197 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
82198 Author: Jon Loeliger <jdl@freescale.com>
82199 Date:   Fri Oct 27 07:47:22 2006 -0500
82200
82201     MPC86xx: Cleaned up unused and conditionally used local variables.
82202
82203     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82204
82205 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
82206 Author: Wolfgang Denk <wd@pollux.denx.de>
82207 Date:   Fri Oct 27 11:55:21 2006 +0200
82208
82209     Fix "ar" flags in some Makefiles to allow for silent "make -s"
82210
82211 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
82212 Author: Ben Warren <bwarren@qstreams.com>
82213 Date:   Thu Oct 26 14:38:25 2006 -0400
82214
82215     Fix TSEC driver (now for real): avoid crashes if PHY is not attached
82216     to a TSEC (e.g. a switch is connected via RMII) or
82217     if the PHY is defective/incorrectly configured.
82218
82219     Signed-off-by: Ben Warren <bwarren@qstreams.com>
82220
82221 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
82222 Author: Ben Warren <bwarren@qstreams.com>
82223 Date:   Thu Oct 26 14:38:25 2006 -0400
82224
82225     Fix TSEC driver: avoid crashes if PHY is not attached
82226     to a TSEC (e.g. a switch is connected via RMII) or
82227     if the PHY is defective/incorrectly configured.
82228
82229     Signed-off-by: Ben Warren <bwarren@qstreams.com>
82230
82231 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
82232 Author: Wolfgang Denk <wd@pollux.denx.de>
82233 Date:   Thu Oct 26 16:24:31 2006 +0200
82234
82235     Code cleanup.
82236
82237 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
82238 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
82239 Date:   Wed Oct 25 15:48:59 2006 +0200
82240
82241     Finish up support for the ATSTK1000/ATSTK1002 boards
82242
82243     Add atstk1002_config target to Makefile and move the AVR32 section
82244     down below Blackfin so that it doesn't end up in the middle of
82245     MIPS.
82246
82247     Drop the autogenerated linker script thing for now. Will have to
82248     revisit how to handle chips with different flash and RAM layout
82249     later.
82250
82251     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
82252
82253 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
82254 Author: Kumar Gala <galak@kernel.crashing.org>
82255 Date:   Tue Oct 24 23:47:37 2006 -0500
82256
82257     Added support for Multi-Image files that contain a device tree
82258
82259     If a Multi-Image file contains a third image we try to use it as a
82260     device tree.  The device tree image is assumed to be uncompressed in the
82261     image file.  We automatically allocate space for the device tree in memory
82262     and provide an 8k pad to allow more than a reasonable amount of growth.
82263
82264     Additionally, a device tree that was contained in flash will now automatically
82265     get copied to system memory as part of boot.  Previously an error was
82266     reported if one tried to boot a device tree that was in flash.
82267
82268     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
82269
82270 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
82271 Author: Wolfgang Denk <wd@denx.de>
82272 Date:   Tue Oct 24 21:35:55 2006 +0200
82273
82274     Switch to automatically generated CHANGELOG file.
82275     (use "make CHANGELOG" to update it from time to time)
82276
82277 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
82278 Author: Stefan Roese <sr@denx.de>
82279 Date:   Tue Oct 24 18:06:48 2006 +0200
82280
82281     Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
82282     Patch by Stefan Roese, 24 Oct 2006
82283
82284 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
82285 Author: Wolfgang Denk <wd@pollux.denx.de>
82286 Date:   Tue Oct 24 17:24:55 2006 +0200
82287
82288     Merge with /home/wd/git/u-boot/master
82289
82290 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
82291 Author: Wolfgang Denk <wd@pollux.denx.de>
82292 Date:   Tue Oct 24 15:32:57 2006 +0200
82293
82294     Code cleanup
82295
82296 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
82297 Author: Wolfgang Denk <wd@pollux.denx.de>
82298 Date:   Tue Oct 24 14:51:36 2006 +0200
82299
82300     Move atstk1000 files into vendor specific directory.
82301     Patch by Haavard Skinnemoen, 12 Sep 2006
82302
82303 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
82304 Author: Wolfgang Denk <wd@pollux.denx.de>
82305 Date:   Tue Oct 24 14:42:37 2006 +0200
82306
82307     Add ATSTK1000 and ATSTK1002 board support
82308     Patch by Haavard Skinnemoen, 06 Sep 2006
82309
82310     This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
82311     daughterboard.
82312
82313     ATSTK1000 is a full-featured development board for AT32AP CPUs. It
82314     has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
82315     and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
82316     CompactFlash cards. For more information, please see this page:
82317
82318     http://www.atmel.com/dyn/products/tools.asp?family_id=682
82319
82320     The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
82321     AT32AP7000 chip.
82322
82323     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
82324
82325 commit f93ae788c3640fcde5db383471d45548ff4060d0
82326 Author: Wolfgang Denk <wd@pollux.denx.de>
82327 Date:   Tue Oct 24 14:31:24 2006 +0200
82328
82329     Add common serial driver for Atmel AT32 and AT91 chips
82330     Patch by Haavard Skinnemoen, 06 Sep 2006
82331
82332     This is a first attempt at creating a common serial driver for Atmel
82333     chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
82334     be possible to support AT91RM9200 and other ARM-based chips with some
82335     minor modifications.
82336
82337     There's nothing fundamentally AVR32-specific in this driver, but it
82338     does use some features which are currently only defined for the
82339     AT32AP CPU port:
82340       * pm_get_clock_freq: Obtain the clock frequency of a given domain
82341       * gd->console_uart: A "struct device" containing information about
82342         register mappings, gpio resources and clocks associated with the
82343         UART device.
82344
82345     For more information about these features, please see the "AT32AP
82346     CPU" patch.
82347
82348 commit 72a087e04705c26cad982879ebd06b5281bf825a
82349 Author: Wolfgang Denk <wd@pollux.denx.de>
82350 Date:   Tue Oct 24 14:27:35 2006 +0200
82351
82352     Add AT32AP CPU and AT32AP7000 SoC support
82353     Patch by Haavard Skinnemoen, 06 Sep 2006
82354
82355     This patch adds support for the AT32AP CPU family and the AT32AP7000
82356     chip, which is the first chip implementing the AVR32 architecture.
82357
82358     The AT32AP CPU core is a high-performance implementation featuring a
82359     7-stage pipeline, separate instruction- and data caches, and a MMU.
82360     For more information, please see the "AVR32 AP Technical Reference":
82361
82362     http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
82363
82364     In addition to this, the AT32AP7000 chip comes with a large set of
82365     integrated peripherals, many of which are shared with the AT91 series
82366     of ARM-based microcontrollers from Atmel. Full data sheet is
82367     available here:
82368
82369     http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
82370
82371     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
82372
82373 commit 7b64fef33c66be648826c0ff9758298ef13d0604
82374 Author: Wolfgang Denk <wd@pollux.denx.de>
82375 Date:   Tue Oct 24 14:21:16 2006 +0200
82376
82377     Add AVR32 architecture support
82378     Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
82379
82380     This patch adds common infrastructure code for the Atmel AVR32
82381     architecture. See doc/README.AVR32 for details.
82382
82383     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
82384
82385 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
82386 Author: Wolfgang Denk <wd@pollux.denx.de>
82387 Date:   Tue Oct 24 13:57:33 2006 +0200
82388
82389     Use -g instead of -gstabs in AFLAGS_DEBUG
82390     Patch by Haavard Skinnemoen, 30 Aug 2006
82391
82392     In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
82393     matter what the target's preferred debugging format is. This patch
82394     simply replaces -gstabs with -g, so that the default debugging format
82395     for the architecture is used.
82396
82397 commit 965829872169c2996023840d98e1d85ad148d629
82398 Author: Wolfgang Denk <wd@pollux.denx.de>
82399 Date:   Tue Oct 24 13:55:18 2006 +0200
82400
82401     Fix/workaround broken dependency handling with make 3.81
82402     Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
82403
82404 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
82405 Author: Marian Balakowicz <m8@semihalf.com>
82406 Date:   Mon Oct 23 22:17:05 2006 +0200
82407
82408     Fix sequoia separate object direcory building problems.
82409
82410 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
82411 Author: Jon Loeliger <jdl@freescale.com>
82412 Date:   Fri Oct 20 17:16:35 2006 -0500
82413
82414     Use generic I2C register block on 85xx and 86xx.
82415
82416     Replace private IMMAP I2C structures with generic reg block
82417     and allow 86xx to have multiple I2C device busses.
82418
82419     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82420
82421 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
82422 Author: Jon Loeliger <jdl@freescale.com>
82423 Date:   Fri Oct 20 15:54:34 2006 -0500
82424
82425     Fix compilation warnings on a few 85xx boards.
82426
82427     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82428
82429 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
82430 Author: Jon Loeliger <jdl@freescale.com>
82431 Date:   Fri Oct 20 15:50:15 2006 -0500
82432
82433     Converted all 85xx boards to use a common FSL I2C driver.
82434     Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
82435     And removed hard i2c path from a few u-boot.lds scipts too.
82436     Minor whitespace cleanups along the way.
82437
82438     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82439
82440 commit 4d45f69e362b05892c9e92a7907e5820995612aa
82441 Author: Jon Loeliger <jdl@freescale.com>
82442 Date:   Thu Oct 19 12:02:24 2006 -0500
82443
82444     Rewrite a series of goto statements as a sequences of
82445     conditional expressions instead.
82446
82447     Use consistent return code 0/-1 for good/bad indicators.
82448
82449     Include one fewer file if the driver isn't used at all.
82450
82451     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82452
82453 commit 7237c033b02fe295880435f1eb80819a0c987532
82454 Author: Jon Loeliger <jdl@freescale.com>
82455 Date:   Thu Oct 19 11:02:16 2006 -0500
82456
82457     Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
82458
82459     in an effort to begin to unify the umpteen FSL I2C drivers that
82460     are all otherwise very similar.
82461
82462     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82463
82464 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
82465 Author: Jon Loeliger <jdl@freescale.com>
82466 Date:   Thu Oct 19 11:33:52 2006 -0500
82467
82468     * Fix a bunch of compiler warnings for gcc 4.0
82469
82470     Signed-off-by: Matthew McClintock <msm@freescale.com>
82471
82472 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
82473 Author: Stefan Roese <sr@denx.de>
82474 Date:   Tue Oct 17 06:14:31 2006 +0200
82475
82476     Add monitor functions for indirect access to PPC440 DCR's
82477     Patch by Leonid Baryudin, 12 Oct 2006
82478
82479 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
82480 Author: Jon Loeliger <jdl@freescale.com>
82481 Date:   Fri Oct 13 16:47:53 2006 -0500
82482
82483     Fixed leading whitespace issues.
82484     Removed spurious LAWAR thing.
82485
82486     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82487
82488 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
82489 Author: Jon Loeliger <jdl@freescale.com>
82490 Date:   Thu Oct 12 10:42:36 2006 -0500
82491
82492     Remove unneeded include files and local variable.
82493
82494     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82495
82496 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
82497 Author: Grant Likely <grant.likely@secretlab.ca>
82498 Date:   Tue Oct 10 00:23:32 2006 -0600
82499
82500     Fix possible uninitialized variable compiler warning.
82501
82502     When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
82503     do_bootm_linux() may be uninitialized.  There is no possibility in the
82504     current code that len will get used uninitialized, but this fix follows
82505     the existing convention of setting both len and data to zero at the same
82506     time.
82507
82508     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
82509
82510 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
82511 Author: Matthew McClintock <msm@freescale.com>
82512 Date:   Wed Oct 11 15:13:01 2006 -0500
82513
82514     * Fix a bunch of compiler warnings for gcc 4.0
82515
82516     Signed-off-by: Matthew McClintock <msm@freescale.com>
82517
82518 commit bf651baa365e5447246aad6a633ccd667cf24a39
82519 Author: Jon Loeliger <jdl@freescale.com>
82520 Date:   Wed Oct 11 10:10:43 2006 -0500
82521
82522     Move "ar" flags to config.mk to allow for silent "make -s"
82523
82524 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
82525 Author: Jon Loeliger <jdl@freescale.com>
82526 Date:   Tue Oct 10 17:19:03 2006 -0500
82527
82528     Coding style changes to remove local varible blocks
82529     and reformat a bit nicer.
82530
82531 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
82532 Author: Jon Loeliger <jdl@freescale.com>
82533 Date:   Tue Oct 10 17:16:04 2006 -0500
82534
82535     Fix whitespace issues.
82536
82537 commit 7b382b7125f2397cce63253df62f183e3dfa2770
82538 Author: Jon Loeliger <jdl@freescale.com>
82539 Date:   Tue Oct 10 17:14:45 2006 -0500
82540
82541     Fix whitespace issues.
82542
82543 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
82544 Author: Jon Loeliger <jdl@freescale.com>
82545 Date:   Tue Oct 10 17:06:53 2006 -0500
82546
82547     Fix whitespace issues.
82548
82549 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
82550 Author: Jon Loeliger <jdl@freescale.com>
82551 Date:   Tue Oct 10 17:03:43 2006 -0500
82552
82553     Ran lindent and cleaned up whitespace issues.
82554     Format for 80-columns too.
82555
82556 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
82557 Author: Jon Loeliger <jdl@freescale.com>
82558 Date:   Tue Oct 10 17:02:22 2006 -0500
82559
82560     Fix whitespace and 80-col issues.
82561
82562 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
82563 Author: Stefan Roese <sr@denx.de>
82564 Date:   Sat Oct 7 11:36:51 2006 +0200
82565
82566     CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
82567     Patch by Stefan Roese, 07 Oct 2006
82568
82569 commit 5bc528fa4da751d472397b308137238a6465afd2
82570 Author: Stefan Roese <sr@denx.de>
82571 Date:   Sat Oct 7 11:35:25 2006 +0200
82572
82573     Update ALPR code (NAND support working now)
82574     Patch by Stefan Roese, 07 Oct 2006
82575
82576 commit 77d5034847d328753b80c46b83f960a14a26f40e
82577 Author: Stefan Roese <sr@denx.de>
82578 Date:   Sat Oct 7 11:33:03 2006 +0200
82579
82580     Remove compile warnings in fpga code
82581     Patch by Stefan Roese, 07 Oct 2006
82582
82583 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
82584 Author: Stefan Roese <sr@denx.de>
82585 Date:   Sat Oct 7 11:30:52 2006 +0200
82586
82587     Add CONFIG_BOARD_RESET to configure board specific reset function
82588     Patch by Stefan Roese, 07 Oct 2006
82589
82590 commit f55df18187e7a45cb73fec4370d12135e6691ae1
82591 Author: John Traill <john.traill@freescale.com>
82592 Date:   Fri Sep 29 08:23:12 2006 +0100
82593
82594     Fix missing tCycle/modfreq calculation.
82595
82596     Signed-off-by: John Traill <john.traill@freescale.com>
82597
82598 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
82599 Author: Andy Fleming <afleming@freescale.com>
82600 Date:   Wed Sep 13 10:33:35 2006 -0500
82601
82602     Updated config headers to add default FDT-based booting
82603
82604 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
82605 Author: Andy Fleming <afleming@freescale.com>
82606 Date:   Wed Sep 13 10:34:18 2006 -0500
82607
82608     Add support for eTSEC 3 & 4 on 8548 CDS
82609
82610     * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
82611       This will only work on rev 1.3 boards (but doesn't break older boards)
82612     * Cleaned up some comments to reflect the expanded role of tsec
82613       in other systems
82614
82615 commit 084d648b109c8984f83674043c1a7fa3885ef801
82616 Author: Andy Fleming <afleming@freescale.com>
82617 Date:   Wed Sep 13 10:33:56 2006 -0500
82618
82619     Added code to support 2.6.18 PCI changes in u-boot
82620
82621     * Added code to swizzle the IRQ map for the PCI
82622
82623 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
82624 Author: Jon Loeliger <jdl@freescale.com>
82625 Date:   Tue Sep 19 09:34:10 2006 -0500
82626
82627     Modified makefile for new build mechanism.
82628
82629     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82630
82631 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
82632 Author: Jon Loeliger <jdl@freescale.com>
82633 Date:   Thu Sep 14 08:40:36 2006 -0500
82634
82635     Handle 86xx SVR values according to the new Reference Manual.
82636     Both 8641 and 8641D have SVR == 0x8090, and are distinguished
82637     by the byte in bits 16-23 instead.
82638     Thanks to Jason Jin for noticing.
82639
82640     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82641
82642 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
82643 Author: Zhang Wei <wei.zhang@freescale.com>
82644 Date:   Mon Aug 28 14:25:31 2006 +0800
82645
82646     Fixed an OF-tree off-by-one bug when adding a new property name.
82647     This bug will cause the kernel booting to pause a long time.
82648
82649     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
82650     (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
82651
82652 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
82653 Author: Jon Loeliger <jdl@freescale.com>
82654 Date:   Tue Aug 29 11:05:09 2006 -0500
82655
82656     Remove trailing empty lines.
82657
82658 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
82659 Author: Jon Loeliger <jdl@freescale.com>
82660 Date:   Tue Aug 29 09:48:49 2006 -0500
82661
82662     Remove bogus msync and use volatile asm.
82663
82664 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
82665 Author: Jon Loeliger <jdl@freescale.com>
82666 Date:   Tue Aug 29 08:17:14 2006 -0500
82667
82668     Add myself as maintainer for MPC8641HPCN.
82669
82670 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
82671 Author: Zhang Wei <wei.zhang@freescale.com>
82672 Date:   Mon Aug 28 14:25:31 2006 +0800
82673
82674     Fixed an OF-tree off-by-one bug when adding a new property name.
82675     This bug will cause the kernel booting to pause a long time.
82676
82677     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
82678
82679 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
82680 Author: Haiying Wang <haiying.wang@freescale.com>
82681 Date:   Fri Aug 25 14:38:34 2006 -0400
82682
82683     Change ramdiskaddr and dtbaddr
82684     Remove PEX fluff commands.
82685
82686     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
82687     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82688
82689 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
82690 Author: Matthew McClintock <msm@freescale.com>
82691 Date:   Wed Aug 23 13:32:45 2006 -0500
82692
82693     * Another small fix for booting with disable_of
82694
82695     Signed-off-by: Matthew McClintock <msm@freescale.com>
82696
82697 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
82698 Author: Jon Loeliger <jdl@freescale.com>
82699 Date:   Wed Aug 23 11:04:43 2006 -0500
82700
82701     Cleanup and lindent new AHCI driver.
82702
82703 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
82704 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
82705 Date:   Wed Aug 23 19:15:12 2006 +0800
82706
82707     Add AHCI define and sata support for MPC8641HPCN board.
82708
82709     Signed-off-by:Jason Jin<jason.jin@freescale.com>
82710
82711 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
82712 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
82713 Date:   Wed Aug 23 19:10:44 2006 +0800
82714
82715     Add AHCI support to u-boot
82716
82717     Add AHCI support in u-boot, enable the sata disk controllers which
82718     following the AHCI protocol.
82719
82720     Signed-off-by:Jason Jin<jason.jin@freescale.com>
82721
82722 commit d8ea2acf5f137cae99417df4f573d036ee384668
82723 Author: Zhang Wei <wei.zhang@freescale.com>
82724 Date:   Wed Aug 23 17:54:32 2006 +0800
82725
82726     Add dtb boot-up parameter to default boot commands.
82727
82728     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
82729
82730 commit b93775c2036b99baa390ea425c4771895bbc63c4
82731 Author: Jon Loeliger <jdl@freescale.com>
82732 Date:   Tue Aug 22 18:26:08 2006 -0500
82733
82734     Cleanup even more poorly introduced whitespace.
82735
82736 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
82737 Author: Jon Loeliger <jdl@freescale.com>
82738 Date:   Tue Aug 22 18:07:00 2006 -0500
82739
82740     Cleanup more poorly introduced whitespace.
82741
82742 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
82743 Author: Jon Loeliger <jdl@freescale.com>
82744 Date:   Tue Aug 22 17:54:05 2006 -0500
82745
82746     Cleanup poorly introduced whitespace.
82747
82748 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
82749 Author: Jon Loeliger <jdl@freescale.com>
82750 Date:   Tue Aug 22 12:25:27 2006 -0500
82751
82752     General indent and whitespace cleanups.
82753
82754 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
82755 Author: Jon Loeliger <jdl@freescale.com>
82756 Date:   Tue Aug 22 12:06:18 2006 -0500
82757
82758     General indent and whitespace cleanups.
82759
82760 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
82761 Author: Jon Loeliger <jdl@freescale.com>
82762 Date:   Tue Aug 22 10:42:21 2006 -0500
82763
82764     Cleanup compiler warnings.
82765
82766 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
82767 Author: Matthew McClintock <msm@freescale.com>
82768 Date:   Tue Aug 22 09:31:59 2006 -0500
82769
82770     Fix disable_of booting
82771
82772     Signed-off-by: Matthew McClintock <msm@freescale.com>
82773
82774 commit 87a449c8ac396420cb24260f717ea9e6faa82047
82775 Author: Matthew McClintock <msm@freescale.com>
82776 Date:   Tue Aug 22 09:23:55 2006 -0500
82777
82778     Support for FDT in uImage format, error when using FDT from flash
82779
82780     Signed-off-by: Matthew McClintock <msm@freescale.com>
82781
82782 commit 75c299c38369d01addd5e054b8a16217b70f4a86
82783 Author: Haiying Wang <haiying.wang@freescale.com>
82784 Date:   Tue Aug 15 15:12:55 2006 -0400
82785
82786     Unlock cache before kernel starts up for MPC86xx
82787
82788 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
82789 Author: Haiying Wang <haiying.wang@freescale.com>
82790 Date:   Tue Aug 15 15:13:15 2006 -0400
82791
82792     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
82793
82794 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
82795 Author: Haiying Wang <haiying.wang@freescale.com>
82796 Date:   Tue Aug 15 15:12:55 2006 -0400
82797
82798     Unlock cache before kernel starts up for MPC86xx
82799
82800 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
82801 Author: Haiying Wang <haiying.wang@freescale.com>
82802 Date:   Tue Aug 15 15:13:15 2006 -0400
82803
82804     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
82805
82806 commit 86c8e17f25e972a7e272950a0735fad84e082b88
82807 Author: Matthew McClintock <msm@freescale.com>
82808 Date:   Wed Aug 16 13:59:47 2006 -0500
82809
82810     * Fix disable_of booting
82811
82812     Signed-off-by: Matthew McClintock <msm@freescale.com>
82813
82814 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
82815 Author: Matthew McClintock <msm@freescale.com>
82816 Date:   Wed Aug 16 10:54:09 2006 -0500
82817
82818     * Support for FDT in uImage format, error when using FDT from flash
82819
82820     Signed-off-by: Matthew McClintock <msm@freescale.com>
82821
82822 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
82823 Author: Stefan Roese <sr@denx.de>
82824 Date:   Tue Aug 15 14:22:35 2006 +0200
82825
82826     Add initial support for the ALPR board from Prodrive
82827     NAND needs some additional testing
82828     Patch by Heiko Schocher, 15 Aug 2006
82829
82830 commit f0ff4692ff3372dec55074a8eb444943ab095abb
82831 Author: Stefan Roese <sr@denx.de>
82832 Date:   Tue Aug 15 14:15:51 2006 +0200
82833
82834     Add FPGA Altera Cyclone 2 support
82835     Patch by Heiko Schocher, 15 Aug 2006
82836
82837 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
82838 Author: Jon Loeliger <jdl@freescale.com>
82839 Date:   Mon Aug 14 15:33:38 2006 -0500
82840
82841     Fix BAT0 to actually be cacheable, non-guarded as documented.
82842
82843     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82844
82845 commit 40bc83559db5745681909fd7382ae509567e116d
82846 Author: Jon Loeliger <jdl@freescale.com>
82847 Date:   Wed Aug 9 15:32:16 2006 -0500
82848
82849     Removed MPC8641HPCN DTS source file from build.
82850     It is no longer linked into U-Boot; its sources are
82851     now located in the kernel tree.
82852
82853     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82854
82855 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
82856 Author: Matthew McClintock <msm@freescale.com>
82857 Date:   Wed Jun 28 10:47:03 2006 -0500
82858
82859     * Switched default PCI speed for 8540 ADS back to 33MHz
82860
82861     * Added comments and a printf to warn that PCI-X won't
82862       work at 33MHz
82863       Patch by Andy Fleming 17-Mar-2006
82864
82865     Signed-off-by: Andy Fleming <afleming@freescale.com>
82866
82867 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
82868 Author: Matthew McClintock <msm@freescale.com>
82869 Date:   Wed Jun 28 10:46:35 2006 -0500
82870
82871     * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
82872
82873     Signed-off-by: Andy Fleming <afleming@freescale.com>
82874
82875 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
82876 Author: Matthew McClintock <msm@freescale.com>
82877 Date:   Wed Jun 28 10:46:13 2006 -0500
82878
82879     * Added VIA configuration table
82880
82881     * Added support for PCI2 on CDS
82882       Patch by Andy Fleming 17-Mar-2006
82883
82884     Signed-off-by: Andy Fleming <afleming@freescale.com>
82885
82886 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
82887 Author: Matthew McClintock <msm@freescale.com>
82888 Date:   Wed Jun 28 10:45:41 2006 -0500
82889
82890     * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
82891
82892     Signed-off-by: Andy Fleming <afleming@freescale.com>
82893
82894 commit 97074ed9655309b64231bc2cee69fe85399f8055
82895 Author: Matthew McClintock <msm@freescale.com>
82896 Date:   Wed Jun 28 10:45:17 2006 -0500
82897
82898     * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
82899
82900     Signed-off-by: Andy Fleming <afleming@freescale.com>
82901
82902 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
82903 Author: Matthew McClintock <msm@freescale.com>
82904 Date:   Wed Jun 28 10:44:49 2006 -0500
82905
82906     * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
82907
82908     Signed-off-by: Andy Fleming <afleming@freescale.com>
82909
82910 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
82911 Author: Matthew McClintock <msm@freescale.com>
82912 Date:   Wed Jun 28 10:44:23 2006 -0500
82913
82914     * 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
82915
82916     Signed-off-by: Andy Fleming <afleming@freescale.com>
82917
82918 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
82919 Author: Matthew McClintock <msm@freescale.com>
82920 Date:   Wed Jun 28 10:43:36 2006 -0500
82921
82922     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
82923
82924     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82925
82926 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
82927 Author: Matthew McClintock <msm@freescale.com>
82928 Date:   Wed Jun 28 10:43:00 2006 -0500
82929
82930     * 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
82931
82932 commit 5498d90312aad9f6bdbf047986027c35b03cd163
82933 Author: Matthew McClintock <msm@freescale.com>
82934 Date:   Wed Jun 28 10:42:24 2006 -0500
82935
82936     * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
82937
82938 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
82939 Author: Matthew McClintock <msm@freescale.com>
82940 Date:   Wed Jun 28 10:41:37 2006 -0500
82941
82942     * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
82943
82944 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
82945 Author: John Traill <john.traill@freescale.com>
82946 Date:   Wed Aug 9 14:33:50 2006 +0100
82947
82948     Add Rapidio support for the MPC8641HPCN
82949
82950     Signed-off-by: John Traill <john.traill@freescale.com>
82951
82952 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
82953 Author: John Traill <john.traill@freescale.com>
82954 Date:   Tue Aug 8 11:32:43 2006 +0100
82955
82956     Fix caslat calculation
82957
82958     Signed-off-by: John Traill <john.traill@freescale.com>
82959
82960 commit 709d3073e74153278e7904a70819bbef7df50e1a
82961 Author: Jon Loeliger <jdl@freescale.com>
82962 Date:   Thu Aug 3 16:17:56 2006 -0500
82963
82964     Convert to mac-address in ethernet nodes.
82965
82966 commit 71748af833ca1017edf1415be376366ff2937d17
82967 Author: Haiying Wang <haiying.wang@freescale.com>
82968 Date:   Fri Jul 28 12:41:35 2006 -0400
82969
82970     Correct the irq value of DUART2
82971
82972 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
82973 Author: Haiying Wang <haiying.wang@freescale.com>
82974 Date:   Fri Jul 28 12:41:41 2006 -0400
82975
82976     Change the space size of PEX IO in README
82977
82978 commit 239db37c94f7a92941c4465feceb867c609241c5
82979 Author: Haiying Wang <haiying.wang@freescale.com>
82980 Date:   Fri Jul 28 12:41:18 2006 -0400
82981
82982     Move get_board_sys_clk to board directory
82983
82984 commit 492900b985439fbce1a118afde1e35def870db03
82985 Author: John Traill <john.traill@freescale.com>
82986 Date:   Fri Jul 28 09:03:54 2006 +0100
82987
82988     Fix 8641HPCN pollution
82989
82990 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
82991 Author: John Traill <john.traill@freescale.com>
82992 Date:   Fri Jul 28 08:16:06 2006 +0100
82993
82994     Fix 8641HPCN timebase
82995
82996 commit c86360b830f1eecd7a72208575dde4f57879faea
82997 Author: Zhang Wei <wei.zhang@freescale.com>
82998 Date:   Fri Jul 28 00:01:34 2006 +0800
82999
83000     Fixed OF device tree of mpc86xxhpcn board.
83001
83002     The changes works in with kernel irq mapping rework.
83003
83004     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
83005
83006 commit bea3f28d285942bf3f7ab339ce85178ded544225
83007 Author: Haiying Wang <haiying.wang@freescale.com>
83008 Date:   Wed Jul 12 10:48:05 2006 -0400
83009
83010     Add support for reading and writing mac addresses to or from ID EEPROM.
83011
83012     Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
83013     With attached patch, we can use command "mac/mac read/mac save/"
83014     to read and write EEPROM under u-boot prompt.
83015
83016     U-boot will calculate the checksum of EEPROM while bootup,
83017     if it is right, then u-boot will check whether the mac address
83018     of eTSEC0/1/2/3 is availalbe (non-zero).
83019
83020     If there is mac address availabe in EEPROM, u-boot will use it,
83021     otherewise, u-boot will use the mac address defined in
83022     MPC8641HPCN.h. This matches the requirement to set unique mac address
83023     for each TSEC port.
83024
83025     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
83026     Signed-off-by: York Sun <yorksun@freescale.com>
83027
83028 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
83029 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
83030 Date:   Thu Jul 13 10:35:10 2006 -0500
83031
83032     Fixed initrd issue by define big RAM
83033
83034     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
83035
83036 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
83037 Author: Jason Jin <Jason.jin@freescale.com>
83038 Date:   Fri Jul 7 10:01:45 2006 -0500
83039
83040     We made a u-boot patch to fix the hang up issue
83041     when booting filesystem from ramdisk.
83042
83043     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
83044
83045 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
83046 Author: Matthew McClintock <msm@freescale.com>
83047 Date:   Wed Jun 28 10:47:03 2006 -0500
83048
83049     * Switched default PCI speed for 8540 ADS back to 33MHz
83050     * Added comments and a printf to warn that PCI-X won't
83051       work at 33MHz
83052       Patch by Andy Fleming 17-Mar-2006
83053
83054     Signed-off-by: Andy Fleming <afleming@freescale.com>
83055
83056 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
83057 Author: Matthew McClintock <msm@freescale.com>
83058 Date:   Wed Jun 28 10:46:35 2006 -0500
83059
83060     * Fixed a bug where 8555 PCI code used the old variable and
83061       function names
83062       Patch by Andy Fleming 17-Mar-2006
83063
83064     Signed-off-by: Andy Fleming <afleming@freescale.com>
83065
83066 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
83067 Author: Matthew McClintock <msm@freescale.com>
83068 Date:   Wed Jun 28 10:46:13 2006 -0500
83069
83070     * Added VIA configuration table
83071     * Added support for PCI2 on CDS
83072       Patch by Andy Fleming 17-Mar-2006
83073
83074     Signed-off-by: Andy Fleming <afleming@freescale.com>
83075
83076 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
83077 Author: Matthew McClintock <msm@freescale.com>
83078 Date:   Wed Jun 28 10:45:41 2006 -0500
83079
83080     * Fixed PCI memory definitions
83081       Patch by Andy Fleming 17-Mar-2006
83082
83083     Signed-off-by: Andy Fleming <afleming@freescale.com>
83084
83085 commit 087454609e47295443af793a282cddcd91a5f49c
83086 Author: Matthew McClintock <msm@freescale.com>
83087 Date:   Wed Jun 28 10:45:17 2006 -0500
83088
83089     * Added support for initializing second PCI bus on 85xx
83090       Patch by Andy Fleming 17-Mar-2006
83091
83092     Signed-off-by: Andy Fleming <afleming@freescale.com>
83093
83094 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
83095 Author: Matthew McClintock <msm@freescale.com>
83096 Date:   Wed Jun 28 10:44:49 2006 -0500
83097
83098     * Added PCI-X #defines for PCI-X initialization
83099       Patch by Andy Fleming on 17-Mar-2006
83100
83101     Signed-off-by: Andy Fleming <afleming@freescale.com>
83102
83103 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
83104 Author: Matthew McClintock <msm@freescale.com>
83105 Date:   Wed Jun 28 10:44:23 2006 -0500
83106
83107     * Made sure the code which disables prefetch for PCI devices
83108       sets the size of the prefetch region to 0
83109       Patch by Andy Fleming on 17-Mar-2006
83110
83111     Signed-off-by: Andy Fleming <afleming@freescale.com>
83112
83113 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
83114 Author: Matthew McClintock <msm@freescale.com>
83115 Date:   Wed Jun 28 10:43:36 2006 -0500
83116
83117     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
83118       Patch by Jon Loeliger 17-Jan-2006
83119
83120     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83121
83122 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
83123 Author: Matthew McClintock <msm@freescale.com>
83124 Date:   Wed Jun 28 10:43:00 2006 -0500
83125
83126     * Removed the oftree.dts for stxxtx in light of the changes
83127       to the flat device tree handling code
83128       Patch by Matthew McClintock 26-June-2006
83129
83130 commit 1b380ec225665e73959677f3893dc658c5925e05
83131 Author: Matthew McClintock <msm@freescale.com>
83132 Date:   Wed Jun 28 10:42:24 2006 -0500
83133
83134     * Patch to modify ft_build.c to update flat device trees in place
83135       Patch by Matthew McClintock 26-June-2006
83136
83137 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
83138 Author: Matthew McClintock <msm@freescale.com>
83139 Date:   Wed Jun 28 10:41:37 2006 -0500
83140
83141     * Modify bootm command to support booting with flat device trees
83142       Patch by Matthew McClintock 26-June-2006
83143
83144 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
83145 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
83146 Date:   Wed Jun 28 08:43:56 2006 -0500
83147
83148     Change Id to symbolic name for RTL8139
83149
83150     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
83151
83152 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
83153 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
83154 Date:   Tue Jun 27 18:12:10 2006 +0800
83155
83156     Fix RTL8139 in big endian
83157
83158     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
83159     signed-off-by: Wei Zhang <wei.zhang@freescale.com>
83160
83161 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
83162 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
83163 Date:   Tue Jun 27 18:12:23 2006 +0800
83164
83165     Fix Tsec bug when no link
83166
83167      When tftp a non-exist file from the tftp server, u-boot will check
83168      the link of all eth port. The original file will return wrong link
83169      state on the no link ports.
83170
83171     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
83172
83173 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
83174 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
83175 Date:   Tue Jun 27 18:12:02 2006 +0800
83176
83177     Fix bug for io_bar size during pci scan
83178
83179     During the pci scan process, Some devices return bar_reponse with the
83180     highest bytes 0, such as the pci bridge in uli1575 return bar_response
83181     with 0xffffff, So the bar_size should be manually set under 64K.
83182
83183     Signed-off-by: Jason Jin <jason.jin@freescale.com>
83184
83185 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
83186 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
83187 Date:   Tue Jun 27 18:11:54 2006 +0800
83188
83189     Enable PCIE1 for MPC8641HPCN board
83190
83191     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
83192
83193 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
83194 Author: Wolfgang Denk <wd@pollux.denx.de>
83195 Date:   Mon Jun 26 11:06:00 2006 +0200
83196
83197     More code cleanup
83198
83199 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
83200 Author: Jon Loeliger <jdl@freescale.com>
83201 Date:   Thu Jun 22 08:51:46 2006 -0500
83202
83203     Fix bug in 8641hpcn reset command with no args.
83204
83205     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
83206     Acked-by: Jon Loeliger <jdl@freescale.com>
83207
83208 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
83209 Author: Zhang Wei <wei.zhang@freescale.com>
83210 Date:   Tue Jun 20 17:47:15 2006 +0800
83211
83212     Reworked IRQ mapping in OF-tree.
83213
83214 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
83215 Author: Jon Loeliger <jdl@freescale.com>
83216 Date:   Thu Jun 15 21:33:37 2006 -0500
83217
83218     Do not enable address translation on secondary CPUs.
83219     Do not set up BATs on secondary CPUs.  Let Linux do the nasty.
83220
83221     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83222
83223 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
83224 Author: Wolfgang Denk <wd@pollux.denx.de>
83225 Date:   Wed Jun 14 18:14:56 2006 +0200
83226
83227     Code cleanup
83228
83229 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
83230 Author: Wolfgang Denk <wd@pollux.denx.de>
83231 Date:   Wed Jun 14 17:45:53 2006 +0200
83232
83233     Various USB related patches
83234     - Add support for mpc8xx USB device.
83235     - Add support for Common Device Class - Abstract Control Model USB console.
83236     - Add support for flow control in USB slave devices.
83237     - Add support for switching between gserial and cdc_acm using environment.
83238     - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
83239     - Update usbcore slightly to ease host enumeration.
83240     - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
83241     - Add AdderUSB_config as a defconfig to enable usage of the USB console
83242       by default with the Adder87x U-Boot port.
83243     Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
83244
83245 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
83246 Author: Jon Loeliger <jdl@jdl.com>
83247 Date:   Wed Jun 7 10:53:55 2006 -0500
83248
83249     Fix a get_board_sys_clk() use-before-def warning.
83250
83251     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83252
83253 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
83254 Author: Jon Loeliger <jdl@jdl.com>
83255 Date:   Wed Jun 7 10:52:49 2006 -0500
83256
83257     Allow DTC path to be passed in.
83258
83259     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83260
83261 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
83262 Author: Haiying Wang <haiying.wang@freescale.com>
83263 Date:   Tue Jun 6 16:54:29 2006 -0400
83264
83265     Modify the IRQ of DUART2
83266
83267 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
83268 Author: Jon Loeliger <jdl@jdl.com>
83269 Date:   Wed May 31 13:55:35 2006 -0500
83270
83271     Review cleanups.
83272
83273     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83274
83275 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
83276 Author: Jon Loeliger <jdl@jdl.com>
83277 Date:   Wed May 31 12:44:44 2006 -0500
83278
83279     White space cleanup.
83280     Some 80-column cleanups.
83281     Convert printf() to puts() where possible.
83282     Use #include "spd_sdram.h" as needed.
83283     Enhanced reset command usage message a bit.
83284
83285     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83286
83287 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
83288 Author: Jon Loeliger <jdl@jdl.com>
83289 Date:   Wed May 31 11:39:34 2006 -0500
83290
83291     Removed unneeded local_bus_init() from 8641HPCN board.
83292
83293     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83294
83295 commit 4d3d729c16c392d2982d3266b659d333c927697d
83296 Author: Jon Loeliger <jdl@jdl.com>
83297 Date:   Wed May 31 11:24:28 2006 -0500
83298
83299     Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
83300
83301     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83302
83303 commit b2a941de060350ad15878d8219825f4950e9bb8e
83304 Author: Jon Loeliger <jdl@jdl.com>
83305 Date:   Wed May 31 10:07:28 2006 -0500
83306
83307     Remove dead debug code.
83308
83309     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83310
83311 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
83312 Author: Jon Loeliger <jdl@freescale.com>
83313 Date:   Tue May 30 17:47:00 2006 -0500
83314
83315     Move mpc86xx PIXIS code to board directory
83316
83317     First cut at moving the PIXIS platform code out of
83318     the 86xx cpu directory and into board/mpc8641hpcn
83319     where it belongs.
83320
83321     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83322
83323 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
83324 Author: Markus Klotzbuecher <mk@denx.de>
83325 Date:   Tue May 30 16:56:14 2006 +0200
83326
83327     Support generic OHCI support for the s3c24x0 cpu.
83328
83329 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
83330 Author: Haiying Wang <Haiying.Wang@freescale.com>
83331 Date:   Tue May 30 09:10:32 2006 -0500
83332
83333     Improve "reset" command's interaction with watchdog.
83334
83335         "reset altbank" will reset another bank WITHOUT watch dog timer enabled
83336         "reset altbank wd" will reset another bank WITH watch dog enabled
83337         "diswd" will disable watch dog after u-boot boots up successfully
83338
83339     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
83340
83341 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
83342 Author: Haiying Wang <Haiying.Wang@freescale.com>
83343 Date:   Tue May 30 08:51:19 2006 -0500
83344
83345     Fix two SDRAM setup bugs.
83346
83347         Fix ECC setup bug.
83348         Enable 1T/2T based on number of DIMMs present.
83349
83350     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
83351
83352 commit d11fec5015334deb2010e36ce00bb118cc5429a5
83353 Author: Haiying Wang <Haiying.Wang@freescale.com>
83354 Date:   Fri May 26 10:24:48 2006 -0500
83355
83356     Add first draft of the MPC8641HPCN doc/README.
83357
83358     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83359
83360 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
83361 Author: Haiying Wang <Haiying.Wang@freescale.com>
83362 Date:   Fri May 26 10:13:04 2006 -0500
83363
83364     Added pci@8000 block.
83365     Updated ethernet interrupt mappings (moved up 48).
83366     Cleaned up a few comments.
83367
83368     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83369
83370 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
83371 Author: Haiying Wang <Haiying.Wang@freescale.com>
83372 Date:   Fri May 26 10:01:16 2006 -0500
83373
83374     Allow args on reset command.
83375
83376     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83377
83378 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
83379 Author: Markus Klotzbuecher <mk@denx.de>
83380 Date:   Tue May 23 13:38:35 2006 +0200
83381
83382     Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
83383     fixes to the latter.
83384
83385 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
83386 Author: Markus Klotzbuecher <mk@denx.de>
83387 Date:   Tue May 23 10:33:11 2006 +0200
83388
83389     More cleanup for the delta board and the generic usb_ohci driver. Added
83390     CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
83391     initialization and cleanup hooks respectively.
83392
83393 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
83394 Author: Markus Klotzbuecher <mk@denx.de>
83395 Date:   Mon May 22 16:33:54 2006 +0200
83396
83397     This patch adds USB storage support for the delta board. This is the first
83398     board to make use of a generic OHCI driver, that calls hooks for board
83399     dependant initialization.
83400
83401 commit 14e37081ff3cac7ebe6e93836523429853b6b292
83402 Author: Jon Loeliger <jdl@jdl.com>
83403 Date:   Fri May 19 13:28:39 2006 -0500
83404
83405     Change arbitration to round-robin for SMP linux.
83406
83407 commit 9a655876e5995be80f49054e2509500e871e4d3a
83408 Author: Jon Loeliger <jdl@jdl.com>
83409 Date:   Fri May 19 13:26:34 2006 -0500
83410
83411     Enable dual DDR controllers and interleaving.
83412
83413 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
83414 Author: Jon Loeliger <jdl@jdl.com>
83415 Date:   Fri May 19 13:22:44 2006 -0500
83416
83417     Update 86xx address map and LAWBARs.
83418
83419 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
83420 Author: Jon Loeliger <jdl@jdl.com>
83421 Date:   Fri May 19 13:14:15 2006 -0500
83422
83423     Remove L2 Cache invalidate polling.
83424
83425 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
83426 Author: Jon Loeliger <jdl@jdl.com>
83427 Date:   Fri May 19 12:33:09 2006 -0500
83428
83429     Enable 2nd CPU and I2C.
83430
83431 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
83432 Author: Jon Loeliger <jdl@freescale.com>
83433 Date:   Mon May 15 07:26:56 2006 -0500
83434
83435     Update interrupt mapping.
83436
83437 commit 6cfea33477b04b63ed47386ed1629529484c33ba
83438 Author: Haiying Wang <Haiying.Wang@freescale.com>
83439 Date:   Wed May 10 09:38:06 2006 -0500
83440
83441     Remove unneeded INIT_RAM_LOCK cache twiddling.
83442     Correctly tracks r29 as global data pointer now.
83443
83444     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
83445
83446 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
83447 Author: Jon Loeliger <jdl@freescale.com>
83448 Date:   Wed May 10 09:33:07 2006 -0500
83449
83450     Remove unnecessary flash.c file.
83451
83452 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
83453 Author: Jon Loeliger <jdl@freescale.com>
83454 Date:   Tue May 9 08:23:49 2006 -0500
83455
83456     Get MPC8641HPCN flash images working.
83457
83458         Enable the CFI driver.
83459         Remove bogus LAWBAR7 cruft.
83460         Use correct TEXT_BASE, Fixup load script.
83461         Enable SPD EEPROM during DDR setup.
83462         Use generic RFC 1918 IP addresses by default.
83463
83464 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
83465 Author: Jon Loeliger <jdl@freescale.com>
83466 Date:   Thu Apr 27 10:15:16 2006 -0500
83467
83468     Cleanup whitespaces and style issues.
83469     Removed //-style comments.
83470     Use 80-column lines.
83471     Remove trailing whitespace.
83472     Remove dead code and debug cruft.
83473
83474 commit a2320a6bf8113a09544c42d160d10ac69d049a03
83475 Author: Jon Loeliger <jdl@freescale.com>
83476 Date:   Thu Apr 27 08:22:39 2006 -0500
83477
83478     Revert bad PCI prefetch limit change.
83479
83480 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
83481 Author: Jon Loeliger <jdl@freescale.com>
83482 Date:   Wed Apr 26 17:58:56 2006 -0500
83483
83484     Initial support for MPC8641 HPCN board.